BlindBoxAwardConfig.lua 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901
  1. local root = {
  2. {
  3. boxId = 1001,
  4. itemId = 21588,
  5. count = 1,
  6. weightByPrice = 100
  7. },
  8. {
  9. boxId = 1001,
  10. itemId = 20948,
  11. count = 1,
  12. weightByPrice = 100
  13. },
  14. {
  15. boxId = 1001,
  16. itemId = 20043,
  17. count = 1,
  18. weightByPrice = 100
  19. },
  20. {
  21. boxId = 1001,
  22. itemId = 20450,
  23. count = 1,
  24. weightByPrice = 100
  25. },
  26. {
  27. boxId = 1001,
  28. itemId = 21197,
  29. count = 1,
  30. weightByPrice = 100
  31. },
  32. {
  33. boxId = 1001,
  34. itemId = 20465,
  35. count = 1,
  36. weightByPrice = 100
  37. },
  38. {
  39. boxId = 1001,
  40. itemId = 21433,
  41. count = 1,
  42. weightByPrice = 100
  43. },
  44. {
  45. boxId = 1001,
  46. itemId = 20077,
  47. count = 1,
  48. weightByPrice = 100
  49. },
  50. {
  51. boxId = 1001,
  52. itemId = 20918,
  53. count = 1,
  54. weightByPrice = 100
  55. },
  56. {
  57. boxId = 1001,
  58. itemId = 20782,
  59. count = 1,
  60. weightByPrice = 100
  61. },
  62. {
  63. boxId = 1001,
  64. itemId = 20256,
  65. count = 1,
  66. weightByPrice = 100
  67. },
  68. {
  69. boxId = 1001,
  70. itemId = 22535,
  71. count = 1,
  72. weightByPrice = 100
  73. },
  74. {
  75. boxId = 1001,
  76. itemId = 22560,
  77. count = 1,
  78. weightByPrice = 100
  79. },
  80. {
  81. boxId = 1001,
  82. itemId = 22639,
  83. count = 1,
  84. weightByPrice = 100
  85. },
  86. {
  87. boxId = 1001,
  88. itemId = 22668,
  89. count = 1,
  90. weightByPrice = 100
  91. },
  92. {
  93. boxId = 1001,
  94. itemId = 22735,
  95. count = 1,
  96. weightByPrice = 100
  97. },
  98. {
  99. boxId = 1002,
  100. itemId = 21174,
  101. count = 1,
  102. weightByPrice = 100
  103. },
  104. {
  105. boxId = 1002,
  106. itemId = 20343,
  107. count = 1,
  108. weightByPrice = 100
  109. },
  110. {
  111. boxId = 1002,
  112. itemId = 21414,
  113. count = 1,
  114. weightByPrice = 100
  115. },
  116. {
  117. boxId = 1002,
  118. itemId = 20190,
  119. count = 1,
  120. weightByPrice = 100
  121. },
  122. {
  123. boxId = 1002,
  124. itemId = 21002,
  125. count = 1,
  126. weightByPrice = 100
  127. },
  128. {
  129. boxId = 1002,
  130. itemId = 21338,
  131. count = 1,
  132. weightByPrice = 100
  133. },
  134. {
  135. boxId = 1002,
  136. itemId = 21393,
  137. count = 1,
  138. weightByPrice = 100
  139. },
  140. {
  141. boxId = 1002,
  142. itemId = 20563,
  143. count = 1,
  144. weightByPrice = 100
  145. },
  146. {
  147. boxId = 1002,
  148. itemId = 21291,
  149. count = 1,
  150. weightByPrice = 100
  151. },
  152. {
  153. boxId = 1002,
  154. itemId = 20592,
  155. count = 1,
  156. weightByPrice = 100
  157. },
  158. {
  159. boxId = 1002,
  160. itemId = 20491,
  161. count = 1,
  162. weightByPrice = 100
  163. },
  164. {
  165. boxId = 1002,
  166. itemId = 22535,
  167. count = 1,
  168. weightByPrice = 100
  169. },
  170. {
  171. boxId = 1002,
  172. itemId = 22560,
  173. count = 1,
  174. weightByPrice = 100
  175. },
  176. {
  177. boxId = 1002,
  178. itemId = 22639,
  179. count = 1,
  180. weightByPrice = 100
  181. },
  182. {
  183. boxId = 1002,
  184. itemId = 22668,
  185. count = 1,
  186. weightByPrice = 100
  187. },
  188. {
  189. boxId = 1002,
  190. itemId = 22735,
  191. count = 1,
  192. weightByPrice = 100
  193. },
  194. {
  195. boxId = 1003,
  196. itemId = 41203,
  197. count = 1,
  198. weightByPrice = 100
  199. },
  200. {
  201. boxId = 1003,
  202. itemId = 21089,
  203. count = 1,
  204. weightByPrice = 100
  205. },
  206. {
  207. boxId = 1003,
  208. itemId = 20855,
  209. count = 1,
  210. weightByPrice = 100
  211. },
  212. {
  213. boxId = 1003,
  214. itemId = 20147,
  215. count = 1,
  216. weightByPrice = 100
  217. },
  218. {
  219. boxId = 1003,
  220. itemId = 21234,
  221. count = 1,
  222. weightByPrice = 100
  223. },
  224. {
  225. boxId = 1003,
  226. itemId = 21735,
  227. count = 1,
  228. weightByPrice = 100
  229. },
  230. {
  231. boxId = 1003,
  232. itemId = 40412,
  233. count = 1,
  234. weightByPrice = 100
  235. },
  236. {
  237. boxId = 1003,
  238. itemId = 21503,
  239. count = 1,
  240. weightByPrice = 100
  241. },
  242. {
  243. boxId = 1003,
  244. itemId = 20047,
  245. count = 1,
  246. weightByPrice = 100
  247. },
  248. {
  249. boxId = 1003,
  250. itemId = 20595,
  251. count = 1,
  252. weightByPrice = 100
  253. },
  254. {
  255. boxId = 1003,
  256. itemId = 20635,
  257. count = 1,
  258. weightByPrice = 100
  259. },
  260. {
  261. boxId = 1003,
  262. itemId = 22535,
  263. count = 1,
  264. weightByPrice = 100
  265. },
  266. {
  267. boxId = 1003,
  268. itemId = 22560,
  269. count = 1,
  270. weightByPrice = 100
  271. },
  272. {
  273. boxId = 1003,
  274. itemId = 22639,
  275. count = 1,
  276. weightByPrice = 100
  277. },
  278. {
  279. boxId = 1003,
  280. itemId = 22668,
  281. count = 1,
  282. weightByPrice = 100
  283. },
  284. {
  285. boxId = 1003,
  286. itemId = 22735,
  287. count = 1,
  288. weightByPrice = 100
  289. },
  290. {
  291. boxId = 1004,
  292. itemId = 10497,
  293. count = 1,
  294. weightByPrice = 100
  295. },
  296. {
  297. boxId = 1004,
  298. itemId = 20766,
  299. count = 1,
  300. weightByPrice = 100
  301. },
  302. {
  303. boxId = 1004,
  304. itemId = 20145,
  305. count = 1,
  306. weightByPrice = 100
  307. },
  308. {
  309. boxId = 1004,
  310. itemId = 20178,
  311. count = 1,
  312. weightByPrice = 100
  313. },
  314. {
  315. boxId = 1004,
  316. itemId = 40046,
  317. count = 1,
  318. weightByPrice = 100
  319. },
  320. {
  321. boxId = 1004,
  322. itemId = 20532,
  323. count = 1,
  324. weightByPrice = 100
  325. },
  326. {
  327. boxId = 1004,
  328. itemId = 21359,
  329. count = 1,
  330. weightByPrice = 100
  331. },
  332. {
  333. boxId = 1004,
  334. itemId = 20804,
  335. count = 1,
  336. weightByPrice = 100
  337. },
  338. {
  339. boxId = 1004,
  340. itemId = 21463,
  341. count = 1,
  342. weightByPrice = 100
  343. },
  344. {
  345. boxId = 1004,
  346. itemId = 21712,
  347. count = 1,
  348. weightByPrice = 100
  349. },
  350. {
  351. boxId = 1004,
  352. itemId = 21704,
  353. count = 1,
  354. weightByPrice = 100
  355. },
  356. {
  357. boxId = 1004,
  358. itemId = 22535,
  359. count = 1,
  360. weightByPrice = 100
  361. },
  362. {
  363. boxId = 1004,
  364. itemId = 22560,
  365. count = 1,
  366. weightByPrice = 100
  367. },
  368. {
  369. boxId = 1004,
  370. itemId = 22639,
  371. count = 1,
  372. weightByPrice = 100
  373. },
  374. {
  375. boxId = 1004,
  376. itemId = 22668,
  377. count = 1,
  378. weightByPrice = 100
  379. },
  380. {
  381. boxId = 1004,
  382. itemId = 22735,
  383. count = 1,
  384. weightByPrice = 100
  385. },
  386. {
  387. boxId = 1005,
  388. itemId = 10391,
  389. count = 1,
  390. weightByPrice = 100
  391. },
  392. {
  393. boxId = 1005,
  394. itemId = 10073,
  395. count = 1,
  396. weightByPrice = 100
  397. },
  398. {
  399. boxId = 1005,
  400. itemId = 10976,
  401. count = 1,
  402. weightByPrice = 100
  403. },
  404. {
  405. boxId = 1005,
  406. itemId = 10425,
  407. count = 1,
  408. weightByPrice = 100
  409. },
  410. {
  411. boxId = 1005,
  412. itemId = 10884,
  413. count = 1,
  414. weightByPrice = 100
  415. },
  416. {
  417. boxId = 1005,
  418. itemId = 10600,
  419. count = 1,
  420. weightByPrice = 100
  421. },
  422. {
  423. boxId = 1005,
  424. itemId = 10771,
  425. count = 1,
  426. weightByPrice = 100
  427. },
  428. {
  429. boxId = 1005,
  430. itemId = 10487,
  431. count = 1,
  432. weightByPrice = 100
  433. },
  434. {
  435. boxId = 1005,
  436. itemId = 10795,
  437. count = 1,
  438. weightByPrice = 100
  439. },
  440. {
  441. boxId = 1005,
  442. itemId = 10276,
  443. count = 1,
  444. weightByPrice = 100
  445. },
  446. {
  447. boxId = 1005,
  448. itemId = 10697,
  449. count = 1,
  450. weightByPrice = 100
  451. },
  452. {
  453. boxId = 1005,
  454. itemId = 22535,
  455. count = 1,
  456. weightByPrice = 100
  457. },
  458. {
  459. boxId = 1005,
  460. itemId = 22560,
  461. count = 1,
  462. weightByPrice = 100
  463. },
  464. {
  465. boxId = 1005,
  466. itemId = 22639,
  467. count = 1,
  468. weightByPrice = 100
  469. },
  470. {
  471. boxId = 1005,
  472. itemId = 22668,
  473. count = 1,
  474. weightByPrice = 100
  475. },
  476. {
  477. boxId = 1005,
  478. itemId = 22735,
  479. count = 1,
  480. weightByPrice = 100
  481. },
  482. {
  483. boxId = 1006,
  484. itemId = 11388,
  485. count = 1,
  486. weightByPrice = 100
  487. },
  488. {
  489. boxId = 1006,
  490. itemId = 10529,
  491. count = 1,
  492. weightByPrice = 100
  493. },
  494. {
  495. boxId = 1006,
  496. itemId = 10577,
  497. count = 1,
  498. weightByPrice = 100
  499. },
  500. {
  501. boxId = 1006,
  502. itemId = 11031,
  503. count = 1,
  504. weightByPrice = 100
  505. },
  506. {
  507. boxId = 1006,
  508. itemId = 10478,
  509. count = 1,
  510. weightByPrice = 100
  511. },
  512. {
  513. boxId = 1006,
  514. itemId = 10004,
  515. count = 1,
  516. weightByPrice = 100
  517. },
  518. {
  519. boxId = 1006,
  520. itemId = 10501,
  521. count = 1,
  522. weightByPrice = 100
  523. },
  524. {
  525. boxId = 1006,
  526. itemId = 10381,
  527. count = 1,
  528. weightByPrice = 100
  529. },
  530. {
  531. boxId = 1006,
  532. itemId = 10271,
  533. count = 1,
  534. weightByPrice = 100
  535. },
  536. {
  537. boxId = 1006,
  538. itemId = 10057,
  539. count = 1,
  540. weightByPrice = 100
  541. },
  542. {
  543. boxId = 1006,
  544. itemId = 11132,
  545. count = 1,
  546. weightByPrice = 100
  547. },
  548. {
  549. boxId = 1006,
  550. itemId = 22535,
  551. count = 1,
  552. weightByPrice = 100
  553. },
  554. {
  555. boxId = 1006,
  556. itemId = 22560,
  557. count = 1,
  558. weightByPrice = 100
  559. },
  560. {
  561. boxId = 1006,
  562. itemId = 22639,
  563. count = 1,
  564. weightByPrice = 100
  565. },
  566. {
  567. boxId = 1006,
  568. itemId = 22668,
  569. count = 1,
  570. weightByPrice = 100
  571. },
  572. {
  573. boxId = 1006,
  574. itemId = 22735,
  575. count = 1,
  576. weightByPrice = 100
  577. },
  578. {
  579. boxId = 1007,
  580. itemId = 70219,
  581. count = 1,
  582. weightByPrice = 100
  583. },
  584. {
  585. boxId = 1007,
  586. itemId = 11920,
  587. count = 1,
  588. weightByPrice = 100
  589. },
  590. {
  591. boxId = 1007,
  592. itemId = 10989,
  593. count = 1,
  594. weightByPrice = 100
  595. },
  596. {
  597. boxId = 1007,
  598. itemId = 10340,
  599. count = 1,
  600. weightByPrice = 100
  601. },
  602. {
  603. boxId = 1007,
  604. itemId = 10389,
  605. count = 1,
  606. weightByPrice = 100
  607. },
  608. {
  609. boxId = 1007,
  610. itemId = 11742,
  611. count = 1,
  612. weightByPrice = 100
  613. },
  614. {
  615. boxId = 1007,
  616. itemId = 10242,
  617. count = 1,
  618. weightByPrice = 100
  619. },
  620. {
  621. boxId = 1007,
  622. itemId = 10143,
  623. count = 1,
  624. weightByPrice = 100
  625. },
  626. {
  627. boxId = 1007,
  628. itemId = 10037,
  629. count = 1,
  630. weightByPrice = 100
  631. },
  632. {
  633. boxId = 1007,
  634. itemId = 11005,
  635. count = 1,
  636. weightByPrice = 100
  637. },
  638. {
  639. boxId = 1007,
  640. itemId = 10779,
  641. count = 1,
  642. weightByPrice = 100
  643. },
  644. {
  645. boxId = 1007,
  646. itemId = 22535,
  647. count = 1,
  648. weightByPrice = 100
  649. },
  650. {
  651. boxId = 1007,
  652. itemId = 22560,
  653. count = 1,
  654. weightByPrice = 100
  655. },
  656. {
  657. boxId = 1007,
  658. itemId = 22639,
  659. count = 1,
  660. weightByPrice = 100
  661. },
  662. {
  663. boxId = 1007,
  664. itemId = 22668,
  665. count = 1,
  666. weightByPrice = 100
  667. },
  668. {
  669. boxId = 1007,
  670. itemId = 22735,
  671. count = 1,
  672. weightByPrice = 100
  673. },
  674. {
  675. boxId = 1008,
  676. itemId = 21564,
  677. count = 1,
  678. weightByPrice = 100
  679. },
  680. {
  681. boxId = 1008,
  682. itemId = 20592,
  683. count = 1,
  684. weightByPrice = 100
  685. },
  686. {
  687. boxId = 1008,
  688. itemId = 20348,
  689. count = 1,
  690. weightByPrice = 100
  691. },
  692. {
  693. boxId = 1008,
  694. itemId = 20687,
  695. count = 1,
  696. weightByPrice = 100
  697. },
  698. {
  699. boxId = 1008,
  700. itemId = 20450,
  701. count = 1,
  702. weightByPrice = 100
  703. },
  704. {
  705. boxId = 1008,
  706. itemId = 20043,
  707. count = 1,
  708. weightByPrice = 100
  709. },
  710. {
  711. boxId = 1008,
  712. itemId = 21433,
  713. count = 1,
  714. weightByPrice = 100
  715. },
  716. {
  717. boxId = 1008,
  718. itemId = 21205,
  719. count = 1,
  720. weightByPrice = 100
  721. },
  722. {
  723. boxId = 1008,
  724. itemId = 20479,
  725. count = 1,
  726. weightByPrice = 100
  727. },
  728. {
  729. boxId = 1008,
  730. itemId = 20188,
  731. count = 1,
  732. weightByPrice = 100
  733. },
  734. {
  735. boxId = 1008,
  736. itemId = 20598,
  737. count = 1,
  738. weightByPrice = 100
  739. },
  740. {
  741. boxId = 1008,
  742. itemId = 22535,
  743. count = 1,
  744. weightByPrice = 100
  745. },
  746. {
  747. boxId = 1008,
  748. itemId = 22560,
  749. count = 1,
  750. weightByPrice = 100
  751. },
  752. {
  753. boxId = 1008,
  754. itemId = 22639,
  755. count = 1,
  756. weightByPrice = 100
  757. },
  758. {
  759. boxId = 1008,
  760. itemId = 22668,
  761. count = 1,
  762. weightByPrice = 100
  763. },
  764. {
  765. boxId = 1008,
  766. itemId = 22735,
  767. count = 1,
  768. weightByPrice = 100
  769. },
  770. {
  771. boxId = 1009,
  772. itemId = 20060,
  773. count = 1,
  774. weightByPrice = 100
  775. },
  776. {
  777. boxId = 1009,
  778. itemId = 20500,
  779. count = 1,
  780. weightByPrice = 100
  781. },
  782. {
  783. boxId = 1009,
  784. itemId = 20216,
  785. count = 1,
  786. weightByPrice = 100
  787. },
  788. {
  789. boxId = 1009,
  790. itemId = 20217,
  791. count = 1,
  792. weightByPrice = 100
  793. },
  794. {
  795. boxId = 1009,
  796. itemId = 20315,
  797. count = 1,
  798. weightByPrice = 100
  799. },
  800. {
  801. boxId = 1009,
  802. itemId = 20830,
  803. count = 1,
  804. weightByPrice = 100
  805. },
  806. {
  807. boxId = 1009,
  808. itemId = 20607,
  809. count = 1,
  810. weightByPrice = 100
  811. },
  812. {
  813. boxId = 1009,
  814. itemId = 20563,
  815. count = 1,
  816. weightByPrice = 100
  817. },
  818. {
  819. boxId = 1009,
  820. itemId = 21393,
  821. count = 1,
  822. weightByPrice = 100
  823. },
  824. {
  825. boxId = 1009,
  826. itemId = 20438,
  827. count = 1,
  828. weightByPrice = 100
  829. },
  830. {
  831. boxId = 1009,
  832. itemId = 21291,
  833. count = 1,
  834. weightByPrice = 100
  835. },
  836. {
  837. boxId = 1009,
  838. itemId = 22535,
  839. count = 1,
  840. weightByPrice = 100
  841. },
  842. {
  843. boxId = 1009,
  844. itemId = 22560,
  845. count = 1,
  846. weightByPrice = 100
  847. },
  848. {
  849. boxId = 1009,
  850. itemId = 22639,
  851. count = 1,
  852. weightByPrice = 100
  853. },
  854. {
  855. boxId = 1009,
  856. itemId = 22668,
  857. count = 1,
  858. weightByPrice = 100
  859. },
  860. {
  861. boxId = 1009,
  862. itemId = 22735,
  863. count = 1,
  864. weightByPrice = 100
  865. },
  866. {
  867. boxId = 1010,
  868. itemId = 41166,
  869. count = 1,
  870. weightByPrice = 100
  871. },
  872. {
  873. boxId = 1010,
  874. itemId = 20989,
  875. count = 1,
  876. weightByPrice = 100
  877. },
  878. {
  879. boxId = 1010,
  880. itemId = 21129,
  881. count = 1,
  882. weightByPrice = 100
  883. },
  884. {
  885. boxId = 1010,
  886. itemId = 20236,
  887. count = 1,
  888. weightByPrice = 100
  889. },
  890. {
  891. boxId = 1010,
  892. itemId = 20315,
  893. count = 1,
  894. weightByPrice = 100
  895. },
  896. {
  897. boxId = 1010,
  898. itemId = 21622,
  899. count = 1,
  900. weightByPrice = 100
  901. },
  902. {
  903. boxId = 1010,
  904. itemId = 21373,
  905. count = 1,
  906. weightByPrice = 100
  907. },
  908. {
  909. boxId = 1010,
  910. itemId = 20705,
  911. count = 1,
  912. weightByPrice = 100
  913. },
  914. {
  915. boxId = 1010,
  916. itemId = 20209,
  917. count = 1,
  918. weightByPrice = 100
  919. },
  920. {
  921. boxId = 1010,
  922. itemId = 20884,
  923. count = 1,
  924. weightByPrice = 100
  925. },
  926. {
  927. boxId = 1010,
  928. itemId = 20595,
  929. count = 1,
  930. weightByPrice = 100
  931. },
  932. {
  933. boxId = 1010,
  934. itemId = 22535,
  935. count = 1,
  936. weightByPrice = 100
  937. },
  938. {
  939. boxId = 1010,
  940. itemId = 22560,
  941. count = 1,
  942. weightByPrice = 100
  943. },
  944. {
  945. boxId = 1010,
  946. itemId = 22639,
  947. count = 1,
  948. weightByPrice = 100
  949. },
  950. {
  951. boxId = 1010,
  952. itemId = 22668,
  953. count = 1,
  954. weightByPrice = 100
  955. },
  956. {
  957. boxId = 1010,
  958. itemId = 22735,
  959. count = 1,
  960. weightByPrice = 100
  961. },
  962. {
  963. boxId = 1011,
  964. itemId = 10194,
  965. count = 1,
  966. weightByPrice = 100
  967. },
  968. {
  969. boxId = 1011,
  970. itemId = 21737,
  971. count = 1,
  972. weightByPrice = 100
  973. },
  974. {
  975. boxId = 1011,
  976. itemId = 20747,
  977. count = 1,
  978. weightByPrice = 100
  979. },
  980. {
  981. boxId = 1011,
  982. itemId = 20716,
  983. count = 1,
  984. weightByPrice = 100
  985. },
  986. {
  987. boxId = 1011,
  988. itemId = 20890,
  989. count = 1,
  990. weightByPrice = 100
  991. },
  992. {
  993. boxId = 1011,
  994. itemId = 20176,
  995. count = 1,
  996. weightByPrice = 100
  997. },
  998. {
  999. boxId = 1011,
  1000. itemId = 20391,
  1001. count = 1,
  1002. weightByPrice = 100
  1003. },
  1004. {
  1005. boxId = 1011,
  1006. itemId = 21301,
  1007. count = 1,
  1008. weightByPrice = 100
  1009. },
  1010. {
  1011. boxId = 1011,
  1012. itemId = 21712,
  1013. count = 1,
  1014. weightByPrice = 100
  1015. },
  1016. {
  1017. boxId = 1011,
  1018. itemId = 21813,
  1019. count = 1,
  1020. weightByPrice = 100
  1021. },
  1022. {
  1023. boxId = 1011,
  1024. itemId = 21586,
  1025. count = 1,
  1026. weightByPrice = 100
  1027. },
  1028. {
  1029. boxId = 1011,
  1030. itemId = 22535,
  1031. count = 1,
  1032. weightByPrice = 100
  1033. },
  1034. {
  1035. boxId = 1011,
  1036. itemId = 22560,
  1037. count = 1,
  1038. weightByPrice = 100
  1039. },
  1040. {
  1041. boxId = 1011,
  1042. itemId = 22639,
  1043. count = 1,
  1044. weightByPrice = 100
  1045. },
  1046. {
  1047. boxId = 1011,
  1048. itemId = 22668,
  1049. count = 1,
  1050. weightByPrice = 100
  1051. },
  1052. {
  1053. boxId = 1011,
  1054. itemId = 22735,
  1055. count = 1,
  1056. weightByPrice = 100
  1057. },
  1058. {
  1059. boxId = 1012,
  1060. itemId = 10373,
  1061. count = 1,
  1062. weightByPrice = 100
  1063. },
  1064. {
  1065. boxId = 1012,
  1066. itemId = 10491,
  1067. count = 1,
  1068. weightByPrice = 100
  1069. },
  1070. {
  1071. boxId = 1012,
  1072. itemId = 10387,
  1073. count = 1,
  1074. weightByPrice = 100
  1075. },
  1076. {
  1077. boxId = 1012,
  1078. itemId = 11111,
  1079. count = 1,
  1080. weightByPrice = 100
  1081. },
  1082. {
  1083. boxId = 1012,
  1084. itemId = 10039,
  1085. count = 1,
  1086. weightByPrice = 100
  1087. },
  1088. {
  1089. boxId = 1012,
  1090. itemId = 10073,
  1091. count = 1,
  1092. weightByPrice = 100
  1093. },
  1094. {
  1095. boxId = 1012,
  1096. itemId = 10114,
  1097. count = 1,
  1098. weightByPrice = 100
  1099. },
  1100. {
  1101. boxId = 1012,
  1102. itemId = 10069,
  1103. count = 1,
  1104. weightByPrice = 100
  1105. },
  1106. {
  1107. boxId = 1012,
  1108. itemId = 10884,
  1109. count = 1,
  1110. weightByPrice = 100
  1111. },
  1112. {
  1113. boxId = 1012,
  1114. itemId = 10610,
  1115. count = 1,
  1116. weightByPrice = 100
  1117. },
  1118. {
  1119. boxId = 1012,
  1120. itemId = 10635,
  1121. count = 1,
  1122. weightByPrice = 100
  1123. },
  1124. {
  1125. boxId = 1012,
  1126. itemId = 22535,
  1127. count = 1,
  1128. weightByPrice = 100
  1129. },
  1130. {
  1131. boxId = 1012,
  1132. itemId = 22560,
  1133. count = 1,
  1134. weightByPrice = 100
  1135. },
  1136. {
  1137. boxId = 1012,
  1138. itemId = 22639,
  1139. count = 1,
  1140. weightByPrice = 100
  1141. },
  1142. {
  1143. boxId = 1012,
  1144. itemId = 22668,
  1145. count = 1,
  1146. weightByPrice = 100
  1147. },
  1148. {
  1149. boxId = 1012,
  1150. itemId = 22735,
  1151. count = 1,
  1152. weightByPrice = 100
  1153. },
  1154. {
  1155. boxId = 1013,
  1156. itemId = 70308,
  1157. count = 1,
  1158. weightByPrice = 100
  1159. },
  1160. {
  1161. boxId = 1013,
  1162. itemId = 10143,
  1163. count = 1,
  1164. weightByPrice = 100
  1165. },
  1166. {
  1167. boxId = 1013,
  1168. itemId = 11372,
  1169. count = 1,
  1170. weightByPrice = 100
  1171. },
  1172. {
  1173. boxId = 1013,
  1174. itemId = 10755,
  1175. count = 1,
  1176. weightByPrice = 100
  1177. },
  1178. {
  1179. boxId = 1013,
  1180. itemId = 10254,
  1181. count = 1,
  1182. weightByPrice = 100
  1183. },
  1184. {
  1185. boxId = 1013,
  1186. itemId = 11160,
  1187. count = 1,
  1188. weightByPrice = 100
  1189. },
  1190. {
  1191. boxId = 1013,
  1192. itemId = 10932,
  1193. count = 1,
  1194. weightByPrice = 100
  1195. },
  1196. {
  1197. boxId = 1013,
  1198. itemId = 10031,
  1199. count = 1,
  1200. weightByPrice = 100
  1201. },
  1202. {
  1203. boxId = 1013,
  1204. itemId = 10783,
  1205. count = 1,
  1206. weightByPrice = 100
  1207. },
  1208. {
  1209. boxId = 1013,
  1210. itemId = 10275,
  1211. count = 1,
  1212. weightByPrice = 100
  1213. },
  1214. {
  1215. boxId = 1013,
  1216. itemId = 11132,
  1217. count = 1,
  1218. weightByPrice = 100
  1219. },
  1220. {
  1221. boxId = 1013,
  1222. itemId = 22535,
  1223. count = 1,
  1224. weightByPrice = 100
  1225. },
  1226. {
  1227. boxId = 1013,
  1228. itemId = 22560,
  1229. count = 1,
  1230. weightByPrice = 100
  1231. },
  1232. {
  1233. boxId = 1013,
  1234. itemId = 22639,
  1235. count = 1,
  1236. weightByPrice = 100
  1237. },
  1238. {
  1239. boxId = 1013,
  1240. itemId = 22668,
  1241. count = 1,
  1242. weightByPrice = 100
  1243. },
  1244. {
  1245. boxId = 1013,
  1246. itemId = 22735,
  1247. count = 1,
  1248. weightByPrice = 100
  1249. },
  1250. {
  1251. boxId = 1014,
  1252. itemId = 10518,
  1253. count = 1,
  1254. weightByPrice = 100
  1255. },
  1256. {
  1257. boxId = 1014,
  1258. itemId = 11289,
  1259. count = 1,
  1260. weightByPrice = 100
  1261. },
  1262. {
  1263. boxId = 1014,
  1264. itemId = 11017,
  1265. count = 1,
  1266. weightByPrice = 100
  1267. },
  1268. {
  1269. boxId = 1014,
  1270. itemId = 11443,
  1271. count = 1,
  1272. weightByPrice = 100
  1273. },
  1274. {
  1275. boxId = 1014,
  1276. itemId = 10065,
  1277. count = 1,
  1278. weightByPrice = 100
  1279. },
  1280. {
  1281. boxId = 1014,
  1282. itemId = 11462,
  1283. count = 1,
  1284. weightByPrice = 100
  1285. },
  1286. {
  1287. boxId = 1014,
  1288. itemId = 10225,
  1289. count = 1,
  1290. weightByPrice = 100
  1291. },
  1292. {
  1293. boxId = 1014,
  1294. itemId = 10991,
  1295. count = 1,
  1296. weightByPrice = 100
  1297. },
  1298. {
  1299. boxId = 1014,
  1300. itemId = 10732,
  1301. count = 1,
  1302. weightByPrice = 100
  1303. },
  1304. {
  1305. boxId = 1014,
  1306. itemId = 10176,
  1307. count = 1,
  1308. weightByPrice = 100
  1309. },
  1310. {
  1311. boxId = 1014,
  1312. itemId = 10681,
  1313. count = 1,
  1314. weightByPrice = 100
  1315. },
  1316. {
  1317. boxId = 1014,
  1318. itemId = 22535,
  1319. count = 1,
  1320. weightByPrice = 100
  1321. },
  1322. {
  1323. boxId = 1014,
  1324. itemId = 22560,
  1325. count = 1,
  1326. weightByPrice = 100
  1327. },
  1328. {
  1329. boxId = 1014,
  1330. itemId = 22639,
  1331. count = 1,
  1332. weightByPrice = 100
  1333. },
  1334. {
  1335. boxId = 1014,
  1336. itemId = 22668,
  1337. count = 1,
  1338. weightByPrice = 100
  1339. },
  1340. {
  1341. boxId = 1014,
  1342. itemId = 22735,
  1343. count = 1,
  1344. weightByPrice = 100
  1345. },
  1346. {
  1347. boxId = 1015,
  1348. itemId = 21748,
  1349. count = 1,
  1350. weightByPrice = 100
  1351. },
  1352. {
  1353. boxId = 1015,
  1354. itemId = 20740,
  1355. count = 1,
  1356. weightByPrice = 100
  1357. },
  1358. {
  1359. boxId = 1015,
  1360. itemId = 20752,
  1361. count = 1,
  1362. weightByPrice = 100
  1363. },
  1364. {
  1365. boxId = 1015,
  1366. itemId = 21085,
  1367. count = 1,
  1368. weightByPrice = 100
  1369. },
  1370. {
  1371. boxId = 1015,
  1372. itemId = 21338,
  1373. count = 1,
  1374. weightByPrice = 100
  1375. },
  1376. {
  1377. boxId = 1015,
  1378. itemId = 20348,
  1379. count = 1,
  1380. weightByPrice = 100
  1381. },
  1382. {
  1383. boxId = 1015,
  1384. itemId = 20791,
  1385. count = 1,
  1386. weightByPrice = 100
  1387. },
  1388. {
  1389. boxId = 1015,
  1390. itemId = 20450,
  1391. count = 1,
  1392. weightByPrice = 100
  1393. },
  1394. {
  1395. boxId = 1015,
  1396. itemId = 20714,
  1397. count = 1,
  1398. weightByPrice = 100
  1399. },
  1400. {
  1401. boxId = 1015,
  1402. itemId = 20534,
  1403. count = 1,
  1404. weightByPrice = 100
  1405. },
  1406. {
  1407. boxId = 1015,
  1408. itemId = 20188,
  1409. count = 1,
  1410. weightByPrice = 100
  1411. },
  1412. {
  1413. boxId = 1015,
  1414. itemId = 22535,
  1415. count = 1,
  1416. weightByPrice = 100
  1417. },
  1418. {
  1419. boxId = 1015,
  1420. itemId = 22560,
  1421. count = 1,
  1422. weightByPrice = 100
  1423. },
  1424. {
  1425. boxId = 1015,
  1426. itemId = 22639,
  1427. count = 1,
  1428. weightByPrice = 100
  1429. },
  1430. {
  1431. boxId = 1015,
  1432. itemId = 22668,
  1433. count = 1,
  1434. weightByPrice = 100
  1435. },
  1436. {
  1437. boxId = 1015,
  1438. itemId = 22735,
  1439. count = 1,
  1440. weightByPrice = 100
  1441. },
  1442. {
  1443. boxId = 1016,
  1444. itemId = 20476,
  1445. count = 1,
  1446. weightByPrice = 100
  1447. },
  1448. {
  1449. boxId = 1016,
  1450. itemId = 22197,
  1451. count = 1,
  1452. weightByPrice = 100
  1453. },
  1454. {
  1455. boxId = 1016,
  1456. itemId = 20884,
  1457. count = 1,
  1458. weightByPrice = 100
  1459. },
  1460. {
  1461. boxId = 1016,
  1462. itemId = 20730,
  1463. count = 1,
  1464. weightByPrice = 100
  1465. },
  1466. {
  1467. boxId = 1016,
  1468. itemId = 21503,
  1469. count = 1,
  1470. weightByPrice = 100
  1471. },
  1472. {
  1473. boxId = 1016,
  1474. itemId = 20036,
  1475. count = 1,
  1476. weightByPrice = 100
  1477. },
  1478. {
  1479. boxId = 1016,
  1480. itemId = 20351,
  1481. count = 1,
  1482. weightByPrice = 100
  1483. },
  1484. {
  1485. boxId = 1016,
  1486. itemId = 21026,
  1487. count = 1,
  1488. weightByPrice = 100
  1489. },
  1490. {
  1491. boxId = 1016,
  1492. itemId = 20043,
  1493. count = 1,
  1494. weightByPrice = 100
  1495. },
  1496. {
  1497. boxId = 1016,
  1498. itemId = 20607,
  1499. count = 1,
  1500. weightByPrice = 100
  1501. },
  1502. {
  1503. boxId = 1016,
  1504. itemId = 21291,
  1505. count = 1,
  1506. weightByPrice = 100
  1507. },
  1508. {
  1509. boxId = 1016,
  1510. itemId = 22535,
  1511. count = 1,
  1512. weightByPrice = 100
  1513. },
  1514. {
  1515. boxId = 1016,
  1516. itemId = 22560,
  1517. count = 1,
  1518. weightByPrice = 100
  1519. },
  1520. {
  1521. boxId = 1016,
  1522. itemId = 22639,
  1523. count = 1,
  1524. weightByPrice = 100
  1525. },
  1526. {
  1527. boxId = 1016,
  1528. itemId = 22668,
  1529. count = 1,
  1530. weightByPrice = 100
  1531. },
  1532. {
  1533. boxId = 1016,
  1534. itemId = 22735,
  1535. count = 1,
  1536. weightByPrice = 100
  1537. },
  1538. {
  1539. boxId = 1017,
  1540. itemId = 41500,
  1541. count = 1,
  1542. weightByPrice = 100
  1543. },
  1544. {
  1545. boxId = 1017,
  1546. itemId = 20726,
  1547. count = 1,
  1548. weightByPrice = 100
  1549. },
  1550. {
  1551. boxId = 1017,
  1552. itemId = 21521,
  1553. count = 1,
  1554. weightByPrice = 100
  1555. },
  1556. {
  1557. boxId = 1017,
  1558. itemId = 21000,
  1559. count = 1,
  1560. weightByPrice = 100
  1561. },
  1562. {
  1563. boxId = 1017,
  1564. itemId = 20218,
  1565. count = 1,
  1566. weightByPrice = 100
  1567. },
  1568. {
  1569. boxId = 1017,
  1570. itemId = 20999,
  1571. count = 1,
  1572. weightByPrice = 100
  1573. },
  1574. {
  1575. boxId = 1017,
  1576. itemId = 20691,
  1577. count = 1,
  1578. weightByPrice = 100
  1579. },
  1580. {
  1581. boxId = 1017,
  1582. itemId = 20312,
  1583. count = 1,
  1584. weightByPrice = 100
  1585. },
  1586. {
  1587. boxId = 1017,
  1588. itemId = 20517,
  1589. count = 1,
  1590. weightByPrice = 100
  1591. },
  1592. {
  1593. boxId = 1017,
  1594. itemId = 20069,
  1595. count = 1,
  1596. weightByPrice = 100
  1597. },
  1598. {
  1599. boxId = 1017,
  1600. itemId = 20595,
  1601. count = 1,
  1602. weightByPrice = 100
  1603. },
  1604. {
  1605. boxId = 1017,
  1606. itemId = 22535,
  1607. count = 1,
  1608. weightByPrice = 100
  1609. },
  1610. {
  1611. boxId = 1017,
  1612. itemId = 22560,
  1613. count = 1,
  1614. weightByPrice = 100
  1615. },
  1616. {
  1617. boxId = 1017,
  1618. itemId = 22639,
  1619. count = 1,
  1620. weightByPrice = 100
  1621. },
  1622. {
  1623. boxId = 1017,
  1624. itemId = 22668,
  1625. count = 1,
  1626. weightByPrice = 100
  1627. },
  1628. {
  1629. boxId = 1017,
  1630. itemId = 22735,
  1631. count = 1,
  1632. weightByPrice = 100
  1633. },
  1634. {
  1635. boxId = 1018,
  1636. itemId = 10961,
  1637. count = 1,
  1638. weightByPrice = 100
  1639. },
  1640. {
  1641. boxId = 1018,
  1642. itemId = 21260,
  1643. count = 1,
  1644. weightByPrice = 100
  1645. },
  1646. {
  1647. boxId = 1018,
  1648. itemId = 21262,
  1649. count = 1,
  1650. weightByPrice = 100
  1651. },
  1652. {
  1653. boxId = 1018,
  1654. itemId = 20040,
  1655. count = 1,
  1656. weightByPrice = 100
  1657. },
  1658. {
  1659. boxId = 1018,
  1660. itemId = 20246,
  1661. count = 1,
  1662. weightByPrice = 100
  1663. },
  1664. {
  1665. boxId = 1018,
  1666. itemId = 21645,
  1667. count = 1,
  1668. weightByPrice = 100
  1669. },
  1670. {
  1671. boxId = 1018,
  1672. itemId = 41082,
  1673. count = 1,
  1674. weightByPrice = 100
  1675. },
  1676. {
  1677. boxId = 1018,
  1678. itemId = 20098,
  1679. count = 1,
  1680. weightByPrice = 100
  1681. },
  1682. {
  1683. boxId = 1018,
  1684. itemId = 20468,
  1685. count = 1,
  1686. weightByPrice = 100
  1687. },
  1688. {
  1689. boxId = 1018,
  1690. itemId = 21712,
  1691. count = 1,
  1692. weightByPrice = 100
  1693. },
  1694. {
  1695. boxId = 1018,
  1696. itemId = 21813,
  1697. count = 1,
  1698. weightByPrice = 100
  1699. },
  1700. {
  1701. boxId = 1018,
  1702. itemId = 22535,
  1703. count = 1,
  1704. weightByPrice = 100
  1705. },
  1706. {
  1707. boxId = 1018,
  1708. itemId = 22560,
  1709. count = 1,
  1710. weightByPrice = 100
  1711. },
  1712. {
  1713. boxId = 1018,
  1714. itemId = 22639,
  1715. count = 1,
  1716. weightByPrice = 100
  1717. },
  1718. {
  1719. boxId = 1018,
  1720. itemId = 22668,
  1721. count = 1,
  1722. weightByPrice = 100
  1723. },
  1724. {
  1725. boxId = 1018,
  1726. itemId = 22735,
  1727. count = 1,
  1728. weightByPrice = 100
  1729. },
  1730. {
  1731. boxId = 1019,
  1732. itemId = 70187,
  1733. count = 1,
  1734. weightByPrice = 100
  1735. },
  1736. {
  1737. boxId = 1019,
  1738. itemId = 10849,
  1739. count = 1,
  1740. weightByPrice = 100
  1741. },
  1742. {
  1743. boxId = 1019,
  1744. itemId = 10181,
  1745. count = 1,
  1746. weightByPrice = 100
  1747. },
  1748. {
  1749. boxId = 1019,
  1750. itemId = 10400,
  1751. count = 1,
  1752. weightByPrice = 100
  1753. },
  1754. {
  1755. boxId = 1019,
  1756. itemId = 11727,
  1757. count = 1,
  1758. weightByPrice = 100
  1759. },
  1760. {
  1761. boxId = 1019,
  1762. itemId = 11132,
  1763. count = 1,
  1764. weightByPrice = 100
  1765. },
  1766. {
  1767. boxId = 1019,
  1768. itemId = 10012,
  1769. count = 1,
  1770. weightByPrice = 100
  1771. },
  1772. {
  1773. boxId = 1019,
  1774. itemId = 10058,
  1775. count = 1,
  1776. weightByPrice = 100
  1777. },
  1778. {
  1779. boxId = 1019,
  1780. itemId = 10073,
  1781. count = 1,
  1782. weightByPrice = 100
  1783. },
  1784. {
  1785. boxId = 1019,
  1786. itemId = 10610,
  1787. count = 1,
  1788. weightByPrice = 100
  1789. },
  1790. {
  1791. boxId = 1019,
  1792. itemId = 10635,
  1793. count = 1,
  1794. weightByPrice = 100
  1795. },
  1796. {
  1797. boxId = 1019,
  1798. itemId = 22535,
  1799. count = 1,
  1800. weightByPrice = 100
  1801. },
  1802. {
  1803. boxId = 1019,
  1804. itemId = 22560,
  1805. count = 1,
  1806. weightByPrice = 100
  1807. },
  1808. {
  1809. boxId = 1019,
  1810. itemId = 22639,
  1811. count = 1,
  1812. weightByPrice = 100
  1813. },
  1814. {
  1815. boxId = 1019,
  1816. itemId = 22668,
  1817. count = 1,
  1818. weightByPrice = 100
  1819. },
  1820. {
  1821. boxId = 1019,
  1822. itemId = 22735,
  1823. count = 1,
  1824. weightByPrice = 100
  1825. },
  1826. {
  1827. boxId = 1020,
  1828. itemId = 41805,
  1829. count = 1,
  1830. weightByPrice = 100
  1831. },
  1832. {
  1833. boxId = 1020,
  1834. itemId = 10375,
  1835. count = 1,
  1836. weightByPrice = 100
  1837. },
  1838. {
  1839. boxId = 1020,
  1840. itemId = 10798,
  1841. count = 1,
  1842. weightByPrice = 100
  1843. },
  1844. {
  1845. boxId = 1020,
  1846. itemId = 11103,
  1847. count = 1,
  1848. weightByPrice = 100
  1849. },
  1850. {
  1851. boxId = 1020,
  1852. itemId = 11906,
  1853. count = 1,
  1854. weightByPrice = 100
  1855. },
  1856. {
  1857. boxId = 1020,
  1858. itemId = 10537,
  1859. count = 1,
  1860. weightByPrice = 100
  1861. },
  1862. {
  1863. boxId = 1020,
  1864. itemId = 11005,
  1865. count = 1,
  1866. weightByPrice = 100
  1867. },
  1868. {
  1869. boxId = 1020,
  1870. itemId = 10833,
  1871. count = 1,
  1872. weightByPrice = 100
  1873. },
  1874. {
  1875. boxId = 1020,
  1876. itemId = 10932,
  1877. count = 1,
  1878. weightByPrice = 100
  1879. },
  1880. {
  1881. boxId = 1020,
  1882. itemId = 10783,
  1883. count = 1,
  1884. weightByPrice = 100
  1885. },
  1886. {
  1887. boxId = 1020,
  1888. itemId = 11132,
  1889. count = 1,
  1890. weightByPrice = 100
  1891. },
  1892. {
  1893. boxId = 1020,
  1894. itemId = 22535,
  1895. count = 1,
  1896. weightByPrice = 100
  1897. },
  1898. {
  1899. boxId = 1020,
  1900. itemId = 22560,
  1901. count = 1,
  1902. weightByPrice = 100
  1903. },
  1904. {
  1905. boxId = 1020,
  1906. itemId = 22639,
  1907. count = 1,
  1908. weightByPrice = 100
  1909. },
  1910. {
  1911. boxId = 1020,
  1912. itemId = 22668,
  1913. count = 1,
  1914. weightByPrice = 100
  1915. },
  1916. {
  1917. boxId = 1020,
  1918. itemId = 22735,
  1919. count = 1,
  1920. weightByPrice = 100
  1921. },
  1922. {
  1923. boxId = 1021,
  1924. itemId = 41320,
  1925. count = 1,
  1926. weightByPrice = 100
  1927. },
  1928. {
  1929. boxId = 1021,
  1930. itemId = 21399,
  1931. count = 1,
  1932. weightByPrice = 100
  1933. },
  1934. {
  1935. boxId = 1021,
  1936. itemId = 11223,
  1937. count = 1,
  1938. weightByPrice = 100
  1939. },
  1940. {
  1941. boxId = 1021,
  1942. itemId = 10874,
  1943. count = 1,
  1944. weightByPrice = 100
  1945. },
  1946. {
  1947. boxId = 1021,
  1948. itemId = 10352,
  1949. count = 1,
  1950. weightByPrice = 100
  1951. },
  1952. {
  1953. boxId = 1021,
  1954. itemId = 11179,
  1955. count = 1,
  1956. weightByPrice = 100
  1957. },
  1958. {
  1959. boxId = 1021,
  1960. itemId = 10175,
  1961. count = 1,
  1962. weightByPrice = 100
  1963. },
  1964. {
  1965. boxId = 1021,
  1966. itemId = 11313,
  1967. count = 1,
  1968. weightByPrice = 100
  1969. },
  1970. {
  1971. boxId = 1021,
  1972. itemId = 10225,
  1973. count = 1,
  1974. weightByPrice = 100
  1975. },
  1976. {
  1977. boxId = 1021,
  1978. itemId = 10732,
  1979. count = 1,
  1980. weightByPrice = 100
  1981. },
  1982. {
  1983. boxId = 1021,
  1984. itemId = 10537,
  1985. count = 1,
  1986. weightByPrice = 100
  1987. },
  1988. {
  1989. boxId = 1021,
  1990. itemId = 22535,
  1991. count = 1,
  1992. weightByPrice = 100
  1993. },
  1994. {
  1995. boxId = 1021,
  1996. itemId = 22560,
  1997. count = 1,
  1998. weightByPrice = 100
  1999. },
  2000. {
  2001. boxId = 1021,
  2002. itemId = 22639,
  2003. count = 1,
  2004. weightByPrice = 100
  2005. },
  2006. {
  2007. boxId = 1021,
  2008. itemId = 22668,
  2009. count = 1,
  2010. weightByPrice = 100
  2011. },
  2012. {
  2013. boxId = 1021,
  2014. itemId = 22735,
  2015. count = 1,
  2016. weightByPrice = 100
  2017. },
  2018. {
  2019. boxId = 1022,
  2020. itemId = 21192,
  2021. count = 1,
  2022. weightByPrice = 100
  2023. },
  2024. {
  2025. boxId = 1022,
  2026. itemId = 21437,
  2027. count = 1,
  2028. weightByPrice = 100
  2029. },
  2030. {
  2031. boxId = 1022,
  2032. itemId = 20237,
  2033. count = 1,
  2034. weightByPrice = 100
  2035. },
  2036. {
  2037. boxId = 1022,
  2038. itemId = 20493,
  2039. count = 1,
  2040. weightByPrice = 100
  2041. },
  2042. {
  2043. boxId = 1022,
  2044. itemId = 21065,
  2045. count = 1,
  2046. weightByPrice = 100
  2047. },
  2048. {
  2049. boxId = 1022,
  2050. itemId = 20590,
  2051. count = 1,
  2052. weightByPrice = 100
  2053. },
  2054. {
  2055. boxId = 1022,
  2056. itemId = 20457,
  2057. count = 1,
  2058. weightByPrice = 100
  2059. },
  2060. {
  2061. boxId = 1022,
  2062. itemId = 20636,
  2063. count = 1,
  2064. weightByPrice = 100
  2065. },
  2066. {
  2067. boxId = 1022,
  2068. itemId = 20534,
  2069. count = 1,
  2070. weightByPrice = 100
  2071. },
  2072. {
  2073. boxId = 1022,
  2074. itemId = 20234,
  2075. count = 1,
  2076. weightByPrice = 100
  2077. },
  2078. {
  2079. boxId = 1022,
  2080. itemId = 20229,
  2081. count = 1,
  2082. weightByPrice = 100
  2083. },
  2084. {
  2085. boxId = 1022,
  2086. itemId = 21401,
  2087. count = 1,
  2088. weightByPrice = 100
  2089. },
  2090. {
  2091. boxId = 1022,
  2092. itemId = 21715,
  2093. count = 1,
  2094. weightByPrice = 100
  2095. },
  2096. {
  2097. boxId = 1022,
  2098. itemId = 20946,
  2099. count = 1,
  2100. weightByPrice = 100
  2101. },
  2102. {
  2103. boxId = 1022,
  2104. itemId = 20471,
  2105. count = 1,
  2106. weightByPrice = 100
  2107. },
  2108. {
  2109. boxId = 1022,
  2110. itemId = 20615,
  2111. count = 1,
  2112. weightByPrice = 100
  2113. },
  2114. {
  2115. boxId = 1022,
  2116. itemId = 20599,
  2117. count = 1,
  2118. weightByPrice = 100
  2119. },
  2120. {
  2121. boxId = 1022,
  2122. itemId = 20197,
  2123. count = 1,
  2124. weightByPrice = 100
  2125. },
  2126. {
  2127. boxId = 1022,
  2128. itemId = 21037,
  2129. count = 1,
  2130. weightByPrice = 100
  2131. },
  2132. {
  2133. boxId = 1022,
  2134. itemId = 20958,
  2135. count = 1,
  2136. weightByPrice = 100
  2137. },
  2138. {
  2139. boxId = 1022,
  2140. itemId = 20679,
  2141. count = 1,
  2142. weightByPrice = 100
  2143. },
  2144. {
  2145. boxId = 1023,
  2146. itemId = 42192,
  2147. count = 1,
  2148. weightByPrice = 100
  2149. },
  2150. {
  2151. boxId = 1023,
  2152. itemId = 20389,
  2153. count = 1,
  2154. weightByPrice = 100
  2155. },
  2156. {
  2157. boxId = 1023,
  2158. itemId = 20671,
  2159. count = 1,
  2160. weightByPrice = 100
  2161. },
  2162. {
  2163. boxId = 1023,
  2164. itemId = 20458,
  2165. count = 1,
  2166. weightByPrice = 100
  2167. },
  2168. {
  2169. boxId = 1023,
  2170. itemId = 20884,
  2171. count = 1,
  2172. weightByPrice = 100
  2173. },
  2174. {
  2175. boxId = 1023,
  2176. itemId = 40529,
  2177. count = 1,
  2178. weightByPrice = 100
  2179. },
  2180. {
  2181. boxId = 1023,
  2182. itemId = 20563,
  2183. count = 1,
  2184. weightByPrice = 100
  2185. },
  2186. {
  2187. boxId = 1023,
  2188. itemId = 21265,
  2189. count = 1,
  2190. weightByPrice = 100
  2191. },
  2192. {
  2193. boxId = 1023,
  2194. itemId = 21338,
  2195. count = 1,
  2196. weightByPrice = 100
  2197. },
  2198. {
  2199. boxId = 1023,
  2200. itemId = 21393,
  2201. count = 1,
  2202. weightByPrice = 100
  2203. },
  2204. {
  2205. boxId = 1023,
  2206. itemId = 20438,
  2207. count = 1,
  2208. weightByPrice = 100
  2209. },
  2210. {
  2211. boxId = 1023,
  2212. itemId = 20534,
  2213. count = 1,
  2214. weightByPrice = 100
  2215. },
  2216. {
  2217. boxId = 1023,
  2218. itemId = 21206,
  2219. count = 1,
  2220. weightByPrice = 100
  2221. },
  2222. {
  2223. boxId = 1023,
  2224. itemId = 20415,
  2225. count = 1,
  2226. weightByPrice = 100
  2227. },
  2228. {
  2229. boxId = 1023,
  2230. itemId = 20212,
  2231. count = 1,
  2232. weightByPrice = 100
  2233. },
  2234. {
  2235. boxId = 1023,
  2236. itemId = 20611,
  2237. count = 1,
  2238. weightByPrice = 100
  2239. },
  2240. {
  2241. boxId = 1023,
  2242. itemId = 21172,
  2243. count = 1,
  2244. weightByPrice = 100
  2245. },
  2246. {
  2247. boxId = 1023,
  2248. itemId = 21280,
  2249. count = 1,
  2250. weightByPrice = 100
  2251. },
  2252. {
  2253. boxId = 1023,
  2254. itemId = 20795,
  2255. count = 1,
  2256. weightByPrice = 100
  2257. },
  2258. {
  2259. boxId = 1023,
  2260. itemId = 20511,
  2261. count = 1,
  2262. weightByPrice = 100
  2263. },
  2264. {
  2265. boxId = 1023,
  2266. itemId = 20034,
  2267. count = 1,
  2268. weightByPrice = 100
  2269. },
  2270. {
  2271. boxId = 1024,
  2272. itemId = 41432,
  2273. count = 1,
  2274. weightByPrice = 100
  2275. },
  2276. {
  2277. boxId = 1024,
  2278. itemId = 20520,
  2279. count = 1,
  2280. weightByPrice = 100
  2281. },
  2282. {
  2283. boxId = 1024,
  2284. itemId = 20072,
  2285. count = 1,
  2286. weightByPrice = 100
  2287. },
  2288. {
  2289. boxId = 1024,
  2290. itemId = 40398,
  2291. count = 1,
  2292. weightByPrice = 100
  2293. },
  2294. {
  2295. boxId = 1024,
  2296. itemId = 21465,
  2297. count = 1,
  2298. weightByPrice = 100
  2299. },
  2300. {
  2301. boxId = 1024,
  2302. itemId = 21360,
  2303. count = 1,
  2304. weightByPrice = 100
  2305. },
  2306. {
  2307. boxId = 1024,
  2308. itemId = 20069,
  2309. count = 1,
  2310. weightByPrice = 100
  2311. },
  2312. {
  2313. boxId = 1024,
  2314. itemId = 21234,
  2315. count = 1,
  2316. weightByPrice = 100
  2317. },
  2318. {
  2319. boxId = 1024,
  2320. itemId = 21113,
  2321. count = 1,
  2322. weightByPrice = 100
  2323. },
  2324. {
  2325. boxId = 1024,
  2326. itemId = 21628,
  2327. count = 1,
  2328. weightByPrice = 100
  2329. },
  2330. {
  2331. boxId = 1024,
  2332. itemId = 21503,
  2333. count = 1,
  2334. weightByPrice = 100
  2335. },
  2336. {
  2337. boxId = 1024,
  2338. itemId = 20563,
  2339. count = 1,
  2340. weightByPrice = 100
  2341. },
  2342. {
  2343. boxId = 1024,
  2344. itemId = 21265,
  2345. count = 1,
  2346. weightByPrice = 100
  2347. },
  2348. {
  2349. boxId = 1024,
  2350. itemId = 20071,
  2351. count = 1,
  2352. weightByPrice = 100
  2353. },
  2354. {
  2355. boxId = 1024,
  2356. itemId = 21144,
  2357. count = 1,
  2358. weightByPrice = 100
  2359. },
  2360. {
  2361. boxId = 1024,
  2362. itemId = 20491,
  2363. count = 1,
  2364. weightByPrice = 100
  2365. },
  2366. {
  2367. boxId = 1024,
  2368. itemId = 20438,
  2369. count = 1,
  2370. weightByPrice = 100
  2371. },
  2372. {
  2373. boxId = 1024,
  2374. itemId = 21303,
  2375. count = 1,
  2376. weightByPrice = 100
  2377. },
  2378. {
  2379. boxId = 1024,
  2380. itemId = 20154,
  2381. count = 1,
  2382. weightByPrice = 100
  2383. },
  2384. {
  2385. boxId = 1024,
  2386. itemId = 20158,
  2387. count = 1,
  2388. weightByPrice = 100
  2389. },
  2390. {
  2391. boxId = 1024,
  2392. itemId = 20373,
  2393. count = 1,
  2394. weightByPrice = 100
  2395. },
  2396. {
  2397. boxId = 1025,
  2398. itemId = 11044,
  2399. count = 1,
  2400. weightByPrice = 100
  2401. },
  2402. {
  2403. boxId = 1025,
  2404. itemId = 11076,
  2405. count = 1,
  2406. weightByPrice = 100
  2407. },
  2408. {
  2409. boxId = 1025,
  2410. itemId = 10069,
  2411. count = 1,
  2412. weightByPrice = 100
  2413. },
  2414. {
  2415. boxId = 1025,
  2416. itemId = 10726,
  2417. count = 1,
  2418. weightByPrice = 100
  2419. },
  2420. {
  2421. boxId = 1025,
  2422. itemId = 20634,
  2423. count = 1,
  2424. weightByPrice = 100
  2425. },
  2426. {
  2427. boxId = 1025,
  2428. itemId = 21802,
  2429. count = 1,
  2430. weightByPrice = 100
  2431. },
  2432. {
  2433. boxId = 1025,
  2434. itemId = 41325,
  2435. count = 1,
  2436. weightByPrice = 100
  2437. },
  2438. {
  2439. boxId = 1025,
  2440. itemId = 40046,
  2441. count = 1,
  2442. weightByPrice = 100
  2443. },
  2444. {
  2445. boxId = 1025,
  2446. itemId = 20876,
  2447. count = 1,
  2448. weightByPrice = 100
  2449. },
  2450. {
  2451. boxId = 1025,
  2452. itemId = 20619,
  2453. count = 1,
  2454. weightByPrice = 100
  2455. },
  2456. {
  2457. boxId = 1025,
  2458. itemId = 21359,
  2459. count = 1,
  2460. weightByPrice = 100
  2461. },
  2462. {
  2463. boxId = 1025,
  2464. itemId = 20847,
  2465. count = 1,
  2466. weightByPrice = 100
  2467. },
  2468. {
  2469. boxId = 1025,
  2470. itemId = 20638,
  2471. count = 1,
  2472. weightByPrice = 100
  2473. },
  2474. {
  2475. boxId = 1025,
  2476. itemId = 21425,
  2477. count = 1,
  2478. weightByPrice = 100
  2479. },
  2480. {
  2481. boxId = 1025,
  2482. itemId = 20719,
  2483. count = 1,
  2484. weightByPrice = 100
  2485. },
  2486. {
  2487. boxId = 1025,
  2488. itemId = 20472,
  2489. count = 1,
  2490. weightByPrice = 100
  2491. },
  2492. {
  2493. boxId = 1025,
  2494. itemId = 20989,
  2495. count = 1,
  2496. weightByPrice = 100
  2497. },
  2498. {
  2499. boxId = 1025,
  2500. itemId = 40289,
  2501. count = 1,
  2502. weightByPrice = 100
  2503. },
  2504. {
  2505. boxId = 1025,
  2506. itemId = 20753,
  2507. count = 1,
  2508. weightByPrice = 100
  2509. },
  2510. {
  2511. boxId = 1025,
  2512. itemId = 40132,
  2513. count = 1,
  2514. weightByPrice = 100
  2515. },
  2516. {
  2517. boxId = 1025,
  2518. itemId = 20759,
  2519. count = 1,
  2520. weightByPrice = 100
  2521. },
  2522. {
  2523. boxId = 1026,
  2524. itemId = 41820,
  2525. count = 1,
  2526. weightByPrice = 100
  2527. },
  2528. {
  2529. boxId = 1026,
  2530. itemId = 10870,
  2531. count = 1,
  2532. weightByPrice = 100
  2533. },
  2534. {
  2535. boxId = 1026,
  2536. itemId = 10912,
  2537. count = 1,
  2538. weightByPrice = 100
  2539. },
  2540. {
  2541. boxId = 1026,
  2542. itemId = 10141,
  2543. count = 1,
  2544. weightByPrice = 100
  2545. },
  2546. {
  2547. boxId = 1026,
  2548. itemId = 10342,
  2549. count = 1,
  2550. weightByPrice = 100
  2551. },
  2552. {
  2553. boxId = 1026,
  2554. itemId = 10624,
  2555. count = 1,
  2556. weightByPrice = 100
  2557. },
  2558. {
  2559. boxId = 1026,
  2560. itemId = 10679,
  2561. count = 1,
  2562. weightByPrice = 100
  2563. },
  2564. {
  2565. boxId = 1026,
  2566. itemId = 10543,
  2567. count = 1,
  2568. weightByPrice = 100
  2569. },
  2570. {
  2571. boxId = 1026,
  2572. itemId = 11181,
  2573. count = 1,
  2574. weightByPrice = 100
  2575. },
  2576. {
  2577. boxId = 1026,
  2578. itemId = 11024,
  2579. count = 1,
  2580. weightByPrice = 100
  2581. },
  2582. {
  2583. boxId = 1026,
  2584. itemId = 10354,
  2585. count = 1,
  2586. weightByPrice = 100
  2587. },
  2588. {
  2589. boxId = 1026,
  2590. itemId = 41597,
  2591. count = 1,
  2592. weightByPrice = 100
  2593. },
  2594. {
  2595. boxId = 1026,
  2596. itemId = 21702,
  2597. count = 1,
  2598. weightByPrice = 100
  2599. },
  2600. {
  2601. boxId = 1026,
  2602. itemId = 20040,
  2603. count = 1,
  2604. weightByPrice = 100
  2605. },
  2606. {
  2607. boxId = 1026,
  2608. itemId = 20246,
  2609. count = 1,
  2610. weightByPrice = 100
  2611. },
  2612. {
  2613. boxId = 1026,
  2614. itemId = 21737,
  2615. count = 1,
  2616. weightByPrice = 100
  2617. },
  2618. {
  2619. boxId = 1026,
  2620. itemId = 21761,
  2621. count = 1,
  2622. weightByPrice = 100
  2623. },
  2624. {
  2625. boxId = 1026,
  2626. itemId = 20747,
  2627. count = 1,
  2628. weightByPrice = 100
  2629. },
  2630. {
  2631. boxId = 1026,
  2632. itemId = 21440,
  2633. count = 1,
  2634. weightByPrice = 100
  2635. },
  2636. {
  2637. boxId = 1026,
  2638. itemId = 20656,
  2639. count = 1,
  2640. weightByPrice = 100
  2641. },
  2642. {
  2643. boxId = 1026,
  2644. itemId = 21428,
  2645. count = 1,
  2646. weightByPrice = 100
  2647. },
  2648. {
  2649. boxId = 1027,
  2650. itemId = 70247,
  2651. count = 1,
  2652. weightByPrice = 100
  2653. },
  2654. {
  2655. boxId = 1027,
  2656. itemId = 11060,
  2657. count = 1,
  2658. weightByPrice = 100
  2659. },
  2660. {
  2661. boxId = 1027,
  2662. itemId = 10132,
  2663. count = 1,
  2664. weightByPrice = 100
  2665. },
  2666. {
  2667. boxId = 1027,
  2668. itemId = 10089,
  2669. count = 1,
  2670. weightByPrice = 100
  2671. },
  2672. {
  2673. boxId = 1027,
  2674. itemId = 10798,
  2675. count = 1,
  2676. weightByPrice = 100
  2677. },
  2678. {
  2679. boxId = 1027,
  2680. itemId = 10144,
  2681. count = 1,
  2682. weightByPrice = 100
  2683. },
  2684. {
  2685. boxId = 1027,
  2686. itemId = 10478,
  2687. count = 1,
  2688. weightByPrice = 100
  2689. },
  2690. {
  2691. boxId = 1027,
  2692. itemId = 10437,
  2693. count = 1,
  2694. weightByPrice = 100
  2695. },
  2696. {
  2697. boxId = 1027,
  2698. itemId = 10783,
  2699. count = 1,
  2700. weightByPrice = 100
  2701. },
  2702. {
  2703. boxId = 1027,
  2704. itemId = 10491,
  2705. count = 1,
  2706. weightByPrice = 100
  2707. },
  2708. {
  2709. boxId = 1027,
  2710. itemId = 10275,
  2711. count = 1,
  2712. weightByPrice = 100
  2713. },
  2714. {
  2715. boxId = 1027,
  2716. itemId = 10771,
  2717. count = 1,
  2718. weightByPrice = 100
  2719. },
  2720. {
  2721. boxId = 1027,
  2722. itemId = 11024,
  2723. count = 1,
  2724. weightByPrice = 100
  2725. },
  2726. {
  2727. boxId = 1027,
  2728. itemId = 10795,
  2729. count = 1,
  2730. weightByPrice = 100
  2731. },
  2732. {
  2733. boxId = 1027,
  2734. itemId = 10276,
  2735. count = 1,
  2736. weightByPrice = 100
  2737. },
  2738. {
  2739. boxId = 1027,
  2740. itemId = 10383,
  2741. count = 1,
  2742. weightByPrice = 100
  2743. },
  2744. {
  2745. boxId = 1027,
  2746. itemId = 10221,
  2747. count = 1,
  2748. weightByPrice = 100
  2749. },
  2750. {
  2751. boxId = 1027,
  2752. itemId = 10726,
  2753. count = 1,
  2754. weightByPrice = 100
  2755. },
  2756. {
  2757. boxId = 1027,
  2758. itemId = 10331,
  2759. count = 1,
  2760. weightByPrice = 100
  2761. },
  2762. {
  2763. boxId = 1027,
  2764. itemId = 10127,
  2765. count = 1,
  2766. weightByPrice = 100
  2767. },
  2768. {
  2769. boxId = 1027,
  2770. itemId = 10322,
  2771. count = 1,
  2772. weightByPrice = 100
  2773. },
  2774. {
  2775. boxId = 1028,
  2776. itemId = 42629,
  2777. count = 1,
  2778. weightByPrice = 100
  2779. },
  2780. {
  2781. boxId = 1028,
  2782. itemId = 11614,
  2783. count = 1,
  2784. weightByPrice = 100
  2785. },
  2786. {
  2787. boxId = 1028,
  2788. itemId = 11668,
  2789. count = 1,
  2790. weightByPrice = 100
  2791. },
  2792. {
  2793. boxId = 1028,
  2794. itemId = 11226,
  2795. count = 1,
  2796. weightByPrice = 100
  2797. },
  2798. {
  2799. boxId = 1028,
  2800. itemId = 11223,
  2801. count = 1,
  2802. weightByPrice = 100
  2803. },
  2804. {
  2805. boxId = 1028,
  2806. itemId = 10178,
  2807. count = 1,
  2808. weightByPrice = 100
  2809. },
  2810. {
  2811. boxId = 1028,
  2812. itemId = 10096,
  2813. count = 1,
  2814. weightByPrice = 100
  2815. },
  2816. {
  2817. boxId = 1028,
  2818. itemId = 10651,
  2819. count = 1,
  2820. weightByPrice = 100
  2821. },
  2822. {
  2823. boxId = 1028,
  2824. itemId = 10060,
  2825. count = 1,
  2826. weightByPrice = 100
  2827. },
  2828. {
  2829. boxId = 1028,
  2830. itemId = 10558,
  2831. count = 1,
  2832. weightByPrice = 100
  2833. },
  2834. {
  2835. boxId = 1028,
  2836. itemId = 10176,
  2837. count = 1,
  2838. weightByPrice = 100
  2839. },
  2840. {
  2841. boxId = 1028,
  2842. itemId = 10381,
  2843. count = 1,
  2844. weightByPrice = 100
  2845. },
  2846. {
  2847. boxId = 1028,
  2848. itemId = 10275,
  2849. count = 1,
  2850. weightByPrice = 100
  2851. },
  2852. {
  2853. boxId = 1028,
  2854. itemId = 10191,
  2855. count = 1,
  2856. weightByPrice = 100
  2857. },
  2858. {
  2859. boxId = 1028,
  2860. itemId = 10594,
  2861. count = 1,
  2862. weightByPrice = 100
  2863. },
  2864. {
  2865. boxId = 1028,
  2866. itemId = 10040,
  2867. count = 1,
  2868. weightByPrice = 100
  2869. },
  2870. {
  2871. boxId = 1028,
  2872. itemId = 10716,
  2873. count = 1,
  2874. weightByPrice = 100
  2875. },
  2876. {
  2877. boxId = 1028,
  2878. itemId = 10625,
  2879. count = 1,
  2880. weightByPrice = 100
  2881. },
  2882. {
  2883. boxId = 1028,
  2884. itemId = 10039,
  2885. count = 1,
  2886. weightByPrice = 100
  2887. },
  2888. {
  2889. boxId = 1028,
  2890. itemId = 10618,
  2891. count = 1,
  2892. weightByPrice = 100
  2893. },
  2894. {
  2895. boxId = 1028,
  2896. itemId = 10976,
  2897. count = 1,
  2898. weightByPrice = 100
  2899. }
  2900. }
  2901. return root