default_settings.json 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881
  1. {
  2. "version": 4,
  3. "core": {
  4. "logging": {
  5. "debugger_sink": true,
  6. "file_sink": false,
  7. "levels": {
  8. "core": "warn",
  9. "client": "warn",
  10. "state": "warn",
  11. "server": "warn",
  12. "middleware": "warn"
  13. }
  14. }
  15. },
  16. "steam": {
  17. "user": {
  18. "persona_name": "Player"
  19. }
  20. },
  21. "client": {
  22. "ui": {
  23. "enabled": true,
  24. "toggle_key": "insert"
  25. },
  26. "external_server": {
  27. "enabled": false,
  28. "host": "127.0.0.1",
  29. "config_url": "https://127.0.0.1/config/",
  30. "config_guid": "d2legacy-0000-0000-0000-000000000001"
  31. },
  32. "fade_release": true,
  33. "force_join_request_ready": true,
  34. "pin_replicated_record": true,
  35. "hold_spawn": true,
  36. "spawn_hold_ms": 30000
  37. },
  38. "server": {
  39. "bap_port": 30974,
  40. "entitlements": [
  41. { "name": "1085660", "owned": "handle" },
  42. { "name": "STEAM_PAID_TIER", "owned": "handle" },
  43. { "name": "STEAM_UGC_BLOCKED", "owned": "none" },
  44. { "name": "1090090", "owned": "application" },
  45. { "name": "1090091", "owned": "application" },
  46. { "name": "1090092", "owned": "application" },
  47. { "name": "1090093", "owned": "application" },
  48. { "name": "1090094", "owned": "application" },
  49. { "name": "1090095", "owned": "application" },
  50. { "name": "1090096", "owned": "application" },
  51. { "name": "1090150", "owned": "application" },
  52. { "name": "1090151", "owned": "application" },
  53. { "name": "1090152", "owned": "application" },
  54. { "name": "1090170", "owned": "application" },
  55. { "name": "1090171", "owned": "application" },
  56. { "name": "1090200", "owned": "application" },
  57. { "name": "1090201", "owned": "application" },
  58. { "name": "1090202", "owned": "application" },
  59. { "name": "1330040", "owned": "application" }
  60. ]
  61. },
  62. "state": {
  63. "investment": {
  64. "family5_flag_overrides": [[2003,2], [3698,2], [4661,2], [5901,2], [7188,2], [9144,2], [9162,2], [9164,2], [9169,2], [9171,2], [9176,2], [9178,2], [9180,2], [9183,2], [9186,2], [9279,2], [9355,2], [9567,2], [15034,2], [16840,2], [16843,2], [16846,2], [16849,2], [16852,2], [16854,2], [16856,2], [16857,2], [16860,2], [16862,2], [16865,2], [16868,2], [16871,2], [16873,2], [16875,2], [16878,2], [16884,2], [16887,2], [16889,2], [16892,2]],
  65. "family5_value_overrides": [[3510,5], [462,1010], [477,1010], [12913,42], [470,1], [465,20], [12823,1000], [5159,3]]
  66. },
  67. "unlocks": {
  68. "character_flag_runs": [[61,1], [130,1], [135,1], [138,2], [141,1], [144,25], [200,1], [223,1], [273,1], [275,2], [312,1], [360,1], [409,4], [416,1], [418,4], [423,6], [446,2], [458,2], [470,1], [524,1], [581,4], [659,1], [661,1], [699,1], [707,1], [731,1], [744,1], [791,1], [794,1], [817,1], [821,1], [828,1], [833,1], [838,1], [849,2], [852,1], [859,1], [865,1], [924,1], [938,1], [946,1], [957,1], [959,1], [964,1], [966,1], [971,1], [980,1], [994,1], [1013,1], [1055,1], [1058,1], [1065,4], [1131,1], [1134,1], [1136,2], [1139,1], [1143,1], [1145,2], [1171,1], [1178,1], [1182,2], [1195,1], [1197,1], [1212,3], [1232,1], [1234,3], [1247,1], [1252,2], [1256,1], [1259,1], [1264,1], [1326,1], [1422,1], [1428,2], [1514,1], [1516,1], [1518,1], [1520,1], [1524,1], [1542,1], [1544,1], [1662,6], [1678,3], [1685,1], [1783,1], [1790,2], [1837,6], [1848,2], [1853,3], [1858,4], [1880,6], [2253,6], [2269,1]],
  69. "character_objective_values": [[443,-1], [502,-1]],
  70. "account_flag_runs": [[26,21], [52,1], [78,1], [81,1], [83,3], [89,2], [95,1], [97,3], [101,1], [111,1], [141,1], [207,1], [241,1], [295,7], [303,14], [320,21], [342,10], [355,20], [376,11], [390,95], [487,72], [561,72], [635,32], [681,1], [683,5], [717,2], [728,8], [745,6], [754,1], [758,32], [796,13], [810,20], [831,19], [860,26], [935,18], [954,25], [986,1], [1034,1], [1039,1], [1058,1], [1063,1], [1095,1], [1100,1], [1202,1], [1217,1], [1585,1], [1599,3], [1606,1], [1614,22], [1638,1], [1641,1], [1644,1], [1647,1], [1650,1], [1653,1], [1656,1], [1659,1], [1662,1], [1669,17], [1688,1], [1691,1], [1694,1], [1697,78], [1791,35], [1827,4], [1832,172], [2005,20], [2026,4], [2031,4], [2036,4], [2041,4], [2046,4], [2051,4], [2056,4], [2061,1], [2065,33], [2099,15], [2121,88], [2211,1], [2213,45], [2259,91], [2351,48], [2400,48], [2449,10], [2464,28], [2507,19], [2554,11], [2569,62], [2642,87], [2735,28], [2764,5], [2772,1], [2775,6], [2784,13], [2808,11], [2821,7], [2830,12], [2843,1], [2845,2], [2848,6], [2855,11], [2867,40], [2908,36], [2945,41], [3001,46], [3051,35], [3089,1], [3091,10], [3107,3], [3133,15], [3153,15], [3173,15], [3193,26], [3220,14], [3240,2], [3245,1], [3248,12], [3265,2], [3303,52], [3370,62], [3447,62], [3524,15], [3540,27], [3568,10], [3581,11], [3593,2], [3596,2], [3599,2], [3602,2], [3641,2], [3644,1], [3646,62], [3713,2], [3720,2], [3727,2], [3730,16], [3747,46], [3854,3], [3930,2], [3960,21], [3984,61], [4046,14], [4061,3], [4068,2], [4071,4], [4076,1], [4081,1], [4083,38], [4122,9], [4144,30], [4183,16], [4202,3], [4206,26], [4245,81], [4330,4], [4347,11], [4362,9], [4376,27], [4404,3], [4410,12], [4424,2], [4428,13], [4442,7], [4454,1], [4474,1], [4478,1], [4490,14], [4505,1], [4508,24], [4533,4], [4538,96], [4641,244], [4903,30], [4934,6], [4946,6], [4954,4], [4961,6], [4969,4], [4977,2], [4981,2], [4985,2], [4989,1], [4991,1], [4995,1], [4997,1], [4999,1], [5005,1], [5009,1], [5031,33], [5065,1], [5069,8], [5078,13], [5096,1], [5098,14], [5114,6], [5126,16], [5144,6], [5156,1], [5158,17], [5235,2], [5238,1], [5241,15], [5261,5], [5271,41], [5317,5], [5327,41], [5373,5], [5383,26], [5410,1], [5436,1], [5439,40], [5480,16], [5497,2], [5601,23], [5632,2], [5635,1], [5652,4], [5657,5], [5669,7], [5678,1], [5682,1], [5687,1], [5690,1], [5693,26], [5720,12], [5733,3], [5738,1], [5759,1], [5761,1], [5775,2], [5818,3], [5840,2], [5844,6], [5855,36], [5892,1], [5894,20], [5931,1], [5965,13], [5979,7], [5987,7], [6000,17], [6018,16], [6040,16], [6057,5], [6064,5], [6071,8], [6080,1], [6084,15], [6102,6], [6113,15], [6129,16], [6151,26], [6187,4], [6192,8], [6201,1], [6208,24], [6234,1], [6236,54], [6291,1], [6304,42], [6348,2], [6355,1], [6361,1], [6364,1], [6366,1], [6370,1], [6373,1], [6401,50], [6452,8], [6461,8], [6471,11], [6483,17], [6503,1], [6505,1], [6507,34], [6564,18], [6586,32], [6619,1], [6621,1], [6623,17], [6646,45], [6695,17], [6715,4], [6722,12], [6784,63], [6848,1], [6873,2], [6876,36], [6959,57], [7019,1], [7021,1], [7025,61], [7090,28], [7121,27], [7150,1], [7170,2], [7175,50], [7242,1], [7245,4], [7251,66], [7336,54], [7391,1], [7395,9], [7435,32], [7468,15], [7488,5], [7498,10], [7509,15], [7529,5], [7539,10], [7550,15], [7570,5], [7580,10], [7663,1], [7717,1], [7735,14], [7761,4], [7767,5], [7774,2], [7777,1], [7780,3], [7952,2], [8184,1], [8251,5], [8284,3], [8291,1], [8420,1], [10308,1], [10420,1], [10579,3], [10699,1], [11145,11]],
  71. "profile_flag_runs": [[1,1], [4,1], [6,2], [9,3], [130,5], [137,1], [139,29], [169,3], [173,1], [177,33], [211,1], [217,1], [219,8], [235,2], [238,2], [243,17], [261,13], [275,19]],
  72. "character_flags": [16,17,18,19,82],
  73. "objective_values": [[58,5000], [59,5000], [60,5000], [61,500], [62,300], [63,300], [64,300], [65,1000], [68,60], [75,75], [78,5], [79,1], [80,5], [81,1], [82,500], [83,1000], [84,30], [85,100], [86,250], [87,10], [88,25], [89,200], [92,50], [93,75], [94,4000], [96,800], [104,5], [105,7], [106,250], [108,50], [158,400], [159,100], [160,20], [161,75], [162,25], [163,5], [165,100], [167,150000], [168,150000], [169,150000], [170,900000], [171,10], [172,3], [173,3], [175,100], [176,10], [177,30], [179,1000], [180,25], [181,30], [182,3], [183,10], [185,300], [186,10], [191,7], [192,1], [193,3], [195,25], [196,3], [396,5], [397,1], [398,2], [400,10], [401,1], [402,1], [403,1], [404,1], [405,1], [406,1], [407,50], [408,9], [409,1], [410,5], [411,1], [412,1], [413,1], [414,1], [415,1], [416,29], [417,1], [418,1], [419,1], [420,1], [421,1], [422,1], [423,1], [424,1], [425,1], [426,1], [427,1], [432,1], [433,13], [434,16], [435,3], [436,1], [437,3], [438,1], [439,2], [440,3], [441,3], [442,10], [443,1], [444,1], [445,1], [446,1], [447,1], [448,1], [449,1], [450,1], [451,1], [452,1], [453,1], [454,1], [455,1], [456,1], [457,50], [458,21], [459,1], [460,1], [461,1], [462,1], [463,1], [464,1], [465,36], [466,1], [467,1], [468,1], [469,1], [470,1], [471,1], [472,1], [473,1], [474,1], [475,1], [476,1], [483,1], [484,4], [485,3], [486,1], [487,2], [488,10], [489,1], [490,1], [491,1], [492,1], [493,50], [494,6], [495,1], [496,1], [497,1], [498,1], [499,1], [500,1], [501,17], [502,1], [503,1], [504,1], [505,1], [506,1], [507,1], [508,1], [509,1], [510,1], [511,1], [512,1], [517,1], [518,50], [519,100], [520,25], [521,100], [522,200], [523,50], [524,300], [525,50], [526,150], [527,9], [528,1], [529,1], [530,1], [531,1], [532,1], [533,1], [534,1], [535,1], [536,1], [537,1], [538,300], [539,50], [540,75], [541,25], [542,50], [543,100], [544,75], [545,75], [546,100], [549,9], [550,1], [551,1], [552,1], [553,1], [554,1], [555,1], [556,1], [557,1], [558,1], [559,1], [560,300], [561,100], [562,100], [563,9], [564,1], [565,1], [566,1], [567,1], [568,75], [569,50], [570,150], [571,50], [572,100], [573,50], [574,50], [575,100], [576,1], [577,1], [578,1], [579,1], [580,1], [581,1], [582,1], [583,1], [585,25], [586,100], [587,50], [588,25], [595,20], [596,20], [597,20], [598,30], [599,20], [600,7], [601,18], [602,30], [603,10], [604,7], [605,45], [607,1], [608,1], [609,1], [610,1], [611,1], [612,1], [613,1], [614,1], [615,1], [616,1], [617,1], [618,1], [619,7], [620,5], [622,1], [624,1], [625,1], [626,1], [627,1], [628,10], [629,1], [630,1], [631,1], [632,1], [633,1], [634,1], [635,1], [636,1], [637,1], [638,1], [639,1], [640,1], [641,1], [642,1], [643,50], [644,21], [645,1], [646,1], [647,1], [648,1], [649,1], [650,1], [651,32], [652,1], [653,1], [654,1], [655,1], [656,1], [657,1], [658,1], [659,1], [660,1], [661,1], [662,1], [669,1], [670,1], [671,1], [672,1], [673,100], [674,1], [675,1], [676,1], [677,1], [678,5], [679,1], [680,1], [681,1], [682,1], [683,1], [684,1], [685,1], [686,1], [687,1], [688,1], [689,1], [690,25], [691,25], [692,7], [694,3], [695,100], [696,2], [697,1], [698,1], [699,1], [700,1], [701,1], [702,100], [706,3], [707,25], [708,1], [709,1], [710,1], [711,1], [712,1], [713,1], [714,1], [715,1], [716,1], [717,1], [718,1], [719,1], [720,1], [721,1], [722,30], [723,500], [724,20], [725,72], [726,50], [728,1], [729,1], [730,1], [731,1], [732,1], [733,1], [734,1], [735,1], [736,1], [737,1], [738,1], [739,1], [740,1], [741,1], [742,1200000], [743,250], [744,1], [745,50], [746,1], [747,1], [748,1], [749,1], [750,1], [751,1], [752,1200000], [753,1], [754,1], [755,10], [756,10], [757,1], [758,1], [759,1], [760,1], [761,1], [762,1200000], [763,1], [764,1], [765,50], [766,50], [767,1], [768,1], [769,1], [770,1], [771,1], [772,1200000], [773,1], [774,1], [775,50], [776,15], [777,1], [778,1], [779,1], [780,1], [781,1], [782,1200000], [783,1], [784,25], [785,1], [786,50], [787,1], [788,1], [789,1], [790,1], [791,1], [792,1200000], [793,1], [794,1], [795,25], [796,25], [797,1], [798,1], [799,1], [800,1], [801,1], [802,300], [803,200], [804,150], [805,100], [806,25], [807,250], [808,150], [809,100], [810,1], [811,9], [812,1], [813,1], [814,1], [815,1], [816,1], [817,1], [818,1], [819,1], [820,1], [821,1], [822,50], [823,50], [824,200], [825,100], [826,50], [827,50], [828,300], [829,50], [830,100], [831,9], [832,1], [833,1], [834,1], [835,1], [836,1], [837,1], [838,1], [839,1], [840,1], [841,1], [842,200], [843,75], [844,100], [845,9], [846,100], [847,300], [848,50], [849,75], [850,25], [851,200], [852,1], [853,1], [854,1], [855,1], [856,1], [857,1], [858,1], [859,1], [860,1], [861,1], [862,1], [863,3], [864,3], [865,100], [866,10], [868,21], [869,3], [870,150], [872,1], [873,1], [874,1], [875,1], [876,1], [877,10], [878,5], [879,1], [880,1], [881,1], [882,1], [883,1], [884,1], [885,1], [886,1], [887,1], [888,1], [889,100], [890,50], [891,100], [892,50], [893,50], [894,250], [895,50], [896,300], [897,9], [898,50], [899,1], [900,1], [901,1], [902,1], [903,1], [904,1], [905,1], [906,1], [907,1], [908,1], [909,75], [910,200], [911,50], [912,50], [913,75], [914,100], [915,300], [916,50], [917,100], [918,9], [919,1], [920,1], [921,1], [922,1], [923,1], [924,1], [925,1], [926,1], [927,1], [928,1], [929,75], [930,50], [931,100], [932,50], [933,50], [934,150], [935,200], [936,300], [937,50], [938,9], [939,1], [940,1], [941,1], [942,1], [943,1], [944,1], [945,1], [946,1], [947,1], [948,1], [949,16], [950,1], [951,1], [952,1], [953,1], [954,1], [955,1], [956,1], [957,500], [958,5], [960,10], [961,1], [962,50], [963,500], [964,13], [965,23], [966,1], [967,1], [968,1], [969,1], [970,1], [971,1], [972,1], [973,1], [974,1], [975,1], [976,1], [977,1], [978,1], [979,1], [980,1], [981,1], [982,1], [983,10], [984,1], [985,8], [986,1], [987,5], [988,4000], [989,1], [990,1], [991,1], [992,1], [993,1], [994,1], [995,1], [996,1], [997,1], [998,1], [999,1], [1000,1], [1001,1], [1002,1], [1003,1], [1004,1], [1005,1], [1006,1], [1007,1], [1008,1], [1009,1], [1010,1], [1011,1], [1012,1], [1013,1], [1014,1], [1015,1], [1016,1], [1017,1], [1018,1], [1019,1], [1020,1], [1021,1], [1022,1], [1023,1], [1024,1], [1025,1], [1026,1], [1027,1], [1028,1], [1029,1], [1030,1], [1031,1], [1032,1], [1033,1], [1034,1], [1035,1], [1036,1], [1037,1], [1038,1], [1039,1], [1040,1], [1041,1], [1042,1], [1043,1], [1044,1], [1045,1], [1046,1], [1047,1], [1048,1], [1049,1], [1050,1], [1051,1], [1052,1], [1053,1], [1054,4], [1055,10], [1056,10], [1057,10], [1058,100], [1059,1], [1060,1], [1061,1], [1062,1], [1063,1], [1210,1], [1211,1], [1212,1], [1213,1], [1214,1], [1215,1], [1216,1], [1217,1], [1218,1], [1219,1], [1220,25], [1221,5], [1222,5], [1223,25], [1224,250], [1230,15], [1231,255], [1232,5], [1233,1], [1234,150], [1240,15], [1241,165], [1242,5], [1243,1], [1244,150], [1250,5], [1251,165], [1252,5], [1253,25], [1254,250], [1260,15], [1261,210], [1262,5], [1263,1], [1264,200], [1270,1], [1271,1], [1272,1], [1273,1], [1274,1], [1280,7], [1281,10], [1282,10], [1283,5], [1284,7], [1285,7], [1286,250], [1297,25], [1298,10], [1299,5], [1300,25], [1301,1000], [1336,1], [1337,1], [1340,2], [1342,2], [1344,2], [1346,1], [1349,1], [1351,2], [1353,1], [1356,1], [1358,2], [1360,1], [1363,3], [1365,1], [1368,2], [1370,2], [1372,1], [1375,1], [1377,1], [1379,1], [1381,1], [1383,1], [1386,2], [1388,2], [1390,2], [1392,1], [1395,3], [1397,1], [1399,1], [1402,2], [1404,1], [1406,1], [1409,2], [1411,2], [1413,1], [1416,3], [1437,1], [1438,1], [1448,600], [1449,250], [1450,15], [1451,1], [1452,100], [1458,65], [1459,85], [1460,1], [1461,50], [1462,30], [1468,55], [1469,25], [1470,1], [1471,50], [1472,30], [1478,130], [1479,30], [1480,1], [1481,50], [1482,30], [1488,70], [1489,165], [1490,1], [1491,50], [1492,30], [1498,70], [1499,90], [1500,1], [1501,50], [1502,30], [1508,65], [1509,135], [1510,1], [1511,50], [1512,30], [1518,21], [1519,100], [1520,5], [1521,25], [1522,100], [1528,65], [1529,30], [1530,1], [1531,50], [1532,30], [1538,80], [1539,50], [1540,1], [1541,50], [1542,30], [1548,110], [1549,25], [1550,1], [1551,50], [1552,30], [1558,1], [1559,1], [1560,1], [1561,1], [1562,1], [1568,35], [1569,15], [1570,366], [1571,40], [1572,1500], [1611,500], [1613,250], [1615,500], [1617,1000], [1619,2500], [1620,500], [1622,500], [1623,500], [1625,500], [1627,1000], [1628,250], [1630,5], [1631,500], [1633,1000], [1634,500], [1636,1000], [1638,300], [1640,500], [1642,1000], [1644,150], [1646,150], [1647,150], [1648,300], [1650,500], [1652,50], [1653,1000], [1655,200], [1657,500], [1659,500], [1661,500], [1664,1], [1665,1], [1667,250], [1669,500], [1671,50], [1672,500], [1674,5], [1676,300], [1678,500], [1680,1], [1681,1000], [1682,2000], [1683,1000], [1684,50], [1927,19], [2219,1], [2220,1], [2221,1], [2222,10], [2223,10], [2224,10], [2225,10], [2226,10], [2227,10], [2228,10], [2229,10], [2230,10], [2231,10], [2232,10], [2233,10], [2290,1], [2291,1], [2292,1], [2293,1], [2294,1], [2295,1], [2313,500], [2318,500], [2319,500], [2320,500], [2321,500], [2322,400], [2323,350], [2324,500], [2325,350], [2326,350], [2327,500], [2328,500], [2329,500], [2330,500], [2331,500], [2332,500], [2333,350], [2334,500], [2335,500], [2336,500], [2337,350], [2338,500], [2350,1], [2351,1], [2352,1], [2384,250], [2385,700], [2386,700], [2387,300], [2401,5], [2402,1], [2403,10], [2404,1], [2405,1], [2411,5], [2412,1], [2413,10], [2414,1], [2415,1], [2421,5], [2422,1], [2423,10], [2424,1], [2425,1], [2466,700], [2467,700], [2468,400], [2469,400], [2470,700], [2471,700], [2472,400], [2549,400], [2550,700], [2551,700], [2576,700], [2577,700], [2578,400], [2608,400], [2609,700], [2610,5000], [2632,1], [2633,1], [2634,3], [2635,1], [2636,7], [2642,1], [2643,1], [2644,3], [2645,1], [2646,7], [2652,1], [2653,1], [2654,3], [2655,1], [2656,7], [2666,20], [2667,3], [2668,10], [2669,1000], [2670,5], [5662,-1]]
  74. },
  75. "activity": {
  76. "roster_key_from_identity": false,
  77. "roster_key_on_all_slots": false,
  78. "default_destination": {
  79. "reason": -1,
  80. "previous_activity_index": -1,
  81. "activity_index": 20,
  82. "package_name": "city_tower_social_d2",
  83. "bubble_count": 8,
  84. "stateful_bubble_mask": "0xCF",
  85. "initial_slice_set": 48,
  86. "spawn_set_hash": "0x811C9DC5"
  87. },
  88. "arrival_overrides": [
  89. {
  90. "package_name": "raid_envy_v310",
  91. "bubble": 7
  92. },
  93. {
  94. "package_name": "raid_gluttony_0",
  95. "bubble": 2,
  96. "spawn_set_hash": "0x8029E4B4"
  97. },
  98. {
  99. "package_name": "raid_gluttony_1",
  100. "bubble": 2,
  101. "spawn_set_hash": "0x8029E4B4"
  102. },
  103. {
  104. "package_name": "raid_gluttony_2",
  105. "bubble": 2,
  106. "spawn_set_hash": "0x8029E4B4"
  107. },
  108. {
  109. "package_name": "raid_gluttony_3",
  110. "bubble": 2,
  111. "spawn_set_hash": "0x8029E4B4"
  112. },
  113. {
  114. "package_name": "raid_gluttony_4",
  115. "bubble": 2,
  116. "spawn_set_hash": "0x8029E4B4"
  117. },
  118. {
  119. "package_name": "raid_gluttony_5",
  120. "bubble": 2,
  121. "spawn_set_hash": "0x8029E4B4"
  122. },
  123. {
  124. "package_name": "raid_sunset",
  125. "bubble": 1,
  126. "spawn_set_hash": "0xBC6A3A37"
  127. }
  128. ]
  129. },
  130. "account": {
  131. "primary_soid": "0x9EAA300100100100",
  132. "dismantle_rewards": [
  133. {
  134. "definition_hash": "0x3CF2E8E2",
  135. "quantity": 4
  136. },
  137. {
  138. "definition_hash": "0x28D6AC07",
  139. "quantity": 3
  140. }
  141. ],
  142. "profile_items": [
  143. {
  144. "definition_hash": "0xBC53E66E",
  145. "quantity": 100000
  146. },
  147. {
  148. "definition_hash": "0x3CF2E8E2",
  149. "quantity": 100000
  150. },
  151. {
  152. "definition_hash": "0xA7EE4765",
  153. "quantity": 100000
  154. },
  155. {
  156. "definition_hash": "0xBB97AFD2",
  157. "quantity": 100000
  158. },
  159. {
  160. "definition_hash": "0xB19439E5",
  161. "quantity": 25
  162. },
  163. {
  164. "definition_hash": "0x28D6AC07",
  165. "quantity": 50
  166. },
  167. {
  168. "definition_hash": "0xE5B38AD2",
  169. "quantity": 50
  170. },
  171. {
  172. "definition_hash": "0xFDC50EA0",
  173. "quantity": 50
  174. },
  175. {
  176. "definition_hash": "0xFDC50EA1",
  177. "quantity": 10
  178. },
  179. {
  180. "definition_hash": "0x54CCDFF2",
  181. "quantity": 50
  182. },
  183. {
  184. "definition_hash": "0xDAAB73B4",
  185. "quantity": 50
  186. },
  187. {
  188. "definition_hash": "0xCD8DA6F2",
  189. "quantity": 50
  190. }
  191. ],
  192. "settings": {
  193. "controls": {
  194. "button_layout": 0,
  195. "movement_mode": 0,
  196. "controller_look_sensitivity": 2,
  197. "controller_invert_vertical": false,
  198. "controller_auto_look_centering": false,
  199. "controller_vibration": true,
  200. "controller_swap_shoulders": false,
  201. "controller_invert_horizontal": false,
  202. "mouse_look_sensitivity": 15,
  203. "mouse_invert_vertical": false,
  204. "mouse_invert_horizontal": false,
  205. "unidentified_toggle": false,
  206. "mouse_aim_smoothing": false,
  207. "ads_sensitivity_modifier": 1.0,
  208. "double_press_delay": 0
  209. },
  210. "audio": {
  211. "voice_output_mode": 1,
  212. "team_voice_channel": 0,
  213. "reserved_mode": 0,
  214. "migration_version": 8,
  215. "chat_volume": 2,
  216. "mute_when_unfocused": false,
  217. "sound_effects_volume": 3,
  218. "dialogue_volume": 2,
  219. "music_volume": 2
  220. },
  221. "display": {
  222. "brightness": 3,
  223. "show_fps": false,
  224. "hdr_mode": 0,
  225. "calibration_primary": 10000.0,
  226. "calibration_alpha": 0.0
  227. },
  228. "interface": {
  229. "subtitles_mode": 0,
  230. "colorblind_mode": 0,
  231. "helmet_mode": 1,
  232. "hud_opacity": 3,
  233. "display_hints": true,
  234. "background_opacity": 2,
  235. "reticle_location": 0,
  236. "reticle_color": 0,
  237. "text_size": 0,
  238. "text_color": 0,
  239. "text_background_style": 0,
  240. "text_background_opacity": 0,
  241. "reserved_text_mode": 0,
  242. "subtitle_options_entry": 0
  243. },
  244. "social": {
  245. "prefer_good_connection": false,
  246. "text_chat_mode": 3,
  247. "show_real_names": true,
  248. "clan_invite_notifications": true,
  249. "profanity_filter": false,
  250. "voice_chat_enabled": true,
  251. "whisper_chat_mode": 0,
  252. "team_chat_join_mode": 0,
  253. "local_chat_join_mode": 0,
  254. "clan_chat_join_mode": 1,
  255. "chat_auto_hide_mode": 1
  256. },
  257. "key_bindings": {
  258. "fire": { "primary": "left mouse button", "secondary": null },
  259. "toggle_zoom": { "primary": null, "secondary": null },
  260. "hold_zoom": { "primary": "right mouse button", "secondary": null },
  261. "melee": { "primary": "c", "secondary": null },
  262. "grenade": { "primary": "q", "secondary": null },
  263. "super": { "primary": "f", "secondary": null },
  264. "reload": { "primary": "r", "secondary": null },
  265. "light_attack": { "primary": "left mouse button", "secondary": null },
  266. "heavy_attack": { "primary": "right mouse button", "secondary": null },
  267. "block": { "primary": "c", "secondary": null },
  268. "switch_weapons": { "primary": "`", "secondary": null },
  269. "next_weapon": { "primary": "mouse wheel up", "secondary": null },
  270. "previous_weapon": { "primary": "mouse wheel down", "secondary": null },
  271. "primary_weapon": { "primary": "1", "secondary": null },
  272. "special_weapon": { "primary": "2", "secondary": null },
  273. "heavy_weapon": { "primary": "3", "secondary": null },
  274. "move_forward": { "primary": "w", "secondary": null },
  275. "move_backward": { "primary": "s", "secondary": null },
  276. "move_left": { "primary": "a", "secondary": null },
  277. "move_right": { "primary": "d", "secondary": null },
  278. "jump": { "primary": "space", "secondary": null },
  279. "toggle_crouch": { "primary": "control", "secondary": null },
  280. "hold_crouch": { "primary": null, "secondary": null },
  281. "toggle_sprint": { "primary": "shift", "secondary": null },
  282. "hold_sprint": { "primary": null, "secondary": null },
  283. "vehicle_boost": { "primary": "right mouse button", "secondary": null },
  284. "vehicle_brake": { "primary": "shift", "secondary": null },
  285. "vehicle_zoom": { "primary": "right mouse button", "secondary": null },
  286. "vehicle_fire_primary": { "primary": "left mouse button", "secondary": null },
  287. "vehicle_fire_secondary": { "primary": "e", "secondary": null },
  288. "vehicle_exit": { "primary": "space", "secondary": null },
  289. "interact": { "primary": "e", "secondary": null },
  290. "highlight_player": { "primary": "g", "secondary": null },
  291. "emote_1": { "primary": "up", "secondary": null },
  292. "emote_2": { "primary": "down", "secondary": null },
  293. "emote_3": { "primary": "left", "secondary": null },
  294. "emote_4": { "primary": "right", "secondary": null },
  295. "air_move": { "primary": "x", "secondary": null },
  296. "class_ability": { "primary": "v", "secondary": null },
  297. "death_cam_zoom_in": { "primary": "mouse wheel up", "secondary": null },
  298. "death_cam_zoom_out": { "primary": "mouse wheel down", "secondary": null },
  299. "push_to_talk": { "primary": "t", "secondary": null },
  300. "ui_gamepad_button_back": { "primary": "tab", "secondary": null },
  301. "ui_open_director": { "primary": "m", "secondary": null },
  302. "ui_open_director_store_tab": { "primary": null, "secondary": null },
  303. "ui_open_director_pursuits_tab": { "primary": null, "secondary": null },
  304. "ui_open_director_map_tab": { "primary": null, "secondary": null },
  305. "ui_open_director_destinations_tab": { "primary": null, "secondary": null },
  306. "ui_open_director_roster_tab": { "primary": "u", "secondary": null },
  307. "ui_open_director_seasons_tab": { "primary": null, "secondary": null },
  308. "ui_open_start_menu_alternative": { "primary": "i", "secondary": null },
  309. "ui_open_start_menu_records_tab": { "primary": null, "secondary": null },
  310. "ui_open_start_menu_collections_tab": { "primary": null, "secondary": null },
  311. "ui_open_start_menu_clan_tab": { "primary": null, "secondary": null },
  312. "ui_open_start_menu_inventory_tab": { "primary": null, "secondary": null },
  313. "ui_open_start_menu_settings_tab": { "primary": null, "secondary": null },
  314. "ui_open_exit_dialog_confirm": { "primary": "shift+escape", "secondary": null },
  315. "ui_abort_activity": { "primary": "o", "secondary": null },
  316. "ui_text_chat_toggle_state": { "primary": "l", "secondary": null },
  317. "screenshot": { "primary": "print screen", "secondary": null }
  318. }
  319. }
  320. },
  321. "characters": [
  322. {
  323. "soid": "0x9EAA300100100101",
  324. "race": 0,
  325. "gender": 0,
  326. "class": 1,
  327. "movement_ability": 6,
  328. "grenade_ability": 7,
  329. "super_ability": 10,
  330. "melee_ability": 11,
  331. "class_ability": 2,
  332. "level": 50,
  333. "accepted": true,
  334. "preview_available": true,
  335. "appearance_value": 1.0,
  336. "last_orbited_destination": "0x125CF0E7",
  337. "content_bypass": true,
  338. "equipment": {
  339. "kinetic": {
  340. "instance_soid": "0x4000000000000001",
  341. "definition_hash": "0xE516CF40",
  342. "level": 106,
  343. "quantity": 1,
  344. "plugs": [
  345. "0xAB5218B6",
  346. "0xCCA5773B",
  347. "0x065F4ED0",
  348. "0x45A0BDD7",
  349. "0x1B6B4DB8",
  350. "0xFD368D30",
  351. "0x8A8536B5",
  352. "0x8C84EA53",
  353. null,
  354. "0x8838B9DA",
  355. null,
  356. "0xE713379A"
  357. ]
  358. },
  359. "energy": {
  360. "instance_soid": "0x4000000000000002",
  361. "definition_hash": "0x4156C94D",
  362. "level": 106,
  363. "quantity": 1,
  364. "plugs": [
  365. "0x3B667F9C",
  366. "0x4F68703D",
  367. "0x065F4ED0",
  368. "0xF2A907DF",
  369. "0x8CB6409D",
  370. "0xFD368D30",
  371. "0x8A8536B5",
  372. null,
  373. null,
  374. "0x8838B9DA"
  375. ]
  376. },
  377. "heavy": {
  378. "instance_soid": "0x4000000000000003",
  379. "definition_hash": "0x6F22FCEC",
  380. "level": 106,
  381. "quantity": 1,
  382. "plugs": [
  383. "0xD91C01C9",
  384. "0x37F1078F",
  385. "0x8CE3FE36",
  386. "0x151FBDCC",
  387. "0x9A6B194D",
  388. null,
  389. "0xAEBAE371",
  390. "0x9B283E92"
  391. ]
  392. },
  393. "helmet": {
  394. "instance_soid": "0x4000000000000004",
  395. "definition_hash": "0xF2994B80",
  396. "level": 106,
  397. "quantity": 1,
  398. "plugs": [
  399. "0xEC2137DA",
  400. "0x301CB225",
  401. "0x301CB225",
  402. null,
  403. "0x54CCDFF2",
  404. "0xA4D6D964",
  405. "0x39CBE5E4",
  406. "0x85480BD0",
  407. "0xA81461CE",
  408. "0x01E90FE0",
  409. "0x29E6A60B"
  410. ]
  411. },
  412. "gauntlets": {
  413. "instance_soid": "0x4000000000000005",
  414. "definition_hash": "0x61868551",
  415. "level": 106,
  416. "quantity": 1,
  417. "plugs": [
  418. "0xEC2137DA",
  419. "0x6DE9E6FF",
  420. "0x6DE9E6FF",
  421. null,
  422. "0x54CCDFF2",
  423. "0xA4D6D964",
  424. "0x39CBE5E4",
  425. "0x85480BD0",
  426. "0xA81461CE",
  427. "0x01E90FE0",
  428. "0x29E6A60B"
  429. ]
  430. },
  431. "chest": {
  432. "instance_soid": "0x4000000000000006",
  433. "definition_hash": "0x6F0DBB07",
  434. "level": 106,
  435. "quantity": 1,
  436. "plugs": [
  437. "0xEC2137DA",
  438. "0x62E854BB",
  439. "0x62E854BB",
  440. null,
  441. "0x54CCDFF2",
  442. "0xA4D6D964",
  443. "0x39CBE5E4",
  444. "0x85480BD0",
  445. "0xA81461CE",
  446. "0x01E90FE0",
  447. "0x29E6A60B"
  448. ]
  449. },
  450. "legs": {
  451. "instance_soid": "0x4000000000000007",
  452. "definition_hash": "0x0B8E36D0",
  453. "level": 106,
  454. "quantity": 1,
  455. "plugs": [
  456. "0xEC2137DA",
  457. "0x22299393",
  458. "0x22299393",
  459. "0x64FC1692",
  460. "0x54CCDFF2",
  461. "0x13EFAFB3",
  462. "0x85480BD0",
  463. "0xE92D2525",
  464. "0x056CABAD",
  465. "0x37661C63",
  466. "0x29E6A60B"
  467. ]
  468. },
  469. "class_item": {
  470. "instance_soid": "0x4000000000000008",
  471. "definition_hash": "0xB578E716",
  472. "level": 106,
  473. "quantity": 1,
  474. "plugs": [
  475. "0x1CB5C883",
  476. "0x43C9A775",
  477. "0x43C9A775",
  478. null,
  479. "0x54CCDFF2",
  480. "0xA4D6D964",
  481. "0x29E6A60B"
  482. ]
  483. },
  484. "ghost": {
  485. "instance_soid": "0x4000000000000009",
  486. "definition_hash": "0xF6856969",
  487. "level": 0,
  488. "quantity": 1,
  489. "plugs": ["0xF17B4841", null, "0xE9B5CF11", "0x909FBBEE"]
  490. },
  491. "vehicle": {
  492. "instance_soid": "0x400000000000000A",
  493. "definition_hash": "0xC5C22F78",
  494. "level": 0,
  495. "quantity": 1,
  496. "plugs": [
  497. "0xFD368D30",
  498. "0xB185D1D6",
  499. "0x8A78C491",
  500. "0x41219514",
  501. "0x5084C54E"
  502. ]
  503. },
  504. "ship": {
  505. "instance_soid": "0x400000000000000B",
  506. "definition_hash": "0x1174E2EA",
  507. "level": 0,
  508. "quantity": 1,
  509. "plugs": ["0xFD368D30", "0x52E2AE2F"]
  510. },
  511. "subclass": {
  512. "instance_soid": "0x400000000000000C",
  513. "definition_hash": "0xD8B8D1FC",
  514. "level": 0,
  515. "quantity": 1,
  516. "plugs": []
  517. },
  518. "clan_banner": {
  519. "instance_soid": "0x400000000000000D",
  520. "definition_hash": "0x570EAA71",
  521. "level": 0,
  522. "quantity": 1,
  523. "plugs": [
  524. "0x36BF5F04",
  525. "0x2249F5C8",
  526. "0xE01AE367",
  527. "0x63A3BA12",
  528. "0x5CE104E5",
  529. "0x7CCC4828"
  530. ]
  531. },
  532. "emblem": {
  533. "instance_soid": "0x400000000000000E",
  534. "definition_hash": "0x71B4CC1A",
  535. "level": 0,
  536. "quantity": 1,
  537. "plugs": []
  538. },
  539. "emote": {
  540. "instance_soid": "0x400000000000000F",
  541. "definition_hash": "0x7979AE7D",
  542. "level": 0,
  543. "quantity": 1,
  544. "plugs": []
  545. },
  546. "finisher": {
  547. "instance_soid": "0x4000000000000100",
  548. "definition_hash": "0x09183EEF",
  549. "level": 0,
  550. "quantity": 1,
  551. "plugs": []
  552. }
  553. },
  554. "inventory": [
  555. {
  556. "instance_soid": "0x4000000000000011",
  557. "definition_hash": "0x3E7B47F8",
  558. "level": 106,
  559. "quantity": 1,
  560. "plugs": null
  561. },
  562. {
  563. "instance_soid": "0x4000000000000012",
  564. "definition_hash": "0x26275FBA",
  565. "level": 106,
  566. "quantity": 1,
  567. "plugs": null
  568. },
  569. {
  570. "instance_soid": "0x4000000000000013",
  571. "definition_hash": "0xE9E6B958",
  572. "level": 106,
  573. "quantity": 1,
  574. "plugs": null
  575. },
  576. {
  577. "instance_soid": "0x4000000000000014",
  578. "definition_hash": "0xCA3F1095",
  579. "level": 106,
  580. "quantity": 1,
  581. "plugs": null
  582. },
  583. {
  584. "instance_soid": "0x4000000000000015",
  585. "definition_hash": "0xC4916786",
  586. "level": 106,
  587. "quantity": 1,
  588. "plugs": null
  589. },
  590. {
  591. "instance_soid": "0x4000000000000016",
  592. "definition_hash": "0xA25B8F8F",
  593. "level": 106,
  594. "quantity": 1,
  595. "plugs": null
  596. },
  597. {
  598. "instance_soid": "0x4000000000000017",
  599. "definition_hash": "0xDC0DA337",
  600. "level": 106,
  601. "quantity": 1,
  602. "plugs": null
  603. },
  604. {
  605. "instance_soid": "0x4000000000000018",
  606. "definition_hash": "0xDEF8BAA5",
  607. "level": 106,
  608. "quantity": 1,
  609. "plugs": null
  610. },
  611. {
  612. "instance_soid": "0x4000000000000019",
  613. "definition_hash": "0xDBF8EB6E",
  614. "level": 106,
  615. "quantity": 1,
  616. "plugs": null
  617. },
  618. {
  619. "instance_soid": "0x400000000000001A",
  620. "definition_hash": "0xA1D55C26",
  621. "level": 106,
  622. "quantity": 1,
  623. "plugs": null
  624. },
  625. {
  626. "instance_soid": "0x400000000000001B",
  627. "definition_hash": "0x670F94F7",
  628. "level": 106,
  629. "quantity": 1,
  630. "plugs": null
  631. },
  632. {
  633. "instance_soid": "0x400000000000001C",
  634. "definition_hash": "0x40B7F441",
  635. "level": 106,
  636. "quantity": 1,
  637. "plugs": null
  638. },
  639. {
  640. "instance_soid": "0x400000000000001D",
  641. "definition_hash": "0xD2DBA199",
  642. "level": 106,
  643. "quantity": 1,
  644. "plugs": null
  645. },
  646. {
  647. "instance_soid": "0x400000000000001E",
  648. "definition_hash": "0x6F5C089C",
  649. "level": 106,
  650. "quantity": 1,
  651. "plugs": null
  652. },
  653. {
  654. "instance_soid": "0x400000000000001F",
  655. "definition_hash": "0xA859BCA8",
  656. "level": 106,
  657. "quantity": 1,
  658. "plugs": null
  659. },
  660. {
  661. "instance_soid": "0x4000000000000020",
  662. "definition_hash": "0x65AD4E39",
  663. "level": 106,
  664. "quantity": 1,
  665. "plugs": null
  666. },
  667. {
  668. "instance_soid": "0x4000000000000021",
  669. "definition_hash": "0x5EFA7F9F",
  670. "level": 106,
  671. "quantity": 1,
  672. "plugs": null
  673. },
  674. {
  675. "instance_soid": "0x4000000000000022",
  676. "definition_hash": "0x1489642B",
  677. "level": 106,
  678. "quantity": 1,
  679. "plugs": null
  680. },
  681. {
  682. "instance_soid": "0x4000000000000023",
  683. "definition_hash": "0xC5162C2E",
  684. "level": 106,
  685. "quantity": 1,
  686. "plugs": null
  687. },
  688. {
  689. "instance_soid": "0x4000000000000024",
  690. "definition_hash": "0x27559F11",
  691. "level": 106,
  692. "quantity": 1,
  693. "plugs": null
  694. },
  695. {
  696. "instance_soid": "0x4000000000000025",
  697. "definition_hash": "0xD4DFDFE8",
  698. "level": 106,
  699. "quantity": 1,
  700. "plugs": null
  701. },
  702. {
  703. "instance_soid": "0x4000000000000026",
  704. "definition_hash": "0x34AD4160",
  705. "level": 106,
  706. "quantity": 1,
  707. "plugs": null
  708. },
  709. {
  710. "instance_soid": "0x4000000000000027",
  711. "definition_hash": "0x1684FA42",
  712. "level": 106,
  713. "quantity": 1,
  714. "plugs": null
  715. },
  716. {
  717. "instance_soid": "0x4000000000000028",
  718. "definition_hash": "0x0B8D3D9D",
  719. "level": 106,
  720. "quantity": 1,
  721. "plugs": null
  722. },
  723. {
  724. "instance_soid": "0x4000000000000029",
  725. "definition_hash": "0xF685696A",
  726. "level": 0,
  727. "quantity": 1,
  728. "plugs": null
  729. },
  730. {
  731. "instance_soid": "0x400000000000002A",
  732. "definition_hash": "0x3083B063",
  733. "level": 0,
  734. "quantity": 1,
  735. "plugs": null
  736. },
  737. {
  738. "instance_soid": "0x400000000000002B",
  739. "definition_hash": "0x35EE8905",
  740. "level": 0,
  741. "quantity": 1,
  742. "plugs": null
  743. },
  744. {
  745. "instance_soid": "0x400000000000002C",
  746. "definition_hash": "0x4E86F9EC",
  747. "level": 0,
  748. "quantity": 1,
  749. "plugs": null
  750. },
  751. {
  752. "instance_soid": "0x400000000000002D",
  753. "definition_hash": "0x71A87B55",
  754. "level": 0,
  755. "quantity": 1,
  756. "plugs": null
  757. },
  758. {
  759. "instance_soid": "0x400000000000002E",
  760. "definition_hash": "0xA984374D",
  761. "level": 0,
  762. "quantity": 1,
  763. "plugs": null
  764. },
  765. {
  766. "instance_soid": "0x400000000000002F",
  767. "definition_hash": "0xD8ACA0CE",
  768. "level": 0,
  769. "quantity": 1,
  770. "plugs": null
  771. },
  772. {
  773. "instance_soid": "0x4000000000000030",
  774. "definition_hash": "0xC7CBC15C",
  775. "level": 0,
  776. "quantity": 1,
  777. "plugs": null
  778. },
  779. {
  780. "instance_soid": "0x4000000000000031",
  781. "definition_hash": "0x11C83768",
  782. "level": 0,
  783. "quantity": 1,
  784. "plugs": null
  785. },
  786. {
  787. "instance_soid": "0x4000000000000032",
  788. "definition_hash": "0x5A6603AD",
  789. "level": 0,
  790. "quantity": 1,
  791. "plugs": null,
  792. "flags": 0
  793. },
  794. {
  795. "instance_soid": "0x4000000000000033",
  796. "definition_hash": "0x4D24AB5D",
  797. "level": 0,
  798. "quantity": 1,
  799. "plugs": null,
  800. "flags": 0
  801. },
  802. {
  803. "instance_soid": "0x4000000000000034",
  804. "definition_hash": "0x564C7E4C",
  805. "level": 0,
  806. "quantity": 1,
  807. "plugs": null,
  808. "flags": 0
  809. },
  810. {
  811. "instance_soid": "0x4000000000000010",
  812. "definition_hash": "0xEF255BFB",
  813. "level": 0,
  814. "quantity": 1,
  815. "plugs": null,
  816. "flags": 0
  817. },
  818. {
  819. "instance_soid": "0x4000000000000035",
  820. "definition_hash": "0x05B1C785",
  821. "level": 0,
  822. "quantity": 1,
  823. "plugs": null
  824. },
  825. {
  826. "instance_soid": "0x4000000000000036",
  827. "definition_hash": "0xA3CE6FD4",
  828. "level": 0,
  829. "quantity": 1,
  830. "plugs": null
  831. },
  832. {
  833. "instance_soid": "0x4000000000000037",
  834. "definition_hash": "0xE0B2E67F",
  835. "level": 0,
  836. "quantity": 1,
  837. "plugs": null
  838. }
  839. ]
  840. },
  841. {
  842. "soid": "0x9EAA300100100102",
  843. "race": 0,
  844. "gender": 0,
  845. "class": 0,
  846. "movement_ability": 6,
  847. "grenade_ability": 7,
  848. "super_ability": 10,
  849. "melee_ability": 11,
  850. "class_ability": 2,
  851. "level": 50,
  852. "accepted": true,
  853. "preview_available": true,
  854. "appearance_value": 1.0,
  855. "last_orbited_destination": "0x125CF0E7",
  856. "content_bypass": true,
  857. "equipment": {
  858. "kinetic": {
  859. "instance_soid": "0x4000000000000065",
  860. "definition_hash": "0xE516CF40",
  861. "level": 106,
  862. "quantity": 1,
  863. "plugs": [
  864. "0xAB5218B6",
  865. "0xCCA5773B",
  866. "0x065F4ED0",
  867. "0x45A0BDD7",
  868. "0x1B6B4DB8",
  869. "0xFD368D30",
  870. "0x8A8536B5",
  871. "0x8C84EA53",
  872. null,
  873. "0x8838B9DA",
  874. null,
  875. "0xE713379A"
  876. ]
  877. },
  878. "energy": {
  879. "instance_soid": "0x4000000000000066",
  880. "definition_hash": "0x4156C94D",
  881. "level": 106,
  882. "quantity": 1,
  883. "plugs": [
  884. "0x3B667F9C",
  885. "0x4F68703D",
  886. "0x065F4ED0",
  887. "0xF2A907DF",
  888. "0x8CB6409D",
  889. "0xFD368D30",
  890. "0x8A8536B5",
  891. null,
  892. null,
  893. "0x8838B9DA"
  894. ]
  895. },
  896. "heavy": {
  897. "instance_soid": "0x4000000000000067",
  898. "definition_hash": "0x6F22FCEC",
  899. "level": 106,
  900. "quantity": 1,
  901. "plugs": [
  902. "0xD91C01C9",
  903. "0x37F1078F",
  904. "0x8CE3FE36",
  905. "0x151FBDCC",
  906. "0x9A6B194D",
  907. null,
  908. "0xAEBAE371",
  909. "0x9B283E92"
  910. ]
  911. },
  912. "helmet": {
  913. "instance_soid": "0x4000000000000068",
  914. "definition_hash": "0xECB479E4",
  915. "level": 106,
  916. "quantity": 1,
  917. "plugs": [
  918. "0xEC2137DA",
  919. "0x301CB225",
  920. "0x301CB225",
  921. null,
  922. "0x54CCDFF2",
  923. "0xA4D6D964",
  924. "0x39CBE5E4",
  925. "0x85480BD0",
  926. "0xA81461CE",
  927. "0x01E90FE0",
  928. "0x29E6A60B"
  929. ]
  930. },
  931. "gauntlets": {
  932. "instance_soid": "0x4000000000000069",
  933. "definition_hash": "0xE98EBABD",
  934. "level": 106,
  935. "quantity": 1,
  936. "plugs": [
  937. "0xEC2137DA",
  938. "0x6DE9E6FF",
  939. "0x6DE9E6FF",
  940. null,
  941. "0x54CCDFF2",
  942. "0xA4D6D964",
  943. "0x39CBE5E4",
  944. "0x85480BD0",
  945. "0xA81461CE",
  946. "0x01E90FE0",
  947. "0x29E6A60B"
  948. ]
  949. },
  950. "chest": {
  951. "instance_soid": "0x400000000000006A",
  952. "definition_hash": "0x542FC543",
  953. "level": 106,
  954. "quantity": 1,
  955. "plugs": [
  956. "0xEC2137DA",
  957. "0x62E854BB",
  958. "0x62E854BB",
  959. null,
  960. "0x54CCDFF2",
  961. "0xA4D6D964",
  962. "0x39CBE5E4",
  963. "0x85480BD0",
  964. "0xA81461CE",
  965. "0x01E90FE0",
  966. "0x29E6A60B"
  967. ]
  968. },
  969. "legs": {
  970. "instance_soid": "0x400000000000006B",
  971. "definition_hash": "0xD2F64E86",
  972. "level": 106,
  973. "quantity": 1,
  974. "plugs": [
  975. "0xEC2137DA",
  976. "0x22299393",
  977. "0x22299393",
  978. "0xC130B5BC",
  979. "0x54CCDFF2",
  980. "0x13EFAFB3",
  981. "0x85480BD0",
  982. "0xE92D2525",
  983. "0x01E90FE0",
  984. "0x37661C63",
  985. "0x29E6A60B"
  986. ]
  987. },
  988. "class_item": {
  989. "instance_soid": "0x400000000000006C",
  990. "definition_hash": "0x295F70BA",
  991. "level": 106,
  992. "quantity": 1,
  993. "plugs": [
  994. "0xEC2137DA",
  995. "0x43C9A775",
  996. "0x43C9A775",
  997. null,
  998. "0x54CCDFF2",
  999. "0xA4D6D964",
  1000. "0x29E6A60B"
  1001. ]
  1002. },
  1003. "ghost": {
  1004. "instance_soid": "0x400000000000006D",
  1005. "definition_hash": "0xF6856969",
  1006. "level": 0,
  1007. "quantity": 1,
  1008. "plugs": ["0xF17B4841", null, "0xE9B5CF11", "0x909FBBEE"]
  1009. },
  1010. "vehicle": {
  1011. "instance_soid": "0x400000000000006E",
  1012. "definition_hash": "0xC5C22F78",
  1013. "level": 0,
  1014. "quantity": 1,
  1015. "plugs": [
  1016. "0xFD368D30",
  1017. "0xB185D1D6",
  1018. "0x8A78C491",
  1019. "0x41219514",
  1020. "0x5084C54E"
  1021. ]
  1022. },
  1023. "ship": {
  1024. "instance_soid": "0x400000000000006F",
  1025. "definition_hash": "0x1174E2EA",
  1026. "level": 0,
  1027. "quantity": 1,
  1028. "plugs": ["0xFD368D30", "0x52E2AE2F"]
  1029. },
  1030. "subclass": {
  1031. "instance_soid": "0x4000000000000070",
  1032. "definition_hash": "0xB920CE9A",
  1033. "level": 0,
  1034. "quantity": 1,
  1035. "plugs": []
  1036. },
  1037. "clan_banner": {
  1038. "instance_soid": "0x4000000000000071",
  1039. "definition_hash": "0x570EAA71",
  1040. "level": 0,
  1041. "quantity": 1,
  1042. "plugs": [
  1043. "0x36BF5F04",
  1044. "0x2249F5C8",
  1045. "0xE01AE367",
  1046. "0x63A3BA12",
  1047. "0x5CE104E5",
  1048. "0x7CCC4828"
  1049. ]
  1050. },
  1051. "emblem": {
  1052. "instance_soid": "0x4000000000000072",
  1053. "definition_hash": "0x71B4CC1B",
  1054. "level": 0,
  1055. "quantity": 1,
  1056. "plugs": []
  1057. },
  1058. "emote": {
  1059. "instance_soid": "0x4000000000000073",
  1060. "definition_hash": "0x7979AE7D",
  1061. "level": 0,
  1062. "quantity": 1,
  1063. "plugs": []
  1064. },
  1065. "finisher": {
  1066. "instance_soid": "0x4000000000000101",
  1067. "definition_hash": "0x09183EEF",
  1068. "level": 0,
  1069. "quantity": 1,
  1070. "plugs": []
  1071. }
  1072. },
  1073. "inventory": [
  1074. {
  1075. "instance_soid": "0x4000000000000075",
  1076. "definition_hash": "0x3E7B47F8",
  1077. "level": 106,
  1078. "quantity": 1,
  1079. "plugs": null
  1080. },
  1081. {
  1082. "instance_soid": "0x4000000000000076",
  1083. "definition_hash": "0x26275FBA",
  1084. "level": 106,
  1085. "quantity": 1,
  1086. "plugs": null
  1087. },
  1088. {
  1089. "instance_soid": "0x4000000000000077",
  1090. "definition_hash": "0xE9E6B958",
  1091. "level": 106,
  1092. "quantity": 1,
  1093. "plugs": null
  1094. },
  1095. {
  1096. "instance_soid": "0x4000000000000078",
  1097. "definition_hash": "0xCA3F1095",
  1098. "level": 106,
  1099. "quantity": 1,
  1100. "plugs": null
  1101. },
  1102. {
  1103. "instance_soid": "0x4000000000000079",
  1104. "definition_hash": "0xC4916786",
  1105. "level": 106,
  1106. "quantity": 1,
  1107. "plugs": null
  1108. },
  1109. {
  1110. "instance_soid": "0x400000000000007A",
  1111. "definition_hash": "0xA25B8F8F",
  1112. "level": 106,
  1113. "quantity": 1,
  1114. "plugs": null
  1115. },
  1116. {
  1117. "instance_soid": "0x400000000000007B",
  1118. "definition_hash": "0xDC0DA337",
  1119. "level": 106,
  1120. "quantity": 1,
  1121. "plugs": null
  1122. },
  1123. {
  1124. "instance_soid": "0x400000000000007C",
  1125. "definition_hash": "0xDEF8BAA5",
  1126. "level": 106,
  1127. "quantity": 1,
  1128. "plugs": null
  1129. },
  1130. {
  1131. "instance_soid": "0x400000000000007D",
  1132. "definition_hash": "0xDBF8EB6E",
  1133. "level": 106,
  1134. "quantity": 1,
  1135. "plugs": null
  1136. },
  1137. {
  1138. "instance_soid": "0x400000000000007E",
  1139. "definition_hash": "0x51ADBEB4",
  1140. "level": 106,
  1141. "quantity": 1,
  1142. "plugs": null
  1143. },
  1144. {
  1145. "instance_soid": "0x400000000000007F",
  1146. "definition_hash": "0xF2AF51CD",
  1147. "level": 106,
  1148. "quantity": 1,
  1149. "plugs": null
  1150. },
  1151. {
  1152. "instance_soid": "0x4000000000000080",
  1153. "definition_hash": "0x966B9873",
  1154. "level": 106,
  1155. "quantity": 1,
  1156. "plugs": null
  1157. },
  1158. {
  1159. "instance_soid": "0x4000000000000081",
  1160. "definition_hash": "0x1AAAE68F",
  1161. "level": 106,
  1162. "quantity": 1,
  1163. "plugs": null
  1164. },
  1165. {
  1166. "instance_soid": "0x4000000000000082",
  1167. "definition_hash": "0x19DFB9AA",
  1168. "level": 106,
  1169. "quantity": 1,
  1170. "plugs": null
  1171. },
  1172. {
  1173. "instance_soid": "0x4000000000000083",
  1174. "definition_hash": "0xF435CE34",
  1175. "level": 106,
  1176. "quantity": 1,
  1177. "plugs": null
  1178. },
  1179. {
  1180. "instance_soid": "0x4000000000000084",
  1181. "definition_hash": "0x9537614D",
  1182. "level": 106,
  1183. "quantity": 1,
  1184. "plugs": null
  1185. },
  1186. {
  1187. "instance_soid": "0x4000000000000085",
  1188. "definition_hash": "0xF29BFEF3",
  1189. "level": 106,
  1190. "quantity": 1,
  1191. "plugs": null
  1192. },
  1193. {
  1194. "instance_soid": "0x4000000000000086",
  1195. "definition_hash": "0xBD32F60F",
  1196. "level": 106,
  1197. "quantity": 1,
  1198. "plugs": null
  1199. },
  1200. {
  1201. "instance_soid": "0x4000000000000087",
  1202. "definition_hash": "0x7610202A",
  1203. "level": 106,
  1204. "quantity": 1,
  1205. "plugs": null
  1206. },
  1207. {
  1208. "instance_soid": "0x4000000000000088",
  1209. "definition_hash": "0x103CB34D",
  1210. "level": 106,
  1211. "quantity": 1,
  1212. "plugs": null
  1213. },
  1214. {
  1215. "instance_soid": "0x4000000000000089",
  1216. "definition_hash": "0x3723973C",
  1217. "level": 106,
  1218. "quantity": 1,
  1219. "plugs": null
  1220. },
  1221. {
  1222. "instance_soid": "0x400000000000008A",
  1223. "definition_hash": "0x9918CAA4",
  1224. "level": 106,
  1225. "quantity": 1,
  1226. "plugs": null
  1227. },
  1228. {
  1229. "instance_soid": "0x400000000000008B",
  1230. "definition_hash": "0x1287C646",
  1231. "level": 106,
  1232. "quantity": 1,
  1233. "plugs": null
  1234. },
  1235. {
  1236. "instance_soid": "0x400000000000008C",
  1237. "definition_hash": "0xC56EBCF9",
  1238. "level": 106,
  1239. "quantity": 1,
  1240. "plugs": null
  1241. },
  1242. {
  1243. "instance_soid": "0x400000000000008D",
  1244. "definition_hash": "0xF6856968",
  1245. "level": 0,
  1246. "quantity": 1,
  1247. "plugs": null
  1248. },
  1249. {
  1250. "instance_soid": "0x400000000000008E",
  1251. "definition_hash": "0xAA583AC8",
  1252. "level": 0,
  1253. "quantity": 1,
  1254. "plugs": null
  1255. },
  1256. {
  1257. "instance_soid": "0x400000000000008F",
  1258. "definition_hash": "0x45F41F39",
  1259. "level": 0,
  1260. "quantity": 1,
  1261. "plugs": null
  1262. },
  1263. {
  1264. "instance_soid": "0x4000000000000090",
  1265. "definition_hash": "0x7B387201",
  1266. "level": 0,
  1267. "quantity": 1,
  1268. "plugs": null
  1269. },
  1270. {
  1271. "instance_soid": "0x4000000000000091",
  1272. "definition_hash": "0xCAE2C4B0",
  1273. "level": 0,
  1274. "quantity": 1,
  1275. "plugs": null
  1276. },
  1277. {
  1278. "instance_soid": "0x4000000000000092",
  1279. "definition_hash": "0xF322966C",
  1280. "level": 0,
  1281. "quantity": 1,
  1282. "plugs": null
  1283. },
  1284. {
  1285. "instance_soid": "0x4000000000000093",
  1286. "definition_hash": "0xEAE9FA4A",
  1287. "level": 0,
  1288. "quantity": 1,
  1289. "plugs": null
  1290. },
  1291. {
  1292. "instance_soid": "0x4000000000000094",
  1293. "definition_hash": "0xC7CBC15C",
  1294. "level": 0,
  1295. "quantity": 1,
  1296. "plugs": null
  1297. },
  1298. {
  1299. "instance_soid": "0x4000000000000095",
  1300. "definition_hash": "0x11C83768",
  1301. "level": 0,
  1302. "quantity": 1,
  1303. "plugs": null
  1304. },
  1305. {
  1306. "instance_soid": "0x4000000000000096",
  1307. "definition_hash": "0xBB3CAA51",
  1308. "level": 0,
  1309. "quantity": 1,
  1310. "plugs": null,
  1311. "flags": 0
  1312. },
  1313. {
  1314. "instance_soid": "0x4000000000000097",
  1315. "definition_hash": "0xCF1C4EF3",
  1316. "level": 0,
  1317. "quantity": 1,
  1318. "plugs": null,
  1319. "flags": 0
  1320. },
  1321. {
  1322. "instance_soid": "0x4000000000000098",
  1323. "definition_hash": "0x29905E7A",
  1324. "level": 0,
  1325. "quantity": 1,
  1326. "plugs": null,
  1327. "flags": 0
  1328. },
  1329. {
  1330. "instance_soid": "0x4000000000000074",
  1331. "definition_hash": "0xAA223B79",
  1332. "level": 0,
  1333. "quantity": 1,
  1334. "plugs": null,
  1335. "flags": 0
  1336. },
  1337. {
  1338. "instance_soid": "0x4000000000000099",
  1339. "definition_hash": "0x1FA2AD3E",
  1340. "level": 0,
  1341. "quantity": 1,
  1342. "plugs": null
  1343. },
  1344. {
  1345. "instance_soid": "0x400000000000009A",
  1346. "definition_hash": "0x30A14DDC",
  1347. "level": 0,
  1348. "quantity": 1,
  1349. "plugs": null
  1350. },
  1351. {
  1352. "instance_soid": "0x400000000000009B",
  1353. "definition_hash": "0x46D82092",
  1354. "level": 0,
  1355. "quantity": 1,
  1356. "plugs": null
  1357. }
  1358. ]
  1359. },
  1360. {
  1361. "soid": "0x9EAA300100100103",
  1362. "race": 0,
  1363. "gender": 0,
  1364. "class": 2,
  1365. "movement_ability": 5,
  1366. "grenade_ability": 7,
  1367. "super_ability": 10,
  1368. "melee_ability": 11,
  1369. "class_ability": 2,
  1370. "level": 50,
  1371. "accepted": true,
  1372. "preview_available": true,
  1373. "appearance_value": 1.0,
  1374. "last_orbited_destination": "0x125CF0E7",
  1375. "content_bypass": true,
  1376. "equipment": {
  1377. "kinetic": {
  1378. "instance_soid": "0x40000000000000C9",
  1379. "definition_hash": "0xE516CF40",
  1380. "level": 106,
  1381. "quantity": 1,
  1382. "plugs": [
  1383. "0xAB5218B6",
  1384. "0xCCA5773B",
  1385. "0x065F4ED0",
  1386. "0x45A0BDD7",
  1387. "0x1B6B4DB8",
  1388. "0xFD368D30",
  1389. "0x8A8536B5",
  1390. "0x8C84EA53",
  1391. null,
  1392. "0x8838B9DA",
  1393. null,
  1394. "0xE713379A"
  1395. ]
  1396. },
  1397. "energy": {
  1398. "instance_soid": "0x40000000000000CA",
  1399. "definition_hash": "0x4156C94D",
  1400. "level": 106,
  1401. "quantity": 1,
  1402. "plugs": [
  1403. "0x3B667F9C",
  1404. "0x4F68703D",
  1405. "0x065F4ED0",
  1406. "0xF2A907DF",
  1407. "0x8CB6409D",
  1408. "0xFD368D30",
  1409. "0x8A8536B5",
  1410. null,
  1411. null,
  1412. "0x8838B9DA"
  1413. ]
  1414. },
  1415. "heavy": {
  1416. "instance_soid": "0x40000000000000CB",
  1417. "definition_hash": "0x6F22FCEC",
  1418. "level": 106,
  1419. "quantity": 1,
  1420. "plugs": [
  1421. "0xD91C01C9",
  1422. "0x37F1078F",
  1423. "0x8CE3FE36",
  1424. "0x151FBDCC",
  1425. "0x9A6B194D",
  1426. null,
  1427. "0xAEBAE371",
  1428. "0x9B283E92"
  1429. ]
  1430. },
  1431. "helmet": {
  1432. "instance_soid": "0x40000000000000CC",
  1433. "definition_hash": "0xEA042965",
  1434. "level": 106,
  1435. "quantity": 1,
  1436. "plugs": [
  1437. "0xEC2137DA",
  1438. "0x301CB225",
  1439. "0x301CB225",
  1440. null,
  1441. "0x54CCDFF2",
  1442. "0xA4D6D964",
  1443. "0x39CBE5E4",
  1444. "0x85480BD0",
  1445. "0xA81461CE",
  1446. "0x01E90FE0",
  1447. "0x29E6A60B"
  1448. ]
  1449. },
  1450. "gauntlets": {
  1451. "instance_soid": "0x40000000000000CD",
  1452. "definition_hash": "0x188C5834",
  1453. "level": 106,
  1454. "quantity": 1,
  1455. "plugs": [
  1456. "0xEC2137DA",
  1457. "0x6DE9E6FF",
  1458. "0x6DE9E6FF",
  1459. null,
  1460. "0x54CCDFF2",
  1461. "0xA4D6D964",
  1462. "0x39CBE5E4",
  1463. "0x85480BD0",
  1464. "0xA81461CE",
  1465. "0x01E90FE0",
  1466. "0x29E6A60B"
  1467. ]
  1468. },
  1469. "chest": {
  1470. "instance_soid": "0x40000000000000CE",
  1471. "definition_hash": "0xF8689C4C",
  1472. "level": 106,
  1473. "quantity": 1,
  1474. "plugs": [
  1475. "0xEC2137DA",
  1476. "0x62E854BB",
  1477. "0x62E854BB",
  1478. null,
  1479. "0x54CCDFF2",
  1480. "0xA4D6D964",
  1481. "0x39CBE5E4",
  1482. "0x85480BD0",
  1483. "0xA81461CE",
  1484. "0x01E90FE0",
  1485. "0x29E6A60B"
  1486. ]
  1487. },
  1488. "legs": {
  1489. "instance_soid": "0x40000000000000CF",
  1490. "definition_hash": "0x083E04B6",
  1491. "level": 106,
  1492. "quantity": 1,
  1493. "plugs": [
  1494. "0xEC2137DA",
  1495. "0x22299393",
  1496. "0x22299393",
  1497. "0xC78E19B1",
  1498. "0x54CCDFF2",
  1499. "0x13EFAFB3",
  1500. "0x85480BD0",
  1501. "0xBAE01BEB",
  1502. "0x056CABAD",
  1503. "0xF37F6509",
  1504. "0x29E6A60B"
  1505. ]
  1506. },
  1507. "class_item": {
  1508. "instance_soid": "0x40000000000000D0",
  1509. "definition_hash": "0x99446581",
  1510. "level": 106,
  1511. "quantity": 1,
  1512. "plugs": [
  1513. "0x1CB5C883",
  1514. "0x43C9A775",
  1515. "0x43C9A775",
  1516. null,
  1517. "0x54CCDFF2",
  1518. "0xA4D6D964",
  1519. "0x29E6A60B"
  1520. ]
  1521. },
  1522. "ghost": {
  1523. "instance_soid": "0x40000000000000D1",
  1524. "definition_hash": "0xF6856969",
  1525. "level": 0,
  1526. "quantity": 1,
  1527. "plugs": ["0xF17B4841", null, "0xE9B5CF11", "0x909FBBEE"]
  1528. },
  1529. "vehicle": {
  1530. "instance_soid": "0x40000000000000D2",
  1531. "definition_hash": "0xC5C22F78",
  1532. "level": 0,
  1533. "quantity": 1,
  1534. "plugs": [
  1535. "0xFD368D30",
  1536. "0xB185D1D6",
  1537. "0x8A78C491",
  1538. "0x41219514",
  1539. "0x5084C54E"
  1540. ]
  1541. },
  1542. "ship": {
  1543. "instance_soid": "0x40000000000000D3",
  1544. "definition_hash": "0x1174E2EA",
  1545. "level": 0,
  1546. "quantity": 1,
  1547. "plugs": ["0xFD368D30", "0x52E2AE2F"]
  1548. },
  1549. "subclass": {
  1550. "instance_soid": "0x40000000000000D4",
  1551. "definition_hash": "0xCF88FEA5",
  1552. "level": 0,
  1553. "quantity": 1,
  1554. "plugs": []
  1555. },
  1556. "clan_banner": {
  1557. "instance_soid": "0x40000000000000D5",
  1558. "definition_hash": "0x570EAA71",
  1559. "level": 0,
  1560. "quantity": 1,
  1561. "plugs": [
  1562. "0x36BF5F04",
  1563. "0x2249F5C8",
  1564. "0xE01AE367",
  1565. "0x63A3BA12",
  1566. "0x5CE104E5",
  1567. "0x7CCC4828"
  1568. ]
  1569. },
  1570. "emblem": {
  1571. "instance_soid": "0x40000000000000D6",
  1572. "definition_hash": "0x71B4CC19",
  1573. "level": 0,
  1574. "quantity": 1,
  1575. "plugs": []
  1576. },
  1577. "emote": {
  1578. "instance_soid": "0x40000000000000D7",
  1579. "definition_hash": "0x7979AE7D",
  1580. "level": 0,
  1581. "quantity": 1,
  1582. "plugs": []
  1583. },
  1584. "finisher": {
  1585. "instance_soid": "0x4000000000000102",
  1586. "definition_hash": "0x09183EEF",
  1587. "level": 0,
  1588. "quantity": 1,
  1589. "plugs": []
  1590. }
  1591. },
  1592. "inventory": [
  1593. {
  1594. "instance_soid": "0x40000000000000D9",
  1595. "definition_hash": "0x3E7B47F8",
  1596. "level": 106,
  1597. "quantity": 1,
  1598. "plugs": null
  1599. },
  1600. {
  1601. "instance_soid": "0x40000000000000DA",
  1602. "definition_hash": "0x26275FBA",
  1603. "level": 106,
  1604. "quantity": 1,
  1605. "plugs": null
  1606. },
  1607. {
  1608. "instance_soid": "0x40000000000000DB",
  1609. "definition_hash": "0xE9E6B958",
  1610. "level": 106,
  1611. "quantity": 1,
  1612. "plugs": null
  1613. },
  1614. {
  1615. "instance_soid": "0x40000000000000DC",
  1616. "definition_hash": "0xCA3F1095",
  1617. "level": 106,
  1618. "quantity": 1,
  1619. "plugs": null
  1620. },
  1621. {
  1622. "instance_soid": "0x40000000000000DD",
  1623. "definition_hash": "0xC4916786",
  1624. "level": 106,
  1625. "quantity": 1,
  1626. "plugs": null
  1627. },
  1628. {
  1629. "instance_soid": "0x40000000000000DE",
  1630. "definition_hash": "0xA25B8F8F",
  1631. "level": 106,
  1632. "quantity": 1,
  1633. "plugs": null
  1634. },
  1635. {
  1636. "instance_soid": "0x40000000000000DF",
  1637. "definition_hash": "0xDC0DA337",
  1638. "level": 106,
  1639. "quantity": 1,
  1640. "plugs": null
  1641. },
  1642. {
  1643. "instance_soid": "0x40000000000000E0",
  1644. "definition_hash": "0xDEF8BAA5",
  1645. "level": 106,
  1646. "quantity": 1,
  1647. "plugs": null
  1648. },
  1649. {
  1650. "instance_soid": "0x40000000000000E1",
  1651. "definition_hash": "0xDBF8EB6E",
  1652. "level": 106,
  1653. "quantity": 1,
  1654. "plugs": null
  1655. },
  1656. {
  1657. "instance_soid": "0x40000000000000E2",
  1658. "definition_hash": "0x5CA160F5",
  1659. "level": 106,
  1660. "quantity": 1,
  1661. "plugs": null
  1662. },
  1663. {
  1664. "instance_soid": "0x40000000000000E3",
  1665. "definition_hash": "0x0DB45944",
  1666. "level": 106,
  1667. "quantity": 1,
  1668. "plugs": null
  1669. },
  1670. {
  1671. "instance_soid": "0x40000000000000E4",
  1672. "definition_hash": "0xC9F7B53C",
  1673. "level": 106,
  1674. "quantity": 1,
  1675. "plugs": null
  1676. },
  1677. {
  1678. "instance_soid": "0x40000000000000E5",
  1679. "definition_hash": "0x80C7AB6E",
  1680. "level": 106,
  1681. "quantity": 1,
  1682. "plugs": null
  1683. },
  1684. {
  1685. "instance_soid": "0x40000000000000E6",
  1686. "definition_hash": "0x326316B1",
  1687. "level": 106,
  1688. "quantity": 1,
  1689. "plugs": null
  1690. },
  1691. {
  1692. "instance_soid": "0x40000000000000E7",
  1693. "definition_hash": "0x0B117DAB",
  1694. "level": 106,
  1695. "quantity": 1,
  1696. "plugs": null
  1697. },
  1698. {
  1699. "instance_soid": "0x40000000000000E8",
  1700. "definition_hash": "0xA496C19A",
  1701. "level": 106,
  1702. "quantity": 1,
  1703. "plugs": null
  1704. },
  1705. {
  1706. "instance_soid": "0x40000000000000E9",
  1707. "definition_hash": "0xAA71C8EE",
  1708. "level": 106,
  1709. "quantity": 1,
  1710. "plugs": null
  1711. },
  1712. {
  1713. "instance_soid": "0x40000000000000EA",
  1714. "definition_hash": "0x0B4089D4",
  1715. "level": 106,
  1716. "quantity": 1,
  1717. "plugs": null
  1718. },
  1719. {
  1720. "instance_soid": "0x40000000000000EB",
  1721. "definition_hash": "0xD6B2A7B7",
  1722. "level": 106,
  1723. "quantity": 1,
  1724. "plugs": null
  1725. },
  1726. {
  1727. "instance_soid": "0x40000000000000EC",
  1728. "definition_hash": "0x5B1ACD6C",
  1729. "level": 106,
  1730. "quantity": 1,
  1731. "plugs": null
  1732. },
  1733. {
  1734. "instance_soid": "0x40000000000000ED",
  1735. "definition_hash": "0x28B26925",
  1736. "level": 106,
  1737. "quantity": 1,
  1738. "plugs": null
  1739. },
  1740. {
  1741. "instance_soid": "0x40000000000000EE",
  1742. "definition_hash": "0xDC124D7B",
  1743. "level": 106,
  1744. "quantity": 1,
  1745. "plugs": null
  1746. },
  1747. {
  1748. "instance_soid": "0x40000000000000EF",
  1749. "definition_hash": "0x3D663DA7",
  1750. "level": 106,
  1751. "quantity": 1,
  1752. "plugs": null
  1753. },
  1754. {
  1755. "instance_soid": "0x40000000000000F0",
  1756. "definition_hash": "0x7A1FC812",
  1757. "level": 106,
  1758. "quantity": 1,
  1759. "plugs": null
  1760. },
  1761. {
  1762. "instance_soid": "0x40000000000000F1",
  1763. "definition_hash": "0x3083B063",
  1764. "level": 0,
  1765. "quantity": 1,
  1766. "plugs": null
  1767. },
  1768. {
  1769. "instance_soid": "0x40000000000000F2",
  1770. "definition_hash": "0x2E71E54E",
  1771. "level": 0,
  1772. "quantity": 1,
  1773. "plugs": null
  1774. },
  1775. {
  1776. "instance_soid": "0x40000000000000F3",
  1777. "definition_hash": "0x4E86F9EC",
  1778. "level": 0,
  1779. "quantity": 1,
  1780. "plugs": null
  1781. },
  1782. {
  1783. "instance_soid": "0x40000000000000F4",
  1784. "definition_hash": "0xC9993382",
  1785. "level": 0,
  1786. "quantity": 1,
  1787. "plugs": null
  1788. },
  1789. {
  1790. "instance_soid": "0x40000000000000F5",
  1791. "definition_hash": "0xA984374D",
  1792. "level": 0,
  1793. "quantity": 1,
  1794. "plugs": null
  1795. },
  1796. {
  1797. "instance_soid": "0x40000000000000F6",
  1798. "definition_hash": "0x28155DF4",
  1799. "level": 0,
  1800. "quantity": 1,
  1801. "plugs": null
  1802. },
  1803. {
  1804. "instance_soid": "0x40000000000000F7",
  1805. "definition_hash": "0xD4753C25",
  1806. "level": 0,
  1807. "quantity": 1,
  1808. "plugs": null
  1809. },
  1810. {
  1811. "instance_soid": "0x40000000000000F8",
  1812. "definition_hash": "0xC7CBC15C",
  1813. "level": 0,
  1814. "quantity": 1,
  1815. "plugs": null
  1816. },
  1817. {
  1818. "instance_soid": "0x40000000000000F9",
  1819. "definition_hash": "0x11C83768",
  1820. "level": 0,
  1821. "quantity": 1,
  1822. "plugs": null
  1823. },
  1824. {
  1825. "instance_soid": "0x40000000000000FA",
  1826. "definition_hash": "0x58E8183A",
  1827. "level": 0,
  1828. "quantity": 1,
  1829. "plugs": null,
  1830. "flags": 0
  1831. },
  1832. {
  1833. "instance_soid": "0x40000000000000FB",
  1834. "definition_hash": "0x58F778E0",
  1835. "level": 0,
  1836. "quantity": 1,
  1837. "plugs": null,
  1838. "flags": 0
  1839. },
  1840. {
  1841. "instance_soid": "0x40000000000000FC",
  1842. "definition_hash": "0xCABFBE57",
  1843. "level": 0,
  1844. "quantity": 1,
  1845. "plugs": null,
  1846. "flags": 0
  1847. },
  1848. {
  1849. "instance_soid": "0x40000000000000D8",
  1850. "definition_hash": "0x0F2B9504",
  1851. "level": 0,
  1852. "quantity": 1,
  1853. "plugs": null,
  1854. "flags": 0
  1855. },
  1856. {
  1857. "instance_soid": "0x40000000000000FD",
  1858. "definition_hash": "0xF5095792",
  1859. "level": 0,
  1860. "quantity": 1,
  1861. "plugs": null
  1862. },
  1863. {
  1864. "instance_soid": "0x40000000000000FE",
  1865. "definition_hash": "0xEEF8905A",
  1866. "level": 0,
  1867. "quantity": 1,
  1868. "plugs": null
  1869. },
  1870. {
  1871. "instance_soid": "0x40000000000000FF",
  1872. "definition_hash": "0x6846D9F9",
  1873. "level": 0,
  1874. "quantity": 1,
  1875. "plugs": null
  1876. }
  1877. ]
  1878. }
  1879. ]
  1880. }
  1881. }