-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.json
8263 lines (8263 loc) · 229 KB
/
products.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"title": " LEGO Dots Rozmaitości Dots (41935)",
"price": 59,
"pieces": 1000,
"pricePerPiece": 0.059
},
{
"title": " LEGO Dots Rozmaitości DOTS — literki (41950)",
"price": 69,
"pieces": 722,
"pricePerPiece": 0.09556786703601108
},
{
"title": " LEGO ART Batman Jima Lee - kolekcja (31205)",
"price": 439,
"pieces": 4167,
"pricePerPiece": 0.10535157187425007
},
{
"title": " LEGO Dots Dodatki DOTS — seria 6 (41946)",
"price": 13.08,
"pieces": 118,
"pricePerPiece": 0.11084745762711865
},
{
"title": " LEGO Dots Tablica ogłoszeń (41951)",
"price": 69,
"pieces": 530,
"pricePerPiece": 0.13018867924528302
},
{
"title": " LEGO Dots Kreatywny zestaw z tortem (41926)",
"price": 90.99,
"pieces": 622,
"pricePerPiece": 0.1462861736334405
},
{
"title": " LEGO Dots Duża tablica ogłoszeń (41952)",
"price": 137.99,
"pieces": 943,
"pricePerPiece": 0.14633085896076353
},
{
"title": " LEGO Dots Uroczy banan — pojemnik na długopisy (41948)",
"price": 64.9,
"pieces": 438,
"pricePerPiece": 0.14817351598173517
},
{
"title": " LEGO Dots Dodatki DOTS - seria 4 (41931)",
"price": 16.99,
"pieces": 105,
"pricePerPiece": 0.1618095238095238
},
{
"title": " LEGO Dots Zestaw kreatywnego projektanta (41938)",
"price": 141.99,
"pieces": 849,
"pricePerPiece": 0.16724381625441698
},
{
"title": " LEGO Dots Pojemnik na długopisy (41936)",
"price": 59,
"pieces": 321,
"pricePerPiece": 0.1838006230529595
},
{
"title": " LEGO Classic Dookoła świata (11015)",
"price": 177.99,
"pieces": 950,
"pricePerPiece": 0.1873578947368421
},
{
"title": " LEGO Architecture Statua Wolności (21042)",
"price": 332.99,
"pieces": 1685,
"pricePerPiece": 0.19762017804154303
},
{
"title": " LEGO Classic Klocki i funkcje (11019)",
"price": 99,
"pieces": 500,
"pricePerPiece": 0.198
},
{
"title": " LEGO Creator Drzewko bonsai (10281)",
"price": 177.8,
"pieces": 878,
"pricePerPiece": 0.20250569476082006
},
{
"title": " LEGO Creator Drzewko bonsai (10281)",
"price": 177.8,
"pieces": 878,
"pricePerPiece": 0.20250569476082006
},
{
"title": " LEGO Classic Kreatywne klocki - duże pudełko (10698)",
"price": 161.99,
"pieces": 790,
"pricePerPiece": 0.20505063291139242
},
{
"title": " LEGO Classic Kreatywne klocki - duże pudełko (10698)",
"price": 161.99,
"pieces": 790,
"pricePerPiece": 0.20505063291139242
},
{
"title": " LEGO Classic Kreatywna oceaniczna zabawa (11018)",
"price": 69,
"pieces": 333,
"pricePerPiece": 0.2072072072072072
},
{
"title": " LEGO Classic Kreatywne przezroczyste klocki (11013)",
"price": 103.99,
"pieces": 500,
"pricePerPiece": 0.20798
},
{
"title": " LEGO Technic McLaren Senna GTR (42123)",
"price": 179,
"pieces": 830,
"pricePerPiece": 0.21566265060240963
},
{
"title": " LEGO Technic McLaren Senna GTR (42123)",
"price": 179,
"pieces": 830,
"pricePerPiece": 0.21566265060240963
},
{
"title": " LEGO Dots Dodatki DOTS — seria 5 (41932) ",
"price": 25.99,
"pieces": 120,
"pricePerPiece": 0.21658333333333332
},
{
"title": " LEGO Ideas Rakieta Nasa Apollo Saturn V (92176)",
"price": 429,
"pieces": 1969,
"pricePerPiece": 0.21787709497206703
},
{
"title": " LEGO Creator Super Robot (31124)",
"price": 34.99,
"pieces": 159,
"pricePerPiece": 0.22006289308176102
},
{
"title": " LEGO Classic Kreatywne klocki - średnie pudełko (10696)",
"price": 106.99,
"pieces": 484,
"pricePerPiece": 0.22105371900826445
},
{
"title": " LEGO Classic Kreatywne klocki - średnie pudełko (10696)",
"price": 106.99,
"pieces": 484,
"pricePerPiece": 0.22105371900826445
},
{
"title": " LEGO Nexo Knights Miniforteca Robina (30372)",
"price": 9.99,
"pieces": 45,
"pricePerPiece": 0.222
},
{
"title": " LEGO Dots Dodatki DOTS — seria 3 (41921)",
"price": 23.99,
"pieces": 107,
"pricePerPiece": 0.2242056074766355
},
{
"title": " LEGO Architecture Tadż Mahal (21056)",
"price": 454,
"pieces": 2020,
"pricePerPiece": 0.22475247524752476
},
{
"title": " LEGO Architecture Biały Dom (21054)",
"price": 337.38,
"pieces": 1483,
"pricePerPiece": 0.2274983142279164
},
{
"title": " LEGO Speed Champions Toyota GR Supra (76901)",
"price": 69,
"pieces": 299,
"pricePerPiece": 0.23076923076923078
},
{
"title": " LEGO Creator Majestatyczny tygrys (31129)",
"price": 175.99,
"pieces": 755,
"pricePerPiece": 0.23309933774834438
},
{
"title": " LEGO Dots Letni wielopak (41937)",
"price": 105.24,
"pieces": 441,
"pricePerPiece": 0.2386394557823129
},
{
"title": " LEGO Zajączek wielkanocny (40463)",
"price": 69.99,
"pieces": 293,
"pricePerPiece": 0.23887372013651875
},
{
"title": " LEGO Ninjago Ogrody miasta Ninjago (71741)",
"price": 1363.99,
"pieces": 5685,
"pricePerPiece": 0.2399278803869833
},
{
"title": " LEGO Classic Klocki i domki (11008)",
"price": 65,
"pieces": 270,
"pricePerPiece": 0.24074074074074073
},
{
"title": " LEGO Speed Champions Aston Martin Valkyrie AMR PRO i Aston Martin Vantage GT3 (76910)",
"price": 143.14,
"pieces": 592,
"pricePerPiece": 0.24179054054054053
},
{
"title": " LEGO Architecture Singapur (21057)",
"price": 200.78,
"pieces": 827,
"pricePerPiece": 0.24278113663845224
},
{
"title": " LEGO Creator Posterunek policji (10278)",
"price": 714.7,
"pieces": 2923,
"pricePerPiece": 0.2445090660280534
},
{
"title": " LEGO Technic Ładowarka teleskopowa (42133)",
"price": 34.99,
"pieces": 143,
"pricePerPiece": 0.2446853146853147
},
{
"title": " LEGO Friends Domek na Drzewie przyjaźni (41703)",
"price": 272.99,
"pieces": 1114,
"pricePerPiece": 0.24505385996409337
},
{
"title": " LEGO Minions Minionki z klocków i ich gniazdo (75551)",
"price": 214.99,
"pieces": 876,
"pricePerPiece": 0.24542237442922377
},
{
"title": " LEGO Friends Wielki hotel w mieście Heartlake (41684)",
"price": 322,
"pieces": 1308,
"pricePerPiece": 0.24617737003058104
},
{
"title": " LEGO Technic BATMAN — BATMOBIL (42127)",
"price": 335,
"pieces": 1360,
"pricePerPiece": 0.24632352941176472
},
{
"title": " LEGO Technic BATMAN — BATMOBIL (42127)",
"price": 335,
"pieces": 1360,
"pricePerPiece": 0.24632352941176472
},
{
"title": " LEGO Speed Champions Koenigsegg Jesko (76900)",
"price": 69,
"pieces": 280,
"pricePerPiece": 0.24642857142857144
},
{
"title": " LEGO Super Mario Walka z Reznorami - zestaw dodatkowy (71390)",
"price": 215,
"pieces": 862,
"pricePerPiece": 0.2494199535962877
},
{
"title": " LEGO Ninjago Dojo ninja w świątyni (71767)",
"price": 349,
"pieces": 1394,
"pricePerPiece": 0.2503586800573888
},
{
"title": " LEGO Ninjago Legendarny smok Lloyda (71766)",
"price": 187.99,
"pieces": 747,
"pricePerPiece": 0.2516599732262383
},
{
"title": " LEGO Creator Delfin i żółw (31128)",
"price": 34.99,
"pieces": 137,
"pricePerPiece": 0.25540145985401463
},
{
"title": " LEGO Ninjago Akademia wojowników Ninja (71764)",
"price": 135,
"pieces": 524,
"pricePerPiece": 0.25763358778625955
},
{
"title": " LEGO Friends Furgonetka do sadzenia drzew (41707)",
"price": 87.35,
"pieces": 336,
"pricePerPiece": 0.25997023809523806
},
{
"title": " LEGO Creator Expert Księgarnia (10270)",
"price": 651.52,
"pieces": 2504,
"pricePerPiece": 0.2601916932907348
},
{
"title": " LEGO Dots Cukierkowa kicia — bransoletka i zawieszka na torbę (41944)",
"price": 49,
"pieces": 188,
"pricePerPiece": 0.26063829787234044
},
{
"title": " LEGO Creator Morskie stworzenia (31088)",
"price": 59.99,
"pieces": 230,
"pricePerPiece": 0.26082608695652176
},
{
"title": " LEGO Ninjago Wielofunkcyjny ultramech ninja (71765)",
"price": 289.01,
"pieces": 1104,
"pricePerPiece": 0.26178442028985505
},
{
"title": " LEGO Super Mario Zestaw rozszerzający Wejście do rezydencji Luigiego (71399)",
"price": 132.53,
"pieces": 504,
"pricePerPiece": 0.2629563492063492
},
{
"title": " LEGO Technic Monster Jam El Toro Loco (42135)",
"price": 64.99,
"pieces": 247,
"pricePerPiece": 0.26311740890688257
},
{
"title": " LEGO Technic Land Rover Defender (42110)",
"price": 679,
"pieces": 2573,
"pricePerPiece": 0.2638942868247182
},
{
"title": " LEGO Technic samolot wyścigowy (42117)",
"price": 40.99,
"pieces": 154,
"pricePerPiece": 0.26616883116883117
},
{
"title": " LEGO Creator Uliczna wyścigówka (31127)",
"price": 69,
"pieces": 258,
"pricePerPiece": 0.26744186046511625
},
{
"title": " LEGO Creator Samochód wyścigowy (30187)",
"price": 14.99,
"pieces": 56,
"pricePerPiece": 0.26767857142857143
},
{
"title": " LEGO BrickHeadz Star Wars Mandalorianin i dziecko (75317)",
"price": 79.52,
"pieces": 295,
"pricePerPiece": 0.2695593220338983
},
{
"title": " LEGO Ninjago Dżunglowy smok (71746)",
"price": 137,
"pieces": 506,
"pricePerPiece": 0.2707509881422925
},
{
"title": " LEGO Friends Stragany z jedzeniem (41701)",
"price": 160.6,
"pieces": 592,
"pricePerPiece": 0.27128378378378376
},
{
"title": " LEGO Friends Stragany z jedzeniem (41701)",
"price": 160.6,
"pieces": 592,
"pricePerPiece": 0.27128378378378376
},
{
"title": " LEGO City Policyjny pościg za furgonetką z lodami (60314)",
"price": 86.98,
"pieces": 317,
"pricePerPiece": 0.27438485804416407
},
{
"title": " LEGO Ninjago Dżunglowy ścigacz (71700)",
"price": 34.99,
"pieces": 127,
"pricePerPiece": 0.27551181102362204
},
{
"title": " LEGO Minecraft Królicza farma (21181)",
"price": 93.91,
"pieces": 340,
"pricePerPiece": 0.2762058823529412
},
{
"title": " LEGO Star Wars TIE Advanced Prototype (30275)",
"price": 12.99,
"pieces": 47,
"pricePerPiece": 0.2763829787234043
},
{
"title": " LEGO Technic Wytrzymała koparka (42121)",
"price": 157.92,
"pieces": 569,
"pricePerPiece": 0.27753954305799644
},
{
"title": " LEGO Architecture Nowy Jork (21028)",
"price": 166.48,
"pieces": 598,
"pricePerPiece": 0.27839464882943143
},
{
"title": " LEGO Monkie Kid Galaktyczny Odkrywca Monkie Kida (80035)",
"price": 379,
"pieces": 1356,
"pricePerPiece": 0.27949852507374634
},
{
"title": " LEGO Monkie Kid Galaktyczny Odkrywca Monkie Kida (80035)",
"price": 379,
"pieces": 1356,
"pricePerPiece": 0.27949852507374634
},
{
"title": " LEGO Friends Dom rodzinny Andrei (41449)",
"price": 224.16,
"pieces": 802,
"pricePerPiece": 0.279501246882793
},
{
"title": " LEGO DC Super Heroes Batmobil: pościg za Pingwinem (76181)",
"price": 109.99,
"pieces": 392,
"pricePerPiece": 0.2805867346938775
},
{
"title": " LEGO City Policyjny konwój więzienny (60276)",
"price": 68.99,
"pieces": 244,
"pricePerPiece": 0.28274590163934427
},
{
"title": " LEGO Speed Champions Samochód wyścigowy Chevrolet Corvette C8.R i 1968 Chevrolet Corvette(76903)",
"price": 145.12,
"pieces": 512,
"pricePerPiece": 0.2834375
},
{
"title": " LEGO Creator Bukiet kwiatów (10280)",
"price": 214.99,
"pieces": 756,
"pricePerPiece": 0.2843783068783069
},
{
"title": " LEGO Creator Bukiet kwiatów (10280)",
"price": 214.99,
"pieces": 756,
"pricePerPiece": 0.2843783068783069
},
{
"title": " LEGO Minecraft Walka ze strażnikami (21180)",
"price": 72.83,
"pieces": 255,
"pricePerPiece": 0.2856078431372549
},
{
"title": " LEGO Marvel Eternals Domo powstaje (76156)",
"price": 299,
"pieces": 1040,
"pricePerPiece": 0.2875
},
{
"title": " LEGO Creator Dom strachu (10273)",
"price": 929,
"pieces": 3231,
"pricePerPiece": 0.28752708139894767
},
{
"title": " LEGO Architecture Londyn (21034)",
"price": 134.72,
"pieces": 468,
"pricePerPiece": 0.28786324786324785
},
{
"title": " LEGO Architecture Londyn (21034)",
"price": 134.72,
"pieces": 468,
"pricePerPiece": 0.28786324786324785
},
{
"title": " LEGO City Mobilne centrum dowodzenia policji (60315)",
"price": 127.79,
"pieces": 436,
"pricePerPiece": 0.29309633027522936
},
{
"title": " LEGO Friends Budynki przy głównej ulicy (41704)",
"price": 499,
"pieces": 1682,
"pricePerPiece": 0.2966706302021403
},
{
"title": " LEGO Friends Budynki przy głównej ulicy (41704)",
"price": 499,
"pieces": 1682,
"pricePerPiece": 0.2966706302021403
},
{
"title": " LEGO Creator Wahadłowiec Discovery NASA (10283)",
"price": 699,
"pieces": 2354,
"pricePerPiece": 0.29694137638062873
},
{
"title": " LEGO City Akcja strażacka i policyjny pościg (60319)",
"price": 87.71,
"pieces": 295,
"pricePerPiece": 0.2973220338983051
},
{
"title": " LEGO City Akcja strażacka i policyjny pościg (60319)",
"price": 87.71,
"pieces": 295,
"pricePerPiece": 0.2973220338983051
},
{
"title": " LEGO Super Mario Podniebny świat Lakitu - zestaw dodatkowy (71389)",
"price": 145.99,
"pieces": 484,
"pricePerPiece": 0.3016322314049587
},
{
"title": " LEGO Super Mario Sterowiec Bowsera - zestaw dodatkowy (71391)",
"price": 352.99,
"pieces": 1152,
"pricePerPiece": 0.3064149305555556
},
{
"title": " LEGO Dots Mini ramka (30556)",
"price": 26.4,
"pieces": 85,
"pricePerPiece": 0.3105882352941176
},
{
"title": " LEGO Ninjago Tytanowy Mini Mech (30591)",
"price": 23.99,
"pieces": 77,
"pricePerPiece": 0.31155844155844153
},
{
"title": " LEGO Ninjago Morska bitwa katamaranów (71748)",
"price": 243.99,
"pieces": 780,
"pricePerPiece": 0.31280769230769234
},
{
"title": " LEGO Creator Expert Domek elfów (10275)",
"price": 374.7,
"pieces": 1197,
"pricePerPiece": 0.31303258145363405
},
{
"title": " LEGO Creator Fantastyczne leśne stworzenia (31125)",
"price": 54.99,
"pieces": 175,
"pricePerPiece": 0.3142285714285714
},
{
"title": " LEGO Creator Statek piracki (31109)",
"price": 399,
"pieces": 1264,
"pricePerPiece": 0.31566455696202533
},
{
"title": " LEGO Creator Statek piracki (31109)",
"price": 399,
"pieces": 1264,
"pricePerPiece": 0.31566455696202533
},
{
"title": " LEGO Friends Autobus przyjaźni (41395)",
"price": 245.99,
"pieces": 778,
"pricePerPiece": 0.3161825192802057
},
{
"title": " LEGO Ninjago Smok wodny (71754)",
"price": 235,
"pieces": 737,
"pricePerPiece": 0.31886024423337855
},
{
"title": " LEGO Creator Odrzutowiec naddźwiękowy (31126)",
"price": 69,
"pieces": 215,
"pricePerPiece": 0.3209302325581395
},
{
"title": " LEGO Creator Diabelski młyn (31119)",
"price": 323.99,
"pieces": 1002,
"pricePerPiece": 0.3233433133732535
},
{
"title": " LEGO Friends Łódź mieszkalna na kanale (41702)",
"price": 239,
"pieces": 737,
"pricePerPiece": 0.3242876526458616
},
{
"title": " LEGO Star Wars Hełm Luke’a Skywalkera - Czerowny Pięć (75327)",
"price": 219,
"pieces": 675,
"pricePerPiece": 0.3244444444444444
},
{
"title": " LEGO Ninjago Atak smoka ognia (71753)",
"price": 182.72,
"pieces": 563,
"pricePerPiece": 0.3245470692717584
},
{
"title": " LEGO Friends Leśny domek (41679)",
"price": 105.99,
"pieces": 326,
"pricePerPiece": 0.32512269938650307
},
{
"title": " LEGO Friends Kawiarnia przy schronisku (41699)",
"price": 94.99,
"pieces": 292,
"pricePerPiece": 0.32530821917808217
},
{
"title": " LEGO Friends Luksusowy kemping na plaży (41700)",
"price": 124,
"pieces": 380,
"pricePerPiece": 0.3263157894736842
},
{
"title": " LEGO Star Wars Hełm Dartha Vadera (75304)",
"price": 273.52,
"pieces": 834,
"pricePerPiece": 0.3279616306954436
},
{
"title": " LEGO Friends Wakacyjny domek na plaży (41709)",
"price": 225,
"pieces": 686,
"pricePerPiece": 0.32798833819241985
},
{
"title": " LEGO DC Super Heroes Motocyklowy pościg Batmana i Seliny Kyle (76179)",
"price": 49,
"pieces": 149,
"pricePerPiece": 0.3288590604026846
},
{
"title": " LEGO Super Mario Boss Sumo Bro i przewracana wieża - zestaw dodatkowy (71388)",
"price": 75.99,
"pieces": 231,
"pricePerPiece": 0.32896103896103895
},
{
"title": " LEGO Harry Potter Wizyta w wiosce Hogsmeade (76388)",
"price": 280.78,
"pieces": 853,
"pricePerPiece": 0.32916764361078543
},
{
"title": " LEGO Star Wars Mikromyśliwce: At-At kontra Tauntaun (75298)",
"price": 67.6,
"pieces": 205,
"pricePerPiece": 0.32975609756097557
},
{
"title": " LEGO Technic Monster Jam Max-D (42119)",
"price": 75.99,
"pieces": 230,
"pricePerPiece": 0.33039130434782604
},
{
"title": " LEGO Harry Potter Privet Drive 4 (75968)",
"price": 263.98,
"pieces": 797,
"pricePerPiece": 0.33121706398996237
},
{
"title": " LEGO Friends Centrum handlowe w Heartlake City (41450)",
"price": 344.38,
"pieces": 1032,
"pricePerPiece": 0.3337015503875969
},
{
"title": " LEGO Technic Dom's Dodge Charger (42111)",
"price": 360.58,
"pieces": 1077,
"pricePerPiece": 0.3348003714020427
},
{
"title": " LEGO Technic Dom's Dodge Charger (42111)",
"price": 360.58,
"pieces": 1077,
"pricePerPiece": 0.3348003714020427
},
{
"title": " LEGO Technic Jeep Wrangler (42122)",
"price": 223.99,
"pieces": 665,
"pricePerPiece": 0.3368270676691729
},
{
"title": " LEGO Technic Jeep Wrangler (42122)",
"price": 223.99,
"pieces": 665,
"pricePerPiece": 0.3368270676691729
},
{
"title": " LEGO Technic Ducati Panigale V4 R (42107)",
"price": 217.99,
"pieces": 646,
"pricePerPiece": 0.33744582043343657
},
{
"title": " LEGO Creator Queer Eye – Mieszkanie Fab Five (10291)",
"price": 328.92,
"pieces": 974,
"pricePerPiece": 0.33770020533880907
},
{
"title": " LEGO Technic Ford F-150 Raptor (42126)",
"price": 465.99,
"pieces": 1379,
"pricePerPiece": 0.33791878172588835
},
{
"title": " LEGO Technic Ford F-150 Raptor (42126)",
"price": 465.99,
"pieces": 1379,
"pricePerPiece": 0.33791878172588835
},
{
"title": " LEGO Creator Pociąg (30575)",
"price": 19.99,
"pieces": 59,
"pricePerPiece": 0.3388135593220339
},
{
"title": " LEGO Creator Expert Lądownik księżycowy Apollo 11 NASA (10266)",
"price": 369,
"pieces": 1087,
"pricePerPiece": 0.33946642134314625
},
{
"title": " LEGO Star Wars Mikromyśliwiec Brzeszczot (75321)",
"price": 33.41,
"pieces": 98,
"pricePerPiece": 0.34091836734693876
},
{
"title": " LEGO Ninjago Energetyczny mech Zane’a EVO (71761)",
"price": 32.63,
"pieces": 95,
"pricePerPiece": 0.3434736842105263
},
{
"title": " LEGO Creator Potężne dinozaury (31058)",
"price": 59.99,
"pieces": 174,
"pricePerPiece": 0.34477011494252874
},
{
"title": " LEGO Technic Poduszkowiec ratowniczy (42120)",
"price": 158.99,
"pieces": 457,
"pricePerPiece": 0.3478993435448578
},
{
"title": " LEGO Ninjago Świątynia Bezkresnego Morza (71755)",
"price": 369,
"pieces": 1060,
"pricePerPiece": 0.3481132075471698
},
{
"title": " LEGO Super Mario Zestaw rozszerzający Duży jeżowiec i zabawa na plaży (71400)",
"price": 186.85,
"pieces": 536,
"pricePerPiece": 0.3486007462686567
},
{
"title": " LEGO Creator Expert Londyński autobus (10258)",
"price": 589,
"pieces": 1686,
"pricePerPiece": 0.34934756820877816
},
{
"title": " LEGO Harry Potter Skrzydło szpitalne Hogwartu (76398)",
"price": 179,
"pieces": 510,
"pricePerPiece": 0.3509803921568627
},
{
"title": " LEGO Creator Wakacyjny kemping z rodziną (31108)",
"price": 269,
"pieces": 766,
"pricePerPiece": 0.35117493472584854
},
{
"title": " LEGO Creator Porsche 911 (10295) ",
"price": 514.32,
"pieces": 1461,
"pricePerPiece": 0.35203285420944563
},
{
"title": " LEGO Technic Pojazd terenowy (42139)",
"price": 269,
"pieces": 764,
"pricePerPiece": 0.35209424083769636
},
{
"title": " LEGO City Napad na bank (60317)",
"price": 325,
"pieces": 915,
"pricePerPiece": 0.3551912568306011
},
{
"title": " LEGO Technic Ferrari 488 GTE AF Corse #51 (42125)",
"price": 595,
"pieces": 1672,
"pricePerPiece": 0.35586124401913877
},
{
"title": " LEGO Marvel Figurka Iron Mana (76206)",
"price": 135.39,
"pieces": 380,
"pricePerPiece": 0.3562894736842105
},
{
"title": " LEGO Friends Kino w Heartlake City (41448)",
"price": 160.99,
"pieces": 451,
"pricePerPiece": 0.35696230598669626
},
{
"title": " LEGO Creator Expert Ford Mustang (10265)",
"price": 529,
"pieces": 1471,
"pricePerPiece": 0.35961930659415364
},
{
"title": " LEGO City Furgonetka z lodami (60253)",
"price": 71.99,
"pieces": 200,
"pricePerPiece": 0.35995
},
{
"title": " LEGO City Łazik księżycowy (60348)",
"price": 99,
"pieces": 275,
"pricePerPiece": 0.36
},
{
"title": " LEGO Marvel Starcie z Gargantosem (76205)",
"price": 96,
"pieces": 264,
"pricePerPiece": 0.36363636363636365
},
{
"title": " LEGO Friends Leśny mikrobus kempingowy i żaglówka (41681)",
"price": 177.99,
"pieces": 487,
"pricePerPiece": 0.36548254620123205
},
{
"title": " LEGO City Remiza strażacka (60320)",
"price": 197.38,
"pieces": 540,
"pricePerPiece": 0.3655185185185185
},
{
"title": " LEGO City Remiza strażacka (60320)",
"price": 197.38,
"pieces": 540,
"pricePerPiece": 0.3655185185185185
},
{
"title": " LEGO Technic Porsche 911 RSR (42096)",
"price": 579,
"pieces": 1580,
"pricePerPiece": 0.36645569620253166
},
{
"title": " LEGO Technic Porsche 911 RSR (42096)",
"price": 579,
"pieces": 1580,
"pricePerPiece": 0.36645569620253166
},
{
"title": " LEGO Harry Potter Chwile z Hogwartu: zajęcia z wróżbiarstwa (76396)",
"price": 109,
"pieces": 297,
"pricePerPiece": 0.367003367003367
},
{
"title": " LEGO Star Wars Imperialny droid zwiadowczy (75306)",
"price": 250.99,
"pieces": 683,
"pricePerPiece": 0.36748169838945827
},
{
"title": " LEGO Creator Owczarek niemiecki (30578)",
"price": 27.99,
"pieces": 76,
"pricePerPiece": 0.3682894736842105
},
{
"title": " LEGO Friends Hotel dla zwierzątek (41718)",
"price": 219,
"pieces": 593,
"pricePerPiece": 0.36930860033726814
},
{
"title": " LEGO Minecraft Dungeons Postrach Dżungli (21176)",
"price": 182.99,
"pieces": 489,
"pricePerPiece": 0.3742126789366053
},
{
"title": " LEGO Star Wars Hełm Mandalorianina (75328)",
"price": 219,
"pieces": 584,
"pricePerPiece": 0.375
},
{
"title": " LEGO Minecraft Dom w kształcie świni (21170)",
"price": 184.99,
"pieces": 490,
"pricePerPiece": 0.377530612244898
},
{
"title": " LEGO Technic Formula E Porsche 99X Electric (42137)",
"price": 159.99,
"pieces": 422,
"pricePerPiece": 0.3791232227488152
},
{
"title": " LEGO Technic Formula E Porsche 99X Electric (42137)",
"price": 159.99,
"pieces": 422,
"pricePerPiece": 0.3791232227488152
},
{
"title": " LEGO Harry Potter Kalendarz adwentowy 2021 (76390)",
"price": 103.99,
"pieces": 274,
"pricePerPiece": 0.37952554744525546
},
{
"title": " LEGO Ninjago Turniej Żywiołów (71735)",
"price": 107.5,
"pieces": 283,
"pricePerPiece": 0.37985865724381623
},
{
"title": " LEGO Marvel Venom (76187)",
"price": 214.98,
"pieces": 565,
"pricePerPiece": 0.38049557522123895
},
{
"title": " LEGO Marvel Eternals Zasadzka Dewiantów! (76154)",
"price": 74.99,