Goal is to predict attrition #import data
library(tidyverse)
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr 1.1.4 ✔ readr 2.1.6
## ✔ forcats 1.0.1 ✔ stringr 1.6.0
## ✔ ggplot2 4.0.2 ✔ tibble 3.3.1
## ✔ lubridate 1.9.4 ✔ tidyr 1.3.2
## ✔ purrr 1.2.1
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(correlationfunnel)
## ══ Using correlationfunnel? ════════════════════════════════════════════════════
## You might also be interested in applied data science training for business.
## </> Learn more at - www.business-science.io </>
library(tidymodels)
## ── Attaching packages ────────────────────────────────────── tidymodels 1.4.1 ──
## ✔ broom 1.0.12 ✔ rsample 1.3.2
## ✔ dials 1.4.2 ✔ tailor 0.1.0
## ✔ infer 1.1.0 ✔ tune 2.0.1
## ✔ modeldata 1.5.1 ✔ workflows 1.3.0
## ✔ parsnip 1.4.1 ✔ workflowsets 1.1.1
## ✔ recipes 1.3.1 ✔ yardstick 1.3.2
## ── Conflicts ───────────────────────────────────────── tidymodels_conflicts() ──
## ✖ scales::discard() masks purrr::discard()
## ✖ dplyr::filter() masks stats::filter()
## ✖ recipes::fixed() masks stringr::fixed()
## ✖ dplyr::lag() masks stats::lag()
## ✖ yardstick::spec() masks readr::spec()
## ✖ recipes::step() masks stats::step()
library(textrecipes)
ikea <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/main/data/2020/2020-11-03/ikea.csv')
## New names:
## Rows: 3694 Columns: 14
## ── Column specification
## ──────────────────────────────────────────────────────── Delimiter: "," chr
## (7): name, category, old_price, link, other_colors, short_description, d... dbl
## (6): ...1, item_id, price, depth, height, width lgl (1): sellable_online
## ℹ Use `spec()` to retrieve the full column specification for this data. ℹ
## Specify the column types or set `show_col_types = FALSE` to quiet this message.
## • `` -> `...1`
#clean data
skimr::skim(ikea)
| Name | ikea |
| Number of rows | 3694 |
| Number of columns | 14 |
| _______________________ | |
| Column type frequency: | |
| character | 7 |
| logical | 1 |
| numeric | 6 |
| ________________________ | |
| Group variables | None |
Variable type: character
| skim_variable | n_missing | complete_rate | min | max | empty | n_unique | whitespace |
|---|---|---|---|---|---|---|---|
| name | 0 | 1 | 3 | 27 | 0 | 607 | 0 |
| category | 0 | 1 | 4 | 36 | 0 | 17 | 0 |
| old_price | 0 | 1 | 4 | 13 | 0 | 365 | 0 |
| link | 0 | 1 | 52 | 163 | 0 | 2962 | 0 |
| other_colors | 0 | 1 | 2 | 3 | 0 | 2 | 0 |
| short_description | 0 | 1 | 3 | 63 | 0 | 1706 | 0 |
| designer | 0 | 1 | 3 | 1261 | 0 | 381 | 0 |
Variable type: logical
| skim_variable | n_missing | complete_rate | mean | count |
|---|---|---|---|---|
| sellable_online | 0 | 1 | 0.99 | TRU: 3666, FAL: 28 |
Variable type: numeric
| skim_variable | n_missing | complete_rate | mean | sd | p0 | p25 | p50 | p75 | p100 | hist |
|---|---|---|---|---|---|---|---|---|---|---|
| …1 | 0 | 1.00 | 1846.50 | 1066.51 | 0 | 923.25 | 1846.5 | 2769.75 | 3693 | ▇▇▇▇▇ |
| item_id | 0 | 1.00 | 48632396.79 | 28887094.10 | 58487 | 20390574.00 | 49288078.0 | 70403572.75 | 99932615 | ▇▇▇▇▇ |
| price | 0 | 1.00 | 1078.21 | 1374.65 | 3 | 180.90 | 544.7 | 1429.50 | 9585 | ▇▁▁▁▁ |
| depth | 1463 | 0.60 | 54.38 | 29.96 | 1 | 38.00 | 47.0 | 60.00 | 257 | ▇▃▁▁▁ |
| height | 988 | 0.73 | 101.68 | 61.10 | 1 | 67.00 | 83.0 | 124.00 | 700 | ▇▂▁▁▁ |
| width | 589 | 0.84 | 104.47 | 71.13 | 1 | 60.00 | 80.0 | 140.00 | 420 | ▇▅▂▁▁ |
ikea <- ikea %>% na.omit()
factors_vec <- ikea %>% select(item_id, price, depth, height, width, -...1) %>% names()
ikea_clean <- ikea %>%
#mutate(Education = Education %>% as.factor()) %>%
#address factors imported as numeric
mutate(across(all_of(factors_vec), as.factor)) %>%
mutate(across(is.logical, as.factor))
## Warning: There was 1 warning in `mutate()`.
## ℹ In argument: `across(is.logical, as.factor)`.
## Caused by warning:
## ! Use of bare predicate functions was deprecated in tidyselect 1.1.0.
## ℹ Please use wrap predicates in `where()` instead.
## # Was:
## data %>% select(is.logical)
##
## # Now:
## data %>% select(where(is.logical))
#drop zero variance variables
#explore data
ikea_clean %>% count(name)
## # A tibble: 289 × 2
## name n
## <chr> <int>
## 1 ADDE 1
## 2 AGAM 4
## 3 AGEN 1
## 4 ALEX 7
## 5 ALGOT 24
## 6 ALGOT / BROR 1
## 7 ALGOT / SKÅDIS 1
## 8 ANGERSBY 1
## 9 ANTILOP 4
## 10 ARKELSTORP 2
## # ℹ 279 more rows
ikea_clean %>%
ggplot(aes(name)) +
geom_bar()
#step 1
ikea_binarized <- ikea_clean %>%
select(-item_id) %>%
binarize()
ikea_binarized %>%glimpse()
## Rows: 1,899
## Columns: 180
## $ `...1__-Inf_799.5` <dbl> …
## $ ...1__799.5_1653 <dbl> …
## $ ...1__1653_2474.5 <dbl> …
## $ ...1__2474.5_Inf <dbl> …
## $ name__ALGOT <dbl> …
## $ name__BEKANT <dbl> …
## $ name__BESTÅ <dbl> …
## $ `name__BILLY_/_OXBERG` <dbl> …
## $ name__BRIMNES <dbl> …
## $ name__BROR <dbl> …
## $ name__EKET <dbl> …
## $ name__GRÖNLID <dbl> …
## $ name__HAVSTA <dbl> …
## $ name__HAVSTEN <dbl> …
## $ name__HEMNES <dbl> …
## $ name__IVAR <dbl> …
## $ name__JONAXEL <dbl> …
## $ name__KALLAX <dbl> …
## $ name__LIDHULT <dbl> …
## $ name__LIXHULT <dbl> …
## $ name__NORDLI <dbl> …
## $ name__PAX <dbl> …
## $ name__PLATSA <dbl> …
## $ `name__STUVA_/_FRITIDS` <dbl> …
## $ name__TROFAST <dbl> …
## $ name__VALLENTUNA <dbl> …
## $ name__VIMLE <dbl> …
## $ `name__-OTHER` <dbl> …
## $ category__Bar_furniture <dbl> …
## $ category__Beds <dbl> …
## $ `category__Bookcases_&_shelving_units` <dbl> …
## $ `category__Cabinets_&_cupboards` <dbl> …
## $ category__Chairs <dbl> …
## $ `category__Chests_of_drawers_&_drawer_units` <dbl> …
## $ `category__Children's_furniture` <dbl> …
## $ category__Nursery_furniture <dbl> …
## $ category__Outdoor_furniture <dbl> …
## $ `category__Sideboards,_buffets_&_console_tables` <dbl> …
## $ `category__Sofas_&_armchairs` <dbl> …
## $ `category__Tables_&_desks` <dbl> …
## $ `category__TV_&_media_furniture` <dbl> …
## $ category__Wardrobes <dbl> …
## $ `category__-OTHER` <dbl> …
## $ price__175 <dbl> …
## $ price__195 <dbl> …
## $ price__225 <dbl> …
## $ price__275 <dbl> …
## $ price__295 <dbl> …
## $ price__345 <dbl> …
## $ price__375 <dbl> …
## $ price__395 <dbl> …
## $ price__495 <dbl> …
## $ price__595 <dbl> …
## $ price__695 <dbl> …
## $ price__995 <dbl> …
## $ `price__-OTHER` <dbl> …
## $ old_price__No_old_price <dbl> …
## $ `old_price__-OTHER` <dbl> …
## $ sellable_online__TRUE <dbl> …
## $ `sellable_online__-OTHER` <dbl> …
## $ `link__https://www.ikea.com/sa/en/p/besta-burs-tv-bench-high-gloss-white-30269129/` <dbl> …
## $ `link__-OTHER` <dbl> …
## $ other_colors__No <dbl> …
## $ other_colors__Yes <dbl> …
## $ `short_description__3-seat_sofa` <dbl> …
## $ `short_description__3-seat_sofa-bed` <dbl> …
## $ short_description__Armchair <dbl> …
## $ short_description__Chair <dbl> …
## $ `short_description__Wardrobe,__________150x66x236_cm` <dbl> …
## $ `short_description__-OTHER` <dbl> …
## $ designer__Andreas_Fredriksson <dbl> …
## $ designer__Carina_Bengs <dbl> …
## $ designer__Carl_Öjerstam <dbl> …
## $ designer__Ebba_Strandmark <dbl> …
## $ designer__Ehlén_Johansson <dbl> …
## $ `designer__Ehlén_Johansson/IKEA_of_Sweden` <dbl> …
## $ designer__Eva_Lilja_Löwenhielm <dbl> …
## $ designer__Francis_Cayouette <dbl> …
## $ designer__Gillis_Lundgren <dbl> …
## $ designer__Henrik_Preutz <dbl> …
## $ designer__IKEA_of_Sweden <dbl> …
## $ `designer__IKEA_of_Sweden/Ehlén_Johansson` <dbl> …
## $ `designer__IKEA_of_Sweden/Jon_Karlsson` <dbl> …
## $ designer__Johan_Kroon <dbl> …
## $ designer__Jon_Karlsson <dbl> …
## $ `designer__Jon_Karlsson/IKEA_of_Sweden` <dbl> …
## $ `designer__K_Hagberg/M_Hagberg` <dbl> …
## $ designer__Mia_Lagerman <dbl> …
## $ designer__Nike_Karlsson <dbl> …
## $ designer__Ola_Wihlborg <dbl> …
## $ designer__Studio_Copenhagen <dbl> …
## $ designer__Tord_Björklund <dbl> …
## $ `designer__-OTHER` <dbl> …
## $ depth__25 <dbl> …
## $ depth__28 <dbl> …
## $ depth__30 <dbl> …
## $ depth__35 <dbl> …
## $ depth__36 <dbl> …
## $ depth__37 <dbl> …
## $ depth__38 <dbl> …
## $ depth__39 <dbl> …
## $ depth__40 <dbl> …
## $ depth__41 <dbl> …
## $ depth__42 <dbl> …
## $ depth__44 <dbl> …
## $ depth__45 <dbl> …
## $ depth__47 <dbl> …
## $ depth__48 <dbl> …
## $ depth__49 <dbl> …
## $ depth__50 <dbl> …
## $ depth__51 <dbl> …
## $ depth__52 <dbl> …
## $ depth__55 <dbl> …
## $ depth__57 <dbl> …
## $ depth__58 <dbl> …
## $ depth__60 <dbl> …
## $ depth__66 <dbl> …
## $ depth__82 <dbl> …
## $ depth__94 <dbl> …
## $ depth__98 <dbl> …
## $ depth__164 <dbl> …
## $ `depth__-OTHER` <dbl> …
## $ height__35 <dbl> …
## $ height__38 <dbl> …
## $ height__45 <dbl> …
## $ height__64 <dbl> …
## $ height__70 <dbl> …
## $ height__74 <dbl> …
## $ height__75 <dbl> …
## $ height__76 <dbl> …
## $ height__78 <dbl> …
## $ height__79 <dbl> …
## $ height__80 <dbl> …
## $ height__83 <dbl> …
## $ height__84 <dbl> …
## $ height__85 <dbl> …
## $ height__87 <dbl> …
## $ height__90 <dbl> …
## $ height__91 <dbl> …
## $ height__95 <dbl> …
## $ height__100 <dbl> …
## $ height__101 <dbl> …
## $ height__102 <dbl> …
## $ height__104 <dbl> …
## $ height__128 <dbl> …
## $ height__147 <dbl> …
## $ height__176 <dbl> …
## $ height__179 <dbl> …
## $ height__190 <dbl> …
## $ height__192 <dbl> …
## $ height__197 <dbl> …
## $ height__201 <dbl> …
## $ height__202 <dbl> …
## $ height__236 <dbl> …
## $ `height__-OTHER` <dbl> …
## $ width__35 <dbl> …
## $ width__40 <dbl> …
## $ width__41 <dbl> …
## $ width__42 <dbl> …
## $ width__44 <dbl> …
## $ width__45 <dbl> …
## $ width__46 <dbl> …
## $ width__50 <dbl> …
## $ width__56 <dbl> …
## $ width__60 <dbl> …
## $ width__70 <dbl> …
## $ width__80 <dbl> …
## $ width__89 <dbl> …
## $ width__90 <dbl> …
## $ width__99 <dbl> …
## $ width__100 <dbl> …
## $ width__120 <dbl> …
## $ width__140 <dbl> …
## $ width__150 <dbl> …
## $ width__160 <dbl> …
## $ width__180 <dbl> …
## $ width__200 <dbl> …
## $ width__240 <dbl> …
## $ width__300 <dbl> …
## $ `width__-OTHER` <dbl> …
#step 2L correlation
#ikea_correlation <- ikea_binarized %>%
#correlate(sellable_online__1)
#ikea_correlation
#step 3: plot
#ikea_correlation %>%
# correlationfunnel::plot_correlation_funnel()
set.seed(1234)
#ikea_clean <- ikea_clean %>% sample_n(500)
ikea_split <- initial_split(ikea_clean, strata = sellable_online)
ikea_train <- training(ikea_split)
ikea_test <- testing(ikea_split)
ikea_cv <-rsample::vfold_cv(ikea_train, strata = sellable_online)
ikea_cv
## # 10-fold cross-validation using stratification
## # A tibble: 10 × 2
## splits id
## <list> <chr>
## 1 <split [1281/143]> Fold01
## 2 <split [1281/143]> Fold02
## 3 <split [1281/143]> Fold03
## 4 <split [1281/143]> Fold04
## 5 <split [1282/142]> Fold05
## 6 <split [1282/142]> Fold06
## 7 <split [1282/142]> Fold07
## 8 <split [1282/142]> Fold08
## 9 <split [1282/142]> Fold09
## 10 <split [1282/142]> Fold10
library(themis)
xgboost_recipe <- recipes::recipe(sellable_online ~., data = ikea_train) %>%
step_dummy(all_nominal_predictors()) %>%
step_smote(sellable_online)
xgboost_recipe %>% prep() %>% juice() %>% glimpse()
## Rows: 2,828
## Columns: 5,603
## $ ...1 <dbl> …
## $ item_id_X121766 <dbl> …
## $ item_id_X141689 <dbl> …
## $ item_id_X152282 <dbl> …
## $ item_id_X165213 <dbl> …
## $ item_id_X198591 <dbl> …
## $ item_id_X211088 <dbl> …
## $ item_id_X217797 <dbl> …
## $ item_id_X228705 <dbl> …
## $ item_id_X242278 <dbl> …
## $ item_id_X243800 <dbl> …
## $ item_id_X245842 <dbl> …
## $ item_id_X246078 <dbl> …
## $ item_id_X250249 <dbl> …
## $ item_id_X262879 <dbl> …
## $ item_id_X263850 <dbl> …
## $ item_id_X272656 <dbl> …
## $ item_id_X275848 <dbl> …
## $ item_id_X276664 <dbl> …
## $ item_id_X278578 <dbl> …
## $ item_id_X287974 <dbl> …
## $ item_id_X298128 <dbl> …
## $ item_id_X302291 <dbl> …
## $ item_id_X319135 <dbl> …
## $ item_id_X322897 <dbl> …
## $ item_id_X323359 <dbl> …
## $ item_id_X327772 <dbl> …
## $ item_id_X334536 <dbl> …
## $ item_id_X335885 <dbl> …
## $ item_id_X339204 <dbl> …
## $ item_id_X340047 <dbl> …
## $ item_id_X344941 <dbl> …
## $ item_id_X347614 <dbl> …
## $ item_id_X351248 <dbl> …
## $ item_id_X353761 <dbl> …
## $ item_id_X361940 <dbl> …
## $ item_id_X363171 <dbl> …
## $ item_id_X365924 <dbl> …
## $ item_id_X374297 <dbl> …
## $ item_id_X380948 <dbl> …
## $ item_id_X385069 <dbl> …
## $ item_id_X392041 <dbl> …
## $ item_id_X393371 <dbl> …
## $ item_id_X396416 <dbl> …
## $ item_id_X397736 <dbl> …
## $ item_id_X399033 <dbl> …
## $ item_id_X400545 <dbl> …
## $ item_id_X400550 <dbl> …
## $ item_id_X400692 <dbl> …
## $ item_id_X410747 <dbl> …
## $ item_id_X415194 <dbl> …
## $ item_id_X417635 <dbl> …
## $ item_id_X421656 <dbl> …
## $ item_id_X421915 <dbl> …
## $ item_id_X423721 <dbl> …
## $ item_id_X428974 <dbl> …
## $ item_id_X429426 <dbl> …
## $ item_id_X439468 <dbl> …
## $ item_id_X441758 <dbl> …
## $ item_id_X450088 <dbl> …
## $ item_id_X450347 <dbl> …
## $ item_id_X450352 <dbl> …
## $ item_id_X451498 <dbl> …
## $ item_id_X471222 <dbl> …
## $ item_id_X9017483 <dbl> …
## $ item_id_X9017826 <dbl> …
## $ item_id_X9017831 <dbl> …
## $ item_id_X9025765 <dbl> …
## $ item_id_X9028759 <dbl> …
## $ item_id_X9068316 <dbl> …
## $ item_id_X9102532 <dbl> …
## $ item_id_X9139724 <dbl> …
## $ item_id_X9149879 <dbl> …
## $ item_id_X9157529 <dbl> …
## $ item_id_X9171035 <dbl> …
## $ item_id_X9177626 <dbl> …
## $ item_id_X9184448 <dbl> …
## $ item_id_X9186112 <dbl> …
## $ item_id_X9186126 <dbl> …
## $ item_id_X9188842 <dbl> …
## $ item_id_X9188979 <dbl> …
## $ item_id_X9189484 <dbl> …
## $ item_id_X9192518 <dbl> …
## $ item_id_X9193754 <dbl> …
## $ item_id_X9197436 <dbl> …
## $ item_id_X9208029 <dbl> …
## $ item_id_X9217849 <dbl> …
## $ item_id_X9219278 <dbl> …
## $ item_id_X9219457 <dbl> …
## $ item_id_X9219527 <dbl> …
## $ item_id_X9220842 <dbl> …
## $ item_id_X9227532 <dbl> …
## $ item_id_X9239498 <dbl> …
## $ item_id_X9239827 <dbl> …
## $ item_id_X9241420 <dbl> …
## $ item_id_X9241509 <dbl> …
## $ item_id_X9247257 <dbl> …
## $ item_id_X9248006 <dbl> …
## $ item_id_X9248351 <dbl> …
## $ item_id_X9248544 <dbl> …
## $ item_id_X9248855 <dbl> …
## $ item_id_X9248916 <dbl> …
## $ item_id_X9251348 <dbl> …
## $ item_id_X9251777 <dbl> …
## $ item_id_X9251956 <dbl> …
## $ item_id_X9251961 <dbl> …
## $ item_id_X9252593 <dbl> …
## $ item_id_X9252673 <dbl> …
## $ item_id_X9253639 <dbl> …
## $ item_id_X9256256 <dbl> …
## $ item_id_X9257029 <dbl> …
## $ item_id_X9265053 <dbl> …
## $ item_id_X9265883 <dbl> …
## $ item_id_X9265920 <dbl> …
## $ item_id_X9266024 <dbl> …
## $ item_id_X9270295 <dbl> …
## $ item_id_X9276650 <dbl> …
## $ item_id_X9276971 <dbl> …
## $ item_id_X9277211 <dbl> …
## $ item_id_X9278003 <dbl> …
## $ item_id_X9278338 <dbl> …
## $ item_id_X9278569 <dbl> …
## $ item_id_X9279026 <dbl> …
## $ item_id_X9279050 <dbl> …
## $ item_id_X9279371 <dbl> …
## $ item_id_X9282528 <dbl> …
## $ item_id_X9282547 <dbl> …
## $ item_id_X9284909 <dbl> …
## $ item_id_X9285070 <dbl> …
## $ item_id_X9285683 <dbl> …
## $ item_id_X9287192 <dbl> …
## $ item_id_X9287291 <dbl> …
## $ item_id_X9287413 <dbl> …
## $ item_id_X9287979 <dbl> …
## $ item_id_X9289327 <dbl> …
## $ item_id_X9289346 <dbl> …
## $ item_id_X9289884 <dbl> …
## $ item_id_X9290123 <dbl> …
## $ item_id_X9291622 <dbl> …
## $ item_id_X9293107 <dbl> …
## $ item_id_X9294526 <dbl> …
## $ item_id_X9296950 <dbl> …
## $ item_id_X9297134 <dbl> …
## $ item_id_X9297488 <dbl> …
## $ item_id_X9297657 <dbl> …
## $ item_id_X9299661 <dbl> …
## $ item_id_X9300103 <dbl> …
## $ item_id_X9300650 <dbl> …
## $ item_id_X9301131 <dbl> …
## $ item_id_X9301664 <dbl> …
## $ item_id_X9302908 <dbl> …
## $ item_id_X9302913 <dbl> …
## $ item_id_X9303309 <dbl> …
## $ item_id_X9303719 <dbl> …
## $ item_id_X9303941 <dbl> …
## $ item_id_X9303960 <dbl> …
## $ item_id_X9304196 <dbl> …
## $ item_id_X9305068 <dbl> …
## $ item_id_X9305087 <dbl> …
## $ item_id_X9305247 <dbl> …
## $ item_id_X9305761 <dbl> …
## $ item_id_X9305836 <dbl> …
## $ item_id_X9306204 <dbl> …
## $ item_id_X9306355 <dbl> …
## $ item_id_X9306416 <dbl> …
## $ item_id_X9306435 <dbl> …
## $ item_id_X9307741 <dbl> …
## $ item_id_X9323623 <dbl> …
## $ item_id_X9324284 <dbl> …
## $ item_id_X9324689 <dbl> …
## $ item_id_X9325047 <dbl> …
## $ item_id_X9325387 <dbl> …
## $ item_id_X9329390 <dbl> …
## $ item_id_X9384051 <dbl> …
## $ item_id_X9903014 <dbl> …
## $ item_id_X9903820 <dbl> …
## $ item_id_X9904706 <dbl> …
## $ item_id_X10091453 <dbl> …
## $ item_id_X10115067 <dbl> …
## $ item_id_X10118971 <dbl> …
## $ item_id_X10119206 <dbl> …
## $ item_id_X10122647 <dbl> …
## $ item_id_X10174641 <dbl> …
## $ item_id_X10192824 <dbl> …
## $ item_id_X10198604 <dbl> …
## $ item_id_X10203610 <dbl> …
## $ item_id_X10205181 <dbl> …
## $ item_id_X10218517 <dbl> …
## $ item_id_X10219178 <dbl> …
## $ item_id_X10233532 <dbl> …
## $ item_id_X10234942 <dbl> …
## $ item_id_X10239280 <dbl> …
## $ item_id_X10245846 <dbl> …
## $ item_id_X10251451 <dbl> …
## $ item_id_X10255307 <dbl> …
## $ item_id_X10261129 <dbl> …
## $ item_id_X10267046 <dbl> …
## $ item_id_X10269696 <dbl> …
## $ item_id_X10275862 <dbl> …
## $ item_id_X10281354 <dbl> …
## $ item_id_X10288628 <dbl> …
## $ item_id_X10293597 <dbl> …
## $ item_id_X10294511 <dbl> …
## $ item_id_X10299877 <dbl> …
## $ item_id_X10302295 <dbl> …
## $ item_id_X10306613 <dbl> …
## $ item_id_X10308693 <dbl> …
## $ item_id_X10308787 <dbl> …
## $ item_id_X10330811 <dbl> …
## $ item_id_X10334611 <dbl> …
## $ item_id_X10334753 <dbl> …
## $ item_id_X10343328 <dbl> …
## $ item_id_X10351511 <dbl> …
## $ item_id_X10353765 <dbl> …
## $ item_id_X10363632 <dbl> …
## $ item_id_X10365928 <dbl> …
## $ item_id_X10373495 <dbl> …
## $ item_id_X10383461 <dbl> …
## $ item_id_X10385950 <dbl> …
## $ item_id_X10386450 <dbl> …
## $ item_id_X10386501 <dbl> …
## $ item_id_X10388661 <dbl> …
## $ item_id_X10391324 <dbl> …
## $ item_id_X10397745 <dbl> …
## $ item_id_X10400540 <dbl> …
## $ item_id_X10404519 <dbl> …
## $ item_id_X10407136 <dbl> …
## $ item_id_X10409871 <dbl> …
## $ item_id_X10411421 <dbl> …
## $ item_id_X10411440 <dbl> …
## $ item_id_X10413137 <dbl> …
## $ item_id_X10417852 <dbl> …
## $ item_id_X10421665 <dbl> …
## $ item_id_X10422504 <dbl> …
## $ item_id_X10423589 <dbl> …
## $ item_id_X10424621 <dbl> …
## $ item_id_X10429992 <dbl> …
## $ item_id_X10453086 <dbl> …
## $ item_id_X10455410 <dbl> …
## $ item_id_X10459903 <dbl> …
## $ item_id_X10460888 <dbl> …
## $ item_id_X10469186 <dbl> …
## $ item_id_X10471085 <dbl> …
## $ item_id_X19020480 <dbl> …
## $ item_id_X19028754 <dbl> …
## $ item_id_X19030592 <dbl> …
## $ item_id_X19046442 <dbl> …
## $ item_id_X19057483 <dbl> …
## $ item_id_X19057906 <dbl> …
## $ item_id_X19102659 <dbl> …
## $ item_id_X19127297 <dbl> …
## $ item_id_X19127382 <dbl> …
## $ item_id_X19129178 <dbl> …
## $ item_id_X19129932 <dbl> …
## $ item_id_X19166180 <dbl> …
## $ item_id_X19175957 <dbl> …
## $ item_id_X19184339 <dbl> …
## $ item_id_X19189030 <dbl> …
## $ item_id_X19189916 <dbl> …
## $ item_id_X19190340 <dbl> …
## $ item_id_X19194456 <dbl> …
## $ item_id_X19194649 <dbl> …
## $ item_id_X19197704 <dbl> …
## $ item_id_X19203781 <dbl> …
## $ item_id_X19205884 <dbl> …
## $ item_id_X19211757 <dbl> …
## $ item_id_X19216694 <dbl> …
## $ item_id_X19221087 <dbl> …
## $ item_id_X19222299 <dbl> …
## $ item_id_X19227640 <dbl> …
## $ item_id_X19231152 <dbl> …
## $ item_id_X19239817 <dbl> …
## $ item_id_X19240062 <dbl> …
## $ item_id_X19240892 <dbl> …
## $ item_id_X19241387 <dbl> …
## $ item_id_X19241472 <dbl> …
## $ item_id_X19241491 <dbl> …
## $ item_id_X19241537 <dbl> …
## $ item_id_X19248015 <dbl> …
## $ item_id_X19249406 <dbl> …
## $ item_id_X19252615 <dbl> …
## $ item_id_X19252856 <dbl> …
## $ item_id_X19254780 <dbl> …
## $ item_id_X19257076 <dbl> …
## $ item_id_X19262233 <dbl> …
## $ item_id_X19266033 <dbl> …
## $ item_id_X19266603 <dbl> …
## $ item_id_X19270266 <dbl> …
## $ item_id_X19272699 <dbl> …
## $ item_id_X19275075 <dbl> …
## $ item_id_X19275136 <dbl> …
## $ item_id_X19275235 <dbl> …
## $ item_id_X19275909 <dbl> …
## $ item_id_X19276414 <dbl> …
## $ item_id_X19276522 <dbl> …
## $ item_id_X19276621 <dbl> …
## $ item_id_X19277116 <dbl> …
## $ item_id_X19278210 <dbl> …
## $ item_id_X19278234 <dbl> …
## $ item_id_X19278328 <dbl> …
## $ item_id_X19278502 <dbl> …
## $ item_id_X19279177 <dbl> …
## $ item_id_X19282919 <dbl> …
## $ item_id_X19282924 <dbl> …
## $ item_id_X19282962 <dbl> …
## $ item_id_X19284796 <dbl> …
## $ item_id_X19284857 <dbl> …
## $ item_id_X19285588 <dbl> …
## $ item_id_X19285791 <dbl> …
## $ item_id_X19286272 <dbl> …
## $ item_id_X19286390 <dbl> …
## $ item_id_X19286521 <dbl> …
## $ item_id_X19287714 <dbl> …
## $ item_id_X19288006 <dbl> …
## $ item_id_X19289303 <dbl> …
## $ item_id_X19289341 <dbl> …
## $ item_id_X19289548 <dbl> …
## $ item_id_X19289911 <dbl> …
## $ item_id_X19290014 <dbl> …
## $ item_id_X19290071 <dbl> …
## $ item_id_X19290603 <dbl> …
## $ item_id_X19291315 <dbl> …
## $ item_id_X19291645 <dbl> …
## $ item_id_X19291650 <dbl> …
## $ item_id_X19292678 <dbl> …
## $ item_id_X19294502 <dbl> …
## $ item_id_X19297138 <dbl> …
## $ item_id_X19297685 <dbl> …
## $ item_id_X19298265 <dbl> …
## $ item_id_X19299726 <dbl> …
## $ item_id_X19300107 <dbl> …
## $ item_id_X19301927 <dbl> …
## $ item_id_X19302917 <dbl> …
## $ item_id_X19302998 <dbl> …
## $ item_id_X19303380 <dbl> …
## $ item_id_X19303498 <dbl> …
## $ item_id_X19304006 <dbl> …
## $ item_id_X19304209 <dbl> …
## $ item_id_X19304582 <dbl> …
## $ item_id_X19305671 <dbl> …
## $ item_id_X19305807 <dbl> …
## $ item_id_X19305812 <dbl> …
## $ item_id_X19305906 <dbl> …
## $ item_id_X19306185 <dbl> …
## $ item_id_X19306307 <dbl> …
## $ item_id_X19306326 <dbl> …
## $ item_id_X19309725 <dbl> …
## $ item_id_X19315156 <dbl> …
## $ item_id_X19323929 <dbl> …
## $ item_id_X19325457 <dbl> …
## $ item_id_X19329304 <dbl> …
## $ item_id_X19331439 <dbl> …
## $ item_id_X19338054 <dbl> …
## $ item_id_X19385677 <dbl> …
## $ item_id_X19830588 <dbl> …
## $ item_id_X19900864 <dbl> …
## $ item_id_X19903834 <dbl> …
## $ item_id_X19930205 <dbl> …
## $ item_id_X20153068 <dbl> …
## $ item_id_X20163802 <dbl> …
## $ item_id_X20182278 <dbl> …
## $ item_id_X20204925 <dbl> …
## $ item_id_X20208527 <dbl> …
## $ item_id_X20213312 <dbl> …
## $ item_id_X20225334 <dbl> …
## $ item_id_X20228709 <dbl> …
## $ item_id_X20229011 <dbl> …
## $ item_id_X20245959 <dbl> …
## $ item_id_X20245964 <dbl> …
## $ item_id_X20249896 <dbl> …
## $ item_id_X20259423 <dbl> …
## $ item_id_X20260718 <dbl> …
## $ item_id_X20270802 <dbl> …
## $ item_id_X20270816 <dbl> …
## $ item_id_X20275814 <dbl> …
## $ item_id_X20278167 <dbl> …
## $ item_id_X20293592 <dbl> …
## $ item_id_X20293714 <dbl> …
## $ item_id_X20302596 <dbl> …
## $ item_id_X20305707 <dbl> …
## $ item_id_X20307037 <dbl> …
## $ item_id_X20308697 <dbl> …
## $ item_id_X20308701 <dbl> …
## $ item_id_X20333951 <dbl> …
## $ item_id_X20341003 <dbl> …
## $ item_id_X20341970 <dbl> …
## $ item_id_X20345633 <dbl> …
## $ item_id_X20346072 <dbl> …
## $ item_id_X20351515 <dbl> …
## $ item_id_X20359154 <dbl> …
## $ item_id_X20359984 <dbl> …
## $ item_id_X20365188 <dbl> …
## $ item_id_X20373621 <dbl> …
## $ item_id_X20374277 <dbl> …
## $ item_id_X20383465 <dbl> …
## $ item_id_X20390574 <dbl> …
## $ item_id_X20391658 <dbl> …
## $ item_id_X20396646 <dbl> …
## $ item_id_X20400691 <dbl> …
## $ item_id_X20403562 <dbl> …
## $ item_id_X20405085 <dbl> …
## $ item_id_X20409936 <dbl> …
## $ item_id_X20415206 <dbl> …
## $ item_id_X20417205 <dbl> …
## $ item_id_X20419964 <dbl> …
## $ item_id_X20424593 <dbl> …
## $ item_id_X20426276 <dbl> …
## $ item_id_X20429010 <dbl> …
## $ item_id_X20439472 <dbl> …
## $ item_id_X20450087 <dbl> …
## $ item_id_X20456956 <dbl> …
## $ item_id_X29042877 <dbl> …
## $ item_id_X29046045 <dbl> …
## $ item_id_X29067293 <dbl> …
## $ item_id_X29103007 <dbl> …
## $ item_id_X29125410 <dbl> …
## $ item_id_X29127777 <dbl> …
## $ item_id_X29128357 <dbl> …
## $ item_id_X29128442 <dbl> …
## $ item_id_X29151296 <dbl> …
## $ item_id_X29158212 <dbl> …
## $ item_id_X29167037 <dbl> …
## $ item_id_X29180524 <dbl> …
## $ item_id_X29180581 <dbl> …
## $ item_id_X29184433 <dbl> …
## $ item_id_X29193692 <dbl> …
## $ item_id_X29203115 <dbl> …
## $ item_id_X29203889 <dbl> …
## $ item_id_X29204431 <dbl> …
## $ item_id_X29205534 <dbl> …
## $ item_id_X29220780 <dbl> …
## $ item_id_X29221652 <dbl> …
## $ item_id_X29221765 <dbl> …
## $ item_id_X29228470 <dbl> …
## $ item_id_X29239497 <dbl> …
## $ item_id_X29239505 <dbl> …
## $ item_id_X29241160 <dbl> …
## $ item_id_X29241933 <dbl> …
## $ item_id_X29248010 <dbl> …
## $ item_id_X29248208 <dbl> …
## $ item_id_X29248345 <dbl> …
## $ item_id_X29248369 <dbl> …
## $ item_id_X29248374 <dbl> …
## $ item_id_X29248656 <dbl> …
## $ item_id_X29248864 <dbl> …
## $ item_id_X29252078 <dbl> …
## $ item_id_X29252912 <dbl> …
## $ item_id_X29254647 <dbl> …
## $ item_id_X29257066 <dbl> …
## $ item_id_X29257127 <dbl> …
## $ item_id_X29266184 <dbl> …
## $ item_id_X29267334 <dbl> …
## $ item_id_X29269724 <dbl> …
## $ item_id_X29272712 <dbl> …
## $ item_id_X29276531 <dbl> …
## $ item_id_X29276550 <dbl> …
## $ item_id_X29277026 <dbl> …
## $ item_id_X29277229 <dbl> …
## $ item_id_X29277639 <dbl> …
## $ item_id_X29277700 <dbl> …
## $ item_id_X29277724 <dbl> …
## $ item_id_X29277960 <dbl> …
## $ item_id_X29278101 <dbl> …
## $ item_id_X29278115 <dbl> …
## $ item_id_X29278144 <dbl> …
## $ item_id_X29278158 <dbl> …
## $ item_id_X29278219 <dbl> …
## $ item_id_X29278262 <dbl> …
## $ item_id_X29279186 <dbl> …
## $ item_id_X29280731 <dbl> …
## $ item_id_X29281066 <dbl> …
## $ item_id_X29281783 <dbl> …
## $ item_id_X29282532 <dbl> …
## $ item_id_X29282853 <dbl> …
## $ item_id_X29284381 <dbl> …
## $ item_id_X29285470 <dbl> …
## $ item_id_X29285521 <dbl> …
## $ item_id_X29285776 <dbl> …
## $ item_id_X29286078 <dbl> …
## $ item_id_X29286399 <dbl> …
## $ item_id_X29286417 <dbl> …
## $ item_id_X29286460 <dbl> …
## $ item_id_X29286573 <dbl> …
## $ item_id_X29286728 <dbl> …
## $ item_id_X29286865 <dbl> …
## $ item_id_X29286894 <dbl> …
## $ item_id_X29286931 <dbl> …
## $ item_id_X29287214 <dbl> …
## $ item_id_X29287370 <dbl> …
## $ item_id_X29287389 <dbl> …
## $ item_id_X29287445 <dbl> …
## $ item_id_X29287997 <dbl> …
## $ item_id_X29290056 <dbl> …
## $ item_id_X29291391 <dbl> …
## $ item_id_X29291956 <dbl> …
## $ item_id_X29292442 <dbl> …
## $ item_id_X29294554 <dbl> …
## $ item_id_X29297454 <dbl> …
## $ item_id_X29297958 <dbl> …
## $ item_id_X29299165 <dbl> …
## $ item_id_X29300121 <dbl> …
## $ item_id_X29300852 <dbl> …
## $ item_id_X29301743 <dbl> …
## $ item_id_X29301762 <dbl> …
## $ item_id_X29302573 <dbl> …
## $ item_id_X29303624 <dbl> …
## $ item_id_X29304204 <dbl> …
## $ item_id_X29304586 <dbl> …
## $ item_id_X29306217 <dbl> …
## $ item_id_X29306302 <dbl> …
## $ item_id_X29308645 <dbl> …
## $ item_id_X29320652 <dbl> …
## $ item_id_X29320732 <dbl> …
## $ item_id_X29320911 <dbl> …
## $ item_id_X29324320 <dbl> …
## $ item_id_X29324711 <dbl> …
## $ item_id_X29330571 <dbl> …
## $ item_id_X29336356 <dbl> …
## $ item_id_X29336380 <dbl> …
## $ item_id_X29385672 <dbl> …
## $ item_id_X29894377 <dbl> …
## $ item_id_X29912767 <dbl> …
## $ item_id_X30091452 <dbl> …
## $ item_id_X30115066 <dbl> …
## $ item_id_X30128629 <dbl> …
## $ item_id_X30135658 <dbl> …
## $ item_id_X30151808 <dbl> …
## $ item_id_X30171123 <dbl> …
## $ item_id_X30178884 <dbl> …
## $ item_id_X30180504 <dbl> …
## $ item_id_X30198599 <dbl> …
## $ item_id_X30199283 <dbl> …
## $ item_id_X30213076 <dbl> …
## $ item_id_X30236025 <dbl> …
## $ item_id_X30247378 <dbl> …
## $ item_id_X30247415 <dbl> …
## $ item_id_X30263844 <dbl> …
## $ item_id_X30269129 <dbl> …
## $ item_id_X30275861 <dbl> …
## $ item_id_X30285153 <dbl> …
## $ item_id_X30294987 <dbl> …
## $ item_id_X30299070 <dbl> …
## $ item_id_X30299485 <dbl> …
## $ item_id_X30302299 <dbl> …
## $ item_id_X30303487 <dbl> …
## $ item_id_X30306495 <dbl> …
## $ item_id_X30308395 <dbl> …
## $ item_id_X30309234 <dbl> …
## $ item_id_X30320726 <dbl> …
## $ item_id_X30326177 <dbl> …
## $ item_id_X30334605 <dbl> …
## $ item_id_X30339735 <dbl> …
## $ item_id_X30339900 <dbl> …
## $ item_id_X30342078 <dbl> …
## $ item_id_X30346986 <dbl> …
## $ item_id_X30352246 <dbl> …
## $ item_id_X30360977 <dbl> …
## $ item_id_X30365135 <dbl> …
## $ item_id_X30374413 <dbl> …
## $ item_id_X30381183 <dbl> …
## $ item_id_X30381593 <dbl> …
## $ item_id_X30388636 <dbl> …
## $ item_id_X30396429 <dbl> …
## $ item_id_X30396655 <dbl> …
## $ item_id_X30397669 <dbl> …
## $ item_id_X30403571 <dbl> …
## $ item_id_X30405339 <dbl> …
## $ item_id_X30409295 <dbl> …
## $ item_id_X30411415 <dbl> …
## $ item_id_X30415036 <dbl> …
## $ item_id_X30419973 <dbl> …
## $ item_id_X30427341 <dbl> …
## $ item_id_X30428326 <dbl> …
## $ item_id_X30428915 <dbl> …
## $ item_id_X30439457 <dbl> …
## $ item_id_X30439476 <dbl> …
## $ item_id_X30439565 <dbl> …
## $ item_id_X30439725 <dbl> …
## $ item_id_X30442662 <dbl> …
## $ item_id_X30451067 <dbl> …
## $ item_id_X30465489 <dbl> …
## $ item_id_X30466281 <dbl> …
## $ item_id_X30469307 <dbl> …
## $ item_id_X39017486 <dbl> …
## $ item_id_X39031411 <dbl> …
## $ item_id_X39046403 <dbl> …
## $ item_id_X39127395 <dbl> …
## $ item_id_X39127710 <dbl> …
## $ item_id_X39129342 <dbl> …
## $ item_id_X39149892 <dbl> …
## $ item_id_X39180830 <dbl> …
## $ item_id_X39181245 <dbl> …
## $ item_id_X39184324 <dbl> …
## $ item_id_X39184343 <dbl> …
## $ item_id_X39184437 <dbl> …
## $ item_id_X39187822 <dbl> …
## $ item_id_X39192611 <dbl> …
## $ item_id_X39201026 <dbl> …
## $ item_id_X39221128 <dbl> …
## $ item_id_X39227804 <dbl> …
## $ item_id_X39230712 <dbl> …
## $ item_id_X39231603 <dbl> …
## $ item_id_X39239816 <dbl> …
## $ item_id_X39239835 <dbl> …
## $ item_id_X39240787 <dbl> …
## $ item_id_X39246911 <dbl> …
## $ item_id_X39248359 <dbl> …
## $ item_id_X39248590 <dbl> …
## $ item_id_X39251926 <dbl> …
## $ item_id_X39251931 <dbl> …
## $ item_id_X39251993 <dbl> …
## $ item_id_X39252704 <dbl> …
## $ item_id_X39252756 <dbl> …
## $ item_id_X39256071 <dbl> …
## $ item_id_X39256599 <dbl> …
## $ item_id_X39257457 <dbl> …
## $ item_id_X39264858 <dbl> …
## $ item_id_X39266008 <dbl> …
## $ item_id_X39266094 <dbl> …
## $ item_id_X39270326 <dbl> …
## $ item_id_X39272641 <dbl> …
## $ item_id_X39272655 <dbl> …
## $ item_id_X39275116 <dbl> …
## $ item_id_X39276682 <dbl> …
## $ item_id_X39276917 <dbl> …
## $ item_id_X39277196 <dbl> …
## $ item_id_X39277498 <dbl> …
## $ item_id_X39277894 <dbl> …
## $ item_id_X39278290 <dbl> …
## $ item_id_X39283003 <dbl> …
## $ item_id_X39285785 <dbl> …
## $ item_id_X39285827 <dbl> …
## $ item_id_X39285988 <dbl> …
## $ item_id_X39286558 <dbl> …
## $ item_id_X39286841 <dbl> …
## $ item_id_X39286855 <dbl> …
## $ item_id_X39286898 <dbl> …
## $ item_id_X39287379 <dbl> …
## $ item_id_X39287398 <dbl> …
## $ item_id_X39287789 <dbl> …
## $ item_id_X39292026 <dbl> …
## $ item_id_X39292465 <dbl> …
## $ item_id_X39297458 <dbl> …
## $ item_id_X39297514 <dbl> …
## $ item_id_X39298472 <dbl> …
## $ item_id_X39298778 <dbl> …
## $ item_id_X39299103 <dbl> …
## $ item_id_X39300856 <dbl> …
## $ item_id_X39301785 <dbl> …
## $ item_id_X39303968 <dbl> …
## $ item_id_X39304128 <dbl> …
## $ item_id_X39305260 <dbl> …
## $ item_id_X39305528 <dbl> …
## $ item_id_X39305707 <dbl> …
## $ item_id_X39305745 <dbl> …
## $ item_id_X39305788 <dbl> …
## $ item_id_X39305868 <dbl> …
## $ item_id_X39305873 <dbl> …
## $ item_id_X39306368 <dbl> …
## $ item_id_X39311256 <dbl> …
## $ item_id_X39311765 <dbl> …
## $ item_id_X39311789 <dbl> …
## $ item_id_X39323990 <dbl> …
## $ item_id_X39325022 <dbl> …
## $ item_id_X39329299 <dbl> …
## $ item_id_X39330735 <dbl> …
## $ item_id_X39337911 <dbl> …
## $ item_id_X39817883 <dbl> …
## $ item_id_X39903791 <dbl> …
## $ item_id_X39903833 <dbl> …
## $ item_id_X40033763 <dbl> …
## $ item_id_X40160478 <dbl> …
## $ item_id_X40178591 <dbl> …
## $ item_id_X40178888 <dbl> …
## $ item_id_X40196241 <dbl> …
## $ item_id_X40206476 <dbl> …
## $ item_id_X40211595 <dbl> …
## $ item_id_X40219285 <dbl> …
## $ item_id_X40244751 <dbl> …
## $ item_id_X40245840 <dbl> …
## $ item_id_X40247368 <dbl> …
## $ item_id_X40263853 <dbl> …
## $ item_id_X40277143 <dbl> …
## $ item_id_X40280843 <dbl> …
## $ item_id_X40293567 <dbl> …
## $ item_id_X40299885 <dbl> …
## $ item_id_X40299890 <dbl> …
## $ item_id_X40300662 <dbl> …
## $ item_id_X40302289 <dbl> …
## $ item_id_X40309257 <dbl> …
## $ item_id_X40309573 <dbl> …
## $ item_id_X40310208 <dbl> …
## $ item_id_X40319398 <dbl> …
## $ item_id_X40320349 <dbl> …
## $ item_id_X40332074 <dbl> …
## $ item_id_X40332682 <dbl> …
## $ item_id_X40337694 <dbl> …
## $ item_id_X40344449 <dbl> …
## $ item_id_X40344500 <dbl> …
## $ item_id_X40349847 <dbl> …
## $ item_id_X40351246 <dbl> …
## $ item_id_X40363621 <dbl> …
## $ item_id_X40365366 <dbl> …
## $ item_id_X40365371 <dbl> …
## $ item_id_X40366115 <dbl> …
## $ item_id_X40369109 <dbl> …
## $ item_id_X40383469 <dbl> …
## $ item_id_X40383474 <dbl> …
## $ item_id_X40383737 <dbl> …
## $ item_id_X40393661 <dbl> …
## $ item_id_X40399314 <dbl> …
## $ item_id_X40400478 <dbl> …
## $ item_id_X40404513 <dbl> …
## $ item_id_X40405876 <dbl> …
## $ item_id_X40407922 <dbl> …
## $ item_id_X40410340 <dbl> …
## $ item_id_X40411410 <dbl> …
## $ item_id_X40413131 <dbl> …
## $ item_id_X40415465 <dbl> …
## $ item_id_X40417695 <dbl> …
## $ item_id_X40419958 <dbl> …
## $ item_id_X40422324 <dbl> …
## $ item_id_X40423578 <dbl> …
## $ item_id_X40426138 <dbl> …
## $ item_id_X40426275 <dbl> …
## $ item_id_X40446985 <dbl> …
## $ item_id_X40450350 <dbl> …
## $ item_id_X40455649 <dbl> …
## $ item_id_X40455654 <dbl> …
## $ item_id_X40466285 <dbl> …
## $ item_id_X40466389 <dbl> …
## $ item_id_X40472861 <dbl> …
## $ item_id_X49017749 <dbl> …
## $ item_id_X49025589 <dbl> …
## $ item_id_X49031774 <dbl> …
## $ item_id_X49046978 <dbl> …
## $ item_id_X49054015 <dbl> …
## $ item_id_X49061228 <dbl> …
## $ item_id_X49123405 <dbl> …
## $ item_id_X49127917 <dbl> …
## $ item_id_X49129209 <dbl> …
## $ item_id_X49133579 <dbl> …
## $ item_id_X49133616 <dbl> …
## $ item_id_X49151276 <dbl> …
## $ item_id_X49157565 <dbl> …
## $ item_id_X49161609 <dbl> …
## $ item_id_X49188005 <dbl> …
## $ item_id_X49189199 <dbl> …
## $ item_id_X49189203 <dbl> …
## $ item_id_X49191705 <dbl> …
## $ item_id_X49194681 <dbl> …
## $ item_id_X49203355 <dbl> …
## $ item_id_X49211690 <dbl> …
## $ item_id_X49212067 <dbl> …
## $ item_id_X49220374 <dbl> …
## $ item_id_X49221038 <dbl> …
## $ item_id_X49221062 <dbl> …
## $ item_id_X49227605 <dbl> …
## $ item_id_X49239496 <dbl> …
## $ item_id_X49240193 <dbl> …
## $ item_id_X49246468 <dbl> …
## $ item_id_X49248033 <dbl> …
## $ item_id_X49248189 <dbl> …
## $ item_id_X49248311 <dbl> …
## $ item_id_X49248325 <dbl> …
## $ item_id_X49248354 <dbl> …
## $ item_id_X49248858 <dbl> …
## $ item_id_X49249396 <dbl> …
## $ item_id_X49251983 <dbl> …
## $ item_id_X49252119 <dbl> …
## $ item_id_X49252553 <dbl> …
## $ item_id_X49252609 <dbl> …
## $ item_id_X49252949 <dbl> …
## $ item_id_X49256589 <dbl> …
## $ item_id_X49256594 <dbl> …
## $ item_id_X49256971 <dbl> …
## $ item_id_X49257348 <dbl> …
## $ item_id_X49257386 <dbl> …
## $ item_id_X49259743 <dbl> …
## $ item_id_X49265895 <dbl> …
## $ item_id_X49265975 <dbl> …
## $ item_id_X49265999 <dbl> …
## $ item_id_X49267286 <dbl> …
## $ item_id_X49270260 <dbl> …
## $ item_id_X49272706 <dbl> …
## $ item_id_X49275088 <dbl> …
## $ item_id_X49276549 <dbl> …
## $ item_id_X49276629 <dbl> …
## $ item_id_X49277247 <dbl> …
## $ item_id_X49277676 <dbl> …
## $ item_id_X49277978 <dbl> …
## $ item_id_X49278341 <dbl> …
## $ item_id_X49278591 <dbl> …
## $ item_id_X49280042 <dbl> …
## $ item_id_X49280749 <dbl> …
## $ item_id_X49280754 <dbl> …
## $ item_id_X49282989 <dbl> …
## $ item_id_X49282994 <dbl> …
## $ item_id_X49285582 <dbl> …
## $ item_id_X49285817 <dbl> …
## $ item_id_X49286341 <dbl> …
## $ item_id_X49286510 <dbl> …
## $ item_id_X49287618 <dbl> …
## $ item_id_X49289047 <dbl> …
## $ item_id_X49292686 <dbl> …
## $ item_id_X49294548 <dbl> …
## $ item_id_X49297491 <dbl> …
## $ item_id_X49297660 <dbl> …
## $ item_id_X49298594 <dbl> …
## $ item_id_X49299032 <dbl> …
## $ item_id_X49300144 <dbl> …
## $ item_id_X49300827 <dbl> …
## $ item_id_X49301921 <dbl> …
## $ item_id_X49302874 <dbl> …
## $ item_id_X49303595 <dbl> …
## $ item_id_X49303958 <dbl> …
## $ item_id_X49304199 <dbl> …
## $ item_id_X49305641 <dbl> …
## $ item_id_X49305740 <dbl> …
## $ item_id_X49306315 <dbl> …
## $ item_id_X49306443 <dbl> …
## $ item_id_X49311492 <dbl> …
## $ item_id_X49315937 <dbl> …
## $ item_id_X49320774 <dbl> …
## $ item_id_X49324946 <dbl> …
## $ item_id_X49325371 <dbl> …
## $ item_id_X49329331 <dbl> …
## $ item_id_X49330749 <dbl> …
## $ item_id_X49861007 <dbl> …
## $ item_id_X49903842 <dbl> …
## $ item_id_X50039552 <dbl> …
## $ item_id_X50058376 <dbl> …
## $ item_id_X50078464 <dbl> …
## $ item_id_X50165079 <dbl> …
## $ item_id_X50171122 <dbl> …
## $ item_id_X50185303 <dbl> …
## $ item_id_X50192822 <dbl> …
## $ item_id_X50200271 <dbl> …
## $ item_id_X50205179 <dbl> …
## $ item_id_X50214678 <dbl> …
## $ item_id_X50240031 <dbl> …
## $ item_id_X50251270 <dbl> …
## $ item_id_X50263838 <dbl> …
## $ item_id_X50267049 <dbl> …
## $ item_id_X50293722 <dbl> …
## $ item_id_X50295472 <dbl> …
## $ item_id_X50300015 <dbl> …
## $ item_id_X50300666 <dbl> …
## $ item_id_X50304990 <dbl> …
## $ item_id_X50312424 <dbl> …
## $ item_id_X50313094 <dbl> …
## $ item_id_X50320565 <dbl> …
## $ item_id_X50328665 <dbl> …
## $ item_id_X50339206 <dbl> …
## $ item_id_X50339292 <dbl> …
## $ item_id_X50341025 <dbl> …
## $ item_id_X50343147 <dbl> …
## $ item_id_X50343331 <dbl> …
## $ item_id_X50346985 <dbl> …
## $ item_id_X50347616 <dbl> …
## $ item_id_X50360009 <dbl> …
## $ item_id_X50363729 <dbl> …
## $ item_id_X50364149 <dbl> …
## $ item_id_X50365139 <dbl> …
## $ item_id_X50373709 <dbl> …
## $ item_id_X50374271 <dbl> …
## $ item_id_X50391143 <dbl> …
## $ item_id_X50391421 <dbl> …
## $ item_id_X50393000 <dbl> …
## $ item_id_X50397913 <dbl> …
## $ item_id_X50401986 <dbl> …
## $ item_id_X50402325 <dbl> …
## $ item_id_X50404824 <dbl> …
## $ item_id_X50405338 <dbl> …
## $ item_id_X50406465 <dbl> …
## $ item_id_X50407021 <dbl> …
## $ item_id_X50409874 <dbl> …
## $ item_id_X50413507 <dbl> …
## $ item_id_X50413526 <dbl> …
## $ item_id_X50415196 <dbl> …
## $ item_id_X50419972 <dbl> …
## $ item_id_X50420329 <dbl> …
## $ item_id_X50422494 <dbl> …
## $ item_id_X50434312 <dbl> …
## $ item_id_X50453758 <dbl> …
## $ item_id_X50460886 <dbl> …
## $ item_id_X50466275 <dbl> …
## $ item_id_X50468953 <dbl> …
## $ item_id_X59094412 <dbl> …
## $ item_id_X59127808 <dbl> …
## $ item_id_X59135648 <dbl> …
## $ item_id_X59135653 <dbl> …
## $ item_id_X59157353 <dbl> …
## $ item_id_X59157555 <dbl> …
## $ item_id_X59158121 <dbl> …
## $ item_id_X59177624 <dbl> …
## $ item_id_X59182201 <dbl> …
## $ item_id_X59184337 <dbl> …
## $ item_id_X59184441 <dbl> …
## $ item_id_X59191026 <dbl> …
## $ item_id_X59193723 <dbl> …
## $ item_id_X59197702 <dbl> …
## $ item_id_X59197981 <dbl> …
## $ item_id_X59201841 <dbl> …
## $ item_id_X59203128 <dbl> …
## $ item_id_X59204420 <dbl> …
## $ item_id_X59206004 <dbl> …
## $ item_id_X59211760 <dbl> …
## $ item_id_X59217804 <dbl> …
## $ item_id_X59221660 <dbl> …
## $ item_id_X59228746 <dbl> …
## $ item_id_X59239504 <dbl> …
## $ item_id_X59240828 <dbl> …
## $ item_id_X59241597 <dbl> …
## $ item_id_X59248320 <dbl> …
## $ item_id_X59248377 <dbl> …
## $ item_id_X59248626 <dbl> …
## $ item_id_X59248867 <dbl> …
## $ item_id_X59249409 <dbl> …
## $ item_id_X59252637 <dbl> …
## $ item_id_X59253043 <dbl> …
## $ item_id_X59254641 <dbl> …
## $ item_id_X59255706 <dbl> …
## $ item_id_X59256414 <dbl> …
## $ item_id_X59256579 <dbl> …
## $ item_id_X59256584 <dbl> …
## $ item_id_X59257437 <dbl> …
## $ item_id_X59259691 <dbl> …
## $ item_id_X59259752 <dbl> …
## $ item_id_X59264843 <dbl> …
## $ item_id_X59265965 <dbl> …
## $ item_id_X59266074 <dbl> …
## $ item_id_X59270274 <dbl> …
## $ item_id_X59270354 <dbl> …
## $ item_id_X59275101 <dbl> …
## $ item_id_X59276172 <dbl> …
## $ item_id_X59276228 <dbl> …
## $ item_id_X59276266 <dbl> …
## $ item_id_X59277119 <dbl> …
## $ item_id_X59277652 <dbl> …
## $ item_id_X59278232 <dbl> …
## $ item_id_X59278307 <dbl> …
## $ item_id_X59278557 <dbl> …
## $ item_id_X59279043 <dbl> …
## $ item_id_X59279180 <dbl> …
## $ item_id_X59279439 <dbl> …
## $ item_id_X59279585 <dbl> …
## $ item_id_X59282998 <dbl> …
## $ item_id_X59284351 <dbl> …
## $ item_id_X59285360 <dbl> …
## $ item_id_X59285384 <dbl> …
## $ item_id_X59286072 <dbl> …
## $ item_id_X59286468 <dbl> …
## $ item_id_X59286963 <dbl> …
## $ item_id_X59287340 <dbl> …
## $ item_id_X59287986 <dbl> …
## $ item_id_X59291403 <dbl> …
## $ item_id_X59291634 <dbl> …
## $ item_id_X59297141 <dbl> …
## $ item_id_X59297184 <dbl> …
## $ item_id_X59297438 <dbl> …
## $ item_id_X59297481 <dbl> …
## $ item_id_X59297674 <dbl> …
## $ item_id_X59299244 <dbl> …
## $ item_id_X59299381 <dbl> …
## $ item_id_X59300092 <dbl> …
## $ item_id_X59301483 <dbl> …
## $ item_id_X59302915 <dbl> …
## $ item_id_X59303477 <dbl> …
## $ item_id_X59303533 <dbl> …
## $ item_id_X59303665 <dbl> …
## $ item_id_X59304207 <dbl> …
## $ item_id_X59305725 <dbl> …
## $ item_id_X59307649 <dbl> …
## $ item_id_X59311463 <dbl> …
## $ item_id_X59324248 <dbl> …
## $ item_id_X59324385 <dbl> …
## $ item_id_X59324936 <dbl> …
## $ item_id_X59326469 <dbl> …
## $ item_id_X59328897 <dbl> …
## $ item_id_X59330112 <dbl> …
## $ item_id_X59336270 <dbl> …
## $ item_id_X59336374 <dbl> …
## $ item_id_X59385755 <dbl> …
## $ item_id_X59829111 <dbl> …
## $ item_id_X59829125 <dbl> …
## $ item_id_X59902658 <dbl> …
## $ item_id_X60105829 <dbl> …
## $ item_id_X60116960 <dbl> …
## $ item_id_X60150176 <dbl> …
## $ item_id_X60151840 <dbl> …
## $ item_id_X60171433 <dbl> …
## $ item_id_X60178887 <dbl> …
## $ item_id_X60192826 <dbl> …
## $ item_id_X60196358 <dbl> …
## $ item_id_X60198588 <dbl> …
## $ item_id_X60205188 <dbl> …
## $ item_id_X60214159 <dbl> …
## $ item_id_X60214183 <dbl> …
## $ item_id_X60217799 <dbl> …
## $ item_id_X60239715 <dbl> …
## $ item_id_X60245721 <dbl> …
## $ item_id_X60245844 <dbl> …
## $ item_id_X60245957 <dbl> …
## $ item_id_X60246080 <dbl> …
## $ item_id_X60247051 <dbl> …
## $ item_id_X60247409 <dbl> …
## $ item_id_X60248418 <dbl> …
## $ item_id_X60261037 <dbl> …
## $ item_id_X60262881 <dbl> …
## $ item_id_X60282186 <dbl> …
## $ item_id_X60293566 <dbl> …
## $ item_id_X60295706 <dbl> …
## $ item_id_X60303481 <dbl> …
## $ item_id_X60305705 <dbl> …
## $ item_id_X60306494 <dbl> …
## $ item_id_X60308695 <dbl> …
## $ item_id_X60322130 <dbl> …
## $ item_id_X60327774 <dbl> …
## $ item_id_X60334722 <dbl> …
## $ item_id_X60341015 <dbl> …
## $ item_id_X60342072 <dbl> …
## $ item_id_X60344453 <dbl> …
## $ item_id_X60344759 <dbl> …
## $ item_id_X60351900 <dbl> …
## $ item_id_X60353763 <dbl> …
## $ item_id_X60353838 <dbl> …
## $ item_id_X60364295 <dbl> …
## $ item_id_X60365153 <dbl> …
## $ item_id_X60365346 <dbl> …
## $ item_id_X60365855 <dbl> …
## $ item_id_X60366789 <dbl> …
## $ item_id_X60371762 <dbl> …
## $ item_id_X60372276 <dbl> …
## $ item_id_X60373624 <dbl> …
## $ item_id_X60375133 <dbl> …
## $ item_id_X60389192 <dbl> …
## $ item_id_X60397998 <dbl> …
## $ item_id_X60400415 <dbl> …
## $ item_id_X60403150 <dbl> …
## $ item_id_X60403584 <dbl> …
## $ item_id_X60403602 <dbl> …
## $ item_id_X60406785 <dbl> …
## $ item_id_X60409294 <dbl> …
## $ item_id_X60413502 <dbl> …
## $ item_id_X60416925 <dbl> …
## $ item_id_X60419962 <dbl> …
## $ item_id_X60424586 <dbl> …
## $ item_id_X60431563 <dbl> …
## $ item_id_X60447677 <dbl> …
## $ item_id_X60463498 <dbl> …
## $ item_id_X69017475 <dbl> …
## $ item_id_X69017828 <dbl> …
## $ item_id_X69017833 <dbl> …
## $ item_id_X69020473 <dbl> …
## $ item_id_X69030368 <dbl> …
## $ item_id_X69127493 <dbl> …
## $ item_id_X69128567 <dbl> …
## $ item_id_X69129798 <dbl> …
## $ item_id_X69155853 <dbl> …
## $ item_id_X69157475 <dbl> …
## $ item_id_X69157499 <dbl> …
## $ item_id_X69162599 <dbl> …
## $ item_id_X69184431 <dbl> …
## $ item_id_X69190861 <dbl> …
## $ item_id_X69192657 <dbl> …
## $ item_id_X69193713 <dbl> …
## $ item_id_X69194005 <dbl> …
## $ item_id_X69208026 <dbl> …
## $ item_id_X69208031 <dbl> …
## $ item_id_X69217790 <dbl> …
## $ item_id_X69219044 <dbl> …
## $ item_id_X69219505 <dbl> …
## $ item_id_X69239495 <dbl> …
## $ item_id_X69239607 <dbl> …
## $ item_id_X69241097 <dbl> …
## $ item_id_X69242073 <dbl> …
## $ item_id_X69248211 <dbl> …
## $ item_id_X69248348 <dbl> …
## $ item_id_X69248386 <dbl> …
## $ item_id_X69248659 <dbl> …
## $ item_id_X69251345 <dbl> …
## $ item_id_X69252712 <dbl> …
## $ item_id_X69252868 <dbl> …
## $ item_id_X69253047 <dbl> …
## $ item_id_X69253146 <dbl> …
## $ item_id_X69254792 <dbl> …
## $ item_id_X69254810 <dbl> …
## $ item_id_X69256220 <dbl> …
## $ item_id_X69256569 <dbl> …
## $ item_id_X69256574 <dbl> …
## $ item_id_X69257328 <dbl> …
## $ item_id_X69259676 <dbl> …
## $ item_id_X69261882 <dbl> …
## $ item_id_X69265842 <dbl> …
## $ item_id_X69265984 <dbl> …
## $ item_id_X69272649 <dbl> …
## $ item_id_X69275110 <dbl> …
## $ item_id_X69275718 <dbl> …
## $ item_id_X69276039 <dbl> …
## $ item_id_X69276567 <dbl> …
## $ item_id_X69276633 <dbl> …
## $ item_id_X69278415 <dbl> …
## $ item_id_X69279189 <dbl> …
## $ item_id_X69281776 <dbl> …
## $ item_id_X69281804 <dbl> …
## $ item_id_X69282399 <dbl> …
## $ item_id_X69282525 <dbl> …
## $ item_id_X69282926 <dbl> …
## $ item_id_X69284987 <dbl> …
## $ item_id_X69285208 <dbl> …
## $ item_id_X69285232 <dbl> …
## $ item_id_X69285294 <dbl> …
## $ item_id_X69285473 <dbl> …
## $ item_id_X69285939 <dbl> …
## $ item_id_X69286806 <dbl> …
## $ item_id_X69286910 <dbl> …
## $ item_id_X69287373 <dbl> …
## $ item_id_X69287392 <dbl> …
## $ item_id_X69288018 <dbl> …
## $ item_id_X69289008 <dbl> …
## $ item_id_X69291394 <dbl> …
## $ item_id_X69291407 <dbl> …
## $ item_id_X69292275 <dbl> …
## $ item_id_X69294566 <dbl> …
## $ item_id_X69297287 <dbl> …
## $ item_id_X69297471 <dbl> …
## $ item_id_X69298772 <dbl> …
## $ item_id_X69301717 <dbl> …
## $ item_id_X69303429 <dbl> …
## $ item_id_X69303504 <dbl> …
## $ item_id_X69304754 <dbl> …
## $ item_id_X69304909 <dbl> …
## $ item_id_X69305249 <dbl> …
## $ item_id_X69325214 <dbl> …
## $ item_id_X69325902 <dbl> …
## $ item_id_X69329387 <dbl> …
## $ item_id_X69330159 <dbl> …
## $ item_id_X69330475 <dbl> …
## $ item_id_X69337801 <dbl> …
## $ item_id_X69903799 <dbl> …
## $ item_id_X69903836 <dbl> …
## $ item_id_X70103250 <dbl> …
## $ item_id_X70208539 <dbl> …
## $ item_id_X70234185 <dbl> …
## $ item_id_X70245339 <dbl> …
## $ item_id_X70245952 <dbl> …
## $ item_id_X70246089 <dbl> …
## $ item_id_X70247376 <dbl> …
## $ item_id_X70247381 <dbl> …
## $ item_id_X70253541 <dbl> …
## $ item_id_X70261131 <dbl> …
## $ item_id_X70264281 <dbl> …
## $ item_id_X70267133 <dbl> …
## $ item_id_X70273092 <dbl> …
## $ item_id_X70284203 <dbl> …
## $ item_id_X70286645 <dbl> …
## $ item_id_X70288630 <dbl> …
## $ item_id_X70290459 <dbl> …
## $ item_id_X70294508 <dbl> …
## $ item_id_X70299879 <dbl> …
## $ item_id_X70299959 <dbl> …
## $ item_id_X70301537 <dbl> …
## $ item_id_X70301542 <dbl> …
## $ item_id_X70302283 <dbl> …
## $ item_id_X70303428 <dbl> …
## $ item_id_X70328669 <dbl> …
## $ item_id_X70339291 <dbl> …
## $ item_id_X70340567 <dbl> …
## $ item_id_X70341005 <dbl> …
## $ item_id_X70342199 <dbl> …
## $ item_id_X70344933 <dbl> …
## $ item_id_X70351481 <dbl> …
## $ item_id_X70351513 <dbl> …
## $ item_id_X70359986 <dbl> …
## $ item_id_X70366784 <dbl> …
## $ item_id_X70366798 <dbl> …
## $ item_id_X70367444 <dbl> …
## $ item_id_X70386503 <dbl> …
## $ item_id_X70388620 <dbl> …
## $ item_id_X70388639 <dbl> …
## $ item_id_X70391038 <dbl> …
## $ item_id_X70392542 <dbl> …
## $ item_id_X70397993 <dbl> …
## $ item_id_X70401706 <dbl> …
## $ item_id_X70403512 <dbl> …
## $ item_id_X70403593 <dbl> …
## $ item_id_X70404366 <dbl> …
## $ item_id_X70404875 <dbl> …
## $ item_id_X70407299 <dbl> …
## $ item_id_X70407360 <dbl> …
## $ item_id_X70418170 <dbl> …
## $ item_id_X70424147 <dbl> …
## $ item_id_X70434311 <dbl> …
## $ item_id_X70439573 <dbl> …
## $ item_id_X70439728 <dbl> …
## $ item_id_X70451065 <dbl> …
## $ item_id_X70455412 <dbl> …
## $ item_id_X70465538 <dbl> …
## $ item_id_X75305709 <dbl> …
## $ item_id_X79012991 <dbl> …
## $ item_id_X79017837 <dbl> …
## $ item_id_X79094213 <dbl> …
## $ item_id_X79102958 <dbl> …
## $ item_id_X79128821 <dbl> …
## $ item_id_X79129081 <dbl> …
## $ item_id_X79130027 <dbl> …
## $ item_id_X79135746 <dbl> …
## $ item_id_X79135751 <dbl> …
## $ item_id_X79135949 <dbl> …
## $ item_id_X79149927 <dbl> …
## $ item_id_X79150746 <dbl> …
## $ item_id_X79150751 <dbl> …
## $ item_id_X79151312 <dbl> …
## $ item_id_X79158144 <dbl> …
## $ item_id_X79180593 <dbl> …
## $ item_id_X79184435 <dbl> …
## $ item_id_X79189150 <dbl> …
## $ item_id_X79191266 <dbl> …
## $ item_id_X79203815 <dbl> …
## $ item_id_X79205536 <dbl> …
## $ item_id_X79211759 <dbl> …
## $ item_id_X79228590 <dbl> …
## $ item_id_X79239490 <dbl> …
## $ item_id_X79239503 <dbl> …
## $ item_id_X79239843 <dbl> …
## $ item_id_X79244665 <dbl> …
## $ item_id_X79248319 <dbl> …
## $ item_id_X79248588 <dbl> …
## $ item_id_X79248668 <dbl> …
## $ item_id_X79248748 <dbl> …
## $ item_id_X79249328 <dbl> …
## $ item_id_X79252108 <dbl> …
## $ item_id_X79254659 <dbl> …
## $ item_id_X79254683 <dbl> …
## $ item_id_X79256559 <dbl> …
## $ item_id_X79256564 <dbl> …
## $ item_id_X79256917 <dbl> …
## $ item_id_X79257016 <dbl> …
## $ item_id_X79258271 <dbl> …
## $ item_id_X79265827 <dbl> …
## $ item_id_X79265926 <dbl> …
## $ item_id_X79265945 <dbl> …
## $ item_id_X79265950 <dbl> …
## $ item_id_X79266110 <dbl> …
## $ item_id_X79266148 <dbl> …
## $ item_id_X79269180 <dbl> …
## $ item_id_X79272677 <dbl> …
## $ item_id_X79272696 <dbl> …
## $ item_id_X79275119 <dbl> …
## $ item_id_X79275138 <dbl> …
## $ item_id_X79276246 <dbl> …
## $ item_id_X79276388 <dbl> …
## $ item_id_X79276425 <dbl> …
## $ item_id_X79277255 <dbl> …
## $ item_id_X79277632 <dbl> …
## $ item_id_X79278250 <dbl> …
## $ item_id_X79278269 <dbl> …
## $ item_id_X79279004 <dbl> …
## $ item_id_X79279396 <dbl> …
## $ item_id_X79279419 <dbl> …
## $ item_id_X79281790 <dbl> …
## $ item_id_X79282426 <dbl> …
## $ item_id_X79282544 <dbl> …
## $ item_id_X79284468 <dbl> …
## $ item_id_X79284958 <dbl> …
## $ item_id_X79285302 <dbl> …
## $ item_id_X79285439 <dbl> …
## $ item_id_X79285991 <dbl> …
## $ item_id_X79286434 <dbl> …
## $ item_id_X79286491 <dbl> …
## $ item_id_X79286636 <dbl> …
## $ item_id_X79286820 <dbl> …
## $ item_id_X79286896 <dbl> …
## $ item_id_X79287612 <dbl> …
## $ item_id_X79291355 <dbl> …
## $ item_id_X79291398 <dbl> …
## $ item_id_X79294542 <dbl> …
## $ item_id_X79295551 <dbl> …
## $ item_id_X79297526 <dbl> …
## $ item_id_X79297545 <dbl> …
## $ item_id_X79299016 <dbl> …
## $ item_id_X79301788 <dbl> …
## $ item_id_X79302721 <dbl> …
## $ item_id_X79303103 <dbl> …
## $ item_id_X79303495 <dbl> …
## $ item_id_X79303645 <dbl> …
## $ item_id_X79303886 <dbl> …
## $ item_id_X79305098 <dbl> …
## $ item_id_X79305220 <dbl> …
## $ item_id_X79305263 <dbl> …
## $ item_id_X79305512 <dbl> …
## $ item_id_X79305734 <dbl> …
## $ item_id_X79305852 <dbl> …
## $ item_id_X79305913 <dbl> …
## $ item_id_X79306173 <dbl> …
## $ item_id_X79306328 <dbl> …
## $ item_id_X79306333 <dbl> …
## $ item_id_X79306875 <dbl> …
## $ item_id_X79315945 <dbl> …
## $ item_id_X79320744 <dbl> …
## $ item_id_X79320758 <dbl> …
## $ item_id_X79325223 <dbl> …
## $ item_id_X79330192 <dbl> …
## $ item_id_X79330639 <dbl> …
## $ item_id_X79898306 <dbl> …
## $ item_id_X79902935 <dbl> …
## $ item_id_X80116600 <dbl> …
## $ item_id_X80130776 <dbl> …
## $ item_id_X80153800 <dbl> …
## $ item_id_X80155205 <dbl> …
## $ item_id_X80196357 <dbl> …
## $ item_id_X80201740 <dbl> …
## $ item_id_X80208529 <dbl> …
## $ item_id_X80213074 <dbl> …
## $ item_id_X80214549 <dbl> …
## $ item_id_X80221352 <dbl> …
## $ item_id_X80222441 <dbl> …
## $ item_id_X80227797 <dbl> …
## $ item_id_X80229008 <dbl> …
## $ item_id_X80245051 <dbl> …
## $ item_id_X80247371 <dbl> …
## $ item_id_X80263832 <dbl> …
## $ item_id_X80267137 <dbl> …
## $ item_id_X80275887 <dbl> …
## $ item_id_X80280515 <dbl> …
## $ item_id_X80290779 <dbl> …
## $ item_id_X80294503 <dbl> …
## $ item_id_X80308393 <dbl> …
## $ item_id_X80308675 <dbl> …
## $ item_id_X80311828 <dbl> …
## $ item_id_X80331973 <dbl> …
## $ item_id_X80340048 <dbl> …
## $ item_id_X80340760 <dbl> …
## $ item_id_X80341019 <dbl> …
## $ item_id_X80344923 <dbl> …
## $ item_id_X80347163 <dbl> …
## $ item_id_X80349001 <dbl> …
## $ item_id_X80349671 <dbl> …
## $ item_id_X80360951 <dbl> …
## $ item_id_X80362974 <dbl> …
## $ item_id_X80369112 <dbl> …
## $ item_id_X80371520 <dbl> …
## $ item_id_X80373703 <dbl> …
## $ item_id_X80379620 <dbl> …
## $ item_id_X80382321 <dbl> …
## $ item_id_X80385348 <dbl> …
## $ item_id_X80385616 <dbl> …
## $ item_id_X80391325 <dbl> …
## $ item_id_X80398628 <dbl> …
## $ item_id_X80402381 <dbl> …
## $ item_id_X80403154 <dbl> …
## $ item_id_X80403516 <dbl> …
## $ item_id_X80404672 <dbl> …
## $ item_id_X80417636 <dbl> …
## $ item_id_X80418056 <dbl> …
## $ item_id_X80430746 <dbl> …
## $ item_id_X80433486 <dbl> …
## $ item_id_X80433900 <dbl> …
## $ item_id_X80437234 <dbl> …
## $ item_id_X80443904 <dbl> …
## $ item_id_X80450353 <dbl> …
## $ item_id_X89017827 <dbl> …
## $ item_id_X89017832 <dbl> …
## $ item_id_X89020472 <dbl> …
## $ item_id_X89025790 <dbl> …
## $ item_id_X89030584 <dbl> …
## $ item_id_X89041709 <dbl> …
## $ item_id_X89061226 <dbl> …
## $ item_id_X89102095 <dbl> …
## $ item_id_X89135939 <dbl> …
## $ item_id_X89135944 <dbl> …
## $ item_id_X89149936 <dbl> …
## $ item_id_X89157525 <dbl> …
## $ item_id_X89158214 <dbl> …
## $ item_id_X89161508 <dbl> …
## $ item_id_X89161631 <dbl> …
## $ item_id_X89188452 <dbl> …
## $ item_id_X89217727 <dbl> …
## $ item_id_X89220131 <dbl> …
## $ item_id_X89227873 <dbl> …
## $ item_id_X89228472 <dbl> …
## $ item_id_X89239499 <dbl> …
## $ item_id_X89239507 <dbl> …
## $ item_id_X89239786 <dbl> …
## $ item_id_X89240761 <dbl> …
## $ item_id_X89241614 <dbl> …
## $ item_id_X89243335 <dbl> …
## $ item_id_X89243929 <dbl> …
## $ item_id_X89248205 <dbl> …
## $ item_id_X89248314 <dbl> …
## $ item_id_X89248371 <dbl> …
## $ item_id_X89248535 <dbl> …
## $ item_id_X89248682 <dbl> …
## $ item_id_X89248922 <dbl> …
## $ item_id_X89249399 <dbl> …
## $ item_id_X89249403 <dbl> …
## $ item_id_X89252117 <dbl> …
## $ item_id_X89252688 <dbl> …
## $ item_id_X89254786 <dbl> …
## $ item_id_X89255639 <dbl> …
## $ item_id_X89256035 <dbl> …
## $ item_id_X89256262 <dbl> …
## $ item_id_X89256605 <dbl> …
## $ item_id_X89256610 <dbl> …
## $ item_id_X89256894 <dbl> …
## $ item_id_X89259963 <dbl> …
## $ item_id_X89260075 <dbl> …
## $ item_id_X89265836 <dbl> …
## $ item_id_X89265902 <dbl> …
## $ item_id_X89272709 <dbl> …
## $ item_id_X89276463 <dbl> …
## $ item_id_X89276590 <dbl> …
## $ item_id_X89277113 <dbl> …
## $ item_id_X89277486 <dbl> …
## $ item_id_X89278481 <dbl> …
## $ item_id_X89278612 <dbl> …
## $ item_id_X89279174 <dbl> …
## $ item_id_X89280747 <dbl> …
## $ item_id_X89283005 <dbl> …
## $ item_id_X89284712 <dbl> …
## $ item_id_X89285467 <dbl> …
## $ item_id_X89285518 <dbl> …
## $ item_id_X89286382 <dbl> …
## $ item_id_X89286513 <dbl> …
## $ item_id_X89286805 <dbl> …
## $ item_id_X89287433 <dbl> …
## $ item_id_X89287683 <dbl> …
## $ item_id_X89288135 <dbl> …
## $ item_id_X89291312 <dbl> …
## $ item_id_X89291388 <dbl> …
## $ item_id_X89294532 <dbl> …
## $ item_id_X89297130 <dbl> …
## $ item_id_X89297663 <dbl> …
## $ item_id_X89297677 <dbl> …
## $ item_id_X89299129 <dbl> …
## $ item_id_X89300156 <dbl> …
## $ item_id_X89300750 <dbl> …
## $ item_id_X89301127 <dbl> …
## $ item_id_X89302914 <dbl> …
## $ item_id_X89302971 <dbl> …
## $ item_id_X89303956 <dbl> …
## $ item_id_X89305205 <dbl> …
## $ item_id_X89305446 <dbl> …
## $ item_id_X89305535 <dbl> …
## $ item_id_X89305540 <dbl> …
## $ item_id_X89305719 <dbl> …
## $ item_id_X89305795 <dbl> …
## $ item_id_X89307643 <dbl> …
## $ item_id_X89309722 <dbl> …
## $ item_id_X89311466 <dbl> …
## $ item_id_X89315153 <dbl> …
## $ item_id_X89317557 <dbl> …
## $ item_id_X89323723 <dbl> …
## $ item_id_X89325374 <dbl> …
## $ item_id_X89326463 <dbl> …
## $ item_id_X89329348 <dbl> …
## $ item_id_X89329536 <dbl> …
## $ item_id_X89329560 <dbl> …
## $ item_id_X89330653 <dbl> …
## $ item_id_X89335976 <dbl> …
## $ item_id_X89385612 <dbl> …
## $ item_id_X89386070 <dbl> …
## $ item_id_X89907452 <dbl> …
## $ item_id_X90095428 <dbl> …
## $ item_id_X90116553 <dbl> …
## $ item_id_X90144730 <dbl> …
## $ item_id_X90146456 <dbl> …
## $ item_id_X90180025 <dbl> …
## $ item_id_X90200269 <dbl> …
## $ item_id_X90211531 <dbl> …
## $ item_id_X90213078 <dbl> …
## $ item_id_X90214308 <dbl> …
## $ item_id_X90246291 <dbl> …
## $ item_id_X90253535 <dbl> …
## $ item_id_X90269697 <dbl> …
## $ item_id_X90278277 <dbl> …
## $ item_id_X90278588 <dbl> …
## $ item_id_X90287413 <dbl> …
## $ item_id_X90294989 <dbl> …
## $ item_id_X90295253 <dbl> …
## $ item_id_X90299029 <dbl> …
## $ item_id_X90301225 <dbl> …
## $ item_id_X90301555 <dbl> …
## $ item_id_X90305803 <dbl> …
## $ item_id_X90319918 <dbl> …
## $ item_id_X90320097 <dbl> …
## $ item_id_X90328668 <dbl> …
## $ item_id_X90333938 <dbl> …
## $ item_id_X90334612 <dbl> …
## $ item_id_X90339290 <dbl> …
## $ item_id_X90339902 <dbl> …
## $ item_id_X90342688 <dbl> …
## $ item_id_X90344456 <dbl> …
## $ item_id_X90344927 <dbl> …
## $ item_id_X90347167 <dbl> …
## $ item_id_X90349005 <dbl> …
## $ item_id_X90349326 <dbl> …
## $ item_id_X90350937 <dbl> …
## $ item_id_X90354327 <dbl> …
## $ item_id_X90363223 <dbl> …
## $ item_id_X90365161 <dbl> …
## $ item_id_X90366839 <dbl> …
## $ item_id_X90374274 <dbl> …
## $ item_id_X90383457 <dbl> …
## $ item_id_X90388978 <dbl> …
## $ item_id_X90392046 <dbl> …
## $ item_id_X90398623 <dbl> …
## $ item_id_X90402352 <dbl> …
## $ item_id_X90404879 <dbl> …
## $ item_id_X90409607 <dbl> …
## $ item_id_X90412426 <dbl> …
## $ item_id_X90415199 <dbl> …
## $ item_id_X90419965 <dbl> …
## $ item_id_X90421906 <dbl> …
## $ item_id_X90421911 <dbl> …
## $ item_id_X90433909 <dbl> …
## $ item_id_X90434310 <dbl> …
## $ item_id_X90435324 <dbl> …
## $ item_id_X90442824 <dbl> …
## $ item_id_X90471086 <dbl> …
## $ item_id_X90471581 <dbl> …
## $ item_id_X99017445 <dbl> …
## $ item_id_X99020476 <dbl> …
## $ item_id_X99020481 <dbl> …
## $ item_id_X99031408 <dbl> …
## $ item_id_X99046443 <dbl> …
## $ item_id_X99096013 <dbl> …
## $ item_id_X99127608 <dbl> …
## $ item_id_X99157577 <dbl> …
## $ item_id_X99161598 <dbl> …
## $ item_id_X99180573 <dbl> …
## $ item_id_X99184439 <dbl> …
## $ item_id_X99192401 <dbl> …
## $ item_id_X99197696 <dbl> …
## $ item_id_X99211758 <dbl> …
## $ item_id_X99217755 <dbl> …
## $ item_id_X99221026 <dbl> …
## $ item_id_X99221743 <dbl> …
## $ item_id_X99228476 <dbl> …
## $ item_id_X99228551 <dbl> …
## $ item_id_X99228570 <dbl> …
## $ item_id_X99234255 <dbl> …
## $ item_id_X99239451 <dbl> …
## $ item_id_X99239489 <dbl> …
## $ item_id_X99239494 <dbl> …
## $ item_id_X99239502 <dbl> …
## $ item_id_X99241840 <dbl> …
## $ item_id_X99246475 <dbl> …
## $ item_id_X99246588 <dbl> …
## $ item_id_X99248380 <dbl> …
## $ item_id_X99248587 <dbl> …
## $ item_id_X99249520 <dbl> …
## $ item_id_X99251966 <dbl> …
## $ item_id_X99254677 <dbl> …
## $ item_id_X99257176 <dbl> …
## $ item_id_X99257280 <dbl> …
## $ item_id_X99258005 <dbl> …
## $ item_id_X99262168 <dbl> …
## $ item_id_X99264964 <dbl> …
## $ item_id_X99265911 <dbl> …
## $ item_id_X99266053 <dbl> …
## $ item_id_X99266128 <dbl> …
## $ item_id_X99270465 <dbl> …
## $ item_id_X99276491 <dbl> …
## $ item_id_X99277122 <dbl> …
## $ item_id_X99277240 <dbl> …
## $ item_id_X99278225 <dbl> …
## $ item_id_X99279588 <dbl> …
## $ item_id_X99280884 <dbl> …
## $ item_id_X99282538 <dbl> …
## $ item_id_X99285004 <dbl> …
## $ item_id_X99285042 <dbl> …
## $ item_id_X99285117 <dbl> …
## $ item_id_X99285928 <dbl> …
## $ item_id_X99286254 <dbl> …
## $ item_id_X99286838 <dbl> …
## $ item_id_X99286862 <dbl> …
## $ item_id_X99288012 <dbl> …
## $ item_id_X99291646 <dbl> …
## $ item_id_X99291745 <dbl> …
## $ item_id_X99292047 <dbl> …
## $ item_id_X99292052 <dbl> …
## $ item_id_X99294560 <dbl> …
## $ item_id_X99295593 <dbl> …
## $ item_id_X99297144 <dbl> …
## $ item_id_X99297484 <dbl> …
## $ item_id_X99299708 <dbl> …
## $ item_id_X99300839 <dbl> …
## $ item_id_X99302621 <dbl> …
## $ item_id_X99302918 <dbl> …
## $ item_id_X99302975 <dbl> …
## $ item_id_X99303442 <dbl> …
## $ item_id_X99303970 <dbl> …
## $ item_id_X99304578 <dbl> …
## $ item_id_X99305257 <dbl> …
## $ item_id_X99305851 <dbl> …
## $ item_id_X99315812 <dbl> …
## $ item_id_X99323614 <dbl> …
## $ item_id_X99329140 <dbl> …
## $ item_id_X99330515 <dbl> …
## $ item_id_X99903788 <dbl> …
## $ name_AGAM <dbl> …
## $ name_AGEN <dbl> …
## $ name_ALEX <dbl> …
## $ name_ALGOT <dbl> …
## $ name_ALGOT...SKÅDIS <dbl> …
## $ name_ANGERSBY <dbl> …
## $ name_ANTILOP <dbl> …
## $ name_ÄPPLARÖ <dbl> …
## $ name_ARKELSTORP <dbl> …
## $ name_ASKEBY <dbl> …
## $ name_ASKHOLMEN <dbl> …
## $ name_ASKVOLL <dbl> …
## $ name_BALSBERGET <dbl> …
## $ name_BALTSAR <dbl> …
## $ name_BEKANT <dbl> …
## $ name_BEKVÄM <dbl> …
## $ name_BENARP <dbl> …
## $ name_BERNHARD <dbl> …
## $ name_BESTÅ <dbl> …
## $ name_BESTÅ...EKET <dbl> …
## $ name_BESTÅ.BURS <dbl> …
## $ name_BILLY <dbl> …
## $ name_BILLY...BOTTNA <dbl> …
## $ name_BILLY...GNEDBY <dbl> …
## $ name_BILLY...MORLIDEN <dbl> …
## $ name_BILLY...OXBERG <dbl> …
## $ name_BINGSTA <dbl> …
## $ name_BJÖRKSNÄS <dbl> …
## $ name_BLÅMES <dbl> …
## $ name_BÖRJE <dbl> …
## $ name_BRÄDA <dbl> …
## $ name_BRÅTHULT <dbl> …
## $ name_BRIMNES <dbl> …
## $ name_BROMMÖ <dbl> …
## $ name_BROR <dbl> …
## $ name_BRORINGE <dbl> …
## $ name_BRUSALI <dbl> …
## $ name_BRUSEN <dbl> …
## $ name_BRYGGJA <dbl> …
## $ name_BUNSÖ <dbl> …
## $ name_BUSKBO <dbl> …
## $ name_BUSUNGE <dbl> …
## $ name_BYÅS <dbl> …
## $ name_BYLLAN <dbl> …
## $ name_DELAKTIG <dbl> …
## $ name_DETOLF <dbl> …
## $ name_DIETMAR <dbl> …
## $ name_EKEDALEN <dbl> …
## $ name_EKERÖ <dbl> …
## $ name_EKET <dbl> …
## $ name_EKOLSUND <dbl> …
## $ name_EKTORP <dbl> …
## $ name_ELVARLI <dbl> …
## $ name_ERIK <dbl> …
## $ name_ERNFRID <dbl> …
## $ name_FABRIKÖR <dbl> …
## $ name_FANBYN <dbl> …
## $ name_FÄRLÖV <dbl> …
## $ name_FINNBY <dbl> …
## $ name_FJÄLLBO <dbl> …
## $ name_FLISAT <dbl> …
## $ name_FLOTTEBO <dbl> …
## $ name_FÖRSIKTIG <dbl> …
## $ name_FRANKLIN <dbl> …
## $ name_FREKVENS <dbl> …
## $ name_FRIHETEN <dbl> …
## $ name_GALANT <dbl> …
## $ name_GAMLARP <dbl> …
## $ name_GISTAD <dbl> …
## $ name_GLENN <dbl> …
## $ name_GNEDBY <dbl> …
## $ name_GODISHUS <dbl> …
## $ name_GODVIN <dbl> …
## $ name_GRÄLVIKEN <dbl> …
## $ name_GRÖNLID <dbl> …
## $ name_GRUVBYN <dbl> …
## $ name_GULLIVER <dbl> …
## $ name_GUNDE <dbl> …
## $ name_HÄLLAN <dbl> …
## $ name_HAMMARN <dbl> …
## $ name_HARRY <dbl> …
## $ name_HATTEFJÄLL <dbl> …
## $ name_HAVSTA <dbl> …
## $ name_HAVSTEN <dbl> …
## $ name_HEJNE <dbl> …
## $ name_HEMNES <dbl> …
## $ name_HENRIKSDAL <dbl> …
## $ name_HOLMSUND <dbl> …
## $ name_HUSARÖ <dbl> …
## $ name_HYLLIS <dbl> …
## $ name_IDÅSEN <dbl> …
## $ name_IKEA.PS <dbl> …
## $ name_IKEA.PS.GULLHOLMEN <dbl> …
## $ name_INGATORP <dbl> …
## $ name_INGOLF <dbl> …
## $ name_INNAMO <dbl> …
## $ name_ISBERGET <dbl> …
## $ name_IVAR <dbl> …
## $ name_JANINGE <dbl> …
## $ name_JOKKMOKK <dbl> …
## $ name_JONAXEL <dbl> …
## $ name_KALLAX <dbl> …
## $ name_KARLHUGO <dbl> …
## $ name_KARLJAN <dbl> …
## $ name_KIVIK <dbl> …
## $ name_KLEPPSTAD <dbl> …
## $ name_KLIMPEN <dbl> …
## $ name_KLIPPAN <dbl> …
## $ name_KNARREVIK <dbl> …
## $ name_KNOTTEN <dbl> …
## $ name_KOLBJÖRN <dbl> …
## $ name_KOPPANG <dbl> …
## $ name_KORNSJÖ <dbl> …
## $ name_KULLABERG <dbl> …
## $ name_KULLEN <dbl> …
## $ name_KUNGSHAMN <dbl> …
## $ name_KUNGSHOLMEN <dbl> …
## $ name_KYRRE <dbl> …
## $ name_LACK <dbl> …
## $ name_LÄCKÖ <dbl> …
## $ name_LAIVA <dbl> …
## $ name_LANDSKRONA <dbl> …
## $ name_LÅNGFJÄLL <dbl> …
## $ name_LANGUR <dbl> …
## $ name_LAPPLAND <dbl> …
## $ name_LEIFARNE <dbl> …
## $ name_LERBERG <dbl> …
## $ name_LERHAMN <dbl> …
## $ name_LIATORP <dbl> …
## $ name_LIDHULT <dbl> …
## $ name_LISABO <dbl> …
## $ name_LIXHULT <dbl> …
## $ name_LOMMARP <dbl> …
## $ name_LYCKSELE.HÅVET <dbl> …
## $ name_LYCKSELE.LÖVÅS <dbl> …
## $ name_LYCKSELE.MURBO <dbl> …
## $ name_MACKAPÄR <dbl> …
## $ name_MALM <dbl> …
## $ name_MALSJÖ <dbl> …
## $ name_MAMMUT <dbl> …
## $ name_MARKERAD <dbl> …
## $ name_MARTIN <dbl> …
## $ name_MÄSTERBY <dbl> …
## $ name_MASTHOLMEN <dbl> …
## $ name_MICKE <dbl> …
## $ name_MOSJÖ <dbl> …
## $ name_MOSTORP <dbl> …
## $ name_MUREN <dbl> …
## $ name_NANNARP <dbl> …
## $ name_NIKKEBY <dbl> …
## $ name_NILSOVE <dbl> …
## $ name_NILSOVE...NORNA <dbl> …
## $ name_NISSE <dbl> …
## $ name_NOLMYRA <dbl> …
## $ name_NOMINELL <dbl> …
## $ name_NORBERG <dbl> …
## $ name_NORDKISA <dbl> …
## $ name_NORDLI <dbl> …
## $ name_NORDMELA <dbl> …
## $ name_NORDVIKEN <dbl> …
## $ name_NORRÅKER <dbl> …
## $ name_NORRARYD <dbl> …
## $ name_NORRNÄS <dbl> …
## $ name_NORSBORG <dbl> …
## $ name_NYHAMN <dbl> …
## $ name_ODGER <dbl> …
## $ name_OLAUS <dbl> …
## $ name_ÖNSKLIG <dbl> …
## $ name_PÅHL <dbl> …
## $ name_PAX <dbl> …
## $ name_PAX...AULI <dbl> …
## $ name_PAX...BERGSBO <dbl> …
## $ name_PAX...FÄRVIK.AULI <dbl> …
## $ name_PAX...FORSAND <dbl> …
## $ name_PAX...FORSAND.VIKEDAL <dbl> …
## $ name_PAX...GRIMO.VIKEDAL <dbl> …
## $ name_PAX...HASVIK <dbl> …
## $ name_PAX...HOKKSUND <dbl> …
## $ name_PAX...MEHAMN <dbl> …
## $ name_PAX...SEKKEN <dbl> …
## $ name_PAX...TYSSEDAL <dbl> …
## $ name_PAX...VIKEDAL <dbl> …
## $ name_PELLO <dbl> …
## $ name_PLATSA <dbl> …
## $ name_POÄNG <dbl> …
## $ name_PRÄSTHOLM <dbl> …
## $ name_RAKKESTAD <dbl> …
## $ name_RÅSKOG <dbl> …
## $ name_RAST <dbl> …
## $ name_REGISSÖR <dbl> …
## $ name_REMSTA <dbl> …
## $ name_RÖNNINGE <dbl> …
## $ name_SAKARIAS <dbl> …
## $ name_SALTHOLMEN <dbl> …
## $ name_SANDBACKEN <dbl> …
## $ name_SETSKOG <dbl> …
## $ name_SJÄLLAND <dbl> …
## $ name_SKÅDIS <dbl> …
## $ name_SKOGSTORP <dbl> …
## $ name_SKUBB <dbl> …
## $ name_SLÄKT <dbl> …
## $ name_SMÅGÖRA <dbl> …
## $ name_SÖDERHAMN <dbl> …
## $ name_SOLLERÖN <dbl> …
## $ name_SONGESAND <dbl> …
## $ name_STALLARP <dbl> …
## $ name_STEFAN <dbl> …
## $ name_STIG <dbl> …
## $ name_STOCKHOLM <dbl> …
## $ name_STOCKSUND <dbl> …
## $ name_STOLJAN <dbl> …
## $ name_STRANDMON <dbl> …
## $ name_STUBBARP <dbl> …
## $ name_STUK <dbl> …
## $ name_STUVA <dbl> …
## $ name_STUVA...FÖLJA <dbl> …
## $ name_STUVA...FRITIDS <dbl> …
## $ name_SUNDLANDET <dbl> …
## $ name_SUNDVIK <dbl> …
## $ name_SVALNÄS <dbl> …
## $ name_SVANÖ <dbl> …
## $ name_SVÄRTA <dbl> …
## $ name_SVENBERTIL <dbl> …
## $ name_SYVDE <dbl> …
## $ name_TEODORES <dbl> …
## $ name_TERJE <dbl> …
## $ name_TOBIAS <dbl> …
## $ name_TORNVIKEN <dbl> …
## $ name_TOSSBERG <dbl> …
## $ name_TOSTERÖ <dbl> …
## $ name_TRANARÖ <dbl> …
## $ name_TROFAST <dbl> …
## $ name_TROGEN <dbl> …
## $ name_TRYSIL <dbl> …
## $ name_TULLSTA <dbl> …
## $ name_TYSSEDAL <dbl> …
## $ name_ULRIKSBERG <dbl> …
## $ name_URBAN <dbl> …
## $ name_VÄDDÖ <dbl> …
## $ name_VADHOLMA <dbl> …
## $ name_VALLENTUNA <dbl> …
## $ name_VATTVIKEN <dbl> …
## $ name_VEBERÖD <dbl> …
## $ name_VEDBO <dbl> …
## $ name_VESKEN <dbl> …
## $ name_VIGGJA <dbl> …
## $ name_VIKHAMMER <dbl> …
## $ name_VILTO <dbl> …
## $ name_VIMLE <dbl> …
## $ name_VISTHUS <dbl> …
## $ name_VITTSJÖ <dbl> …
## $ name_VITVAL <dbl> …
## $ name_VOLFGANG <dbl> …
## $ name_VUKU <dbl> …
## $ name_YNGVAR <dbl> …
## $ category_Beds <dbl> …
## $ category_Bookcases...shelving.units <dbl> …
## $ category_Cabinets...cupboards <dbl> …
## $ category_Café.furniture <dbl> …
## $ category_Chairs <dbl> …
## $ category_Chests.of.drawers...drawer.units <dbl> …
## $ category_Children.s.furniture <dbl> …
## $ category_Nursery.furniture <dbl> …
## $ category_Outdoor.furniture <dbl> …
## $ category_Room.dividers <dbl> …
## $ category_Sideboards..buffets...console.tables <dbl> …
## $ category_Sofas...armchairs <dbl> …
## $ category_Tables...desks <dbl> …
## $ category_Trolleys <dbl> …
## $ category_TV...media.furniture <dbl> …
## $ category_Wardrobes <dbl> …
## $ price_X10 <dbl> …
## $ price_X15 <dbl> …
## $ price_X18 <dbl> …
## $ price_X20 <dbl> …
## $ price_X25 <dbl> …
## $ price_X30 <dbl> …
## $ price_X35 <dbl> …
## $ price_X35.4 <dbl> …
## $ price_X39 <dbl> …
## $ price_X40 <dbl> …
## $ price_X45 <dbl> …
## $ price_X49 <dbl> …
## $ price_X50 <dbl> …
## $ price_X51 <dbl> …
## $ price_X55 <dbl> …
## $ price_X57 <dbl> …
## $ price_X59 <dbl> …
## $ price_X60 <dbl> …
## $ price_X65 <dbl> …
## $ price_X69 <dbl> …
## $ price_X70 <dbl> …
## $ price_X75 <dbl> …
## $ price_X79 <dbl> …
## $ price_X79.2 <dbl> …
## $ price_X80 <dbl> …
## $ price_X84 <dbl> …
## $ price_X85 <dbl> …
## $ price_X87 <dbl> …
## $ price_X89 <dbl> …
## $ price_X94 <dbl> …
## $ price_X95 <dbl> …
## $ price_X99 <dbl> …
## $ price_X100 <dbl> …
## $ price_X107.4 <dbl> …
## $ price_X110 <dbl> …
## $ price_X114 <dbl> …
## $ price_X115 <dbl> …
## $ price_X125 <dbl> …
## $ price_X129 <dbl> …
## $ price_X130 <dbl> …
## $ price_X134 <dbl> …
## $ price_X134.6 <dbl> …
## $ price_X135 <dbl> …
## $ price_X139 <dbl> …
## $ price_X140 <dbl> …
## $ price_X141 <dbl> …
## $ price_X145 <dbl> …
## $ price_X149 <dbl> …
## $ price_X150 <dbl> …
## $ price_X155 <dbl> …
## $ price_X159 <dbl> …
## $ price_X160 <dbl> …
## $ price_X165 <dbl> …
## $ price_X170 <dbl> …
## $ price_X175 <dbl> …
## $ price_X177 <dbl> …
## $ price_X178 <dbl> …
## $ price_X179 <dbl> …
## $ price_X180 <dbl> …
## $ price_X185 <dbl> …
## $ price_X195 <dbl> …
## $ price_X196 <dbl> …
## $ price_X198 <dbl> …
## $ price_X199 <dbl> …
## $ price_X200 <dbl> …
## $ price_X204 <dbl> …
## $ price_X205 <dbl> …
## $ price_X210 <dbl> …
## $ price_X215 <dbl> …
## $ price_X220 <dbl> …
## $ price_X225 <dbl> …
## $ price_X230 <dbl> …
## $ price_X231.6 <dbl> …
## $ price_X234 <dbl> …
## $ price_X235 <dbl> …
## $ price_X236 <dbl> …
## $ price_X237 <dbl> …
## $ price_X240 <dbl> …
## $ price_X244 <dbl> …
## $ price_X245 <dbl> …
## $ price_X249 <dbl> …
## $ price_X250 <dbl> …
## $ price_X255 <dbl> …
## $ price_X260 <dbl> …
## $ price_X265 <dbl> …
## $ price_X267 <dbl> …
## $ price_X268 <dbl> …
## $ price_X271.2 <dbl> …
## $ price_X275 <dbl> …
## $ price_X276 <dbl> …
## $ price_X285 <dbl> …
## $ price_X287 <dbl> …
## $ price_X290 <dbl> …
## $ price_X295 <dbl> …
## $ price_X296 <dbl> …
## $ price_X297 <dbl> …
## $ price_X297.5 <dbl> …
## $ price_X299 <dbl> …
## $ price_X300 <dbl> …
## $ price_X302 <dbl> …
## $ price_X305 <dbl> …
## $ price_X307 <dbl> …
## $ price_X309 <dbl> …
## $ price_X310 <dbl> …
## $ price_X311 <dbl> …
## $ price_X311.4 <dbl> …
## $ price_X315 <dbl> …
## $ price_X316 <dbl> …
## $ price_X320 <dbl> …
## $ price_X321 <dbl> …
## $ price_X325 <dbl> …
## $ price_X327 <dbl> …
## $ price_X335 <dbl> …
## $ price_X340 <dbl> …
## $ price_X345 <dbl> …
## $ price_X347 <dbl> …
## $ price_X349 <dbl> …
## $ price_X350 <dbl> …
## $ price_X355 <dbl> …
## $ price_X356 <dbl> …
## $ price_X357 <dbl> …
## $ price_X363 <dbl> …
## $ price_X365 <dbl> …
## $ price_X370 <dbl> …
## $ price_X371 <dbl> …
## $ price_X375 <dbl> …
## $ price_X377 <dbl> …
## $ price_X380 <dbl> …
## $ price_X382 <dbl> …
## $ price_X383.8 <dbl> …
## $ price_X384 <dbl> …
## $ price_X385 <dbl> …
## $ price_X386 <dbl> …
## $ price_X389 <dbl> …
## $ price_X390 <dbl> …
## $ price_X395 <dbl> …
## $ price_X398 <dbl> …
## $ price_X399 <dbl> …
## $ price_X400 <dbl> …
## $ price_X405 <dbl> …
## $ price_X409 <dbl> …
## $ price_X410 <dbl> …
## $ price_X412 <dbl> …
## $ price_X414 <dbl> …
## $ price_X415 <dbl> …
## $ price_X417 <dbl> …
## $ price_X420 <dbl> …
## $ price_X424 <dbl> …
## $ price_X425 <dbl> …
## $ price_X428 <dbl> …
## $ price_X429 <dbl> …
## $ price_X434 <dbl> …
## $ price_X435 <dbl> …
## $ price_X440 <dbl> …
## $ price_X443 <dbl> …
## $ price_X444 <dbl> …
## $ price_X445 <dbl> …
## $ price_X449 <dbl> …
## $ price_X450 <dbl> …
## $ price_X451 <dbl> …
## $ price_X453 <dbl> …
## $ price_X456 <dbl> …
## $ price_X458 <dbl> …
## $ price_X460 <dbl> …
## $ price_X465 <dbl> …
## $ price_X470 <dbl> …
## $ price_X474.2 <dbl> …
## $ price_X475 <dbl> …
## $ price_X476 <dbl> …
## $ price_X477 <dbl> …
## $ price_X480 <dbl> …
## $ price_X490 <dbl> …
## $ price_X495 <dbl> …
## $ price_X498 <dbl> …
## $ price_X499 <dbl> …
## $ price_X500 <dbl> …
## $ price_X505 <dbl> …
## $ price_X508 <dbl> …
## $ price_X509 <dbl> …
## $ price_X510 <dbl> …
## $ price_X515 <dbl> …
## $ price_X516 <dbl> …
## $ price_X519 <dbl> …
## $ price_X521.5 <dbl> …
## $ price_X528.2 <dbl> …
## $ price_X529 <dbl> …
## $ price_X530 <dbl> …
## $ price_X542 <dbl> …
## $ price_X544.4 <dbl> …
## $ price_X545 <dbl> …
## $ price_X550 <dbl> …
## $ price_X555 <dbl> …
## $ price_X556 <dbl> …
## $ price_X560 <dbl> …
## $ price_X565 <dbl> …
## $ price_X570 <dbl> …
## $ price_X575 <dbl> …
## $ price_X580 <dbl> …
## $ price_X585 <dbl> …
## $ price_X588 <dbl> …
## $ price_X590 <dbl> …
## $ price_X592 <dbl> …
## $ price_X594 <dbl> …
## $ price_X595 <dbl> …
## $ price_X597 <dbl> …
## $ price_X598 <dbl> …
## $ price_X600 <dbl> …
## $ price_X612 <dbl> …
## $ price_X615 <dbl> …
## $ price_X620 <dbl> …
## $ price_X624 <dbl> …
## $ price_X625 <dbl> …
## $ price_X636 <dbl> …
## $ price_X640 <dbl> …
## $ price_X643 <dbl> …
## $ price_X645 <dbl> …
## $ price_X650 <dbl> …
## $ price_X656 <dbl> …
## $ price_X660 <dbl> …
## $ price_X661 <dbl> …
## $ price_X663 <dbl> …
## $ price_X665 <dbl> …
## $ price_X670 <dbl> …
## $ price_X674 <dbl> …
## $ price_X675 <dbl> …
## $ price_X676 <dbl> …
## $ price_X678 <dbl> …
## $ price_X680 <dbl> …
## $ price_X690 <dbl> …
## $ price_X693 <dbl> …
## $ price_X695 <dbl> …
## $ price_X700 <dbl> …
## $ price_X705 <dbl> …
## $ price_X709 <dbl> …
## $ price_X716 <dbl> …
## $ price_X718 <dbl> …
## $ price_X725 <dbl> …
## $ price_X726 <dbl> …
## $ price_X728 <dbl> …
## $ price_X729 <dbl> …
## $ price_X730 <dbl> …
## $ price_X735 <dbl> …
## $ price_X745 <dbl> …
## $ price_X750 <dbl> …
## $ price_X755 <dbl> …
## $ price_X758 <dbl> …
## $ price_X760 <dbl> …
## $ price_X770 <dbl> …
## $ price_X772 <dbl> …
## $ price_X774 <dbl> …
## $ price_X777 <dbl> …
## $ price_X785 <dbl> …
## $ price_X790 <dbl> …
## $ price_X795 <dbl> …
## $ price_X796 <dbl> …
## $ price_X800 <dbl> …
## $ price_X810 <dbl> …
## $ price_X820 <dbl> …
## $ price_X825 <dbl> …
## $ price_X830 <dbl> …
## $ price_X840 <dbl> …
## $ price_X841 <dbl> …
## $ price_X844 <dbl> …
## $ price_X845 <dbl> …
## $ price_X855 <dbl> …
## $ price_X860 <dbl> …
## $ price_X865 <dbl> …
## $ price_X870 <dbl> …
## $ price_X875 <dbl> …
## $ price_X878 <dbl> …
## $ price_X885 <dbl> …
## $ price_X890 <dbl> …
## $ price_X892 <dbl> …
## $ price_X895 <dbl> …
## $ price_X900 <dbl> …
## $ price_X905 <dbl> …
## $ price_X906 <dbl> …
## $ price_X910 <dbl> …
## $ price_X915 <dbl> …
## $ price_X920 <dbl> …
## $ price_X925 <dbl> …
## $ price_X930 <dbl> …
## $ price_X939 <dbl> …
## $ price_X940 <dbl> …
## $ price_X943.5 <dbl> …
## $ price_X944 <dbl> …
## $ price_X945 <dbl> …
## $ price_X950 <dbl> …
## $ price_X952 <dbl> …
## $ price_X960 <dbl> …
## $ price_X965 <dbl> …
## $ price_X975 <dbl> …
## $ price_X978 <dbl> …
## $ price_X980 <dbl> …
## $ price_X990 <dbl> …
## $ price_X995 <dbl> …
## $ price_X1000 <dbl> …
## $ price_X1002 <dbl> …
## $ price_X1020 <dbl> …
## $ price_X1030 <dbl> …
## $ price_X1035 <dbl> …
## $ price_X1036 <dbl> …
## $ price_X1039 <dbl> …
## $ price_X1044 <dbl> …
## $ price_X1045 <dbl> …
## $ price_X1055 <dbl> …
## $ price_X1060 <dbl> …
## $ price_X1075 <dbl> …
## $ price_X1080 <dbl> …
## $ price_X1081 <dbl> …
## $ price_X1085 <dbl> …
## $ price_X1090 <dbl> …
## $ price_X1095 <dbl> …
## $ price_X1100 <dbl> …
## $ price_X1105 <dbl> …
## $ price_X1110 <dbl> …
## $ price_X1116 <dbl> …
## $ price_X1123 <dbl> …
## $ price_X1125 <dbl> …
## $ price_X1128 <dbl> …
## $ price_X1137 <dbl> …
## $ price_X1140 <dbl> …
## $ price_X1145 <dbl> …
## $ price_X1150 <dbl> …
## $ price_X1155 <dbl> …
## $ price_X1160 <dbl> …
## $ price_X1174 <dbl> …
## $ price_X1176 <dbl> …
## $ price_X1181 <dbl> …
## $ price_X1195 <dbl> …
## $ price_X1196 <dbl> …
## $ price_X1200 <dbl> …
## $ price_X1210 <dbl> …
## $ price_X1215 <dbl> …
## $ price_X1218 <dbl> …
## $ price_X1220 <dbl> …
## $ price_X1225 <dbl> …
## $ price_X1235 <dbl> …
## $ price_X1238 <dbl> …
## $ price_X1240 <dbl> …
## $ price_X1245 <dbl> …
## $ price_X1247 <dbl> …
## $ price_X1248 <dbl> …
## $ price_X1250 <dbl> …
## $ price_X1255 <dbl> …
## $ price_X1259 <dbl> …
## $ price_X1260 <dbl> …
## $ price_X1260.5 <dbl> …
## $ price_X1265 <dbl> …
## $ price_X1268 <dbl> …
## $ price_X1276 <dbl> …
## $ price_X1280 <dbl> …
## $ price_X1290 <dbl> …
## $ price_X1294 <dbl> …
## $ price_X1295 <dbl> …
## $ price_X1300 <dbl> …
## $ price_X1301 <dbl> …
## $ price_X1305 <dbl> …
## $ price_X1311 <dbl> …
## $ price_X1315 <dbl> …
## $ price_X1320 <dbl> …
## $ price_X1324 <dbl> …
## $ price_X1330 <dbl> …
## $ price_X1335 <dbl> …
## $ price_X1340 <dbl> …
## $ price_X1345 <dbl> …
## $ price_X1350 <dbl> …
## $ price_X1355 <dbl> …
## $ price_X1356 <dbl> …
## $ price_X1360 <dbl> …
## $ price_X1370 <dbl> …
## $ price_X1380 <dbl> …
## $ price_X1385 <dbl> …
## $ price_X1388 <dbl> …
## $ price_X1389 <dbl> …
## $ price_X1390 <dbl> …
## $ price_X1391 <dbl> …
## $ price_X1395 <dbl> …
## $ price_X1400 <dbl> …
## $ price_X1425 <dbl> …
## $ price_X1445 <dbl> …
## $ price_X1468 <dbl> …
## $ price_X1469 <dbl> …
## $ price_X1470 <dbl> …
## $ price_X1480 <dbl> …
## $ price_X1490 <dbl> …
## $ price_X1495 <dbl> …
## $ price_X1499 <dbl> …
## $ price_X1500 <dbl> …
## $ price_X1510 <dbl> …
## $ price_X1516 <dbl> …
## $ price_X1518 <dbl> …
## $ price_X1520 <dbl> …
## $ price_X1525 <dbl> …
## $ price_X1538 <dbl> …
## $ price_X1540 <dbl> …
## $ price_X1545 <dbl> …
## $ price_X1550 <dbl> …
## $ price_X1560 <dbl> …
## $ price_X1570 <dbl> …
## $ price_X1575 <dbl> …
## $ price_X1578 <dbl> …
## $ price_X1580 <dbl> …
## $ price_X1581 <dbl> …
## $ price_X1585 <dbl> …
## $ price_X1588 <dbl> …
## $ price_X1590 <dbl> …
## $ price_X1595 <dbl> …
## $ price_X1596 <dbl> …
## $ price_X1600 <dbl> …
## $ price_X1600.5 <dbl> …
## $ price_X1606 <dbl> …
## $ price_X1610 <dbl> …
## $ price_X1611 <dbl> …
## $ price_X1620 <dbl> …
## $ price_X1629 <dbl> …
## $ price_X1635 <dbl> …
## $ price_X1640 <dbl> …
## $ price_X1645 <dbl> …
## $ price_X1650 <dbl> …
## $ price_X1660 <dbl> …
## $ price_X1668 <dbl> …
## $ price_X1670 <dbl> …
## $ price_X1675 <dbl> …
## $ price_X1676 <dbl> …
## $ price_X1680 <dbl> …
## $ price_X1685 <dbl> …
## $ price_X1690 <dbl> …
## $ price_X1695 <dbl> …
## $ price_X1700 <dbl> …
## $ price_X1710 <dbl> …
## $ price_X1719 <dbl> …
## $ price_X1725 <dbl> …
## $ price_X1735 <dbl> …
## $ price_X1735.5 <dbl> …
## $ price_X1740 <dbl> …
## $ price_X1745 <dbl> …
## $ price_X1750 <dbl> …
## $ price_X1757 <dbl> …
## $ price_X1760 <dbl> …
## $ price_X1765 <dbl> …
## $ price_X1767 <dbl> …
## $ price_X1770 <dbl> …
## $ price_X1772.5 <dbl> …
## $ price_X1773 <dbl> …
## $ price_X1790 <dbl> …
## $ price_X1795 <dbl> …
## $ price_X1796 <dbl> …
## $ price_X1800 <dbl> …
## $ price_X1815 <dbl> …
## $ price_X1820 <dbl> …
## $ price_X1824.5 <dbl> …
## $ price_X1830 <dbl> …
## $ price_X1835 <dbl> …
## $ price_X1836 <dbl> …
## $ price_X1838 <dbl> …
## $ price_X1840 <dbl> …
## $ price_X1845 <dbl> …
## $ price_X1848 <dbl> …
## $ price_X1850 <dbl> …
## $ price_X1860 <dbl> …
## $ price_X1870 <dbl> …
## $ price_X1880 <dbl> …
## $ price_X1890 <dbl> …
## $ price_X1895 <dbl> …
## $ price_X1899.5 <dbl> …
## $ price_X1900 <dbl> …
## $ price_X1940 <dbl> …
## $ price_X1948 <dbl> …
## $ price_X1950 <dbl> …
## $ price_X1960 <dbl> …
## $ price_X1970 <dbl> …
## $ price_X1980 <dbl> …
## $ price_X1990 <dbl> …
## $ price_X1991 <dbl> …
## $ price_X1995 <dbl> …
## $ price_X1996 <dbl> …
## $ price_X2016 <dbl> …
## $ price_X2020 <dbl> …
## $ price_X2025 <dbl> …
## $ price_X2034 <dbl> …
## $ price_X2045 <dbl> …
## $ price_X2055 <dbl> …
## $ price_X2070 <dbl> …
## $ price_X2074 <dbl> …
## $ price_X2100 <dbl> …
## $ price_X2111 <dbl> …
## $ price_X2125 <dbl> …
## $ price_X2140 <dbl> …
## $ price_X2156 <dbl> …
## $ price_X2160.4 <dbl> …
## $ price_X2163.5 <dbl> …
## $ price_X2170 <dbl> …
## $ price_X2185 <dbl> …
## $ price_X2187 <dbl> …
## $ price_X2190 <dbl> …
## $ price_X2195 <dbl> …
## $ price_X2200 <dbl> …
## $ price_X2205.5 <dbl> …
## $ price_X2210 <dbl> …
## $ price_X2235 <dbl> …
## $ price_X2236 <dbl> …
## $ price_X2246 <dbl> …
## $ price_X2250 <dbl> …
## $ price_X2255 <dbl> …
## $ price_X2265 <dbl> …
## $ price_X2270 <dbl> …
## $ price_X2275 <dbl> …
## $ price_X2290 <dbl> …
## $ price_X2295 <dbl> …
## $ price_X2296 <dbl> …
## $ price_X2300 <dbl> …
## $ price_X2307 <dbl> …
## $ price_X2320 <dbl> …
## $ price_X2330 <dbl> …
## $ price_X2346 <dbl> …
## $ price_X2350 <dbl> …
## $ price_X2358 <dbl> …
## $ price_X2370 <dbl> …
## $ price_X2380 <dbl> …
## $ price_X2384 <dbl> …
## $ price_X2385 <dbl> …
## $ price_X2395 <dbl> …
## $ price_X2396 <dbl> …
## $ price_X2410 <dbl> …
## $ price_X2412 <dbl> …
## $ price_X2415 <dbl> …
## $ price_X2450 <dbl> …
## $ price_X2470 <dbl> …
## $ price_X2495 <dbl> …
## $ price_X2500 <dbl> …
## $ price_X2505 <dbl> …
## $ price_X2515 <dbl> …
## $ price_X2525 <dbl> …
## $ price_X2534.5 <dbl> …
## $ price_X2545 <dbl> …
## $ price_X2576 <dbl> …
## $ price_X2580 <dbl> …
## $ price_X2595 <dbl> …
## $ price_X2600 <dbl> …
## $ price_X2600.5 <dbl> …
## $ price_X2605 <dbl> …
## $ price_X2610 <dbl> …
## $ price_X2620 <dbl> …
## $ price_X2635 <dbl> …
## $ price_X2645 <dbl> …
## $ price_X2650 <dbl> …
## $ price_X2665 <dbl> …
## $ price_X2666 <dbl> …
## $ price_X2690 <dbl> …
## $ price_X2695 <dbl> …
## $ price_X2696 <dbl> …
## $ price_X2697 <dbl> …
## $ price_X2700 <dbl> …
## $ price_X2710 <dbl> …
## $ price_X2730 <dbl> …
## $ price_X2740 <dbl> …
## $ price_X2770 <dbl> …
## $ price_X2775 <dbl> …
## $ price_X2792.8 <dbl> …
## $ price_X2794 <dbl> …
## $ price_X2795 <dbl> …
## $ price_X2800 <dbl> …
## $ price_X2805 <dbl> …
## $ price_X2832 <dbl> …
## $ price_X2865 <dbl> …
## $ price_X2895 <dbl> …
## $ price_X2905 <dbl> …
## $ price_X2932 <dbl> …
## $ price_X2940 <dbl> …
## $ price_X2945 <dbl> …
## $ price_X2950 <dbl> …
## $ price_X2960 <dbl> …
## $ price_X2975 <dbl> …
## $ price_X2980 <dbl> …
## $ price_X2990 <dbl> …
## $ price_X2995 <dbl> …
## $ price_X3032 <dbl> …
## $ price_X3035 <dbl> …
## $ price_X3055 <dbl> …
## $ price_X3100 <dbl> …
## $ price_X3108 <dbl> …
## $ price_X3110 <dbl> …
## $ price_X3113 <dbl> …
## $ price_X3115 <dbl> …
## $ price_X3120 <dbl> …
## $ price_X3140 <dbl> …
## $ price_X3145 <dbl> …
## $ price_X3155 <dbl> …
## $ price_X3162 <dbl> …
## $ price_X3190 <dbl> …
## $ price_X3196 <dbl> …
## $ price_X3206 <dbl> …
## $ price_X3215 <dbl> …
## $ price_X3222 <dbl> …
## $ price_X3227 <dbl> …
## $ price_X3240 <dbl> …
## $ price_X3275 <dbl> …
## $ price_X3310 <dbl> …
## $ price_X3339 <dbl> …
## $ price_X3340 <dbl> …
## $ price_X3355 <dbl> …
## $ price_X3385 <dbl> …
## $ price_X3388 <dbl> …
## $ price_X3394 <dbl> …
## $ price_X3410 <dbl> …
## $ price_X3435 <dbl> …
## $ price_X3460 <dbl> …
## $ price_X3493 <dbl> …
## $ price_X3495 <dbl> …
## $ price_X3500 <dbl> …
## $ price_X3535 <dbl> …
## $ price_X3540 <dbl> …
## $ price_X3560 <dbl> …
## $ price_X3564 <dbl> …
## $ price_X3590 <dbl> …
## $ price_X3595 <dbl> …
## $ price_X3635 <dbl> …
## $ price_X3675 <dbl> …
## $ price_X3680 <dbl> …
## $ price_X3695 <dbl> …
## $ price_X3746 <dbl> …
## $ price_X3760 <dbl> …
## $ price_X3775 <dbl> …
## $ price_X3781 <dbl> …
## $ price_X3800 <dbl> …
## $ price_X3805 <dbl> …
## $ price_X3845 <dbl> …
## $ price_X3875 <dbl> …
## $ price_X3885 <dbl> …
## $ price_X3896 <dbl> …
## $ price_X3900 <dbl> …
## $ price_X3905 <dbl> …
## $ price_X3908 <dbl> …
## $ price_X3925 <dbl> …
## $ price_X3935 <dbl> …
## $ price_X3960 <dbl> …
## $ price_X3985 <dbl> …
## $ price_X3986 <dbl> …
## $ price_X4010 <dbl> …
## $ price_X4040 <dbl> …
## $ price_X4070 <dbl> …
## $ price_X4100 <dbl> …
## $ price_X4120 <dbl> …
## $ price_X4175 <dbl> …
## $ price_X4185 <dbl> …
## $ price_X4190 <dbl> …
## $ price_X4200 <dbl> …
## $ price_X4215 <dbl> …
## $ price_X4220 <dbl> …
## $ price_X4260 <dbl> …
## $ price_X4265 <dbl> …
## $ price_X4270 <dbl> …
## $ price_X4295 <dbl> …
## $ price_X4305 <dbl> …
## $ price_X4320 <dbl> …
## $ price_X4335 <dbl> …
## $ price_X4345 <dbl> …
## $ price_X4390 <dbl> …
## $ price_X4495 <dbl> …
## $ price_X4540 <dbl> …
## $ price_X4545 <dbl> …
## $ price_X4580 <dbl> …
## $ price_X4585 <dbl> …
## $ price_X4604 <dbl> …
## $ price_X4645 <dbl> …
## $ price_X4695 <dbl> …
## $ price_X4740 <dbl> …
## $ price_X4770 <dbl> …
## $ price_X4785 <dbl> …
## $ price_X4790 <dbl> …
## $ price_X4800 <dbl> …
## $ price_X4805 <dbl> …
## $ price_X4841 <dbl> …
## $ price_X4865 <dbl> …
## $ price_X4870 <dbl> …
## $ price_X4935 <dbl> …
## $ price_X5040 <dbl> …
## $ price_X5144 <dbl> …
## $ price_X5145 <dbl> …
## $ price_X5240 <dbl> …
## $ price_X5260 <dbl> …
## $ price_X5290 <dbl> …
## $ price_X5300 <dbl> …
## $ price_X5345 <dbl> …
## $ price_X5380 <dbl> …
## $ price_X5428 <dbl> …
## $ price_X5436 <dbl> …
## $ price_X5500 <dbl> …
## $ price_X5530 <dbl> …
## $ price_X5553 <dbl> …
## $ price_X5600 <dbl> …
## $ price_X5700 <dbl> …
## $ price_X5780 <dbl> …
## $ price_X5800 <dbl> …
## $ price_X5810 <dbl> …
## $ price_X5840 <dbl> …
## $ price_X5945 <dbl> …
## $ price_X5965 <dbl> …
## $ price_X5990 <dbl> …
## $ price_X5995 <dbl> …
## $ price_X6000 <dbl> …
## $ price_X6030 <dbl> …
## $ price_X6065 <dbl> …
## $ price_X6110 <dbl> …
## $ price_X6160 <dbl> …
## $ price_X6228 <dbl> …
## $ price_X6295 <dbl> …
## $ price_X6400 <dbl> …
## $ price_X6440 <dbl> …
## $ price_X6480 <dbl> …
## $ price_X6545 <dbl> …
## $ price_X6575 <dbl> …
## $ price_X6585 <dbl> …
## $ price_X6680 <dbl> …
## $ price_X6805 <dbl> …
## $ price_X6895 <dbl> …
## $ price_X7400 <dbl> …
## $ price_X7610 <dbl> …
## $ price_X7748 <dbl> …
## $ price_X7765 <dbl> …
## $ price_X7785 <dbl> …
## $ price_X7873 <dbl> …
## $ price_X8240 <dbl> …
## $ price_X8295 <dbl> …
## $ price_X8395 <dbl> …
## $ price_X8900 <dbl> …
## $ price_X9585 <dbl> …
## $ old_price_SR.1.010 <dbl> …
## $ old_price_SR.1.030 <dbl> …
## $ old_price_SR.1.090 <dbl> …
## $ old_price_SR.1.098 <dbl> …
## $ old_price_SR.1.120 <dbl> …
## $ old_price_SR.1.125 <dbl> …
## $ old_price_SR.1.145 <dbl> …
## $ old_price_SR.1.150 <dbl> …
## $ old_price_SR.1.180 <dbl> …
## $ old_price_SR.1.182 <dbl> …
## $ old_price_SR.1.190 <dbl> …
## $ old_price_SR.1.200 <dbl> …
## $ old_price_SR.1.210 <dbl> …
## $ old_price_SR.1.225 <dbl> …
## $ old_price_SR.1.230 <dbl> …
## $ old_price_SR.1.277 <dbl> …
## $ old_price_SR.1.295 <dbl> …
## $ old_price_SR.1.300 <dbl> …
## $ old_price_SR.1.307 <dbl> …
## $ old_price_SR.1.325 <dbl> …
## $ old_price_SR.1.345 <dbl> …
## $ old_price_SR.1.350 <dbl> …
## $ old_price_SR.1.395 <dbl> …
## $ old_price_SR.1.450 <dbl> …
## $ old_price_SR.1.495 <dbl> …
## $ old_price_SR.1.505 <dbl> …
## $ old_price_SR.1.525 <dbl> …
## $ old_price_SR.1.580 <dbl> …
## $ old_price_SR.1.595 <dbl> …
## $ old_price_SR.1.600 <dbl> …
## $ old_price_SR.1.620 <dbl> …
## $ old_price_SR.1.650 <dbl> …
## $ old_price_SR.1.655 <dbl> …
## $ old_price_SR.1.700 <dbl> …
## $ old_price_SR.1.715 <dbl> …
## $ old_price_SR.1.735 <dbl> …
## $ old_price_SR.1.785 <dbl> …
## $ old_price_SR.1.835 <dbl> …
## $ old_price_SR.1.865 <dbl> …
## $ old_price_SR.1.885 <dbl> …
## $ old_price_SR.1.895 <dbl> …
## $ old_price_SR.1.948 <dbl> …
## $ old_price_SR.1.985 <dbl> …
## $ old_price_SR.1.995 <dbl> …
## $ old_price_SR.10.4.pack <dbl> …
## $ old_price_SR.105 <dbl> …
## $ old_price_SR.125 <dbl> …
## $ old_price_SR.138 <dbl> …
## $ old_price_SR.145 <dbl> …
## $ old_price_SR.175 <dbl> …
## $ old_price_SR.179 <dbl> …
## $ old_price_SR.2.010 <dbl> …
## $ old_price_SR.2.035 <dbl> …
## $ old_price_SR.2.050 <dbl> …
## $ old_price_SR.2.075 <dbl> …
## $ old_price_SR.2.090 <dbl> …
## $ old_price_SR.2.095 <dbl> …
## $ old_price_SR.2.100 <dbl> …
## $ old_price_SR.2.155 <dbl> …
## $ old_price_SR.2.160 <dbl> …
## $ old_price_SR.2.205 <dbl> …
## $ old_price_SR.2.220 <dbl> …
## $ old_price_SR.2.230 <dbl> …
## $ old_price_SR.2.245 <dbl> …
## $ old_price_SR.2.270 <dbl> …
## $ old_price_SR.2.275 <dbl> …
## $ old_price_SR.2.295 <dbl> …
## $ old_price_SR.2.325 <dbl> …
## $ old_price_SR.2.350 <dbl> …
## $ old_price_SR.2.360 <dbl> …
## $ old_price_SR.2.368 <dbl> …
## $ old_price_SR.2.395 <dbl> …
## $ old_price_SR.2.435 <dbl> …
## $ old_price_SR.2.495 <dbl> …
## $ old_price_SR.2.560 <dbl> …
## $ old_price_SR.2.580 <dbl> …
## $ old_price_SR.2.605 <dbl> …
## $ old_price_SR.2.750 <dbl> …
## $ old_price_SR.2.760 <dbl> …
## $ old_price_SR.2.770 <dbl> …
## $ old_price_SR.2.795 <dbl> …
## $ old_price_SR.2.815 <dbl> …
## $ old_price_SR.2.830 <dbl> …
## $ old_price_SR.2.875 <dbl> …
## $ old_price_SR.2.880 <dbl> …
## $ old_price_SR.2.985 <dbl> …
## $ old_price_SR.2.995 <dbl> …
## $ old_price_SR.200 <dbl> …
## $ old_price_SR.205 <dbl> …
## $ old_price_SR.22 <dbl> …
## $ old_price_SR.225 <dbl> …
## $ old_price_SR.232 <dbl> …
## $ old_price_SR.237 <dbl> …
## $ old_price_SR.250 <dbl> …
## $ old_price_SR.27 <dbl> …
## $ old_price_SR.275 <dbl> …
## $ old_price_SR.295 <dbl> …
## $ old_price_SR.3.208 <dbl> …
## $ old_price_SR.3.250 <dbl> …
## $ old_price_SR.3.275 <dbl> …
## $ old_price_SR.3.370 <dbl> …
## $ old_price_SR.3.375 <dbl> …
## $ old_price_SR.3.440 <dbl> …
## $ old_price_SR.3.490 <dbl> …
## $ old_price_SR.3.500 <dbl> …
## $ old_price_SR.3.535 <dbl> …
## $ old_price_SR.3.665 <dbl> …
## $ old_price_SR.3.760 <dbl> …
## $ old_price_SR.3.790 <dbl> …
## $ old_price_SR.3.885 <dbl> …
## $ old_price_SR.3.995 <dbl> …
## $ old_price_SR.30 <dbl> …
## $ old_price_SR.300 <dbl> …
## $ old_price_SR.310 <dbl> …
## $ old_price_SR.326 <dbl> …
## $ old_price_SR.340 <dbl> …
## $ old_price_SR.345 <dbl> …
## $ old_price_SR.350 <dbl> …
## $ old_price_SR.360 <dbl> …
## $ old_price_SR.370 <dbl> …
## $ old_price_SR.375 <dbl> …
## $ old_price_SR.380 <dbl> …
## $ old_price_SR.395 <dbl> …
## $ old_price_SR.4.450 <dbl> …
## $ old_price_SR.4.490 <dbl> …
## $ old_price_SR.4.750 <dbl> …
## $ old_price_SR.400 <dbl> …
## $ old_price_SR.420 <dbl> …
## $ old_price_SR.425 <dbl> …
## $ old_price_SR.432 <dbl> …
## $ old_price_SR.437 <dbl> …
## $ old_price_SR.438 <dbl> …
## $ old_price_SR.444 <dbl> …
## $ old_price_SR.445 <dbl> …
## $ old_price_SR.446 <dbl> …
## $ old_price_SR.452 <dbl> …
## $ old_price_SR.455 <dbl> …
## $ old_price_SR.475 <dbl> …
## $ old_price_SR.5.275 <dbl> …
## $ old_price_SR.5.400 <dbl> …
## $ old_price_SR.5.640 <dbl> …
## $ old_price_SR.5.725 <dbl> …
## $ old_price_SR.5.975 <dbl> …
## $ old_price_SR.50 <dbl> …
## $ old_price_SR.500 <dbl> …
## $ old_price_SR.505 <dbl> …
## $ old_price_SR.520 <dbl> …
## $ old_price_SR.525 <dbl> …
## $ old_price_SR.530 <dbl> …
## $ old_price_SR.535 <dbl> …
## $ old_price_SR.545 <dbl> …
## $ old_price_SR.550 <dbl> …
## $ old_price_SR.557 <dbl> …
## $ old_price_SR.570 <dbl> …
## $ old_price_SR.575 <dbl> …
## $ old_price_SR.587 <dbl> …
## $ old_price_SR.59 <dbl> …
## $ old_price_SR.595 <dbl> …
## $ old_price_SR.6.530 <dbl> …
## $ old_price_SR.6.625 <dbl> …
## $ old_price_SR.6.785 <dbl> …
## $ old_price_SR.6.875 <dbl> …
## $ old_price_SR.625 <dbl> …
## $ old_price_SR.635 <dbl> …
## $ old_price_SR.640 <dbl> …
## $ old_price_SR.645 <dbl> …
## $ old_price_SR.649 <dbl> …
## $ old_price_SR.655 <dbl> …
## $ old_price_SR.657 <dbl> …
## $ old_price_SR.660 <dbl> …
## $ old_price_SR.671 <dbl> …
## $ old_price_SR.690 <dbl> …
## $ old_price_SR.695 <dbl> …
## $ old_price_SR.7.225 <dbl> …
## $ old_price_SR.7.785 <dbl> …
## $ old_price_SR.725 <dbl> …
## $ old_price_SR.732 <dbl> …
## $ old_price_SR.745 <dbl> …
## $ old_price_SR.75 <dbl> …
## $ old_price_SR.752 <dbl> …
## $ old_price_SR.765 <dbl> …
## $ old_price_SR.775 <dbl> …
## $ old_price_SR.776 <dbl> …
## $ old_price_SR.780 <dbl> …
## $ old_price_SR.785 <dbl> …
## $ old_price_SR.795 <dbl> …
## $ old_price_SR.8.000 <dbl> …
## $ old_price_SR.8.350 <dbl> …
## $ old_price_SR.800 <dbl> …
## $ old_price_SR.840 <dbl> …
## $ old_price_SR.845 <dbl> …
## $ old_price_SR.885 <dbl> …
## $ old_price_SR.892 <dbl> …
## $ old_price_SR.895 <dbl> …
## $ old_price_SR.9.685 <dbl> …
## $ old_price_SR.90 <dbl> …
## $ old_price_SR.925 <dbl> …
## $ old_price_SR.95 <dbl> …
## $ old_price_SR.951 <dbl> …
## $ old_price_SR.965 <dbl> …
## $ old_price_SR.977 <dbl> …
## $ old_price_SR.980 <dbl> …
## $ old_price_SR.981 <dbl> …
## $ old_price_SR.99 <dbl> …
## $ old_price_SR.995 <dbl> …
## $ link_https...www.ikea.com.sa.en.p.aepplaroe.2.seat.modular.sofa.outdoor.brown.stained.kungsoe.white.white.s09227532. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.aepplaroe.3.seat.modular.sofa.outdoor.brown.stained.froesoen.duvholmen.beige.s89260075. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.aepplaroe.3.seat.modular.sofa.outdoor.with.footstool.brown.stained.brown.stained.froesoen.duvholmen.beige.s29267334. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.aepplaroe.bench.outdoor.brown.stained.brown.10205181. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.aepplaroe.chair.outdoor.foldable.brown.stained.40413131. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.aepplaroe.chair.with.armrests.outdoor.brown.stained.brown.20208527. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.aepplaroe.corner.section.outdoor.brown.stained.brown.50205179. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.aepplaroe.modular.corner.sofa.3.seat.outdoor.brown.stained.froesoen.duvholmen.dark.grey.s99262168. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.aepplaroe.one.seat.section.outdoor.brown.stained.brown.60205188. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.aepplaroe.reclining.chair.outdoor.brown.foldable.brown.stained.brown.70208539. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.aepplaroe.stool.outdoor.foldable.brown.stained.20204925. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.aepplaroe.wall.panel.gate.leg.table.outdoor.brown.stained.s49054015. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.agam.junior.chair.black.70253541. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.agam.junior.chair.white.90253535. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.agen.chair.rattan.bamboo.50058376. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.alex.desk.blue.90409607. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.alex.drawer.unit.blue.40410340. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.alex.drawer.unit.with.9.drawers.white.50192822. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.alex.storage.unit.white.60192826. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.2.sections.shelves.black.s29285470. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.3.sections.shelves.black.s89285518. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.mesh.basket.white.10218517. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.shelving.unit.black.s89285467. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.skadis.wall.upright.shelves.rod.s19276414. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.mesh.baskets.white.s89276590. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.black.s19309725. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.drying.rack.s79303103. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.drying.rack.white.s19903834. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.drying.rack.white.s29276531. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.drying.rack.white.s39903833. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.rod.s69239607. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.rod.white.s09903820. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.rod.white.s59276172. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.rod.white.s79276246. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.white.s19930205. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.white.s39311765. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.white.s39903791. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.white.s49017749. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.white.s49903842. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.white.s69903799. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.white.s79094213. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.white.s99903788. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.angersby.2.seat.sofa.knisa.light.grey.10469186. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.antilop.highchair.with.safety.belt.white.silver.colour.s89041709. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.antilop.highchair.with.tray.silver.colour.white.silver.colour.s29067293. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.arkelstorp.desk.black.60261037. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.askeby.two.seat.sofa.bed.black.70284203. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.askholmen.chair.outdoor.grey.brown.foldable.grey.brown.stained.light.brown.stained.light.brown.50240031. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.askvoll.chest.of.3.drawers.white.stained.oak.effect.white.20270802. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.askvoll.chest.of.5.drawers.white.stained.oak.effect.white.50391143. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.balsberget.chair.frame.swivel.white.80308675. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.baltsar.chair.black.blue.brown.10413137. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.shelving.unit.black.10373495. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.on.castors.mesh.black.s29282532. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.on.castors.mesh.black.s79282544. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.on.castors.mesh.white.s79282426. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.on.legs.mesh.black.s69282399. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.on.legs.mesh.black.s69282525. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.on.legs.mesh.black.s99282538. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.on.legs.mesh.white.s09282528. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.with.smart.lock.mesh.black.s29286931. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.with.smart.lock.mesh.black.s49286510. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.with.smart.lock.mesh.black.s79286896. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.with.smart.lock.mesh.black.s89286805. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.with.smart.lock.mesh.white.s59286963. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.with.smart.lock.mesh.white.s69286806. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.with.smart.lock.mesh.white.s89286513. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekvaem.step.stool.beech.60178887. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekvaem.step.stool.black.30178884. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekvaem.step.stool.white.40178888. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.benarp.armchair.skiftebo.yellow.40319398. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bernhard.bar.stool.with.backrest.chrome.plated.mjuk.kavat.white.00272656. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bernhard.chair.chrome.plated.kavat.mjuk.dark.brown.20163802. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bernhard.chair.chrome.plated.kavat.mjuk.white.20153068. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bernhard.chair.chrome.plated.mjuk.golden.brown.50404824. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.burs.desk.high.gloss.white.70245339. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.burs.tv.bench.high.gloss.white.30269129. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.cabinet.unit.black.brown.s69284987. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.cabinet.unit.grey.stained.walnut.effect.s99285004. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.drawer.frame.black.brown.00351248. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.drawer.frame.black.brown.40351246. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.drawer.frame.grey.stained.walnut.effect.10351511. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.drawer.frame.grey.stained.walnut.effect.20351515. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.eket.cabinet.combination.for.tv.white.grey.stained.walnut.effect.s59204420. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.eket.cabinet.combination.for.tv.white.light.grey.dark.grey.golden.brown.s39286841. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.eket.cabinet.combination.for.tv.white.light.grey.red.s29286865. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.eket.cabinet.combination.for.tv.white.s29204431. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.eket.cabinet.combination.for.tv.white.white.stained.oak.effect.s39286855. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.frame.black.brown.20245959. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.frame.black.brown.20245964. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.frame.black.brown.60245957. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.frame.black.brown.70245952. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.frame.grey.stained.walnut.effect.30247378. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.frame.grey.stained.walnut.effect.60247409. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.frame.grey.stained.walnut.effect.70247376. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.frame.grey.stained.walnut.effect.80247371. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.frame.white.00245842. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.frame.white.10245846. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.doors.drawers.black.brown.hanviken.stubbarp.black.brown.clear.glass.s79301788. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.doors.drawers.grey.stained.walnut.effect.lappviken.stubbarp.grey.stained.walnut.eff.clear.glass.s39301785. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.glass.doors.black.brown.glassvik.stallarp.dark.red.brown.clear.glass.s49301921. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.glass.doors.black.brown.selsviken.dark.red.brown.clear.glass.s49300827. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.glass.doors.black.brown.sindvik.stallarp.black.brown.clear.glass.s19301927. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.glass.doors.black.brown.vassviken.white.clear.glass.s19282919. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.glass.doors.grey.stained.walnut.effect.lappviken.grey.stained.walnut.eff.clear.glass.s29300852. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.glass.doors.grey.stained.walnut.effect.notviken.blue.clear.glass.s99300839. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.glass.doors.grey.stained.walnut.effect.selsviken.high.gloss.white.frosted.glass.s89301127. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.glass.doors.grey.stained.walnut.effect.vassviken.white.clear.glass.s19282924. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.glass.doors.white.sindvik.stallarp.white.clear.glass.s59301483. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.glass.doors.white.vassviken.white.clear.glass.s69282926. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.black.brown.kallviken.dark.grey.concrete.effect.s19205884. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.black.brown.lappviken.light.grey.clear.glass.s69208031. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.black.brown.lappviken.sindvik.black.brown.clear.glass.s69208026. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.black.brown.riksviken.stubbarp.light.bronze.effect.s29302573. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.grey.stained.walnut.effect.kallviken.dark.grey.concrete.effect.s59206004. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.grey.stained.walnut.effect.lappviken.light.grey.s29205534. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.lappviken.grey.stained.walnut.effect.s09139724. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.white.kallviken.stubbarp.concrete.effect.s09305068. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.white.lappviken.light.grey.s79205536. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.white.lappviken.sindvik.white.clear.glass.s09208029. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.white.lappviken.stubbarp.white.s29301762. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.black.brown.40299885. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.black.brown.70294508. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.black.brown.lappviken.black.brown.clear.glass.s49329331. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.black.brown.lappviken.sindvik.lappviken.black.brown.clear.glass.s09188979. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.grey.stained.walnut.effect.10294511. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.grey.stained.walnut.effect.10299877. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.grey.stained.walnut.effect.s89061226. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.white.40299890. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.white.70299879. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.with.doors.and.drawers.black.brown.hanviken.stubbarp.black.brown.s79297526. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.with.doors.and.drawers.black.brown.notviken.stubbarp.blue.s79297545. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.with.doors.and.drawers.white.lappviken.stubbarp.white.s39297514. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.with.doors.black.brown.notviken.grey.green.s29299165. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.with.doors.grey.stained.walnut.effect.kallviken.stubbarp.dark.grey.concrete.effect.s09276650. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.with.drawers.black.brown.selsviken.stallarp.high.gloss.dark.red.brown.s29297958. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.with.drawers.black.brown.selsviken.stallarp.high.gloss.dark.red.brown.s39299103. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.with.drawers.grey.stained.walnut.effect.lappviken.stallarp.grey.stained.walnut.eff.clear.glass.s59276266. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.with.drawers.grey.stained.walnut.effect.lappviken.stubbarp.lappviken.light.grey.s59197981. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.with.drawers.hanviken.white.hanviken.stubbarp.sindvik.white.clear.glass.s69194005. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.storage.combination.glass.doors.black.brown.lappviken.light.grey.clear.glass.s49203355. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.storage.combination.glass.doors.black.brown.notviken.grey.green.clear.glass.s09301664. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.storage.combination.glass.doors.black.brown.selsviken.dark.red.brown.clear.glass.s89299129. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.storage.combination.glass.doors.black.brown.selsviken.high.gloss.black.smoked.glass.s09300650. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.storage.combination.glass.doors.black.brown.selsviken.high.gloss.black.smoked.glass.s19189916. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.storage.combination.glass.doors.grey.stained.walnut.effect.lappviken.light.grey.clear.glass.s29203115. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.storage.combination.glass.doors.lappviken.sindvik.black.brown.clear.glass.s09192518. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.storage.combination.glass.doors.white.hanviken.white.clear.glass.s79330639. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.storage.combination.glass.doors.white.lappviken.white.clear.glass.s99302621. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.storage.combination.glass.doors.white.selsviken.high.gloss.white.frosted.glass.s39192611. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.storage.combination.grey.stained.walnut.effect.lappviken.notviken.stubbarp.grey.green.s89302971. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.wall.cabinet.with.2.doors.lappviken.black.brown.s19057906. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.wall.cabinet.with.2.doors.lappviken.white.s19057483. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.wall.mounted.cabinet.combination.black.brown.lappviken.black.brown.s39231603. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.wall.mounted.cabinet.combination.black.brown.riksviken.light.bronze.effect.s69301717. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.wall.mounted.cabinet.combination.grey.stained.walnut.effect.lappviken.grey.stained.walnut.effect.s29301743. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.black.brown.s89020472. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.brown.ash.veneer.s09177626. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.brown.ash.veneer.s69155853. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.combination.hght.extension.black.brown.s39230712. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.w.hght.ext.ut.pnl.glss.drs.brown.ash.veneer.s59287340. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.white.00263850. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.white.30263844. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.white.50263838. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.white.80263832. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.white.s09017826. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.white.s59182201. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.white.s79017837. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.white.s89017827. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.with.glass.doors.dark.red.80385616. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.with.panel.glass.doors.white.s69281776. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bottna.bookcase.with.display.shelf.white.beige.s19277116. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bottna.bookcase.with.display.shelf.white.beige.s59277119. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bottna.bookcase.with.display.shelf.white.beige.s89277113. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.gnedby.bookcase.black.brown.s99020476. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.morliden.bookcase.black.brown.s19020480. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.morliden.bookcase.white.s09017831. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.morliden.bookcase.white.s69017833. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.morliden.bookcase.with.glass.door.white.glass.s39287379. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.morliden.bookcase.with.glass.doors.brown.ash.veneer.glass.s39292026. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.morliden.bookcase.with.glass.doors.white.glass.s29287370. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.black.brown.glass.s89217727. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.black.brown.s69020473. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.black.brown.s99020481. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.brown.ash.veneer.s59177624. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.w.height.extension.ut.drs.white.s49280754. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.white.glass.s89017832. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.white.s69017828. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.with.door.brown.ash.veneer.s29287389. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.with.door.white.s69287392. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.with.doors.white.s29281066. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.with.doors.white.s49280042. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.with.glass.door.white.glass.s29287445. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.with.glass.doors.white.s69281804. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.with.panel.glass.door.brown.ash.veneer.glass.s09287413. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.with.panel.glass.doors.brown.ash.veneer.glass.s29281783. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.with.panel.glass.doors.brown.ash.veneer.glass.s89280747. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.with.panel.glass.doors.brown.ash.veneer.s29280731. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.with.panel.glass.doors.white.glass.s79281790. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bingsta.high.back.armchair.vissle.dark.yellow.kabusa.dark.yellow.40455654. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bjoerksnaes.chest.of.5.drawers.birch.70407299. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.blames.highchair.with.tray.black.50165079. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.boerje.chair.brown.gobo.white.20182278. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.boerje.chair.white.kungsvik.sand.90211531. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.braeda.laptop.support.black.60150176. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brathult.3.seat.sofa.borred.grey.green.s59217804. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brathult.corner.sofa.bed.borred.grey.green.s09217849. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.bed.frame.w.storage.and.headboard.white.luroey.s49278341. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.bed.frame.with.storage.white.s79902935. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.bookcase.white.90301225. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.cabinet.with.doors.glass.white.50300666. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.chest.of.3.drawers.white.frosted.glass.00392041. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.chest.of.4.drawers.white.frosted.glass.90392046. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.day.bed.frame.with.2.drawers.white.00228705. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.day.bed.w.2.drawers.2.mattresses.white.malfors.medium.firm.s19129932. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.day.bed.w.2.drawers.2.mattresses.white.moshult.firm.s79130027. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.dressing.table.white.70290459. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.glass.door.cabinet.black.10409871. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.headboard.with.storage.compartment.white.00400692. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.headboard.with.storage.compartment.white.20228709. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.storage.combination.w.glass.doors.black.s19278234. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.tv.bench.white.40337694. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.tv.storage.combination.black.s19184339. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.tv.storage.combination.black.s19278210. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.tv.storage.combination.glass.doors.white.s59278232. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.tv.storage.combination.glass.doors.white.s99278225. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.tv.storage.combination.white.s39184343. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.tv.storage.combination.white.s59184337. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.wardrobe.with.2.doors.white.40400478. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.wardrobe.with.3.doors.white.40407922. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brommoe.lounger.outdoor.black.brown.stained.brown.40332682. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.cabinet.with.2.doors.black.50300015. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.hook.for.post.black.50343147. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.black.s39272655. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.black.s49282994. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.black.s59282998. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.black.s69272649. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.black.s79272696. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.black.s89276463. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.white.s09303960. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.white.s49303958. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.white.s59385755. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.white.s89303956. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.white.s99303970. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.with.cabinets.black.s69275718. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.with.cabinets.black.s89272709. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.with.cabinets.black.s89283005. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.broringe.underframe.black.30339900. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.broringe.underframe.chrome.plated.10288628. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.broringe.underframe.white.90339902. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brusali.bookcase.brown.70302283. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brusali.cabinet.with.doors.brown.00302291. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brusali.corner.desk.brown.50304990. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brusali.desk.brown.30302299. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brusali.tv.bench.brown.10302295. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brusali.tv.bench.brown.10306613. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brusen.3.seat.sofa.outdoor.red.70424147. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bryggja.chest.of.9.drawers.beige.30469307. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bryggja.storage.unit.dark.grey.90421911. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bunsoe.childrens.easy.chair.outdoor.white.90287413. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.buskbo.armchair.rattan.70434311. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.buskbo.armchair.rattan.djupvik.white.s79299016. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.busunge.chest.of.2.drawers.light.pink.20229011. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.busunge.chest.of.2.drawers.white.60305705. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.busunge.wardrobe.light.pink.80229008. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.busunge.wardrobe.white.20305707. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.byas.tv.bench.high.gloss.white.80227797. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.byllan.laptop.support.ebbarp.black.white.70403512. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.delaktig.2.seat.sofa.with.side.table.hillared.dark.blue.s69259676. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.delaktig.3.seat.sofa.hillared.dark.blue.s59259691. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.delaktig.armchair.gunnared.beige.s69289008. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.delaktig.armchair.gunnared.light.brown.pink.s19289303. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.delaktig.chaise.longue.with.armrest.gunnared.light.brown.pink.s09289327. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.delaktig.platform.armchair.gunnared.beige.s49289047. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.detolf.glass.door.cabinet.black.brown.10119206. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.dietmar.underframe.for.chair.with.armrests.chrome.plated.70288630. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.dietmar.underframe.for.chair.with.armrests.white.50393000. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ekedalen.bar.stool.with.backrest.brown.orrsta.light.grey.00400550. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ekedalen.bar.stool.with.backrest.dark.brown.orrsta.light.grey.10400540. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ekedalen.bar.stool.with.backrest.white.orrsta.light.grey.00400545. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ekedalen.chair.brown.orrsta.light.grey.80341019. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ekeroe.armchair.kimstad.laglig.black.60262881. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.feet.dark.grey.golden.brown.s09290123. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.feet.dark.grey.s59191026. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.feet.dark.grey.s69190861. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.feet.white.golden.brown.dark.grey.s19286521. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.feet.white.light.grey.s19221087. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.feet.white.s49189203. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.feet.white.stained.oak.effect.s79306875. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.feet.white.white.stained.oak.effect.s29286573. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.feet.white.white.stained.oak.effect.s79286491. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.legs.golden.brown.s79286434. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.legs.multicolour.1.s29286728. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.legs.white.s49221038. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.legs.white.s59286468. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.golden.brown.50373709. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.golden.brown.80373703. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.w.2.doors.and.1.shelf.white.20333951. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.w.2.doors.and.2.shelves.white.30334605. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.w.door.and.1.shelf.white.90333938. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.w.door.and.2.shelves.dark.grey.00344941. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.with.2.drawers.white.30428915. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.with.3.drawers.dark.grey.70344933. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.with.4.compartments.dark.grey.00334536. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.suspension.rail.00340047. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.suspension.rail.80340048. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.underframe.birch.80349001. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.underframe.birch.90334612. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.cabinet.with.2.drawers.white.s69329387. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.cabinet.with.glass.door.white.s29336356. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.cabinet.with.glass.door.white.s59336374. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.cabinet.combination.dark.grey.s09329390. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.cabinet.combination.dark.grey.s79189150. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.cabinet.combination.white.light.grey.dark.grey.s29286399. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.cabinet.combination.white.s09188842. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.cabinet.combination.white.s09189484. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.cabinet.combination.white.s19189030. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.cabinet.combination.white.s89307643. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.cabinet.combination.white.s99221026. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.shelving.unit.dark.grey.s39285827. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.shelving.unit.red.s99286254. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.shelving.unit.w.4.comp.red.s19286272. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.shelving.unit.white.s49285817. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.storage.combination.light.grey.dark.grey.red.s19286390. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.storage.combination.light.grey.white.s29336380. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ekolsund.cover.for.recliner.gunnared.light.brown.pink.30442662. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ekolsund.recliner.gunnared.light.brown.pink.s59297184. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ektorp.armchair.lofallet.beige.s79129081. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ektorp.two.seat.sofa.lofallet.beige.s19129178. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.1.section.white.s29158212. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.1.section.white.s59157353. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.1.section.white.s59158121. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.2.sections.white.bamboo.s09157529. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.2.sections.white.bamboo.s39187822. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.2.sections.white.bamboo.s69157499. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.2.sections.white.s49157565. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.2.sections.white.s49212067. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.2.sections.white.s79158144. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.2.sections.white.s89158214. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.3.sections.white.bamboo.s89315153. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.3.sections.white.s49188005. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.3.sections.white.s59157555. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.3.sections.white.s99157577. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.erik.drawer.unit.w.2.drawers.on.castors.white.30151808. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.erik.file.cabinet.white.70341005. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ernfrid.underframe.birch.silver.colour.00287974. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.fabrikoer.glass.door.cabinet.black.blue.blue.00363171. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.fabrikoer.glass.door.cabinet.dark.grey.00242278. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.faerloev.2.seat.sofa.flodafors.white.s99192401. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.faerloev.3.seat.sofa.djuparp.yellow.beige.s69192657. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.faerloev.armchair.flodafors.white.s49191705. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.fanbyn.chair.frame.brown.wood.effect.00385069. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.finnby.bookcase.black.10261129. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.fjaellbo.shelving.unit.black.50339292. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.fjaellbo.shelving.unit.black.70339291. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.fjaellbo.shelving.unit.black.70342199. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.fjaellbo.tv.storage.combination.black.s79191266. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.flisat.childrens.bench.adjustable.80290779. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.flottebo.sofa.bed.vissle.dark.grey.s59297481. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.flottebo.sofa.bed.vissle.purple.s69297471. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.flottebo.sofa.bed.with.side.table.gunnared.medium.grey.s89300750. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.flottebo.sofa.bed.with.side.table.vissle.purple.s29297454. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.foersiktig.childrens.stool.white.green.60248418. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.franklin.bar.stool.with.backrest.foldable.black.black.50406465. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.franklin.bar.stool.with.backrest.foldable.black.black.60406785. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.franklin.bar.stool.with.backrest.foldable.white.white.70404875. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.franklin.bar.stool.with.backrest.foldable.white.white.90404879. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.frekvens.bar.stool.with.backrest.in.outdoor.black.50420329. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.friheten.3.seat.sofa.bed.skiftebo.blue.60431563. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.galant.add.on.unit.white.40206476. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.galant.add.on.unit.white.40211595. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.galant.cabinet.with.doors.black.stained.ash.veneer.50365139. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.galant.drawer.unit.on.castors.black.stained.ash.veneer.60365153. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.galant.shelf.unit.white.stained.oak.veneer.20365188. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.galant.storage.combination.w.sliding.doors.white.stained.oak.veneer.s29285776. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.galant.storage.combination.white.stained.oak.veneer.s19285791. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.galant.storage.combination.with.drawers.black.stained.ash.veneer.s09285070. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.gamlarp.2.seat.sofa.dark.grey.70451065. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.gamlarp.3.seat.sofa.dark.grey.30451067. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.gistad.recliner.idekulla.dark.red.40466389. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.glenn.bar.stool.white.chrome.plated.30135658. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.gnedby.shelving.unit.white.40277143. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.godishus.chest.of.3.drawers.white.80433486. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.godishus.wardrobe.white.50422494. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.godvin.leg.white.50200271. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.graelviken.3.seat.sofa.bed.grey.70340567. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.1.seat.section.inseros.white.s59254641. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.1.seat.section.kimstad.dark.brown.70397993. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.2.seat.section.kimstad.dark.brown.10397745. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.2.seat.sofa.bed.ljungen.dark.red.s29278101. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.2.seat.sofa.bed.ljungen.medium.grey.s29278115. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.2.seat.sofa.bed.section.kimstad.dark.brown.s99277240. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.2.seat.sofa.bed.section.ljungen.dark.red.s39277196. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.2.seat.sofa.inseros.white.s19254780. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.3.seat.section.ljungen.light.green.s69256220. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.3.seat.sofa.bed.ljungen.light.green.s69278415. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.3.seat.sofa.bed.with.chaise.longue.ljungen.light.green.s19278502. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.3.seat.sofa.bed.with.open.end.ljungen.medium.grey.s29278158. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.3.seat.sofa.inseros.white.s89254786. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.3.seat.sofa.kimstad.dark.brown.s49256589. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.3.seat.sofa.with.chaise.longue.inseros.white.s69254792. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.3.seat.sofa.with.chaise.longue.kimstad.dark.brown.s49256594. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.4.seat.sofa.with.chaise.longue.inseros.white.s59307649. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.4.seat.sofa.with.chaise.longues.ljungen.medium.grey.s39256071. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.armchair.inseros.white.s19275909. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.armchair.kimstad.dark.brown.00399033. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.armrest.inseros.white.s79254659. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.armrest.kimstad.dark.brown.60397998. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.chaise.longue.kimstad.dark.brown.s39256599. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.chaise.longue.ljungen.light.green.s89256262. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.chaise.longue.section.kimstad.dark.brown.80398628. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.chaise.longue.section.ljungen.medium.grey.s89256035. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.section.kimstad.dark.brown.90398623. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.section.sporda.natural.s89255639. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.sofa.3.seat.with.open.end.kimstad.dark.brown.s79256559. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.sofa.3.seat.with.open.end.sporda.natural.s59255706. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.sofa.4.seat.kimstad.dark.brown.s79256564. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.sofa.4.seat.ljungen.dark.red.s59256414. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.sofa.4.seat.with.open.end.kimstad.dark.brown.s69256569. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.sofa.5.seat.inseros.white.s79254683. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.sofa.5.seat.kimstad.dark.brown.s69256574. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.sofa.5.seat.with.chaise.longue.kimstad.dark.brown.s59256579. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.sofa.bed.4.seat.with.open.end.ljungen.medium.grey.s59278557. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.sofa.bed.5.seat.with.chaise.longue.ljungen.dark.red.s49278591. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.cover.for.corner.sofa.bed.5.seat.with.chaise.longue.ljungen.medium.grey.s79279004. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.u.shaped.sofa.6.seat.with.open.end.inseros.white.s69254810. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.gruvbyn.chair.brown.nordvalla.dark.beige.10471085. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.gulliver.changing.table.white.20307037. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.gunde.folding.chair.black.00217797. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.gunde.folding.chair.white.60217799. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.haellan.cabinet.white.50363729. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.haellan.storage.combination.with.doors.white.s19291315. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.haellan.storage.combination.with.doors.white.s39276682. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.haellan.storage.combination.with.doors.white.s49249396. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.haellan.storage.combination.with.doors.white.s89249399. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.haellan.storage.combination.with.doors.white.s89249403. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.haellan.storage.combination.with.doors.white.s89291312. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.haellan.storage.combination.with.doors.white.s99249520. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hammarn.sofa.bed.knisa.dark.grey.black.90354327. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.harry.chair.birch.blekinge.white.60105829. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hattefjaell.office.chair.with.armrests.gunnared.beige.white.s49252119. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hattefjaell.office.chair.with.armrests.smidig.black.black.s89305205. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hattefjaell.pair.of.armrests.black.00429426. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.cabinet.white.60389192. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.cabinet.with.plinth.grey.50415196. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.cabinet.with.plinth.white.s59275101. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.glass.door.cabinet.grey.00415194. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.glass.door.cabinet.with.plinth.grey.clear.glass.s39275116. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.glass.door.cabinet.with.plinth.white.clear.glass.s69275110. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.plinth.grey.90415199. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.plinth.white.10388661. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.comb.w.sliding.glass.doors.white.s19266033. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.comb.w.sliding.glass.doors.white.s19275235. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.dark.brown.s89265902. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.w.glass.doors.dark.brown.s09265920. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.w.glass.doors.dark.brown.s09266024. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.w.glass.doors.dark.brown.s49265975. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.w.glass.doors.dark.brown.s59265965. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.w.glass.doors.dark.brown.s79265950. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.w.glass.doors.dark.brown.s99266053. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.w.glass.doors.white.s79265926. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.w.glass.doors.white.s79265945. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.white.s49265999. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.with.doors.dark.brown.s69265984. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.tv.bench.with.plinth.grey.20415206. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.tv.storage.combination.glass.doors.grey.s79265827. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.tv.storage.combination.grey.s69265842. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsten.2.seat.sofa.in.outdoor.beige.s09251956. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsten.2.seat.sofa.in.outdoor.with.open.end.without.armrests.beige.s09251961. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsten.3.seat.sofa.in.outdoor.beige.s99251966. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsten.3.seat.sofa.in.outdoor.with.open.end.without.armrests.beige.s49251983. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsten.4.seat.sofa.in.outdoor.beige.s29252078. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsten.4.seat.sofa.in.outdoor.with.open.end.without.armrests.beige.s49267286. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsten.add.on.unit.in.outdoor.beige.s39251993. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsten.armchair.in.outdoor.beige.s39251926. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsten.armrest.section.outdoor.beige.40404513. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsten.easy.chair.in.outdoor.beige.s39251931. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsten.supporting.stand.outdoor.beige.10404519. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hejne.1.section.softwood.s39031411. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hejne.3.sections.shelves.softwood.s99031408. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hejne.4.sections.shelves.softwood.s49046978. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.bedside.table.white.00374297. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.bench.with.shoe.storage.white.00243800. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.bookcase.black.brown.60371762. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.chest.of.2.drawers.white.50374271. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.chest.of.3.drawers.white.90374274. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.chest.of.8.drawers.white.stain.10239280. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.day.bed.frame.with.3.drawers.grey.60372276. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.day.bed.frame.with.3.drawers.white.90349326. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.desk.black.brown.60245721. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.glass.door.cabinet.with.3.drawers.white.stain.light.brown.50413507. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.open.wardrobe.white.stained.80379620. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.sideboard.white.stain.40309257. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.storage.bench.w.towel.rail.4.hooks.white.30396655. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.storage.combination.w.doors.drawers.white.stained.clear.glass.s99234255. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.wardrobe.with.2.sliding.doors.white.stain.50251270. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.henriksdal.bar.stool.with.backrest.brown.black.glose.black.90319918. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.henriksdal.bar.stool.with.backrest.brown.black.graesbo.white.s39184324. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.henriksdal.bar.stool.with.backrest.frame.dark.brown.40426138. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.henriksdal.chair.dark.brown.glose.black.00380948. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.henriksdal.chair.dark.brown.orrsta.light.grey.s49220374. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.henriksdal.chair.frame.white.00141689. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.henriksdal.chair.white.orrsta.light.grey.s19190340. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.henriksdal.chair.with.long.cover.brown.blekinge.white.s09220842. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.holmsund.corner.sofa.bed.nordvalla.beige.s79150751. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.holmsund.corner.sofa.bed.nordvalla.medium.grey.s79150746. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.holmsund.three.seat.sofa.bed.orrsta.light.white.grey.s89240761. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.husaroe.armchair.outdoor.dark.grey.00410747. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hyllis.shelving.unit.with.cover.transparent.s69285939. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hyllis.shelving.unit.with.cover.transparent.s99291745. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hyllis.shelving.units.with.covers.transparent.s39286558. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.idasen.cabinet.with.doors.and.drawers.beige.30320726. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.idasen.cabinet.with.smart.lock.beige.s09287192. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.idasen.drawer.unit.on.castors.golden.brown.50397913. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.idasen.drawer.unit.with.smart.lock.golden.brown.s09287291. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.idasen.high.cabinet.with.drawer.and.doors.blue.30360977. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.idasen.high.cabinet.with.smart.lock.beige.s29287214. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ikea.ps.cabinet.white.10251451. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ikea.ps.gullholmen.rocking.chair.banana.fibre.50039552. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ingatorp.desk.white.00361940. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ingolf.bar.stool.with.backrest.white.00121766. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ingolf.bar.stool.with.backrest.white.10122647. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ingolf.chair.white.70103250. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ingolf.junior.chair.antique.stain.60353838. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ingolf.junior.chair.white.90146456. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ingolf.stool.white.00152282. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.innamo.chair.with.armrests.outdoor.white.50312424. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.isberget.tablet.stand.white.20302596. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.1.section.bottle.racks.pine.grey.s49133579. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.1.section.shelves.pine.s59248320. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.1.section.shelves.pine.s89248314. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.2.sections.shelves.cabinet.pine.s39248359. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.2.sections.shelves.pine.s29248345. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.2.sections.shelves.pine.s49248325. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.2.sections.shelves.pine.s49248354. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.2.sections.shelves.pine.s69248348. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.2.sections.shelves.pine.s79248319. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.3.sections.cabinet.shelves.pine.white.s69248211. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.3.sections.shelves.pine.s29248374. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.3.sections.shelves.pine.s69248386. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.4.sections.shelves.pine.s09248544. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.4.sections.shelves.pine.s09251348. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.bottle.rack.grey.40310208. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.cabinet.pine.40033763. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.cabinet.with.doors.pine.white.s89248205. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.cabinet.with.doors.red.00450352. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.cover.beige.40422324. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.drawer.red.80450353. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.shelving.unit.black.s99315812. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.shelving.unit.pine.s49248311. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.shelving.unit.pine.s69251345. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.shelving.unit.pine.s89309722. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.shelving.unit.w.cabinets.drawers.pine.red.s79303495. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.shelving.unit.w.cabinets.drawers.pine.red.s99303442. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.shelving.unit.w.shelves.rails.cover.s49302874. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.shelving.unit.with.clothes.rail.s09287979. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.shelving.unit.with.clothes.rail.s19288006. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.shelving.unit.with.clothes.rail.s89287683. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.storage.unit.with.foldable.table.pine.00319135. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.janinge.bar.stool.grey.10281354. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.janinge.bar.stool.white.70246089. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.janinge.chair.white.00246078. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.janinge.chair.with.armrests.white.80280515. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.janinge.chair.yellow.60246080. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jokkmokk.chair.antique.stain.90342688. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.mesh.baskets.clothes.rails.s59311463. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.mesh.baskets.clothes.rails.s89311466. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.mesh.baskets.shelving.units.s19297685. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.mesh.baskets.shelving.units.s39323990. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.mesh.baskts.clths.rl.shlv.uts.s39311256. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.mesh.baskts.clths.rl.shlv.uts.s39311789. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.w.bskts.clths.rl.shlv.uts.s29308645. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.w.bskts.clths.rl.shlv.uts.s89297663. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.white.10429992. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.white.40419958. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.wire.baskets.clothes.rails.s49297660. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.wire.baskets.top.shelf.s09305087. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.wire.baskets.top.shelf.s79305098. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.wire.baskets.top.shelves.s89297677. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.with.clothes.rail.s49311492. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.with.mesh.baskets.castors.s19306185. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.with.mesh.baskets.castors.s49297491. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.with.mesh.baskets.s09297488. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.with.mesh.baskets.s59297141. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.with.mesh.baskets.s99297144. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.with.wire.baskets.castors.s59297438. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.with.wire.baskets.s09297134. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.with.wire.baskets.s19297138. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.with.wire.baskets.s89297130. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frames.clothes.rails.shelving.units.s09306204. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.mesh.basket.white.20419964. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.mesh.basket.white.90419965. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.shelving.unit.s69297287. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.shelving.unit.white.30419973. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.shelving.unit.white.50419972. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.shelving.unit.with.clothes.rail.s09297657. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.wire.basket.white.60419962. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.desk.combination.white.blue.s49133616. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.desk.combination.white.stained.oak.effect.white.s19222299. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.insert.with.door.white.20278167. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.insert.with.mirror.door.00423721. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelf.insert.light.grey.20346072. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.black.brown.10275862. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.black.brown.20409936. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.white.20275814. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.white.70301537. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.white.80275887. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.white.green.10459903. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.with.10.inserts.white.s09278338. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.with.2.inserts.black.brown.s39278290. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.with.4.inserts.black.brown.s09017483. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.with.4.inserts.white.s19278328. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.with.4.inserts.white.s39017486. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.with.4.inserts.white.s59278307. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.with.4.inserts.white.s79278250. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.with.4.inserts.white.s89030584. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.with.8.inserts.black.brown.s19030592. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.with.8.inserts.white.s69017475. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.with.doors.white.s09197436. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.karlhugo.chair.oak.nordvalla.dark.grey.80403516. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.karljan.chair.dark.grey.kabusa.dark.grey.50341025. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kivik.4.seat.sofa.with.chaise.longue.grann.bomstad.grann.bomstad.black.s09904706. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kivik.chaise.longue.grann.bomstad.black.10198604. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kivik.corner.section.orrsta.light.grey.s39046403. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kivik.corner.sofa.4.seat.skiftebo.dark.grey.s39305528. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kivik.corner.sofa.5.seat.skiftebo.dark.grey.s89305535. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kivik.corner.sofa.5.seat.with.chaise.longue.skiftebo.dark.grey.s89305540. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kivik.corner.sofa.6.seat.with.chaise.longue.hillared.hillared.dark.blue.s29193692. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kivik.footstool.with.storage.hillared.dark.blue.s69193713. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kivik.three.seat.sofa.grann.bomstad.black.00198591. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kivik.two.seat.sofa.grann.bomstad.black.60198588. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kivik.u.shaped.sofa.6.seat.orrsta.red.s49252949. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kleppstad.wardrobe.with.2.doors.white.80437234. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.klimpen.drawer.unit.grey.light.grey.60353763. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.klimpen.table.leg.with.storage.grey.light.grey.10353765. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.klippan.2.seat.sofa.bomstad.black.40399314. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.knarrevik.bedside.table.black.30381183. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.knotten.standing.desk.white.birch.30299485. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kolbjoern.cabinet.in.outdoor.beige.20345633. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kolbjoern.cabinet.in.outdoor.beige.30409295. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kolbjoern.cabinet.in.outdoor.green.00450347. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kolbjoern.shelving.unit.in.outdoor.green.40450350. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kolbjoern.shelving.unit.with.2.cabinets.beige.s19291650. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kolbjoern.shelving.unit.with.2.cabinets.beige.s59291634. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kolbjoern.shelving.unit.with.cabinet.beige.s09291622. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kolbjoern.shelving.unit.with.cabinet.beige.s19291645. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kolbjoern.shelving.unit.with.cabinet.green.s89317557. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.koppang.chest.of.3.drawers.white.10385950. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kornsjoe.cabinet.with.mirror.black.10455410. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kornsjoe.side.table.black.70455412. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kornsjoe.storage.bench.black.90471581. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kullaberg.desk.pine.black.s69162599. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kullen.chest.of.2.drawers.black.brown.60322130. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kullen.chest.of.3.drawers.black.brown.30309234. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kullen.chest.of.5.drawers.black.brown.40393661. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kungshamn.1.seat.module.yttered.multicolour.s49248189. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kungsholmen.2.seat.modular.sofa.outdoor.black.brown.kungsoe.white.s09219278. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kungsholmen.3.seat.modular.sofa.outdoor.black.brown.froesoen.duvholmen.dark.grey.s99258005. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kungsholmen.easy.chair.outdoor.black.brown.froesoen.duvholmen.dark.grey.s49257386. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kungsholmen.modular.corner.sofa.3.seat.outdoor.black.brown.froesoen.duvholmen.beige.s79258271. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kyrre.stool.birch.60416925. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lack.tv.bench.white.20450087. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lack.wall.shelf.unit.white.60282186. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.laeckoe.chair.outdoor.grey.60151840. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.laeckoe.chair.with.armrests.outdoor.grey.40160478. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.laiva.bookcase.black.brown.40178591. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.landskrona.2.seat.sofa.grann.bomstad.golden.brown.metal.s19270266. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.landskrona.2.seat.sofa.gunnared.dark.grey.metal.s59270274. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.landskrona.3.seat.sofa.grann.bomstad.golden.brown.metal.s09270295. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.landskrona.4.seat.sofa.with.chaise.longue.gunnared.light.green.wood.s99270465. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.landskrona.armchair.gunnared.light.green.metal.s29269724. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.landskrona.chaise.longue.add.on.unit.gunnared.light.green.wood.s49270260. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.langfjaell.pair.of.armrests.black.50320565. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.langur.junior.chair.white.s19252615. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.langur.junior.highchair.white.s09252593. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.langur.junior.highchair.with.tray.white.s49252553. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.langur.padded.seat.cover.for.highchair.yellow.30346986. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.langur.padded.seat.cover.for.junior.chair.grey.50346985. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.langur.seat.shell.for.highchair.white.10330811. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lappland.tv.storage.unit.black.brown.30285153. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.leifarne.chair.dark.yellow.broringe.black.s09304196. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.leifarne.chair.dark.yellow.broringe.chrome.plated.s29304204. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.leifarne.chair.dark.yellow.mosaic.patterned.white.broringe.white.s49304199. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.leifarne.chair.with.armrests.dark.yellow.dietmar.chrome.plated.s19304209. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.leifarne.chair.with.armrests.dark.yellow.dietmar.white.s59304207. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.leifarne.chair.with.armrests.white.dietmar.white.s59259752. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lerberg.trestle.grey.80130776. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lerhamn.chair.black.brown.vittaryd.beige.70264281. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lerhamn.chair.light.antique.stain.vittaryd.beige.20259423. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.liatorp.bookcase.white.00116595. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.liatorp.bookcase.with.glass.doors.white.s19028754. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.liatorp.glass.door.cabinet.white.30439725. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.liatorp.sideboard.white.70439728. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.liatorp.storage.combination.with.doors.white.s19046442. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.liatorp.tv.bench.white.80116600. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.liatorp.tv.storage.combination.white.s09028759. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.liatorp.tv.storage.combination.white.s29046045. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.1.seat.section.gassebol.light.beige.s19289548. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.2.seat.section.lejde.grey.black.s09289884. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.2.seat.sofa.bed.grann.bomstad.dark.brown.s39266008. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.2.seat.sofa.bed.lejde.grey.black.s29257066. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.2.seat.sofa.bed.lejde.red.brown.red.brown.s19257076. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.2.seat.sofa.bed.section.gassebol.light.beige.s29290056. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.2.seat.sofa.bed.section.grann.bomstad.dark.brown.s19290603. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.2.seat.sofa.bed.section.lejde.grey.black.s19290014. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.2.seat.sofa.grann.bomstad.dark.brown.s79257016. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.2.seat.sofa.lejde.grey.black.s79256917. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.3.seat.section.gassebol.light.beige.s19289911. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.3.seat.section.grann.bomstad.dark.brown.20405085. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.3.seat.sofa.gassebol.light.beige.s49256971. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.3.seat.sofa.with.chaise.longue.grann.bomstad.dark.brown.s29257127. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.3.seat.sofa.with.chaise.longue.lejde.red.brown.red.brown.s99257176. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.4.seat.sofa.with.chaise.longue.gassebol.light.beige.s99292047. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.4.seat.sofa.with.chaise.longue.grann.bomstad.dark.brown.s99292052. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.4.seat.sofa.with.chaise.longues.grann.bomstad.dark.brown.s49257348. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.4.seat.sofa.with.chaise.longues.lejde.grey.black.s69257328. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.armchair.lejde.grey.black.s89256894. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.armrest.grann.bomstad.dark.brown.50407021. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.chaise.longue.grann.bomstad.dark.brown.s79266148. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.chaise.longue.lejde.grey.black.s99266128. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.corner.sofa.4.seat.gassebol.light.beige.s39257457. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.corner.sofa.5.seat.lejde.red.brown.red.brown.s59257437. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.corner.sofa.6.seat.with.chaise.longue.lejde.grey.black.s99257280. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.corner.sofa.bed.5.seat.lejde.grey.black.s29266184. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.corner.sofa.bed.6.seat.with.chaise.longue.lejde.grey.black.s79277632. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lisabo.desk.ash.veneer.30299070. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.cabinet.combination.grey.red.s59279180. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.cabinet.combination.grey.s19279177. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.cabinet.combination.grey.s29279186. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.cabinet.metal.dark.blue.30396429. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.cabinet.metal.grey.70328669. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.cabinet.metal.orange.90328668. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.dark.blue.grey.white.pink.red.s09248855. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.dark.blue.red.orange.s89248682. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.dark.blue.s59248867. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.dark.blue.s69279189. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.dark.green.orange.s29248656. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.grey.dark.green.orange.s89248922. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.grey.dark.green.pink.s79248748. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.grey.dark.green.red.orange.s09248916. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.grey.white.orange.red.s89161631. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.orange.white.s99161598. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.red.orange.grey.pink.white.blue.green.s49248858. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.white.pink.s69248659. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.white.white.s89161508. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.wall.mounted.cabinet.combination.white.s89279174. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lommarp.bookcase.dark.blue.green.40415465. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lommarp.cabinet.with.glass.doors.dark.blue.green.40383737. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lommarp.desk.light.beige.90442824. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lycksele.havet.two.seat.sofa.bed.vallarum.grey.s89149936. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lycksele.loevas.2.seat.sofa.bed.vallarum.cerise.s99280884. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lycksele.murbo.two.seat.sofa.bed.ebbarp.black.white.s19166180. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lycksele.murbo.two.seat.sofa.bed.vallarum.grey.s79149927. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.mackapaer.bench.with.storage.compartments.white.10334753. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.maesterby.step.stool.brown.red.50402325. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malm.bed.frame.high.w.2.storage.boxes.white.s19175957. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malm.bed.frame.high.w.2.storage.boxes.white.s79012991. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malm.chest.of.2.drawers.white.80214549. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malm.chest.of.3.drawers.white.20403562. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malm.chest.of.4.drawers.white.30403571. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malm.chest.of.6.drawers.white.60403584. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malm.chest.of.6.drawers.white.60403602. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malm.chest.of.6.drawers.white.mirror.glass.70403593. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malm.desk.white.60214159. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malm.desk.with.pull.out.panel.black.brown.60214183. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malsjoe.glass.door.cabinet.black.stained.black.stained.30303487. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malsjoe.glass.door.cabinet.black.stained.black.stained.60303481. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malsjoe.sideboard.basic.unit.black.stained.00327772. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malsjoe.tv.bench.with.sliding.doors.black.stained.60327774. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.mammut.childrens.chair.in.outdoor.blue.60365346. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.mammut.childrens.chair.in.outdoor.pink.80382321. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.mammut.childrens.chair.in.outdoor.red.40365366. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.mammut.childrens.chair.in.outdoor.white.40365371. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.markerad.chair.beech.80433900. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.martin.chair.black.black.s09219527. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.mastholmen.2.seat.sofa.outdoor.00339204. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.mastholmen.armchair.outdoor.50339206. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.micke.add.on.unit.high.white.90180025. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.micke.desk.white.30213076. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.micke.desk.white.80213074. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.micke.desk.white.90214308. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.micke.desk.white.s09903014. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.mosjoe.tv.bench.black.brown.90144730. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.mostorp.tv.bench.beige.high.gloss.beige.90295253. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.muren.recliner.nordvalla.beige.90299029. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nannarp.leg.black.10293597. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nikkeby.chest.of.4.drawers.red.00451498. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nilsove.chair.with.armrests.rattan.white.50434312. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nilsove.norna.chair.with.chair.pad.rattan.white.laila.natural.s19304006. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nisse.folding.chair.black.30115066. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nisse.folding.chair.dark.blue.lilac.90412426. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nolmyra.easy.chair.birch.veneer.grey.10233532. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nominell.pair.of.armrests.black.90200269. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norberg.wall.mounted.drop.leaf.table.white.30180504. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordkisa.dressing.table.bamboo.20439472. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordkisa.open.wardrobe.with.sliding.door.bamboo.00439468. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordkisa.open.wardrobe.with.sliding.door.bamboo.30439476. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.bed.frame.w.storage.and.headboard.white.s09241420. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.bed.frame.with.storage.white.40349847. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.bedside.table.white.40219285. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.10.drawers.white.s29248010. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.12.drawers.white.s79239490. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.12.drawers.white.s99239489. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.2.drawers.white.s09239827. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.2.drawers.white.s49276549. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.2.drawers.white.s99239494. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.3.drawers.white.s39239835. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.3.drawers.white.s69239495. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.3.drawers.white.s69276567. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.4.drawers.white.s49239496. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.4.drawers.white.s79239843. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.5.drawers.white.s29276550. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.5.drawers.white.s49248033. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.6.drawers.white.anthracite.s19211757. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.6.drawers.white.anthracite.s59211760. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.6.drawers.white.s49276629. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.6.drawers.white.s69276633. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.6.drawers.white.s89239499. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.7.drawers.white.anthracite.s99211758. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.7.drawers.white.s09248006. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.7.drawers.white.s99239502. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.8.drawers.white.s19276621. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.8.drawers.white.s59239504. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.8.drawers.white.s79239503. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.drawers.white.s19276522. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.modular.chest.of.2.drawers.anthracite.00365924. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.modular.chest.of.2.drawers.white.10383461. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.modular.chest.of.2.drawers.white.90383457. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.modular.chest.of.3.drawers.anthracite.10365928. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.modular.chest.of.3.drawers.white.20383465. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.modular.chest.of.3.drawers.white.40383469. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.modular.chest.of.drawers.anthracite.30415036. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.top.and.plinth.anthracite.50391421. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordmela.chest.of.4.drawers.black.blue.10421665. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordmela.chest.of.drawers.with.clothes.rail.black.blue.00421656. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordviken.bar.stool.with.backrest.black.80369112. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordviken.chair.black.40369109. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norraker.bar.stool.with.backrest.birch.20429010. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norraker.stool.birch.00428974. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norraryd.bar.stool.with.backrest.black.00397736. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norrnaes.chair.white.isunda.grey.50185303. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norsborg.2.seat.section.finnsta.dark.grey.birch.s69242073. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norsborg.2.seat.sofa.edum.beige.beige.birch.s19239817. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norsborg.3.seat.section.edum.bright.green.metal.s99241840. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norsborg.armrest.edum.bright.green.s89241614. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norsborg.chaise.longue.section.edum.bright.green.metal.s59241597. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norsborg.corner.sofa.4.seat.edum.bright.green.metal.bright.green.s19240062. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norsborg.corner.sofa.5.seat.edum.beige.birch.beige.s89239786. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norsborg.corner.sofa.5.seat.with.chaise.longue.edum.birch.edum.bright.green.birch.s39239816. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nyhamn.3.seat.sofa.bed.with.foam.mattress.skiftebo.yellow.s49306443. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nyhamn.3.seat.sofa.bed.with.pocket.spring.mattress.skiftebo.yellow.s09306435. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nyhamn.sofa.bed.with.triple.cushion.with.foam.mattress.skiftebo.yellow.s09306416. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nyhamn.sofa.bed.with.triple.cushion.with.pocket.spring.mattress.knisa.grey.beige.s09306355. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.odger.chair.brown.50364149. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.oensklig.stor.baskets.changing.tbl.set.of.4.white.30199283. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.olaus.1.shelf.section.s59201841. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.olaus.2.shelf.sections.s09279050. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.olaus.2.shelf.sections.s59279043. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.olaus.shelving.unit.galvanised.60364295. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pahl.add.on.unit.white.green.30306495. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pahl.desk.top.shelf.white.green.60306494. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.auli.wardrobe.combination.white.mirror.glass.s59330112. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.bergsbo.wardrobe.combination.white.frosted.glass.s59328897. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.bergsbo.wardrobe.combination.white.frosted.glass.s99329140. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.corner.wardrobe.white.fardal.vikedal.s79303886. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.faervik.auli.wardrobe.combination.white.white.glass.mirror.glass.s99330515. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.forsand.vikedal.wardrobe.combination.black.brown.mirror.glass.s19329304. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.forsand.vikedal.wardrobe.combination.white.mirror.glass.s39329299. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.forsand.wardrobe.combination.black.brown.black.brown.stained.ash.effect.s59324936. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.grimo.vikedal.wardrobe.combination.white.mirror.glass.s39325022. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.hasvik.wardrobe.combination.white.high.gloss.white.s49330749. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.hokksund.wardrobe.combination.black.brown.high.gloss.light.beige.s69330475. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.mehamn.wardrobe.combination.white.white.stained.oak.effect.s89385612. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.sekken.wardrobe.combination.white.frosted.glass.s79330192. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.tyssedal.wardrobe.combination.white.mirror.glass.s29320732. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.tyssedal.wardrobe.combination.white.white.s09325047. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.vikedal.wardrobe.combination.brown.stained.ash.effect.mirror.glass.s89329536. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.faervik.white.glass.s89025790. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.forsand.black.brown.stained.ash.effect.s29286078. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.forsand.black.brown.stained.ash.effect.s29286894. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.forsand.black.brown.stained.ash.effect.s59286072. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.forsand.black.brown.stained.ash.effect.s69286910. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.forsand.vikedal.s39285988. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.forsand.vikedal.s79285991. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.hasvik.high.gloss.white.s99180573. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.s39227804. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.stained.ash.effect.black.brown.mehamn.black.brown.stained.ash.effect.s09305761. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.stained.ash.effect.repvag.black.brown.stained.oak.veneer.s59300092. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.undredal.black.s59094412. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.vikedal.mirror.glass.s29127777. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.brown.stained.ash.effect.forsand.brown.stained.ash.effect.s49287618. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.brown.stained.ash.effect.uggdal.grey.glass.s09247257. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.brown.stained.ash.effect.uggdal.grey.glass.s39305873. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.combination.brown.stained.ash.effect.s19331439. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.combination.white.s09324689. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.combination.white.s19385677. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.combination.white.s29385672. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.combination.white.s59324248. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.auli.mirror.glass.s09025765. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.auli.mirror.glass.s19127382. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.auli.mirror.glass.s19303380. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.auli.mirror.glass.s19306326. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.auli.mirror.glass.s79305734. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.auli.mirror.glass.s79306328. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.auli.mirror.glass.s79306333. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.bergsbo.frosted.glass.s79128821. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.bergsbo.white.s19127297. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.bergsbo.white.s39127710. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.faervik.white.glass.s19305807. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.faervik.white.glass.s19305812. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.faervik.white.glass.s29167037. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.fardal.high.gloss.white.s19303498. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.fardal.high.gloss.white.s39127395. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.fardal.vikedal.s99127608. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.fjellhamar.dark.bamboo.s19306307. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.fjellhamar.dark.bamboo.s89243929. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.fjellhamar.light.bamboo.s29306302. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.flisberget.light.beige.s39304128. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.flornes.dark.grey.s89300156. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.flornes.dark.grey.s99276491. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.forsand.vikedal.s09303719. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.forsand.vikedal.s99246475. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.forsand.vikedal.s99246588. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.forsand.white.s39246911. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.forsand.white.s49025589. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.forsand.white.s49246468. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.hamnas.black.blue.s09303941. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.hamnas.black.blue.s79276425. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.hasvik.white.s09303309. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.hasvik.white.s69219044. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.hasvik.white.s79180593. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.hokksund.high.gloss.light.beige.s09265053. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.hokksund.high.gloss.light.beige.s19305906. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.hokksund.high.gloss.light.beige.s59264843. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.hokksund.high.gloss.light.beige.s79305913. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.mehamn.auli.s39305745. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.mehamn.auli.s49305740. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.mehamn.s39305788. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.mehamn.sekken.s49305641. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.nykirke.frosted.glass.check.pattern.s59305725. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.s19300107. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.s29128357. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.s29128442. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.s49300144. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.s89227873. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.sekken.frosted.glass.s09296950. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.sekken.frosted.glass.s79305852. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.soerumsand.white.s39276917. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.tyssedal.glass.s09171035. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.tyssedal.glass.s09300103. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.tyssedal.tyssedal.glass.s29221652. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.tyssedal.white.s99264964. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.uggdal.faervik.s09305836. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.uggdal.faervik.s49127917. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.uggdal.grey.glass.s39264858. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.uggdal.grey.glass.s39305707. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.uggdal.grey.glass.s39305868. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.uggdal.grey.glass.s69303429. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.vikedal.mirror.glass.s69127493. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.vinterbro.white.s69030368. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pello.armchair.holmby.natural.50078464. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.bed.frame.with.10.doors.white.s89305446. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.bed.frame.with.10.drawers.white.fonnes.s89302914. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.bed.frame.with.2.door.3.drawers.white.fonnes.s99302975. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.bed.frame.with.2.drawers.white.fonnes.s99302918. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.bed.frame.with.4.drawers.white.fonnes.s09302913. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.bed.frame.with.4.drawers.white.fonnes.s89326463. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.bed.frame.with.6.doors.12.drawers.white.fonnes.s09324284. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.bed.frame.with.storage.white.10453086. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.bed.frame.with.storage.white.s19302917. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.chest.of.2.drawers.white.fonnes.s09325387. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.chest.of.2.drawers.white.fonnes.white.s09277211. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.chest.of.2.drawers.white.skatval.dark.grey.s29277229. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.chest.of.3.drawers.white.fonnes.white.s49277247. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.chest.of.3.drawers.white.skatval.dark.grey.s79277255. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.media.storage.combination.s29291391. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.media.storage.combination.s59291403. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.media.storage.combination.s69291394. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.media.storage.combination.s69291407. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.media.storage.combination.s79291398. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.media.storage.combination.s89291388. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.storage.comb.w.6.doors.3.drawers.white.fonnes.white.s59324385. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.storage.combination.s79291355. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.tv.bench.white.metal.s39305260. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.tv.bench.white.s09305247. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.tv.bench.white.s99305257. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.tv.bench.white.wood.s69305249. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.tv.bench.white.wood.s79305263. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wall.storage.white.fonnes.white.s89325374. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.w.10.doors.fonnes.white.s29304586. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.w.6.doors.fonnes.white.s19304582. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.white.fonnes.sannidal.s29248369. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.white.fonnes.white.s19203781. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.white.fonnes.white.s29203889. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.white.fonnes.white.s59248626. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.white.fonnes.white.s79203815. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.white.fonnes.white.s99248587. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.white.sannidal.ridabu.s79252108. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.with.2.doors.3.drawers.fonnes.white.s99304578. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.with.2.doors.3.drawers.white.fonnes.white.s59326469. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.with.3.doors.white.fonnes.white.s19323929. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.with.6.drawers.white.fonnes.white.s29324320. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.with.7.doors.6.drawers.white.fonnes.white.s69325214. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.with.9.doors.white.fonnes.ridabu.s39298472. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.with.9.doors.white.sannidal.white.s19302998. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.with.shoe.shelf.white.vaerd.white.s99305851. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.poaeng.armchair.birch.veneer.knisa.light.beige.s39240787. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.poaeng.armchair.birch.veneer.robust.glose.eggshell.s19830588. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.poaeng.armchair.black.brown.robust.glose.dark.brown.s59829125. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.poaeng.childrens.armchair.birch.veneer.almas.beige.s39337911. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.poaeng.childrens.armchair.birch.veneer.almas.natural.90116553. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.poaeng.childrens.armchair.frame.birch.veneer.80418056. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.poaeng.footstool.birch.veneer.knisa.orange.red.orange.s79244665. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.poaeng.footstool.birch.veneer.robust.glose.dark.brown.s59829111. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.poaeng.rocking.chair.birch.veneer.robust.glose.dark.brown.s49861007. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.poaeng.rocking.chair.black.brown.knisa.black.s19241537. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.praestholm.bench.with.backrest.outdoor.grey.70418170. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.rakkestad.wardrobe.with.2.doors.black.brown.50453758. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.raskog.bar.stool.beige.30308395. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.raskog.bar.stool.black.30352246. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.raskog.stool.beige.80308393. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.raskog.stool.black.60351900. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.rast.chest.of.3.drawers.pine.75305709. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.regissoer.cabinet.brown.60342072. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.remsta.armchair.djuparp.dark.green.blue.green.blue.60344759. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.roenninge.chair.birch.10422504. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sakarias.chair.with.armrests.black.lingbo.multicoloured.dark.s09279026. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sakarias.stool.black.sporda.dark.grey.s79325223. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sakarias.stool.frame.black.60463498. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.saltholmen.chair.outdoor.foldable.beige.80311828. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sandbacken.3.seat.sofa.frillestad.light.grey.s69217790. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.setskog.bedside.table.white.40320349. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sjaelland.bench.outdoor.light.grey.light.brown.50401986. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sjaelland.chair.with.armrests.outdoor.light.grey.light.brown.70386503. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sjaelland.reclining.chair.outdoor.light.grey.foldable.dark.grey.50405338. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sjaelland.reclining.chair.outdoor.light.grey.foldable.light.brown.30405339. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.skadis.connector.for.algot.white.00335885. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.skadis.pegboard.combination.white.s19216694. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.skogstorp.bench.oak.white.20426276. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.skogstorp.dining.table.oak.white.40426275. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.skubb.storage.case.black.30294987. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.skubb.storage.case.white.90294989. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.slaekt.bed.frame.w.storage.slatted.bedbase.white.s29291956. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.slaekt.bed.frame.with.3.storage.boxes.white.s89386070. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.slaekt.storage.box.with.castors.80362974. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.slaekt.underbed.with.storage.white.s99239451. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.smagoera.changing.table.bookshelf.white.50460886. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.smagoera.changing.tbl.bookshelf.w.1.shlf.ut.white.s99323614. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.smagoera.changing.tbl.bookshelf.w.2.shlf.ut.white.s09323623. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.smagoera.shelf.unit.white.30465489. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.smagoera.wardrobe.white.10460888. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.soederhamn.1.seat.section.samsta.light.pink.s79151312. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.soederhamn.3.seat.section.finnsta.turquoise.s89135939. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.soederhamn.3.seat.sofa.finnsta.turquoise.s89135944. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.soederhamn.3.seat.sofa.with.open.end.finnsta.turquoise.s29282853. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.soederhamn.4.seat.sofa.with.chaise.longue.finnsta.turquoise.s59284351. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.soederhamn.armchair.finnsta.turquoise.s59135648. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.soederhamn.armchair.samsta.light.pink.s49151276. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.soederhamn.armrest.finnsta.turquoise.s59135653. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.soederhamn.corner.section.finnsta.turquoise.s79135751. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.soederhamn.corner.sofa.4.seat.with.open.end.finnsta.turquoise.s29284381. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.solleroen.2.seat.modular.sofa.outdoor.brown.kungsoe.white.s19241491. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.solleroen.3.seat.modular.sofa.outdoor.dark.grey.kuddarna.beige.s79303645. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.solleroen.3.seat.modular.sofa.outdoor.with.footstool.dark.grey.kuddarna.beige.s29303624. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.solleroen.armrest.section.outdoor.brown.10386450. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.solleroen.armrest.section.outdoor.dark.grey.60424586. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.solleroen.corner.section.outdoor.dark.grey.20424593. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.solleroen.modular.corner.sofa.3.seat.outdoor.brown.froesoen.duvholmen.beige.s49252609. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.solleroen.modular.corner.sofa.3.seat.outdoor.dark.grey.froesoen.duvholmen.beige.s39287789. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.solleroen.modular.corner.sofa.4.seat.outdoor.with.footstool.brown.brown.kungsoe.white.s19241472. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.solleroen.modular.corner.sofa.4.seat.outdoor.with.footstool.dark.grey.kuddarna.beige.s49303595. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.solleroen.one.seat.section.outdoor.brown.60373624. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.songesand.bed.frame.with.2.storage.boxes.brown.s69241097. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.songesand.bed.frame.with.4.storage.boxes.brown.loenset.s29241160. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.songesand.bedside.table.brown.70367444. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.songesand.chest.of.3.drawers.white.90366839. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.songesand.chest.of.4.drawers.brown.60366789. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.songesand.chest.of.6.drawers.brown.70366784. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.songesand.chest.of.6.drawers.white.70366798. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.songesand.wardrobe.brown.60375133. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stallarp.leg.chrome.plated.20390574. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stefan.chair.brown.black.00211088. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stig.bar.stool.with.backrest.black.silver.colour.80155205. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stockholm.three.seat.sofa.seglora.natural.80245051. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stockholm.tv.bench.walnut.veneer.60239715. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stocksund.3.seat.sofa.ljungen.blue.black.wood.s69129798. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stocksund.armchair.ljungen.medium.grey.light.brown.wood.s49315937. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stocksund.bench.ljungen.medium.grey.light.brown.wood.s79315945. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stoljan.conference.chair.white.black.s89907452. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.strandmon.childrens.armchair.vissle.grey.70392542. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.strandmon.footstool.djuparp.dark.green.50360009. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stubbarp.leg.black.brown.60293566. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stubbarp.leg.grey.stained.walnut.effect.40293567. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuk.storage.case.white.grey.40309573. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.bench.white.30128629. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.changing.table.desk.white.20225334. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.foelja.changing.table.with.4.drawers.white.s39180830. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.bench.with.toy.storage.white.white.s59252637. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.bookcase.with.drawers.white.light.pink.s19262233. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.bookcase.with.drawers.white.white.s89252688. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.changing.table.with.drawers.white.white.s69253146. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.chest.of.3.drawers.white.white.s09252673. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.chest.of.6.drawers.white.white.s69252712. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.toy.storage.with.wheels.white.light.blue.s99279588. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.wardrobe.white.white.s19252856. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.wardrobe.white.white.s19275075. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.wardrobe.white.white.s29252912. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.wardrobe.white.white.s39252756. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.wardrobe.with.storage.bench.white.light.blue.s69253047. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.wardrobe.with.storage.bench.white.light.pink.s79266110. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.wardrobe.with.storage.bench.white.white.s59253043. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sundlandet.open.wardrobe.white.00421915. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sundvik.childrens.chair.grey.brown.80196357. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sundvik.rocking.chair.white.80201740. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sundvik.wardrobe.grey.brown.90269697. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sundvik.wardrobe.white.10269696. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svaerta.desk.top.silver.colour.20249896. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svalnaes.cabinet.with.2.doors.bamboo.white.00322897. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svalnaes.wall.mounted.shelf.combination.bamboo.s29184433. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svalnaes.wall.mounted.shelf.combination.bamboo.s69184431. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svalnaes.wall.mounted.storage.combination.bamboo.s29221765. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svalnaes.wall.mounted.storage.combination.bamboo.white.s39184437. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svalnaes.wall.mounted.storage.combination.bamboo.white.s59184441. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svalnaes.wall.mounted.storage.combination.bamboo.white.s99184439. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svalnaes.wall.mounted.workspace.combination.bamboo.s09184448. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svalnaes.wall.mounted.workspace.combination.bamboo.white.s49320774. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svalnaes.wall.mounted.workspace.combination.bamboo.white.s79320744. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svalnaes.wall.mounted.workspace.combination.bamboo.white.s79320758. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svanoe.arbor.bench.grey.30411415. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svenbertil.chair.black.broringe.black.s99197696. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svenbertil.chair.with.armrests.white.dietmar.white.s49259743. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.syvde.cabinet.with.glass.doors.white.30439565. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.syvde.dressing.table.white.80430746. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.syvde.open.wardrobe.white.70439573. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.teodores.chair.white.90350937. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.terje.folding.chair.white.80222441. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tobias.chair.blue.chrome.plated.60334722. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tobias.chair.transparent.chrome.plated.80349671. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tornviken.kitchen.island.off.white.oak.00393371. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tossberg.chair.metal.black.grey.90435324. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tosteroe.storage.box.outdoor.black.10411440. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tranaroe.stool.side.table.in.outdoor.red.10411421. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.frame.light.white.stained.pine.pine.10308693. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.frame.light.white.stained.pine.pine.20308697. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.frame.light.white.stained.pine.pine.60308695. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.frame.white.10091453. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.frame.white.30091452. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.frame.white.30171123. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.frame.white.80153800. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.box.green.40466285. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.box.orange.30466281. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.box.pink.50466275. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.light.white.stained.pine.pine.white.s09102532. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.light.white.stained.pine.pine.white.s19102659. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.light.white.stained.pine.pine.white.s29103007. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.light.white.stained.pine.pine.white.s79102958. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.light.white.stained.pine.pine.white.s89102095. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.light.white.stained.pine.white.pink.s19240892. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.white.green.s89228472. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.white.green.white.s79228590. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.white.green.white.s99228551. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.white.pink.s89335976. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.white.pink.s99228570. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.white.s29042877. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.white.white.pink.s69337801. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.white.white.s49123405. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.white.white.s99228476. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.wall.storage.light.white.stained.pine.pine.20308701. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.wall.storage.white.50171122. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.wall.storage.white.white.s79898306. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trogen.childrens.step.stool.yellow.80371520. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trysil.bedside.table.white.light.grey.30236025. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trysil.chest.of.4.drawers.white.light.grey.60400415. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trysil.wardrobe.white.mirror.glass.10308787. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tullsta.armchair.lofallet.beige.s29272712. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tyssedal.bedside.table.white.70299959. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tyssedal.chest.of.4.drawers.white.10391324. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tyssedal.chest.of.4.drawers.white.80391325. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tyssedal.chest.of.6.drawers.white.20293714. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tyssedal.dressing.table.white.20359984. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tyssedal.dressing.table.with.mirror.white.s69261882. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tyssedal.storage.stool.white.70359986. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tyssedal.wardrobe.white.mirror.glass.00298128. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ulriksberg.armchair.rattan.anthracite.90434310. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.urban.junior.chair.white.00165213. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vadholma.rack.for.kitchen.island.black.80402381. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vaeddoe.chair.outdoor.white.80267137. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vaeddoe.stool.outdoor.white.70267133. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.2.seat.modular.sofa.orrsta.olive.green.s49277676. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.2.seat.modular.sofa.w.2.sofa.beds.murum.white.s29277724. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.2.seat.modular.sofa.with.sofa.bed.and.storage.hillared.light.blue.s59277652. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.2.seat.modular.sofa.with.storage.orrsta.light.grey.s29277026. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.back.rest.hillared.light.blue.s79279396. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.backrest.murum.white.40417695. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.cover.for.back.cushion.orrsta.olive.green.10417852. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.modular.corner.sofa.3.seat.sofa.bed.and.storage.hillared.light.blue.s49277978. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.modular.corner.sofa.3.seat.sofa.bed.and.storage.murum.white.s09278003. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.seat.module.hillared.light.blue.s79279419. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.seat.module.with.backrest.hillared.dark.grey.s09276971. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.sofa.bed.module.hillared.dark.grey.s09149879. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.sofa.bed.module.with.backrests.hillared.light.blue.s89277486. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vattviken.armchair.bed.lerhaga.light.grey.50468953. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.veberoed.bench.natural.50343331. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.veberoed.shelving.unit.natural.10343328. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vedbo.chair.black.gunnared.dark.grey.60403150. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vedbo.chair.with.armrests.black.gunnared.dark.grey.80403154. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vedbo.high.back.armchair.gunnared.light.brown.pink.10423589. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vesken.trolley.white.00471222. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.viggja.tray.stand.white.70351481. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vikhammer.bedside.table.black.90388978. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vilto.shelving.unit.birch.90344456. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vilto.step.stool.birch.60344453. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vilto.storage.stool.birch.40344449. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.1.seat.section.orrsta.black.blue.s89220131. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.2.seat.sofa.bed.gunnared.beige.s49285582. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.2.seat.sofa.bed.section.gunnared.beige.s29285521. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.2.seat.sofa.orrsta.black.blue.s89284712. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.3.seat.section.orrsta.black.blue.s09219457. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.3.seat.sofa.bed.dalstorp.multicolour.s39298778. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.3.seat.sofa.bed.gunnared.beige.s69292275. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.3.seat.sofa.bed.with.chaise.longue.gunnared.beige.s19292678. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.3.seat.sofa.bed.with.open.end.gunnared.medium.grey.s29292442. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.3.seat.sofa.bed.with.open.end.tallmyra.black.grey.s39292465. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.3.seat.sofa.dalstorp.multicolour.s69298772. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.3.seat.sofa.with.chaise.longue.gunnared.medium.grey.s09284909. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.3.seat.sofa.with.chaise.longue.with.headrest.gunnared.medium.grey.s99295593. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.3.seat.sofa.with.headrest.gunnared.medium.grey.s79295551. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.3.seat.sofa.with.open.end.orrsta.black.blue.s19284857. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.4.seat.sofa.with.chaise.longue.gunnared.medium.grey.s79284958. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.armrest.orrsta.black.blue.s59285360. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.chaise.longue.gunnared.medium.grey.s19298265. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.chaise.longue.section.gunnared.beige.s59285384. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.corner.section.gunnared.medium.grey.s79285439. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.corner.sofa.3.seat.with.open.end.gunnared.beige.s19284796. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.corner.sofa.4.seat.orrsta.black.blue.s99285042. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.corner.sofa.4.seat.with.open.end.dalstorp.multicolour.s09299661. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.corner.sofa.4.seat.with.open.end.with.headrests.orrsta.black.blue.s19294502. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.corner.sofa.5.seat.dalstorp.multicolour.s99299708. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.corner.sofa.5.seat.with.chaise.longue.orrsta.black.blue.s69285232. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.corner.sofa.bed.5.seat.with.chaise.longue.dalstorp.multicolour.s19299726. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.cover.for.chaise.longue.gunnared.beige.s79305220. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.cover.for.corner.sofa.4.seat.with.open.end.tallmyra.black.grey.s09253639. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.visthus.chest.of.6.drawers.grey.white.90347167. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.visthus.chest.of.8.drawers.grey.white.80347163. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.visthus.wardrobe.grey.white.00347614. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.visthus.wardrobe.grey.white.50347616. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.laptop.stand.black.brown.glass.00250249. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.laptop.table.black.brown.glass.80221352. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.shelving.unit.black.brown.glass.20213312. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.shelving.unit.black.brown.glass.50214678. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.shelving.unit.black.brown.glass.90305803. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.storage.combination.black.brown.glass.s09294526. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.storage.combination.black.brown.glass.s29294554. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.storage.combination.black.brown.glass.s59902658. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.storage.combination.black.brown.glass.s79294542. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.storage.combination.black.brown.glass.s89294532. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.tv.bench.black.brown.glass.70303428. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.tv.storage.combination.black.brown.glass.s69294566. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.tv.storage.combination.black.brown.glass.s99294560. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vitval.desk.top.white.40411410. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.volfgang.chair.chrome.plated.bomstad.black.90402352. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.volfgang.chair.chrome.plated.gunnared.medium.grey.80404672. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vuku.wardrobe.white.80331973. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.yngvar.chair.anthracite.80417636. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.yngvar.chair.red.00417635. <dbl> …
## $ other_colors_Yes <dbl> …
## $ short_description_X1.seat.section <dbl> …
## $ short_description_X1.section...........44x55x216.cm <dbl> …
## $ short_description_X1.section...........78x31x171.cm <dbl> …
## $ short_description_X1.section...........84x55x216.cm <dbl> …
## $ short_description_X1.section.bottle.racks...........89x30x124.cm <dbl> …
## $ short_description_X1.section.shelves...........89x30x179.cm <dbl> …
## $ short_description_X1.section.shelves...........89x50x179.cm <dbl> …
## $ short_description_X1.shelf.section...........92x36x181.cm <dbl> …
## $ short_description_X2.seat.modular.sofa <dbl> …
## $ short_description_X2.seat.modular.sofa.w.2.sofa.beds <dbl> …
## $ short_description_X2.seat.modular.sofa.with.sofa.bed <dbl> …
## $ short_description_X2.seat.modular.sofa..outdoor...........160x80x73.cm <dbl> …
## $ short_description_X2.seat.modular.sofa..outdoor...........160x80x89.cm <dbl> …
## $ short_description_X2.seat.modular.sofa..outdoor...........161x82x87.cm <dbl> …
## $ short_description_X2.seat.section <dbl> …
## $ short_description_X2.seat.sofa <dbl> …
## $ short_description_X2.seat.sofa.bed <dbl> …
## $ short_description_X2.seat.sofa.bed.section <dbl> …
## $ short_description_X2.seat.sofa.with.side.table <dbl> …
## $ short_description_X2.seat.sofa..in.outdoor...........164x94x90.cm <dbl> …
## $ short_description_X2.seat.sofa..in.outdoor...........179x94x90.cm <dbl> …
## $ short_description_X2.seat.sofa..outdoor...........118x67x80.cm <dbl> …
## $ short_description_X2.sections...........125x55x126.cm <dbl> …
## $ short_description_X2.sections...........125x55x216.cm <dbl> …
## $ short_description_X2.sections...........165x55x216.cm <dbl> …
## $ short_description_X2.sections.shelves...........127x41x180.cm <dbl> …
## $ short_description_X2.sections.shelves...........134x30x179.cm <dbl> …
## $ short_description_X2.sections.shelves...........134x50x179.cm <dbl> …
## $ short_description_X2.sections.shelves...........134x50x226.cm <dbl> …
## $ short_description_X2.sections.shelves...........174x30x124.cm <dbl> …
## $ short_description_X2.sections.shelves...........174x50x226.cm <dbl> …
## $ short_description_X2.sections.shelves.cabinet...........174x30x179.cm <dbl> …
## $ short_description_X2.shelf.sections...........197x36x181.cm <dbl> …
## $ short_description_X2.shelf.sections...........211x36x94.cm <dbl> …
## $ short_description_X3.seat.modular.sofa..outdoor <dbl> …
## $ short_description_X3.seat.modular.sofa..outdoor...........143.223x80x84.cm <dbl> …
## $ short_description_X3.seat.modular.sofa..outdoor...........222x80x90.cm <dbl> …
## $ short_description_X3.seat.modular.sofa..outdoor...........223x80x84.cm <dbl> …
## $ short_description_X3.seat.modular.sofa..outdoor...........223x82x84.cm <dbl> …
## $ short_description_X3.seat.section <dbl> …
## $ short_description_X3.seat.sofa <dbl> …
## $ short_description_X3.seat.sofa.bed <dbl> …
## $ short_description_X3.seat.sofa..in.outdoor...........245x94x90.cm <dbl> …
## $ short_description_X3.seat.sofa..in.outdoor...........260x94x90.cm <dbl> …
## $ short_description_X3.seat.sofa..outdoor <dbl> …
## $ short_description_X3.sections...........165x55x216.cm <dbl> …
## $ short_description_X3.sections...........205x55x216.cm <dbl> …
## $ short_description_X3.sections...........245x55x216.cm <dbl> …
## $ short_description_X3.sections.cabinet.shelves...........259x30x226.cm <dbl> …
## $ short_description_X3.sections.shelves...........189x41x170.cm <dbl> …
## $ short_description_X3.sections.shelves...........230x50x171.cm <dbl> …
## $ short_description_X3.sections.shelves...........259x30x179.cm <dbl> …
## $ short_description_X4.seat.sofa <dbl> …
## $ short_description_X4.seat.sofa..in.outdoor...........326x94x90.cm <dbl> …
## $ short_description_X4.seat.sofa..in.outdoor...........341x94x90.cm <dbl> …
## $ short_description_X4.sections.shelves...........179x50x179.cm <dbl> …
## $ short_description_X4.sections.shelves...........307x50x171.cm <dbl> …
## $ short_description_X4.sections.shelves...........344x30x226.cm <dbl> …
## $ short_description_Add.on.unit.high...........105x65.cm <dbl> …
## $ short_description_Add.on.unit...........160x80.cm <dbl> …
## $ short_description_Add.on.unit...........64x39.cm <dbl> …
## $ short_description_Add.on.unit...........80x80.cm <dbl> …
## $ short_description_Add.on.unit..in.outdoor...........83x94x90.cm <dbl> …
## $ short_description_Arbor.bench...........119x48.cm <dbl> …
## $ short_description_Armchair <dbl> …
## $ short_description_Armchair.bed <dbl> …
## $ short_description_Armchair..in.outdoor...........98x94x90.cm <dbl> …
## $ short_description_Armchair..outdoor <dbl> …
## $ short_description_Armrest <dbl> …
## $ short_description_Armrest.section..outdoor <dbl> …
## $ short_description_Back.rest...........100x80.cm <dbl> …
## $ short_description_Backrest...........80x80.cm <dbl> …
## $ short_description_Bar.stool.with.backrest.frame...........74.cm <dbl> …
## $ short_description_Bar.stool.with.backrest...........63.cm <dbl> …
## $ short_description_Bar.stool.with.backrest...........66.cm <dbl> …
## $ short_description_Bar.stool.with.backrest...........74.cm <dbl> …
## $ short_description_Bar.stool.with.backrest...........75.cm <dbl> …
## $ short_description_Bar.stool.with.backrest..foldable...........63.cm <dbl> …
## $ short_description_Bar.stool.with.backrest..foldable...........74.cm <dbl> …
## $ short_description_Bar.stool.with.backrest..in.outdoor...........74.cm <dbl> …
## $ short_description_Bar.stool...........63.cm <dbl> …
## $ short_description_Bar.stool...........76.cm <dbl> …
## $ short_description_Bar.stool...........77.cm <dbl> …
## $ short_description_Bed.frame.w.storage.and.headboard...........140x200.cm <dbl> …
## $ short_description_Bed.frame.w.storage.and.headboard...........90x200.cm <dbl> …
## $ short_description_Bed.frame.w.storage.slatted.bedbase...........90x200.cm <dbl> …
## $ short_description_Bed.frame.with.10.doors...........143x244x223.cm <dbl> …
## $ short_description_Bed.frame.with.10.drawers...........140x244x103.cm <dbl> …
## $ short_description_Bed.frame.with.2.door.3.drawers...........142x244x163.cm <dbl> …
## $ short_description_Bed.frame.with.2.drawers...........142x244x103.cm <dbl> …
## $ short_description_Bed.frame.with.2.storage.boxes...........140x200.cm <dbl> …
## $ short_description_Bed.frame.with.3.storage.boxes...........90x200.cm <dbl> …
## $ short_description_Bed.frame.with.4.drawers...........140x244x163.cm <dbl> …
## $ short_description_Bed.frame.with.4.drawers...........142x244x43.cm <dbl> …
## $ short_description_Bed.frame.with.4.storage.boxes...........140x200.cm <dbl> …
## $ short_description_Bed.frame.with.6.doors.12.drawers...........140x244x203.cm <dbl> …
## $ short_description_Bed.frame.with.storage...........140x200.cm <dbl> …
## $ short_description_Bed.frame.with.storage...........140x244x223.cm <dbl> …
## $ short_description_Bed.frame..high..w.2.storage.boxes...........180x200.cm <dbl> …
## $ short_description_Bed.frame..high..w.2.storage.boxes...........90x200.cm <dbl> …
## $ short_description_Bedside.table...........30x50.cm <dbl> …
## $ short_description_Bedside.table...........37x28.cm <dbl> …
## $ short_description_Bedside.table...........42x40.cm <dbl> …
## $ short_description_Bedside.table...........45x35.cm <dbl> …
## $ short_description_Bedside.table...........45x40.cm <dbl> …
## $ short_description_Bedside.table...........46x35.cm <dbl> …
## $ short_description_Bedside.table...........51x40.cm <dbl> …
## $ short_description_Bedside.table...........60x39.cm <dbl> …
## $ short_description_Bench <dbl> …
## $ short_description_Bench.with.backrest..outdoor <dbl> …
## $ short_description_Bench.with.shoe.storage...........85x32.cm <dbl> …
## $ short_description_Bench.with.storage.compartments...........100x51.cm <dbl> …
## $ short_description_Bench.with.toy.storage...........90x50x50.cm <dbl> …
## $ short_description_Bench...........132.cm <dbl> …
## $ short_description_Bench...........88x53.cm <dbl> …
## $ short_description_Bench...........90x50x50.cm <dbl> …
## $ short_description_Bench..outdoor...........114.cm <dbl> …
## $ short_description_Bench..outdoor...........136.cm <dbl> …
## $ short_description_Bookcase.combination.hght.extension...........120x28x237.cm <dbl> …
## $ short_description_Bookcase.w.height.extension.ut.drs...........160x30x237.cm <dbl> …
## $ short_description_Bookcase.w.hght.ext.ut.pnl.glss.drs...........80x30x237.cm <dbl> …
## $ short_description_Bookcase.with.display.shelf...........40x28x202.cm <dbl> …
## $ short_description_Bookcase.with.display.shelf...........80x28x106.cm <dbl> …
## $ short_description_Bookcase.with.display.shelf...........80x28x202.cm <dbl> …
## $ short_description_Bookcase.with.door...........40x30x106.cm <dbl> …
## $ short_description_Bookcase.with.doors...........80x30x106.cm <dbl> …
## $ short_description_Bookcase.with.doors...........80x30x202.cm <dbl> …
## $ short_description_Bookcase.with.drawers...........60x50x128.cm <dbl> …
## $ short_description_Bookcase.with.glass.doors...........120x30x202.cm <dbl> …
## $ short_description_Bookcase.with.glass.doors...........80x30x106.cm <dbl> …
## $ short_description_Bookcase.with.glass.doors...........80x30x202.cm <dbl> …
## $ short_description_Bookcase.with.glass.doors...........96x214.cm <dbl> …
## $ short_description_Bookcase.with.glass.door...........40x30x106.cm <dbl> …
## $ short_description_Bookcase.with.glass.door...........40x30x237.cm <dbl> …
## $ short_description_Bookcase.with.panel.glass.door...........40x30x202.cm <dbl> …
## $ short_description_Bookcase.with.panel.glass.doors...........120x30x202.cm <dbl> …
## $ short_description_Bookcase.with.panel.glass.doors...........160x30x202.cm <dbl> …
## $ short_description_Bookcase.with.panel.glass.doors...........80x30x202.cm <dbl> …
## $ short_description_Bookcase...........120x28x237.cm <dbl> …
## $ short_description_Bookcase...........120x30x237.cm <dbl> …
## $ short_description_Bookcase...........160x28x202.cm <dbl> …
## $ short_description_Bookcase...........160x30x202.cm <dbl> …
## $ short_description_Bookcase...........160x30x237.cm <dbl> …
## $ short_description_Bookcase...........200x28x202.cm <dbl> …
## $ short_description_Bookcase...........200x28x237.cm <dbl> …
## $ short_description_Bookcase...........200x30x106.cm <dbl> …
## $ short_description_Bookcase...........200x30x237.cm <dbl> …
## $ short_description_Bookcase...........215.135x28x237.cm <dbl> …
## $ short_description_Bookcase...........240x28x106.cm <dbl> …
## $ short_description_Bookcase...........40x28x106.cm <dbl> …
## $ short_description_Bookcase...........40x28x202.cm <dbl> …
## $ short_description_Bookcase...........40x28x237.cm <dbl> …
## $ short_description_Bookcase...........49x197.cm <dbl> …
## $ short_description_Bookcase...........60x180.cm <dbl> …
## $ short_description_Bookcase...........60x190.cm <dbl> …
## $ short_description_Bookcase...........62x165.cm <dbl> …
## $ short_description_Bookcase...........65x199.cm <dbl> …
## $ short_description_Bookcase...........67x190.cm <dbl> …
## $ short_description_Bookcase...........80x28x106.cm <dbl> …
## $ short_description_Bookcase...........80x28x202.cm <dbl> …
## $ short_description_Bookcase...........80x28x237.cm <dbl> …
## $ short_description_Bookcase...........80x30x202.cm <dbl> …
## $ short_description_Bookcase...........96x214.cm <dbl> …
## $ short_description_Bottle.rack...........83x30.cm <dbl> …
## $ short_description_Cabinet.combination.for.TV...........180x40x170.cm <dbl> …
## $ short_description_Cabinet.combination.for.TV...........210x40x220.cm <dbl> …
## $ short_description_Cabinet.combination.for.TV...........300x42x210.cm <dbl> …
## $ short_description_Cabinet.combination.with.feet...........105x35x107.cm <dbl> …
## $ short_description_Cabinet.combination.with.feet...........105x35x72.cm <dbl> …
## $ short_description_Cabinet.combination.with.feet...........140x35x212.cm <dbl> …
## $ short_description_Cabinet.combination.with.feet...........280x35x72.cm <dbl> …
## $ short_description_Cabinet.combination.with.feet...........35x35x107.cm <dbl> …
## $ short_description_Cabinet.combination.with.feet...........70x25x107.cm <dbl> …
## $ short_description_Cabinet.combination.with.feet...........70x35x212.cm <dbl> …
## $ short_description_Cabinet.combination.with.feet...........70x35x72.cm <dbl> …
## $ short_description_Cabinet.combination.with.legs...........140x35x80.cm <dbl> …
## $ short_description_Cabinet.combination.with.legs...........210x35x210.cm <dbl> …
## $ short_description_Cabinet.combination.with.legs...........70x35x80.cm <dbl> …
## $ short_description_Cabinet.combination...........120x35x57.cm <dbl> …
## $ short_description_Cabinet.combination...........120x35x92.cm <dbl> …
## $ short_description_Cabinet.combination...........95x35x92.cm <dbl> …
## $ short_description_Cabinet.in.outdoor...........80x81.cm <dbl> …
## $ short_description_Cabinet.in.outdoor...........90x161.cm <dbl> …
## $ short_description_Cabinet.unit...........60x40x202.cm <dbl> …
## $ short_description_Cabinet.w.2.doors.and.1.shelf...........70x35x70.cm <dbl> …
## $ short_description_Cabinet.w.2.doors.and.2.shelves...........70x25x70.cm <dbl> …
## $ short_description_Cabinet.w.door.and.1.shelf...........35x35x70.cm <dbl> …
## $ short_description_Cabinet.w.door.and.2.shelves...........35x25x70.cm <dbl> …
## $ short_description_Cabinet.with.2.doors...........61x35.cm <dbl> …
## $ short_description_Cabinet.with.2.doors...........76x40x66.cm <dbl> …
## $ short_description_Cabinet.with.2.drawers...........35x35x35.cm <dbl> …
## $ short_description_Cabinet.with.3.drawers...........70x35x70.cm <dbl> …
## $ short_description_Cabinet.with.4.compartments...........70x35x70.cm <dbl> …
## $ short_description_Cabinet.with.doors.and.drawers...........80x47x119.cm <dbl> …
## $ short_description_Cabinet.with.doors...........78x95.cm <dbl> …
## $ short_description_Cabinet.with.doors...........80x120.cm <dbl> …
## $ short_description_Cabinet.with.doors...........80x83.cm <dbl> …
## $ short_description_Cabinet.with.doors...........80x93.cm <dbl> …
## $ short_description_Cabinet.with.doors...........89x30x124.cm <dbl> …
## $ short_description_Cabinet.with.glass.doors...........100x123.cm <dbl> …
## $ short_description_Cabinet.with.glass.doors...........86x199.cm <dbl> …
## $ short_description_Cabinet.with.mirror...........70x47.cm <dbl> …
## $ short_description_Cabinet.with.plinth...........81x37x134.cm <dbl> …
## $ short_description_Cabinet.with.plinth...........81x47x89.cm <dbl> …
## $ short_description_Cabinet.with.smart.lock...........80x119.cm <dbl> …
## $ short_description_Cabinet...........118x110.cm <dbl> …
## $ short_description_Cabinet...........119x63.cm <dbl> …
## $ short_description_Cabinet...........35x25x35.cm <dbl> …
## $ short_description_Cabinet...........35x35.cm <dbl> …
## $ short_description_Cabinet...........35x35x35.cm <dbl> …
## $ short_description_Cabinet...........35x60.cm <dbl> …
## $ short_description_Cabinet...........45x50.cm <dbl> …
## $ short_description_Cabinet...........60x35.cm <dbl> …
## $ short_description_Cabinet...........80x30x83.cm <dbl> …
## $ short_description_Cabinet...........81x35x123.cm <dbl> …
## $ short_description_Chair <dbl> …
## $ short_description_Chair.frame <dbl> …
## $ short_description_Chair.frame..swivel <dbl> …
## $ short_description_Chair.with.armrests <dbl> …
## $ short_description_Chair.with.armrests..outdoor <dbl> …
## $ short_description_Chair.with.chair.pad <dbl> …
## $ short_description_Chair.with.long.cover <dbl> …
## $ short_description_Chair..outdoor <dbl> …
## $ short_description_Chaise.longue <dbl> …
## $ short_description_Chaise.longue.section <dbl> …
## $ short_description_Chaise.longue.with.armrest <dbl> …
## $ short_description_Chaise.longue..add.on.unit <dbl> …
## $ short_description_Changing.table <dbl> …
## $ short_description_Changing.table.with.4.drawers...........90x79x102.cm <dbl> …
## $ short_description_Changing.table.with.drawers...........90x79x102.cm <dbl> …
## $ short_description_Changing.table.bookshelf <dbl> …
## $ short_description_Changing.table.desk <dbl> …
## $ short_description_Changing.tbl.bookshelf.w.1.shlf.ut <dbl> …
## $ short_description_Changing.tbl.bookshelf.w.2.shlf.ut <dbl> …
## $ short_description_Chest.of.10.drawers...........160x99.cm <dbl> …
## $ short_description_Chest.of.12.drawers...........120x145.cm <dbl> …
## $ short_description_Chest.of.12.drawers...........160x145.cm <dbl> …
## $ short_description_Chest.of.2.drawers...........35x49.cm <dbl> …
## $ short_description_Chest.of.2.drawers...........40x54.cm <dbl> …
## $ short_description_Chest.of.2.drawers...........40x55.cm <dbl> …
## $ short_description_Chest.of.2.drawers...........40x99.cm <dbl> …
## $ short_description_Chest.of.2.drawers...........54x66.cm <dbl> …
## $ short_description_Chest.of.2.drawers...........60x42x91.cm <dbl> …
## $ short_description_Chest.of.2.drawers...........60x57x53.cm <dbl> …
## $ short_description_Chest.of.2.drawers...........80x54.cm <dbl> …
## $ short_description_Chest.of.2.drawers...........80x57x53.cm <dbl> …
## $ short_description_Chest.of.2.drawers...........80x75.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........108x96.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........120x54.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........40x76.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........60x57x73.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........60x64.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........62x70.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........70x68.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........70x72.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........78x95.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........80x57x73.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........80x76.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........80x78.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........82x81.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........90x83.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........159x50.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........160x54.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........40x99.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........60x99.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........67x102.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........78x124.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........80x100.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........82x104.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........84x70.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........87x76.cm <dbl> …
## $ short_description_Chest.of.5.drawers...........120x76.cm <dbl> …
## $ short_description_Chest.of.5.drawers...........45x109.cm <dbl> …
## $ short_description_Chest.of.5.drawers...........70x112.cm <dbl> …
## $ short_description_Chest.of.5.drawers...........80x122.cm <dbl> …
## $ short_description_Chest.of.5.drawers...........90x90.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........120x99.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........127x81.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........160x54.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........160x78.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........161x81.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........40x123.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........60x50x128.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........63x126.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........80x123.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........80x145.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........80x99.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........82x126.cm <dbl> …
## $ short_description_Chest.of.7.drawers...........80x122.cm <dbl> …
## $ short_description_Chest.of.7.drawers...........80x99.cm <dbl> …
## $ short_description_Chest.of.8.drawers...........120x99.cm <dbl> …
## $ short_description_Chest.of.8.drawers...........122x96.cm <dbl> …
## $ short_description_Chest.of.8.drawers...........160x54.cm <dbl> …
## $ short_description_Chest.of.8.drawers...........160x96.cm <dbl> …
## $ short_description_Chest.of.8.drawers...........160x99.cm <dbl> …
## $ short_description_Chest.of.9.drawers...........118x92.cm <dbl> …
## $ short_description_Chest.of.drawers.with.clothes.rail...........119x118.cm <dbl> …
## $ short_description_Chest.of.drawers...........40x54.cm <dbl> …
## $ short_description_Children.s.armchair <dbl> …
## $ short_description_Children.s.armchair.frame <dbl> …
## $ short_description_Children.s.bench <dbl> …
## $ short_description_Children.s.chair <dbl> …
## $ short_description_Children.s.easy.chair..outdoor <dbl> …
## $ short_description_Children.s.step.stool...........40x38x33.cm <dbl> …
## $ short_description_Children.s.stool <dbl> …
## $ short_description_Conference.chair <dbl> …
## $ short_description_Connector.for.ALGOT <dbl> …
## $ short_description_Corner.desk...........120x73.cm <dbl> …
## $ short_description_Corner.section <dbl> …
## $ short_description_Corner.section..outdoor <dbl> …
## $ short_description_Corner.sofa.bed <dbl> …
## $ short_description_Corner.sofa.bed..4.seat <dbl> …
## $ short_description_Corner.sofa.bed..5.seat <dbl> …
## $ short_description_Corner.sofa.bed..6.seat <dbl> …
## $ short_description_Corner.sofa..3.seat <dbl> …
## $ short_description_Corner.sofa..4.seat <dbl> …
## $ short_description_Corner.sofa..5.seat <dbl> …
## $ short_description_Corner.sofa..6.seat <dbl> …
## $ short_description_Corner.wardrobe...........160.88x236.cm <dbl> …
## $ short_description_Cover.for.back.cushion <dbl> …
## $ short_description_Cover.for.chaise.longue <dbl> …
## $ short_description_Cover.for.corner.sofa.bed..5.seat <dbl> …
## $ short_description_Cover.for.corner.sofa..4.seat <dbl> …
## $ short_description_Cover.for.recliner <dbl> …
## $ short_description_Cover...........81x172.cm <dbl> …
## $ short_description_Day.bed.frame.with.2.drawers...........80x200.cm <dbl> …
## $ short_description_Day.bed.frame.with.3.drawers...........80x200.cm <dbl> …
## $ short_description_Day.bed.w.2.drawers.2.mattresses...........80x200.cm <dbl> …
## $ short_description_Desk.combination...........147x147x159.cm <dbl> …
## $ short_description_Desk.combination...........77x147x159.cm <dbl> …
## $ short_description_Desk.top <dbl> …
## $ short_description_Desk.top.shelf...........64x60.cm <dbl> …
## $ short_description_Desk.top...........95x45.cm <dbl> …
## $ short_description_Desk.with.pull.out.panel...........151x65.cm <dbl> …
## $ short_description_Desk...........105x50.cm <dbl> …
## $ short_description_Desk...........110x70.cm <dbl> …
## $ short_description_Desk...........118x45.cm <dbl> …
## $ short_description_Desk...........120x40.cm <dbl> …
## $ short_description_Desk...........131x60.cm <dbl> …
## $ short_description_Desk...........140x65.cm <dbl> …
## $ short_description_Desk...........140x70.cm <dbl> …
## $ short_description_Desk...........142x50.cm <dbl> …
## $ short_description_Desk...........155x65.cm <dbl> …
## $ short_description_Desk...........73x50.cm <dbl> …
## $ short_description_Desk...........90x52.cm <dbl> …
## $ short_description_Desk...........90x54.cm <dbl> …
## $ short_description_Dining.table...........155x75.cm <dbl> …
## $ short_description_Drawer.frame...........60x15x40.cm <dbl> …
## $ short_description_Drawer.frame...........60x25x40.cm <dbl> …
## $ short_description_Drawer.unit.on.castors...........42x61.cm <dbl> …
## $ short_description_Drawer.unit.on.castors...........45x55.cm <dbl> …
## $ short_description_Drawer.unit.w.2.drawers.on.castors...........41x57.cm <dbl> …
## $ short_description_Drawer.unit.with.9.drawers...........36x116.cm <dbl> …
## $ short_description_Drawer.unit.with.smart.lock...........42x61.cm <dbl> …
## $ short_description_Drawer.unit...........33x70.cm <dbl> …
## $ short_description_Drawer.unit...........36x70.cm <dbl> …
## $ short_description_Drawer...........39x30x14.cm <dbl> …
## $ short_description_Dressing.table.with.mirror...........120x51.cm <dbl> …
## $ short_description_Dressing.table...........100x48.cm <dbl> …
## $ short_description_Dressing.table...........120x51.cm <dbl> …
## $ short_description_Dressing.table...........70x42.cm <dbl> …
## $ short_description_Dressing.table...........76x47.cm <dbl> …
## $ short_description_Easy.chair <dbl> …
## $ short_description_Easy.chair..in.outdoor...........83x94x90.cm <dbl> …
## $ short_description_Easy.chair..outdoor...........62x80x90.cm <dbl> …
## $ short_description_File.cabinet...........41x104.cm <dbl> …
## $ short_description_Folding.chair <dbl> …
## $ short_description_Footstool <dbl> …
## $ short_description_Footstool.with.storage <dbl> …
## $ short_description_Frame.with.clothes.rail...........50x51x104.cm <dbl> …
## $ short_description_Frame.with.mesh.baskets...........25x51x70.cm <dbl> …
## $ short_description_Frame.with.mesh.baskets...........50x51x104.cm <dbl> …
## $ short_description_Frame.with.mesh.baskets...........50x51x70.cm <dbl> …
## $ short_description_Frame.with.mesh.baskets.castors...........25x51x73.cm <dbl> …
## $ short_description_Frame.with.mesh.baskets.castors...........50x51x73.cm <dbl> …
## $ short_description_Frame.with.wire.baskets...........25x51x70.cm <dbl> …
## $ short_description_Frame.with.wire.baskets...........50x51x104.cm <dbl> …
## $ short_description_Frame.with.wire.baskets...........50x51x70.cm <dbl> …
## $ short_description_Frame.with.wire.baskets.castors...........25x51x73.cm <dbl> …
## $ short_description_Frame...........120x40x38.cm <dbl> …
## $ short_description_Frame...........120x40x64.cm <dbl> …
## $ short_description_Frame...........25x51x70.cm <dbl> …
## $ short_description_Frame...........44x91.cm <dbl> …
## $ short_description_Frame...........46x30x145.cm <dbl> …
## $ short_description_Frame...........46x30x94.cm <dbl> …
## $ short_description_Frame...........50x51x70.cm <dbl> …
## $ short_description_Frame...........60x20x38.cm <dbl> …
## $ short_description_Frame...........60x20x64.cm <dbl> …
## $ short_description_Frame...........60x40x192.cm <dbl> …
## $ short_description_Frame...........60x40x38.cm <dbl> …
## $ short_description_Frame...........60x40x64.cm <dbl> …
## $ short_description_Frame...........94x44x91.cm <dbl> …
## $ short_description_Frame...........94x52.cm <dbl> …
## $ short_description_Frame...........99x44x56.cm <dbl> …
## $ short_description_Frame...........99x44x94.cm <dbl> …
## $ short_description_Frame.mesh.baskets.clothes.rails...........142.178x51x173.cm <dbl> …
## $ short_description_Frame.mesh.baskets.clothes.rails...........148x51x207.cm <dbl> …
## $ short_description_Frame.mesh.baskets.shelving.units...........148x51x173.cm <dbl> …
## $ short_description_Frame.mesh.baskets.shelving.units...........99x51x173.cm <dbl> …
## $ short_description_Frame.mesh.baskts.clths.rl.shlv.uts...........173x51x173.cm <dbl> …
## $ short_description_Frame.mesh.baskts.clths.rl.shlv.uts...........173x51x207.cm <dbl> …
## $ short_description_Frame.w.bskts.clths.rl.shlv.uts...........173x51x173.cm <dbl> …
## $ short_description_Frame.w.bskts.clths.rl.shlv.uts...........198x51x173.cm <dbl> …
## $ short_description_Frame.wire.baskets.clothes.rails...........99x51x173.cm <dbl> …
## $ short_description_Frame.wire.baskets.top.shelf...........25x51x70.cm <dbl> …
## $ short_description_Frame.wire.baskets.top.shelf...........50x51x70.cm <dbl> …
## $ short_description_Frame.wire.baskets.top.shelves...........148x51x104.cm <dbl> …
## $ short_description_Frames.clothes.rails.shelving.units...........148x51x173.cm <dbl> …
## $ short_description_Glass.door.cabinet.with.3.drawers...........90x197.cm <dbl> …
## $ short_description_Glass.door.cabinet.with.plinth...........121x37x134.cm <dbl> …
## $ short_description_Glass.door.cabinet.with.plinth...........81x37x134.cm <dbl> …
## $ short_description_Glass.door.cabinet...........103x48x141.cm <dbl> …
## $ short_description_Glass.door.cabinet...........121x35x123.cm <dbl> …
## $ short_description_Glass.door.cabinet...........43x163.cm <dbl> …
## $ short_description_Glass.door.cabinet...........57x150.cm <dbl> …
## $ short_description_Glass.door.cabinet...........60x40x186.cm <dbl> …
## $ short_description_Glass.door.cabinet...........80x190.cm <dbl> …
## $ short_description_Glass.door.cabinet...........81x113.cm <dbl> …
## $ short_description_Glass.door.cabinet...........96x214.cm <dbl> …
## $ short_description_Headboard.with.storage.compartment...........140.cm <dbl> …
## $ short_description_Headboard.with.storage.compartment...........90.cm <dbl> …
## $ short_description_High.back.armchair <dbl> …
## $ short_description_High.cabinet.with.drawer.and.doors...........45x172.cm <dbl> …
## $ short_description_High.cabinet.with.smart.lock...........45x172.cm <dbl> …
## $ short_description_Highchair.with.safety.belt <dbl> …
## $ short_description_Highchair.with.tray <dbl> …
## $ short_description_Hook.for.post...........7x5x3.cm.2.pack <dbl> …
## $ short_description_Insert.with.door...........33x33.cm <dbl> …
## $ short_description_Insert.with.mirror.door...........33x33.cm <dbl> …
## $ short_description_Junior.chair <dbl> …
## $ short_description_Junior.highchair <dbl> …
## $ short_description_Junior.highchair.with.tray <dbl> …
## $ short_description_Kitchen.island...........72x52.cm <dbl> …
## $ short_description_Laptop.stand...........35x65.cm <dbl> …
## $ short_description_Laptop.support <dbl> …
## $ short_description_Laptop.support...........42x31.cm <dbl> …
## $ short_description_Laptop.table...........100x36.cm <dbl> …
## $ short_description_Leg <dbl> …
## $ short_description_Lounger..outdoor <dbl> …
## $ short_description_Media.storage.combination...........180x42x191.cm <dbl> …
## $ short_description_Media.storage.combination...........220x42x251.cm <dbl> …
## $ short_description_Media.storage.combination...........280x42x191.cm <dbl> …
## $ short_description_Media.storage.combination...........300x42x131.cm <dbl> …
## $ short_description_Media.storage.combination...........300x42x221.cm <dbl> …
## $ short_description_Media.storage.combination...........320x42x241.cm <dbl> …
## $ short_description_Mesh.basket...........25x51x15.cm <dbl> …
## $ short_description_Mesh.basket...........38x60x14.cm <dbl> …
## $ short_description_Mesh.basket...........50x51x15.cm <dbl> …
## $ short_description_Modular.chest.of.2.drawers...........40x45.cm <dbl> …
## $ short_description_Modular.chest.of.2.drawers...........80x45.cm <dbl> …
## $ short_description_Modular.chest.of.3.drawers...........40x68.cm <dbl> …
## $ short_description_Modular.chest.of.3.drawers...........80x68.cm <dbl> …
## $ short_description_Modular.chest.of.drawers...........40x45.cm <dbl> …
## $ short_description_Modular.corner.sofa.3.seat..outdoor <dbl> …
## $ short_description_Modular.corner.sofa.3.seat..outdoor...........143.223x80x84.cm <dbl> …
## $ short_description_Modular.corner.sofa.3.seat.sofa.bed <dbl> …
## $ short_description_Modular.corner.sofa.4.seat..outdoor <dbl> …
## $ short_description_Office.chair.with.armrests <dbl> …
## $ short_description_One.seat.section..outdoor <dbl> …
## $ short_description_Open.wardrobe.with.sliding.door...........120x123.cm <dbl> …
## $ short_description_Open.wardrobe.with.sliding.door...........120x186.cm <dbl> …
## $ short_description_Open.wardrobe...........79x44x187.cm <dbl> …
## $ short_description_Open.wardrobe...........80x123.cm <dbl> …
## $ short_description_Open.wardrobe...........99x37x130.cm <dbl> …
## $ short_description_Padded.seat.cover.for.highchair <dbl> …
## $ short_description_Padded.seat.cover.for.junior.chair <dbl> …
## $ short_description_Pair.of.armrests <dbl> …
## $ short_description_Pegboard.combination...........36x56.cm <dbl> …
## $ short_description_Platform..armchair <dbl> …
## $ short_description_Plinth...........121x37x12.cm <dbl> …
## $ short_description_Plinth...........81x37x12.cm <dbl> …
## $ short_description_Rack.for.kitchen.island <dbl> …
## $ short_description_Recliner <dbl> …
## $ short_description_Reclining.chair..outdoor <dbl> …
## $ short_description_Rocking.chair <dbl> …
## $ short_description_Seat.module <dbl> …
## $ short_description_Seat.module.with.backrest <dbl> …
## $ short_description_Seat.shell.for.highchair <dbl> …
## $ short_description_Shelf.insert <dbl> …
## $ short_description_Shelf.unit...........29x88.cm <dbl> …
## $ short_description_Shelf.unit...........80x120.cm <dbl> …
## $ short_description_Shelving.unit.in.outdoor...........80x81.cm <dbl> …
## $ short_description_Shelving.unit.w.cabinets.drawers...........134x30x179.cm <dbl> …
## $ short_description_Shelving.unit.w.cabinets.drawers...........219x30x226.cm <dbl> …
## $ short_description_Shelving.unit.w.shelves.rails.cover...........89x50x179.cm <dbl> …
## $ short_description_Shelving.unit.with.10.inserts...........182x182.cm <dbl> …
## $ short_description_Shelving.unit.with.2.cabinets...........171x37.cm <dbl> …
## $ short_description_Shelving.unit.with.2.cabinets...........171x37x161.cm <dbl> …
## $ short_description_Shelving.unit.with.2.inserts...........42x147.cm <dbl> …
## $ short_description_Shelving.unit.with.4.inserts...........147x112.cm <dbl> …
## $ short_description_Shelving.unit.with.4.inserts...........147x147.cm <dbl> …
## $ short_description_Shelving.unit.with.4.inserts...........77x147.cm <dbl> …
## $ short_description_Shelving.unit.with.8.inserts...........147x147.cm <dbl> …
## $ short_description_Shelving.unit.with.cabinet...........251x37x161.cm <dbl> …
## $ short_description_Shelving.unit.with.cabinet...........80x37x161.cm <dbl> …
## $ short_description_Shelving.unit.with.cabinets...........170x40x110.cm <dbl> …
## $ short_description_Shelving.unit.with.cabinets...........170x40x190.cm <dbl> …
## $ short_description_Shelving.unit.with.cabinets...........85x40x110.cm <dbl> …
## $ short_description_Shelving.unit.with.clothes.rail...........174x50x179.cm <dbl> …
## $ short_description_Shelving.unit.with.clothes.rail...........174x50x226.cm <dbl> …
## $ short_description_Shelving.unit.with.clothes.rail...........89x50x226.cm <dbl> …
## $ short_description_Shelving.unit.with.clothes.rail...........99x51x173.cm <dbl> …
## $ short_description_Shelving.unit.with.cover...........60x27x140.cm <dbl> …
## $ short_description_Shelving.unit.with.cover...........60x27x74.cm <dbl> …
## $ short_description_Shelving.unit.with.doors...........77x147.cm <dbl> …
## $ short_description_Shelving.unit...........100x136.cm <dbl> …
## $ short_description_Shelving.unit...........100x175.cm <dbl> …
## $ short_description_Shelving.unit...........100x93.cm <dbl> …
## $ short_description_Shelving.unit...........100x95.cm <dbl> …
## $ short_description_Shelving.unit...........112x147.cm <dbl> …
## $ short_description_Shelving.unit...........121x134.cm <dbl> …
## $ short_description_Shelving.unit...........127x41x85.cm <dbl> …
## $ short_description_Shelving.unit...........147x147.cm <dbl> …
## $ short_description_Shelving.unit...........182x182.cm <dbl> …
## $ short_description_Shelving.unit...........182x51x160.cm <dbl> …
## $ short_description_Shelving.unit...........202.cm <dbl> …
## $ short_description_Shelving.unit...........234x55x110.cm <dbl> …
## $ short_description_Shelving.unit...........254x40x110.cm <dbl> …
## $ short_description_Shelving.unit...........254x40x190.cm <dbl> …
## $ short_description_Shelving.unit...........254x55x190.cm <dbl> …
## $ short_description_Shelving.unit...........25x51x70.cm <dbl> …
## $ short_description_Shelving.unit...........45x181.cm <dbl> …
## $ short_description_Shelving.unit...........46x150.cm <dbl> …
## $ short_description_Shelving.unit...........51x136.cm <dbl> …
## $ short_description_Shelving.unit...........51x175.cm <dbl> …
## $ short_description_Shelving.unit...........65x40x190.cm <dbl> …
## $ short_description_Shelving.unit...........65x55x110.cm <dbl> …
## $ short_description_Shelving.unit...........77x147.cm <dbl> …
## $ short_description_Shelving.unit...........77x77.cm <dbl> …
## $ short_description_Shelving.unit...........80x38x160.cm <dbl> …
## $ short_description_Shelving.unit...........85x40x190.cm <dbl> …
## $ short_description_Shelving.unit...........85x55x110.cm <dbl> …
## $ short_description_Shelving.unit...........85x55x190.cm <dbl> …
## $ short_description_Shelving.unit...........89x30x124.cm <dbl> …
## $ short_description_Shelving.unit...........89x30x179.cm <dbl> …
## $ short_description_Shelving.unit...........89x50x179.cm <dbl> …
## $ short_description_Shelving.unit...........92x36x94.cm <dbl> …
## $ short_description_Shelving.units.with.covers...........180x27x74.cm <dbl> …
## $ short_description_Side.table...........50x35.cm <dbl> …
## $ short_description_Sideboard.basic.unit...........145x92.cm <dbl> …
## $ short_description_Sideboard...........145x87.cm <dbl> …
## $ short_description_Sideboard...........157x88.cm <dbl> …
## $ short_description_Sofa.bed.module <dbl> …
## $ short_description_Sofa.bed.module.with.backrests <dbl> …
## $ short_description_Sofa.bed.with.side.table...........120.cm <dbl> …
## $ short_description_Sofa.bed.with.side.table...........90.cm <dbl> …
## $ short_description_Sofa.bed.with.triple.cushion <dbl> …
## $ short_description_Sofa.bed...........120.cm <dbl> …
## $ short_description_Sofa.bed...........90.cm <dbl> …
## $ short_description_Standing.desk <dbl> …
## $ short_description_Step.stool <dbl> …
## $ short_description_Step.stool...........50.cm <dbl> …
## $ short_description_Stool <dbl> …
## $ short_description_Stool.frame <dbl> …
## $ short_description_Stool...........45.cm <dbl> …
## $ short_description_Stool..outdoor <dbl> …
## $ short_description_Stool.side.table..in.outdoor...........56x41x43.cm <dbl> …
## $ short_description_Stor.baskets.changing.tbl.set.of.4 <dbl> …
## $ short_description_Storage.bench <dbl> …
## $ short_description_Storage.bench.w.towel.rail.4.hooks...........64x37x173.cm <dbl> …
## $ short_description_Storage.box.with.castors...........62x62x35.cm <dbl> …
## $ short_description_Storage.box...........42x30x10.cm <dbl> …
## $ short_description_Storage.box...........42x30x23.cm <dbl> …
## $ short_description_Storage.box..outdoor...........129x44x79.cm <dbl> …
## $ short_description_Storage.case...........55x51x18.cm <dbl> …
## $ short_description_Storage.case...........69x55x19.cm <dbl> …
## $ short_description_Storage.comb.w.6.doors.3.drawers...........420x42x241.cm <dbl> …
## $ short_description_Storage.comb.w.sliding.glass.doors...........243x47x212.cm <dbl> …
## $ short_description_Storage.comb.w.sliding.glass.doors...........283x37x134.cm <dbl> …
## $ short_description_Storage.combination.w.doors.drawers...........120x42x240.cm <dbl> …
## $ short_description_Storage.combination.w.doors.drawers...........188x197.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........162x37x134.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........243x37x134.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........243x47x212.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........81x47x212.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........120x40x128.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........120x42x192.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........160x35x190.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........203x47x212.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........60x22x202.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........60x42x193.cm <dbl> …
## $ short_description_Storage.combination.w.sliding.doors...........320x120.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........120x40x192.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........120x42x202.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........135x47x192.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........180x40x74.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........180x42x112.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........180x42x74.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........276x214.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........45x47x167.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........45x47x67.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........45x47x92.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........81x47x212.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........90x47x167.cm <dbl> …
## $ short_description_Storage.combination.with.drawers...........160x160.cm <dbl> …
## $ short_description_Storage.combination...........130x117.cm <dbl> …
## $ short_description_Storage.combination...........130x82.cm <dbl> …
## $ short_description_Storage.combination...........140x142.cm <dbl> …
## $ short_description_Storage.combination...........140x82.cm <dbl> …
## $ short_description_Storage.combination...........151x36x175.cm <dbl> …
## $ short_description_Storage.combination...........160x120.cm <dbl> …
## $ short_description_Storage.combination...........162x37x134.cm <dbl> …
## $ short_description_Storage.combination...........180x163.cm <dbl> …
## $ short_description_Storage.combination...........200x36x175.cm <dbl> …
## $ short_description_Storage.combination...........200x36x93.cm <dbl> …
## $ short_description_Storage.combination...........202x36x175.cm <dbl> …
## $ short_description_Storage.combination...........25x25x50.cm <dbl> …
## $ short_description_Storage.combination...........25x75.cm <dbl> …
## $ short_description_Storage.combination...........35x70.cm <dbl> …
## $ short_description_Storage.combination...........44x30x91.cm <dbl> …
## $ short_description_Storage.combination...........46x30x145.cm <dbl> …
## $ short_description_Storage.combination...........46x30x94.cm <dbl> …
## $ short_description_Storage.combination...........60x92.cm <dbl> …
## $ short_description_Storage.combination...........70x117.cm <dbl> …
## $ short_description_Storage.combination...........80x42x301.cm <dbl> …
## $ short_description_Storage.combination...........81x47x212.cm <dbl> …
## $ short_description_Storage.combination...........94x44x52.cm <dbl> …
## $ short_description_Storage.combination...........94x44x91.cm <dbl> …
## $ short_description_Storage.combination...........95x127.cm <dbl> …
## $ short_description_Storage.combination...........95x35.cm <dbl> …
## $ short_description_Storage.combination...........95x92.cm <dbl> …
## $ short_description_Storage.combination...........99x44x56.cm <dbl> …
## $ short_description_Storage.combination...........99x44x94.cm <dbl> …
## $ short_description_Storage.stool <dbl> …
## $ short_description_Storage.stool...........45.cm <dbl> …
## $ short_description_Storage.unit.on.castors...........41x101.cm <dbl> …
## $ short_description_Storage.unit.on.castors...........41x61.cm <dbl> …
## $ short_description_Storage.unit.on.castors...........61x101.cm <dbl> …
## $ short_description_Storage.unit.on.legs...........41x101.cm <dbl> …
## $ short_description_Storage.unit.on.legs...........41x61.cm <dbl> …
## $ short_description_Storage.unit.on.legs...........61x101.cm <dbl> …
## $ short_description_Storage.unit.with.foldable.table...........80x30.104x155.cm <dbl> …
## $ short_description_Storage.unit.with.smart.lock...........41x101.cm <dbl> …
## $ short_description_Storage.unit.with.smart.lock...........41x61.cm <dbl> …
## $ short_description_Storage.unit.with.smart.lock...........61x101.cm <dbl> …
## $ short_description_Storage.unit...........120x173.cm <dbl> …
## $ short_description_Storage.unit...........36x70.cm <dbl> …
## $ short_description_Supporting.stand..outdoor <dbl> …
## $ short_description_Suspension.rail...........35.cm <dbl> …
## $ short_description_Suspension.rail...........70.cm <dbl> …
## $ short_description_Table.leg.with.storage...........58x70.cm <dbl> …
## $ short_description_Tablet.stand...........25x25.cm <dbl> …
## $ short_description_Three.seat.sofa <dbl> …
## $ short_description_Three.seat.sofa.bed <dbl> …
## $ short_description_Top.and.plinth...........40x47.cm <dbl> …
## $ short_description_Toy.storage.with.wheels...........60x50x64.cm <dbl> …
## $ short_description_Tray.stand...........37x50x74.cm <dbl> …
## $ short_description_Trestle...........70x60.cm <dbl> …
## $ short_description_Trolley...........54x18x71.cm <dbl> …
## $ short_description_TV.bench.with.doors.and.drawers...........240x42x74.cm <dbl> …
## $ short_description_TV.bench.with.doors...........120x42x74.cm <dbl> …
## $ short_description_TV.bench.with.doors...........180x42x38.cm <dbl> …
## $ short_description_TV.bench.with.drawers...........120x42x48.cm <dbl> …
## $ short_description_TV.bench.with.drawers...........180x42x74.cm <dbl> …
## $ short_description_TV.bench.with.plinth...........160x62x47.cm <dbl> …
## $ short_description_TV.bench.with.sliding.doors...........160x48x59.cm <dbl> …
## $ short_description_TV.bench...........100x36x53.cm <dbl> …
## $ short_description_TV.bench...........120x36x62.cm <dbl> …
## $ short_description_TV.bench...........120x36x85.cm <dbl> …
## $ short_description_TV.bench...........120x40x38.cm <dbl> …
## $ short_description_TV.bench...........120x40x48.cm <dbl> …
## $ short_description_TV.bench...........120x40x64.cm <dbl> …
## $ short_description_TV.bench...........120x41x53.cm <dbl> …
## $ short_description_TV.bench...........120x42x44.cm <dbl> …
## $ short_description_TV.bench...........120x42x53.cm <dbl> …
## $ short_description_TV.bench...........145x49x45.cm <dbl> …
## $ short_description_TV.bench...........149x55x35.cm <dbl> …
## $ short_description_TV.bench...........160x40x50.cm <dbl> …
## $ short_description_TV.bench...........160x42x44.cm <dbl> …
## $ short_description_TV.bench...........160x42x45.cm <dbl> …
## $ short_description_TV.bench...........160x42x53.cm <dbl> …
## $ short_description_TV.bench...........160x42x54.cm <dbl> …
## $ short_description_TV.bench...........160x47x60.cm <dbl> …
## $ short_description_TV.bench...........180x40x38.cm <dbl> …
## $ short_description_TV.bench...........180x40x48.cm <dbl> …
## $ short_description_TV.bench...........180x40x64.cm <dbl> …
## $ short_description_TV.bench...........180x41x49.cm <dbl> …
## $ short_description_TV.bench...........180x42x39.cm <dbl> …
## $ short_description_TV.bench...........90x40x38.cm <dbl> …
## $ short_description_TV.storage.combination...........145x49.cm <dbl> …
## $ short_description_TV.storage.combination...........180x41x190.cm <dbl> …
## $ short_description_TV.storage.combination...........200x41x95.cm <dbl> …
## $ short_description_TV.storage.combination...........202x36x175.cm <dbl> …
## $ short_description_TV.storage.combination...........240x42x230.cm <dbl> …
## $ short_description_TV.storage.combination...........250x36x95.cm <dbl> …
## $ short_description_TV.storage.combination...........258x41x190.cm <dbl> …
## $ short_description_TV.storage.combination...........258x41x95.cm <dbl> …
## $ short_description_TV.storage.combination...........282x47x212.cm <dbl> …
## $ short_description_TV.storage.combination...........300x36x175.cm <dbl> …
## $ short_description_TV.storage.combination...........331x214.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........180x40x192.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........240x40x128.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........240x40x230.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........240x42x128.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........240x42x129.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........240x42x190.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........240x42x230.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........276x41x95.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........300x42x193.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........320x41x190.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........322x47x212.cm <dbl> …
## $ short_description_TV.storage.unit...........183x39x147.cm <dbl> …
## $ short_description_Two.seat.sofa <dbl> …
## $ short_description_Two.seat.sofa.bed <dbl> …
## $ short_description_U.shaped.sofa..6.seat <dbl> …
## $ short_description_Underbed.with.storage...........90x200.cm <dbl> …
## $ short_description_Underframe <dbl> …
## $ short_description_Underframe.for.chair.with.armrests <dbl> …
## $ short_description_Underframe...........35x25x10.cm <dbl> …
## $ short_description_Underframe...........35x35x10.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........105x35x120.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........105x35x70.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........175x35x210.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........175x35x70.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........180x42x64.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........35x35x35.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........50x25x50.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........70x35x105.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........80x35x210.cm <dbl> …
## $ short_description_Wall.mounted.drop.leaf.table...........74x60.cm <dbl> …
## $ short_description_Wall.mounted.shelf.combination...........193x25x176.cm <dbl> …
## $ short_description_Wall.mounted.shelf.combination...........86x25x176.cm <dbl> …
## $ short_description_Wall.mounted.shelving.unit.w.4.comp...........70x35x70.cm <dbl> …
## $ short_description_Wall.mounted.shelving.unit...........35x25x35.cm <dbl> …
## $ short_description_Wall.mounted.shelving.unit...........35x35x35.cm <dbl> …
## $ short_description_Wall.mounted.storage.combination...........105x35x70.cm <dbl> …
## $ short_description_Wall.mounted.storage.combination...........130x35x176.cm <dbl> …
## $ short_description_Wall.mounted.storage.combination...........193x35x176.cm <dbl> …
## $ short_description_Wall.mounted.storage.combination...........297x35x176.cm <dbl> …
## $ short_description_Wall.mounted.storage.combination...........70x25x175.cm <dbl> …
## $ short_description_Wall.mounted.storage.combination...........86x35x176.cm <dbl> …
## $ short_description_Wall.mounted.workspace.combination...........150x35x176.cm <dbl> …
## $ short_description_Wall.mounted.workspace.combination...........213x35x176.cm <dbl> …
## $ short_description_Wall.mounted.workspace.combination...........233x35x176.cm <dbl> …
## $ short_description_Wall.mounted.workspace.combination...........86x35x176.cm <dbl> …
## $ short_description_Wall.cabinet.with.2.doors...........60x22x128.cm <dbl> …
## $ short_description_Wall.cabinet.with.2.drawers...........35x35x35.cm <dbl> …
## $ short_description_Wall.cabinet.with.glass.door...........35x25x35.cm <dbl> …
## $ short_description_Wall.cabinet.with.glass.door...........35x35x35.cm <dbl> …
## $ short_description_Wall.panel.gate.leg.table..outdoor...........80x62x158.cm <dbl> …
## $ short_description_Wall.shelf.unit...........30x190.cm <dbl> …
## $ short_description_Wall.storage...........240x42x40.cm <dbl> …
## $ short_description_Wall.storage...........93x30.cm <dbl> …
## $ short_description_Wall.storage...........99x21x30.cm <dbl> …
## $ short_description_Wall.storage...........99x30.cm <dbl> …
## $ short_description_Wall.upright.mesh.baskets...........65x41x197.cm <dbl> …
## $ short_description_Wall.upright.shelves...........132x41x199.cm <dbl> …
## $ short_description_Wall.upright.shelves...........176x41x197.cm <dbl> …
## $ short_description_Wall.upright.shelves...........189x41x85.cm <dbl> …
## $ short_description_Wall.upright.shelves...........190x41x87.cm <dbl> …
## $ short_description_Wall.upright.shelves...........46x41x197.cm <dbl> …
## $ short_description_Wall.upright.shelves...........66x61x197.cm <dbl> …
## $ short_description_Wall.upright.shelves...........86x41x197.cm <dbl> …
## $ short_description_Wall.upright.shelves...........86x41x85.cm <dbl> …
## $ short_description_Wall.upright.shelves.drying.rack...........132x41x199.cm <dbl> …
## $ short_description_Wall.upright.shelves.drying.rack...........132x61x197.cm <dbl> …
## $ short_description_Wall.upright.shelves.drying.rack...........66x61x197.cm <dbl> …
## $ short_description_Wall.upright.shelves.rod...........132x41x197.cm <dbl> …
## $ short_description_Wall.upright.shelves.rod...........132x41x199.cm <dbl> …
## $ short_description_Wall.upright.shelves.rod...........66x41x197.cm <dbl> …
## $ short_description_Wardrobe.combination...........100x60x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........150x44x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........150x58x201.cm <dbl> …
## $ short_description_Wardrobe.combination...........150x58x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........150x60x201.cm <dbl> …
## $ short_description_Wardrobe.combination...........150x60x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........150x66x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........200x38x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........200x44x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........200x60x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........300x60x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........375x58x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........75x60x201.cm <dbl> …
## $ short_description_Wardrobe.w.10.doors...........380x42x221.cm <dbl> …
## $ short_description_Wardrobe.w.6.doors...........140x42x241.cm <dbl> …
## $ short_description_Wardrobe.with.2.doors...........78x190.cm <dbl> …
## $ short_description_Wardrobe.with.2.doors...........79x176.cm <dbl> …
## $ short_description_Wardrobe.with.2.doors.3.drawers...........300x57x241.cm <dbl> …
## $ short_description_Wardrobe.with.2.doors.3.drawers...........80x42x221.cm <dbl> …
## $ short_description_Wardrobe.with.2.sliding.doors...........120x197.cm <dbl> …
## $ short_description_Wardrobe.with.3.doors...........117x190.cm <dbl> …
## $ short_description_Wardrobe.with.3.doors...........140x42x161.cm <dbl> …
## $ short_description_Wardrobe.with.6.drawers...........140x42x241.cm <dbl> …
## $ short_description_Wardrobe.with.7.doors.6.drawers...........300x42x201.cm <dbl> …
## $ short_description_Wardrobe.with.9.doors...........260x42x221.cm <dbl> …
## $ short_description_Wardrobe.with.9.doors...........300x57x271.cm <dbl> …
## $ short_description_Wardrobe.with.shoe.shelf...........80x42x191.cm <dbl> …
## $ short_description_Wardrobe.with.storage.bench...........150x50x192.cm <dbl> …
## $ short_description_Wardrobe...........100x35x236.cm <dbl> …
## $ short_description_Wardrobe...........100x38x236.cm <dbl> …
## $ short_description_Wardrobe...........100x60x201.cm <dbl> …
## $ short_description_Wardrobe...........100x60x236.cm <dbl> …
## $ short_description_Wardrobe...........120x50x192.cm <dbl> …
## $ short_description_Wardrobe...........120x60x191.cm <dbl> …
## $ short_description_Wardrobe...........122x59x216.cm <dbl> …
## $ short_description_Wardrobe...........140x57x261.cm <dbl> …
## $ short_description_Wardrobe...........150x38x236.cm <dbl> …
## $ short_description_Wardrobe...........150x44x236.cm <dbl> …
## $ short_description_Wardrobe...........150x58x201.cm <dbl> …
## $ short_description_Wardrobe...........150x60x201.cm <dbl> …
## $ short_description_Wardrobe...........150x60x236.cm <dbl> …
## $ short_description_Wardrobe...........150x66x201.cm <dbl> …
## $ short_description_Wardrobe...........150x66x236.cm <dbl> …
## $ short_description_Wardrobe...........195.220x57x241.cm <dbl> …
## $ short_description_Wardrobe...........200x44x236.cm <dbl> …
## $ short_description_Wardrobe...........200x58x201.cm <dbl> …
## $ short_description_Wardrobe...........200x60x201.cm <dbl> …
## $ short_description_Wardrobe...........200x60x236.cm <dbl> …
## $ short_description_Wardrobe...........200x66x236.cm <dbl> …
## $ short_description_Wardrobe...........220x57x231.cm <dbl> …
## $ short_description_Wardrobe...........240x57x231.cm <dbl> …
## $ short_description_Wardrobe...........240x61x281.cm <dbl> …
## $ short_description_Wardrobe...........250x60x201.cm <dbl> …
## $ short_description_Wardrobe...........250x60x236.cm <dbl> …
## $ short_description_Wardrobe...........250x66x236.cm <dbl> …
## $ short_description_Wardrobe...........276x211x236.cm <dbl> …
## $ short_description_Wardrobe...........300x58x201.cm <dbl> …
## $ short_description_Wardrobe...........300x60x201.cm <dbl> …
## $ short_description_Wardrobe...........300x60x236.cm <dbl> …
## $ short_description_Wardrobe...........340x42x241.cm <dbl> …
## $ short_description_Wardrobe...........50x38x236.cm <dbl> …
## $ short_description_Wardrobe...........50x60x201.cm <dbl> …
## $ short_description_Wardrobe...........60x50x128.cm <dbl> …
## $ short_description_Wardrobe...........60x50x192.cm <dbl> …
## $ short_description_Wardrobe...........60x51x178.cm <dbl> …
## $ short_description_Wardrobe...........63x59x216.cm <dbl> …
## $ short_description_Wardrobe...........74x51x149.cm <dbl> …
## $ short_description_Wardrobe...........75x60x201.cm <dbl> …
## $ short_description_Wardrobe...........75x60x236.cm <dbl> …
## $ short_description_Wardrobe...........79x61x202.cm <dbl> …
## $ short_description_Wardrobe...........80x139.cm <dbl> …
## $ short_description_Wardrobe...........80x50x171.cm <dbl> …
## $ short_description_Wardrobe...........80x50x187.cm <dbl> …
## $ short_description_Wardrobe...........88x58x208.cm <dbl> …
## $ short_description_Wardrobe...........95.120x42x181.cm <dbl> …
## $ short_description_Wire.basket...........25x51x15.cm <dbl> …
## $ designer_X102.945.11.It.s.easy.to.keep.the.cables.from.your.TV.and.other.devices.out.of.sight.but.close.at.hand..as.there.are.several.cable.outlets.at.the.back.of.the.TV.bench.You.can.choose.to.stand.the.TV.bench.on.the.floor.or.mount.it.on.the.wall.to.free.up.floor.space.If.you.want.to.organise.inside.you.can.complement.with.BESTÅ.interior.fittings.Steady.also.on.uneven.floors..thanks.to.the.adjustable.feet.This.furniture.must.be.fixed.to.the.wall.with.the.enclosed.wall.fastener.This.TV.bench.can.take.a.max.load.of.50.kg.on.the.top.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.May.be.completed.with.STALLARP..STUBBARP.or.NANNARP.legs..This.TV.bench.requires.4.legs.and.1.BESTÅ.supporting.leg.May.be.completed.with.SULARP.legs..This.TV.bench.requires.2.legs.and.1.BESTÅ.supporting.leg. <dbl> …
## $ designer_X102.998.77.It.s.easy.to.keep.the.cables.from.your.TV.and.other.devices.out.of.sight.but.close.at.hand..as.there.are.several.cable.outlets.at.the.back.of.the.TV.bench.If.you.want.to.organise.inside.you.can.complement.with.BESTÅ.interior.fittings.Steady.also.on.uneven.floors..thanks.to.the.adjustable.feet.For.safety.reasons.this.TV.bench.shall.not.be.hung.on.the.wall.This.furniture.must.be.fixed.to.the.wall.with.the.enclosed.wall.fastener.This.TV.bench.can.take.a.max.load.of.50.kg.on.the.top.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.May.be.completed.with.STALLARP..STUBBARP.or.NANNARP.legs..This.TV.bench.requires.4.legs.and.2.BESTÅ.supporting.legs.May.be.completed.with.SULARP.legs..This.TV.bench.requires.2.legs.and.2.BESTÅ.supporting.legs. <dbl> …
## $ designer_X104.114.40.This.waterproof.storage.box.protects.your.outdoor.pads.and.cushions.from.rain..sun..dirt..dust.and.pollen.and.helps.you.keep.them.organised.when.they.re.not.being.used.Protecting.your.outdoor.pads.and.cushions.in.a.waterproof.storage.box.is.a.simple.and.effective.way.to.make.them.look.new.and.fresh.longer.The.colour.stays.fresh.for.longer.as.the.fabric.is.fade.resistant..Handles.make.it.easy.to.move.Make.sure.the.cushions.are.completely.dry.before.storing.them.away.in.the.storage.box.During.the.off.season..store.the.box.filled.with.cushions.in.a.cool.dry.place.indoors.The.storage.box.is.light.in.weight..so.you.may.need.to.fill.it.to.keep.it.from.moving.around.in.the.wind.For.example..the.storage.box.can.be.filled.with.3.seat.cushions.and.3.back.cushions.for.outdoor.sofas.and.4.decorative.cushions.For.example..the.storage.box.can.be.filled.with.6.seat.back.cushions.and.6.decorative.cushions.For.example..the.storage.box.can.be.filled.with.2.seat.cushions.and.2.back.cushions.for.outdoor.sofas..2.chair.cushions.for.armchairs.and.2.4.decorative.cushions. <dbl> …
## $ designer_X104.691.86.The.sofa.is.packaged.in.a.space.efficient.way..making.it.easy.to.transport.and.carry.into.your.home.You.can.store.remote.controls.and.other.smaller.items.in.the.practical.pockets.on.the.sides.of.the.armrests. <dbl> …
## $ designer_X104.710.85.The.chair.legs.are.made.of.solid.wood..which.is.a.durable.natural.material.You.sit.comfortably.thanks.to.the.high.back.and.seat.with.polyester.wadding.For.increased.stability..re.tighten.the.screws.about.two.weeks.after.assembly.and.when.necessary.This.chair.has.been.tested.for.home.use.and.meets.the.requirements.for.durability.and.safety..set.forth.in.the.following.standards..EN.12520.and.EN.1022. <dbl> …
## $ designer_X204.099.36.Choose.whether.you.want.to.place.it.vertically.or.horizontally.and.use.it.as.a.shelf.or.sideboard.This.furniture.must.be.fixed.to.the.wall.with.the.enclosed.wall.fastener.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.Two.persons.are.needed.for.the.assembly.of.this.furniture.May.be.completed.with.KALLAX.insert..sold.separately. <dbl> …
## $ designer_X204.262.76.Solid.oak.is.a.hardwearing.natural.material.which.gives.a.warm..natural.feeling.Wood.is.a.natural.living.material..and.variations.in.the.grain..colour.and.texture.makes.each.piece.of.wood.furniture.unique.Each.piece.of.furniture.is.unique.as.it.is.handmade.For.maximum.quality..re.tighten.the.screws.when.necessary. <dbl> …
## $ designer_X301.150.66.You.sit.comfortably.thanks.to.the.chair.s.shaped.back.and.seat.You.can.hang.the.chair.on.a.hook.on.the.wall.to.save.space.You.can.fold.the.chair..so.it.takes.less.space.when.you.re.not.using.it.The.chair.is.available.in.different.colours...choose.your.favourite.or.mix.This.chair.has.been.tested.for.home.use.and.meets.the.requirements.for.durability.and.safety..set.forth.in.the.following.standards..EN.12520.and.EN.1022. <dbl> …
## $ designer_X304.289.15.A.simple.unit.can.be.enough.storage.for.a.limited.space.or.the.foundation.for.a.larger.storage.solution.if.your.needs.change.You.can.choose.to.place.the.cabinet.on.the.floor.or.mount.it.on.the.wall.to.free.up.floor.space.You.can.create.your.own.unique.solution.by.freely.combining.cabinets.of.different.sizes..with.or.without.doors.and.drawers.The.drawers.have.integrated.push.openers..so.you.don.t.need.knobs.or.handles.and.can.open.the.drawer.with.just.a.light.push.Must.be.completed.with.EKET.suspension.rail.if.you.choose.to.mount.the.frame.on.the.wall..This.frame.requires.1.suspension.rail..35.cm.long..sold.separately.To.be.completed.with.feet..legs.or.plinth.if.you.choose.to.place.the.cabinet.on.the.floor..Sold.separately.The.max.load.for.a.wall.hung.cabinet.depends.on.the.wall.material. <dbl> …
## $ designer_X304.510.67 <dbl> …
## $ designer_X304.662.81.Fits.in.TROFAST.frames.Can.be.stacked.when.completed.with.a.lid.May.be.completed.with.TROFAST.lid. <dbl> …
## $ designer_X402.998.85.It.s.easy.to.keep.the.cables.from.your.TV.and.other.devices.out.of.sight.but.close.at.hand..as.there.are.several.cable.outlets.at.the.back.of.the.TV.bench.If.you.want.to.organise.inside.you.can.complement.with.BESTÅ.interior.fittings.Steady.also.on.uneven.floors..thanks.to.the.adjustable.feet.For.safety.reasons.this.TV.bench.shall.not.be.hung.on.the.wall.The.TV.bench.must.be.fixed.to.the.wall.with.the.included.wall.fastener.This.TV.bench.can.take.a.max.load.of.50.kg.on.the.top.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.May.be.completed.with.STALLARP..STUBBARP.or.NANNARP.legs..This.TV.bench.requires.4.legs.and.1.BESTÅ.supporting.leg.May.be.completed.with.SULARP.legs..This.TV.bench.requires.2.legs.and.1.BESTÅ.supporting.leg. <dbl> …
## $ designer_X402.998.90.It.s.easy.to.keep.the.cables.from.your.TV.and.other.devices.out.of.sight.but.close.at.hand..as.there.are.several.cable.outlets.at.the.back.of.the.TV.bench.If.you.want.to.organise.inside.you.can.complement.with.BESTÅ.interior.fittings.Steady.also.on.uneven.floors..thanks.to.the.adjustable.feet.For.safety.reasons.this.TV.bench.shall.not.be.hung.on.the.wall.The.TV.bench.must.be.fixed.to.the.wall.with.the.included.wall.fastener.This.TV.bench.can.take.a.max.load.of.50.kg.on.the.top.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.May.be.completed.with.STALLARP..STUBBARP.or.NANNARP.legs..This.TV.bench.requires.4.legs.and.1.BESTÅ.supporting.leg.May.be.completed.with.SULARP.legs..This.TV.bench.requires.2.legs.and.1.BESTÅ.supporting.leg. <dbl> …
## $ designer_X403.193.98.The.high.back.gives.good.support.for.your.neck.and.head. <dbl> …
## $ designer_X404.262.75.Solid.wood.is.a.hardwearing.natural.material.Handmade.by.skilled.craftspeople..which.makes.every.product.unique.in.design.and.size.For.increased.stability..re.tighten.the.screws.about.two.weeks.after.assembly.and.when.necessary.Seats.4.6. <dbl> …
## $ designer_X404.662.85.Fits.in.TROFAST.frames.Can.be.stacked.when.completed.with.a.lid.May.be.completed.with.TROFAST.lid. <dbl> …
## $ designer_X500.583.76.Rattan.is.a.natural.material.which.ages.beautifully.and.develops.its.own.unique.character.over.time.Handwoven..each.piece.of.furniture.is.unique.Stackable.chair..saves.space.when.not.in.use.Plastic.feet..protect.the.furniture.if.in.contact.with.a.moist.surface.May.be.completed.with.NORNA.chair.pad.for.enhanced.seating.comfort. <dbl> …
## $ designer_X502.638.38.Shallow.shelves.help.you.to.use.small.wall.spaces.effectively.by.accommodating.small.items.in.a.minimum.of.space.Adjustable.shelves..adapt.space.between.shelves.according.to.your.needs.A.simple.unit.can.be.enough.storage.for.a.limited.space.or.the.foundation.for.a.larger.storage.solution.if.your.needs.change.This.furniture.must.be.fixed.to.the.wall.with.the.enclosed.wall.fastener.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.Min..ceiling.height.required..205.cm.1.fixed.shelf.and.4.adjustable.shelves.included.May.be.completed.with.BILLY.corner.fitting.to.form.a.stable.corner.unit.May.be.completed.with.BILLY.height.extension.unit.in.the.same.width.for.added.storage.vertically.May.be.completed.with.doors..available.in.different.colours.and.designs. <dbl> …
## $ designer_X504.224.94.You.can.position.the.shelf.and.clothes.rail.in.two.different.ways...clothes.rail.at.the.top.and.shelf.down.below..or.both.together.at.the.top.of.the.wardrobe.Deep.enough.to.hold.standard.sized.adult.hangers.With.the.included.colourful.stickers..you.can.quickly.label.the.doors.in.your.own.personal.way.You.can.also.write.with.chalk.on.the.sticker.to.keep.track.of.where.you.have.your.things.WARNING..TIPPING.HAZARD...Unanchored.furniture.can.tip.over..This.furniture.shall.be.anchored.to.the.wall.with.the.enclosed.safety.fitting.to.prevent.it.from.tipping.over.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately. <dbl> …
## $ designer_X504.662.75.Fits.in.TROFAST.frames.Can.be.stacked.when.completed.with.a.lid.May.be.completed.with.TROFAST.lid. <dbl> …
## $ designer_X504.689.53.Small.and.easy.to.place.chair.bed.which.can.easily.be.converted.into.a.single.bed.The.storage.space.under.the.seat.has.room.for.bedlinen.or.other.things.Just.as.nice.to.look.at.from.all.sides...perfect.to.place.in.the.middle.of.the.room.or.use.as.a.room.divider.The.cushion.cover.is.easy.to.keep.clean.and.fresh..as.you.can.take.it.off.and.machine.wash.it.Easy.to.assemble.1.cushion.included. <dbl> …
## $ designer_X602.141.59.You.can.collect.cables.and.extension.leads.on.the.shelf.under.the.table.top..so.they.re.hidden.but.still.close.at.hand.Can.be.placed.in.the.middle.of.a.room.because.the.back.is.finished.You.can.mount.the.storage.unit.to.the.right.or.left..according.to.your.space.or.preference..Combines.with.other.furniture.in.the.MALM.series.May.be.completed.with.SUMMERA.drawer.insert.with.6.compartments.to.create.order.in.the.drawer. <dbl> …
## $ designer_X602.141.83.The.pull.out.panel.gives.you.an.extra.work.surface.You.can.collect.cables.and.extension.leads.on.the.shelf.under.the.table.top..so.they.re.hidden.but.still.close.at.hand.You.can.mount.the.pull.out.panel.to.the.left.or.right.according.to.your.needs.Can.be.placed.in.the.middle.of.a.room.because.the.back.is.finished.Combines.with.other.furniture.in.the.MALM.series. <dbl> …
## $ designer_X702.453.39.Can.be.placed.in.the.middle.of.a.room.because.the.back.is.finished.The.high.gloss.surfaces.reflect.light.and.give.a.vibrant.look. <dbl> …
## $ designer_X702.842.03.A.sofa.bed.with.small..neat.dimensions.which.is.easy.to.furnish.with..even.when.space.is.limited.Readily.converts.into.a.bed.Fixed.cover. <dbl> …
## $ designer_X702.945.08.It.s.easy.to.keep.the.cables.from.your.TV.and.other.devices.out.of.sight.but.close.at.hand..as.there.are.several.cable.outlets.at.the.back.of.the.TV.bench.You.can.choose.to.stand.the.TV.bench.on.the.floor.or.mount.it.on.the.wall.to.free.up.floor.space.If.you.want.to.organise.inside.you.can.complement.with.BESTÅ.interior.fittings.Steady.also.on.uneven.floors..thanks.to.the.adjustable.feet.This.furniture.must.be.fixed.to.the.wall.with.the.enclosed.wall.fastener.This.TV.bench.can.take.a.max.load.of.50.kg.on.the.top.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.May.be.completed.with.STALLARP..STUBBARP.or.NANNARP.legs..This.TV.bench.requires.4.legs.and.2.BESTÅ.supporting.legs.May.be.completed.with.SULARP.legs..This.TV.bench.requires.2.legs.and.2.BESTÅ.supporting.legs. <dbl> …
## $ designer_X702.998.79.It.s.easy.to.keep.the.cables.from.your.TV.and.other.devices.out.of.sight.but.close.at.hand..as.there.are.several.cable.outlets.at.the.back.of.the.TV.bench.If.you.want.to.organise.inside.you.can.complement.with.BESTÅ.interior.fittings.Steady.also.on.uneven.floors..thanks.to.the.adjustable.feet.For.safety.reasons.this.TV.bench.shall.not.be.hung.on.the.wall.This.furniture.must.be.fixed.to.the.wall.with.the.enclosed.wall.fastener.This.TV.bench.can.take.a.max.load.of.50.kg.on.the.top.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.May.be.completed.with.STALLARP..STUBBARP.or.NANNARP.legs..This.TV.bench.requires.4.legs.and.2.BESTÅ.supporting.legs.May.be.completed.with.SULARP.legs..This.TV.bench.requires.2.legs.and.2.BESTÅ.supporting.legs. <dbl> …
## $ designer_X704.510.65 <dbl> …
## $ designer_X803.086.75.This.product.has.been.developed.and.tested.for.domestic.use.To.be.completed.with.LEIFARNE.or.SVENBERTIL.seat.shell. <dbl> …
## $ designer_X804.046.72.You.sit.comfortably.thanks.to.the.restful.flexibility.of.the.seat.You.sit.comfortably.thanks.to.the.padded.seat.This.chair.has.been.tested.for.home.use.and.meets.the.requirements.for.durability.and.safety..set.forth.in.the.following.standards..EN.12520.and.EN.1022. <dbl> …
## $ designer_X804.334.86.Perfect.height.for.small.children..They.can.easily.reach.and.find.things.on.their.own.With.the.included.colourful.stickers..you.can.quickly.label.the.drawers.in.your.own.personal.way.You.can.also.write.with.chalk.on.the.sticker.to.keep.track.of.where.you.have.your.things.WARNING..TIPPING.HAZARD...Unanchored.furniture.can.tip.over..This.furniture.shall.be.anchored.to.the.wall.with.the.enclosed.safety.fitting.to.prevent.it.from.tipping.over.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately. <dbl> …
## $ designer_X902.952.53.Cable.outlets.make.it.easy.to.lead.cables.out.the.back..so.they.re.hidden.from.view.but.close.at.hand.when.you.need.them.The.large.drawer.makes.it.easy.to.keep.remote.controls..game.controllers.and.other.TV.accessories.organised.Behind.the.doors..there.s.plenty.of.extra.storage.space.to.help.keep.your.living.room.organised.A.floor.standing.TV.bench.must.be.fixed.to.the.wall.with.the.included.wall.fastener.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.Push.openers.included.1.fixed.shelf.and.3.adjustable.shelves.included. <dbl> …
## $ designer_A.Fredriksson.J.Hultqvist.W.Chong <dbl> …
## $ designer_Andreas.Fredriksson <dbl> …
## $ designer_Anna.Palleschitz <dbl> …
## $ designer_C.Halskov.H.Dalsgaard <dbl> …
## $ designer_C.Styrbjörn.M.Axelsson <dbl> …
## $ designer_Carina.Bengs <dbl> …
## $ designer_Carl.Öjerstam <dbl> …
## $ designer_Carl.Öjerstam.IKEA.of.Sweden <dbl> …
## $ designer_Carl.Öjerstam.Marcus.Arvonen.IKEA.of.Sweden <dbl> …
## $ designer_Chenyi.Ke <dbl> …
## $ designer_Chris.Martin <dbl> …
## $ designer_David.Wahl <dbl> …
## $ designer_Ebba.Strandmark <dbl> …
## $ designer_Ebba.Strandmark.Ehlén.Johansson.IKEA.of.Sweden <dbl> …
## $ designer_Ebba.Strandmark.IKEA.of.Sweden <dbl> …
## $ designer_Ehlén.Johansson <dbl> …
## $ designer_Ehlén.Johansson.Ebba.Strandmark.IKEA.of.Sweden <dbl> …
## $ designer_Ehlén.Johansson.Ebba.Strandmark.Ola.Wihlborg.IKEA.of.Sweden <dbl> …
## $ designer_Ehlén.Johansson.Francis.Cayouette <dbl> …
## $ designer_Ehlén.Johansson.IKEA.of.Sweden <dbl> …
## $ designer_Ehlén.Johansson.IKEA.of.Sweden.K.Hagberg.M.Hagberg <dbl> …
## $ designer_Ehlén.Johansson.K.Hagberg.M.Hagberg.IKEA.of.Sweden <dbl> …
## $ designer_Ehlén.Johansson.Ola.Wihlborg.IKEA.of.Sweden <dbl> …
## $ designer_Elizabet.Gutierrez <dbl> …
## $ designer_Eva.Lilja.Löwenhielm <dbl> …
## $ designer_Eva.Lilja.Löwenhielm.IKEA.of.Sweden <dbl> …
## $ designer_Eva.Lilja.Löwenhielm.IKEA.of.Sweden.Jonas.Hultqvist <dbl> …
## $ designer_Eva.Lilja.Löwenhielm.IKEA.of.Sweden.Nike.Karlsson <dbl> …
## $ designer_Eva.Lilja.Löwenhielm.K.Hagberg.M.Hagberg.IKEA.of.Sweden <dbl> …
## $ designer_Eva.Lilja.Löwenhielm.K.Malmvall.E.Lilja.Löwenhielm <dbl> …
## $ designer_Eva.Schildt <dbl> …
## $ designer_Francis.Cayouette <dbl> …
## $ designer_Francis.Cayouette.Ehlén.Johansson <dbl> …
## $ designer_Francis.Cayouette.Ehlén.Johansson.IKEA.of.Sweden <dbl> …
## $ designer_Francis.Cayouette.Eva.Lilja.Löwenhielm <dbl> …
## $ designer_Fredriksson.L.Löwenhielm.Hilland <dbl> …
## $ designer_Fredriksson.L.Löwenhielm.Hilland.IKEA.of.Sweden <dbl> …
## $ designer_Gillis.Lundgren <dbl> …
## $ designer_Gillis.Lundgren.IKEA.of.Sweden <dbl> …
## $ designer_Gillis.Lundgren.IKEA.of.Sweden.K.Hagberg.M.Hagberg <dbl> …
## $ designer_Gillis.Lundgren.K.Hagberg.M.Hagberg <dbl> …
## $ designer_Gillis.Lundgren.K.Hagberg.M.Hagberg.IKEA.of.Sweden <dbl> …
## $ designer_Gustav.Carlberg <dbl> …
## $ designer_Henrik.Preutz <dbl> …
## $ designer_Henrik.Preutz.IKEA.of.Sweden <dbl> …
## $ designer_IKEA.of.Sweden <dbl> …
## $ designer_IKEA.of.Sweden.A.Fredriksson.J.Hultqvist.W.Chong <dbl> …
## $ designer_IKEA.of.Sweden.Andreas.Fredriksson.Ehlén.Johansson <dbl> …
## $ designer_IKEA.of.Sweden.Carl.Öjerstam <dbl> …
## $ designer_IKEA.of.Sweden.David.Wahl.Lisa.Hilland <dbl> …
## $ designer_IKEA.of.Sweden.E.Strandmark <dbl> …
## $ designer_IKEA.of.Sweden.Ebba.Strandmark <dbl> …
## $ designer_IKEA.of.Sweden.Ebba.Strandmark.Ehlén.Johansson <dbl> …
## $ designer_IKEA.of.Sweden.Ehlén.Johansson <dbl> …
## $ designer_IKEA.of.Sweden.Ehlén.Johansson.Andreas.Fredriksson <dbl> …
## $ designer_IKEA.of.Sweden.Ehlén.Johansson.Francis.Cayouette <dbl> …
## $ designer_IKEA.of.Sweden.Ehlén.Johansson.K.Hagberg.M.Hagberg <dbl> …
## $ designer_IKEA.of.Sweden.Ehlén.Johansson.Ola.Wihlborg <dbl> …
## $ designer_IKEA.of.Sweden.Eva.Lilja.Löwenhielm <dbl> …
## $ designer_IKEA.of.Sweden.Eva.Lilja.Löwenhielm.K.Hagberg.M.Hagberg <dbl> …
## $ designer_IKEA.of.Sweden.Francis.Cayouette <dbl> …
## $ designer_IKEA.of.Sweden.Francis.Cayouette.Ehlén.Johansson <dbl> …
## $ designer_IKEA.of.Sweden.Fredriksson.L.Löwenhielm.Hilland <dbl> …
## $ designer_IKEA.of.Sweden.Gillis.Lundgren <dbl> …
## $ designer_IKEA.of.Sweden.Henrik.Preutz <dbl> …
## $ designer_IKEA.of.Sweden.Jon.Karlsson <dbl> …
## $ designer_IKEA.of.Sweden.Jonas.Hultqvist <dbl> …
## $ designer_IKEA.of.Sweden.K.Hagberg.M.Hagberg <dbl> …
## $ designer_IKEA.of.Sweden.K.Hagberg.M.Hagberg.Ehlén.Johansson <dbl> …
## $ designer_IKEA.of.Sweden.Karl.Malmvall <dbl> …
## $ designer_IKEA.of.Sweden.L.Hilland <dbl> …
## $ designer_IKEA.of.Sweden.L.Hilland.Lisa.Hilland <dbl> …
## $ designer_IKEA.of.Sweden.Marcus.Arvonen <dbl> …
## $ designer_IKEA.of.Sweden.Marcus.Arvonen.Carl.Öjerstam <dbl> …
## $ designer_IKEA.of.Sweden.Nike.Karlsson.Eva.Lilja.Löwenhielm <dbl> …
## $ designer_IKEA.of.Sweden.Noboru.Nakamura <dbl> …
## $ designer_IKEA.of.Sweden.Ola.Wihlborg <dbl> …
## $ designer_IKEA.of.Sweden.Ola.Wihlborg.Ehlén.Johansson <dbl> …
## $ designer_IKEA.of.Sweden.Ola.Wihlborg.Ehlén.Johansson.Ebba.Strandmark <dbl> …
## $ designer_IKEA.of.Sweden.Sarah.Fager <dbl> …
## $ designer_IKEA.of.Sweden.Tord.Björklund <dbl> …
## $ designer_J.Asshoff.H.Brogård <dbl> …
## $ designer_J.Fritzdorf.J.Feldman.J.Hedberg <dbl> …
## $ designer_J.Karlsson.N.Karlsson <dbl> …
## $ designer_J.Karlsson.W.Chong <dbl> …
## $ designer_J.Löfgren.J.Pettersson <dbl> …
## $ designer_Johan.Kroon <dbl> …
## $ designer_Johanna.Asshoff <dbl> …
## $ designer_John.Jonas.Petrus.Paul.Caroline <dbl> …
## $ designer_Jon.Karlsson <dbl> …
## $ designer_Jon.Karlsson.IKEA.of.Sweden <dbl> …
## $ designer_Jonas.Hultqvist <dbl> …
## $ designer_Jonas.Hultqvist.IKEA.of.Sweden <dbl> …
## $ designer_Jonas.Hultqvist.IKEA.of.Sweden.Eva.Lilja.Löwenhielm <dbl> …
## $ designer_Jooyeon.Lee <dbl> …
## $ designer_K.Hagberg.M.Hagberg <dbl> …
## $ designer_K.Hagberg.M.Hagberg.Ehlén.Johansson.IKEA.of.Sweden <dbl> …
## $ designer_K.Hagberg.M.Hagberg.Gillis.Lundgren <dbl> …
## $ designer_K.Hagberg.M.Hagberg.IKEA.of.Sweden <dbl> …
## $ designer_K.Malmvall.E.Lilja.Löwenhielm <dbl> …
## $ designer_Karl.Malmvall <dbl> …
## $ designer_L.Hilland.J.Karlsson <dbl> …
## $ designer_Lars.Norinder <dbl> …
## $ designer_Lisa.Hilland.David.Wahl.IKEA.of.Sweden <dbl> …
## $ designer_Lisa.Hilland.IKEA.of.Sweden.David.Wahl <dbl> …
## $ designer_Lisa.Norinder <dbl> …
## $ designer_M.Kjelstrup.A.Östgaard <dbl> …
## $ designer_Maja.Ganszyniec <dbl> …
## $ designer_Marcus.Arvonen <dbl> …
## $ designer_Marcus.Arvonen.Carl.Öjerstam.IKEA.of.Sweden <dbl> …
## $ designer_Marcus.Arvonen.IKEA.of.Sweden <dbl> …
## $ designer_Maria.Vinka <dbl> …
## $ designer_Mia.Lagerman <dbl> …
## $ designer_Mikael.Axelsson <dbl> …
## $ designer_Mikael.Warnhammar <dbl> …
## $ designer_Monika.Mulder <dbl> …
## $ designer_Nicholai.Wiig.Hansen <dbl> …
## $ designer_Niels.Gammelgaard <dbl> …
## $ designer_Nike.Karlsson <dbl> …
## $ designer_Nike.Karlsson.IKEA.of.Sweden <dbl> …
## $ designer_Nike.Karlsson.IKEA.of.Sweden.Eva.Lilja.Löwenhielm <dbl> …
## $ designer_Noboru.Nakamura <dbl> …
## $ designer_Ola.Wihlborg <dbl> …
## $ designer_Ola.Wihlborg.Ehlén.Johansson.IKEA.of.Sweden <dbl> …
## $ designer_Ola.Wihlborg.IKEA.of.Sweden <dbl> …
## $ designer_Olle.Lundberg <dbl> …
## $ designer_S.Fager.J.Jelinek <dbl> …
## $ designer_Sarah.Fager <dbl> …
## $ designer_Sarah.Fager.IKEA.of.Sweden <dbl> …
## $ designer_Studio.Copenhagen <dbl> …
## $ designer_T.Christensen.K.Legaard <dbl> …
## $ designer_T.Winkel.T.Jacobsen <dbl> …
## $ designer_Thomas.Sandell <dbl> …
## $ designer_Tina.Christensen <dbl> …
## $ designer_Tom.Dixon <dbl> …
## $ designer_Tord.Björklund <dbl> …
## $ designer_Tord.Björklund.IKEA.of.Sweden <dbl> …
## $ designer_Virgil.Abloh <dbl> …
## $ depth_X2 <dbl> …
## $ depth_X3 <dbl> …
## $ depth_X4 <dbl> …
## $ depth_X5 <dbl> …
## $ depth_X6 <dbl> …
## $ depth_X12 <dbl> …
## $ depth_X13 <dbl> …
## $ depth_X16 <dbl> …
## $ depth_X17 <dbl> …
## $ depth_X18 <dbl> …
## $ depth_X20 <dbl> …
## $ depth_X21 <dbl> …
## $ depth_X22 <dbl> …
## $ depth_X23 <dbl> …
## $ depth_X24 <dbl> …
## $ depth_X25 <dbl> …
## $ depth_X26 <dbl> …
## $ depth_X27 <dbl> …
## $ depth_X28 <dbl> …
## $ depth_X29 <dbl> …
## $ depth_X30 <dbl> …
## $ depth_X31 <dbl> …
## $ depth_X32 <dbl> …
## $ depth_X33 <dbl> …
## $ depth_X34 <dbl> …
## $ depth_X35 <dbl> …
## $ depth_X36 <dbl> …
## $ depth_X37 <dbl> …
## $ depth_X38 <dbl> …
## $ depth_X39 <dbl> …
## $ depth_X40 <dbl> …
## $ depth_X41 <dbl> …
## $ depth_X42 <dbl> …
## $ depth_X43 <dbl> …
## $ depth_X44 <dbl> …
## $ depth_X45 <dbl> …
## $ depth_X46 <dbl> …
## $ depth_X47 <dbl> …
## $ depth_X48 <dbl> …
## $ depth_X49 <dbl> …
## $ depth_X50 <dbl> …
## $ depth_X51 <dbl> …
## $ depth_X52 <dbl> …
## $ depth_X53 <dbl> …
## $ depth_X54 <dbl> …
## $ depth_X55 <dbl> …
## $ depth_X56 <dbl> …
## $ depth_X57 <dbl> …
## $ depth_X58 <dbl> …
## $ depth_X59 <dbl> …
## $ depth_X60 <dbl> …
## $ depth_X61 <dbl> …
## $ depth_X62 <dbl> …
## $ depth_X63 <dbl> …
## $ depth_X64 <dbl> …
## $ depth_X65 <dbl> …
## $ depth_X66 <dbl> …
## $ depth_X67 <dbl> …
## $ depth_X68 <dbl> …
## $ depth_X69 <dbl> …
## $ depth_X70 <dbl> …
## $ depth_X72 <dbl> …
## $ depth_X73 <dbl> …
## $ depth_X74 <dbl> …
## $ depth_X75 <dbl> …
## $ depth_X76 <dbl> …
## $ depth_X78 <dbl> …
## $ depth_X79 <dbl> …
## $ depth_X80 <dbl> …
## $ depth_X81 <dbl> …
## $ depth_X82 <dbl> …
## $ depth_X83 <dbl> …
## $ depth_X84 <dbl> …
## $ depth_X85 <dbl> …
## $ depth_X86 <dbl> …
## $ depth_X87 <dbl> …
## $ depth_X88 <dbl> …
## $ depth_X89 <dbl> …
## $ depth_X90 <dbl> …
## $ depth_X92 <dbl> …
## $ depth_X93 <dbl> …
## $ depth_X94 <dbl> …
## $ depth_X95 <dbl> …
## $ depth_X96 <dbl> …
## $ depth_X97 <dbl> …
## $ depth_X98 <dbl> …
## $ depth_X99 <dbl> …
## $ depth_X100 <dbl> …
## $ depth_X101 <dbl> …
## $ depth_X105 <dbl> …
## $ depth_X106 <dbl> …
## $ depth_X108 <dbl> …
## $ depth_X112 <dbl> …
## $ depth_X113 <dbl> …
## $ depth_X120 <dbl> …
## $ depth_X144 <dbl> …
## $ depth_X151 <dbl> …
## $ depth_X157 <dbl> …
## $ depth_X158 <dbl> …
## $ depth_X159 <dbl> …
## $ depth_X160 <dbl> …
## $ depth_X163 <dbl> …
## $ depth_X164 <dbl> …
## $ depth_X210 <dbl> …
## $ depth_X249 <dbl> …
## $ depth_X252 <dbl> …
## $ depth_X257 <dbl> …
## $ height_X3 <dbl> …
## $ height_X4 <dbl> …
## $ height_X7 <dbl> …
## $ height_X8 <dbl> …
## $ height_X9 <dbl> …
## $ height_X10 <dbl> …
## $ height_X12 <dbl> …
## $ height_X13 <dbl> …
## $ height_X14 <dbl> …
## $ height_X15 <dbl> …
## $ height_X16 <dbl> …
## $ height_X18 <dbl> …
## $ height_X19 <dbl> …
## $ height_X20 <dbl> …
## $ height_X21 <dbl> …
## $ height_X23 <dbl> …
## $ height_X25 <dbl> …
## $ height_X26 <dbl> …
## $ height_X27 <dbl> …
## $ height_X29 <dbl> …
## $ height_X30 <dbl> …
## $ height_X32 <dbl> …
## $ height_X33 <dbl> …
## $ height_X35 <dbl> …
## $ height_X36 <dbl> …
## $ height_X38 <dbl> …
## $ height_X39 <dbl> …
## $ height_X40 <dbl> …
## $ height_X42 <dbl> …
## $ height_X43 <dbl> …
## $ height_X44 <dbl> …
## $ height_X45 <dbl> …
## $ height_X46 <dbl> …
## $ height_X47 <dbl> …
## $ height_X48 <dbl> …
## $ height_X49 <dbl> …
## $ height_X50 <dbl> …
## $ height_X51 <dbl> …
## $ height_X52 <dbl> …
## $ height_X53 <dbl> …
## $ height_X54 <dbl> …
## $ height_X55 <dbl> …
## $ height_X56 <dbl> …
## $ height_X57 <dbl> …
## $ height_X59 <dbl> …
## $ height_X60 <dbl> …
## $ height_X61 <dbl> …
## $ height_X62 <dbl> …
## $ height_X63 <dbl> …
## $ height_X64 <dbl> …
## $ height_X65 <dbl> …
## $ height_X66 <dbl> …
## $ height_X67 <dbl> …
## $ height_X68 <dbl> …
## $ height_X69 <dbl> …
## $ height_X70 <dbl> …
## $ height_X71 <dbl> …
## $ height_X72 <dbl> …
## $ height_X73 <dbl> …
## $ height_X74 <dbl> …
## $ height_X75 <dbl> …
## $ height_X76 <dbl> …
## $ height_X77 <dbl> …
## $ height_X78 <dbl> …
## $ height_X79 <dbl> …
## $ height_X80 <dbl> …
## $ height_X81 <dbl> …
## $ height_X82 <dbl> …
## $ height_X83 <dbl> …
## $ height_X84 <dbl> …
## $ height_X85 <dbl> …
## $ height_X86 <dbl> …
## $ height_X87 <dbl> …
## $ height_X88 <dbl> …
## $ height_X89 <dbl> …
## $ height_X90 <dbl> …
## $ height_X91 <dbl> …
## $ height_X92 <dbl> …
## $ height_X93 <dbl> …
## $ height_X94 <dbl> …
## $ height_X95 <dbl> …
## $ height_X96 <dbl> …
## $ height_X97 <dbl> …
## $ height_X99 <dbl> …
## $ height_X100 <dbl> …
## $ height_X101 <dbl> …
## $ height_X102 <dbl> …
## $ height_X103 <dbl> …
## $ height_X104 <dbl> …
## $ height_X105 <dbl> …
## $ height_X106 <dbl> …
## $ height_X107 <dbl> …
## $ height_X108 <dbl> …
## $ height_X109 <dbl> …
## $ height_X110 <dbl> …
## $ height_X111 <dbl> …
## $ height_X112 <dbl> …
## $ height_X113 <dbl> …
## $ height_X114 <dbl> …
## $ height_X116 <dbl> …
## $ height_X117 <dbl> …
## $ height_X118 <dbl> …
## $ height_X119 <dbl> …
## $ height_X120 <dbl> …
## $ height_X122 <dbl> …
## $ height_X123 <dbl> …
## $ height_X124 <dbl> …
## $ height_X126 <dbl> …
## $ height_X128 <dbl> …
## $ height_X129 <dbl> …
## $ height_X130 <dbl> …
## $ height_X131 <dbl> …
## $ height_X133 <dbl> …
## $ height_X134 <dbl> …
## $ height_X136 <dbl> …
## $ height_X139 <dbl> …
## $ height_X140 <dbl> …
## $ height_X141 <dbl> …
## $ height_X142 <dbl> …
## $ height_X144 <dbl> …
## $ height_X145 <dbl> …
## $ height_X146 <dbl> …
## $ height_X147 <dbl> …
## $ height_X149 <dbl> …
## $ height_X150 <dbl> …
## $ height_X155 <dbl> …
## $ height_X158 <dbl> …
## $ height_X159 <dbl> …
## $ height_X160 <dbl> …
## $ height_X161 <dbl> …
## $ height_X162 <dbl> …
## $ height_X163 <dbl> …
## $ height_X165 <dbl> …
## $ height_X167 <dbl> …
## $ height_X170 <dbl> …
## $ height_X171 <dbl> …
## $ height_X172 <dbl> …
## $ height_X173 <dbl> …
## $ height_X175 <dbl> …
## $ height_X176 <dbl> …
## $ height_X178 <dbl> …
## $ height_X179 <dbl> …
## $ height_X180 <dbl> …
## $ height_X181 <dbl> …
## $ height_X182 <dbl> …
## $ height_X186 <dbl> …
## $ height_X187 <dbl> …
## $ height_X190 <dbl> …
## $ height_X191 <dbl> …
## $ height_X192 <dbl> …
## $ height_X193 <dbl> …
## $ height_X197 <dbl> …
## $ height_X199 <dbl> …
## $ height_X200 <dbl> …
## $ height_X201 <dbl> …
## $ height_X202 <dbl> …
## $ height_X203 <dbl> …
## $ height_X207 <dbl> …
## $ height_X208 <dbl> …
## $ height_X210 <dbl> …
## $ height_X212 <dbl> …
## $ height_X214 <dbl> …
## $ height_X216 <dbl> …
## $ height_X220 <dbl> …
## $ height_X221 <dbl> …
## $ height_X226 <dbl> …
## $ height_X230 <dbl> …
## $ height_X231 <dbl> …
## $ height_X236 <dbl> …
## $ height_X237 <dbl> …
## $ height_X240 <dbl> …
## $ height_X241 <dbl> …
## $ height_X251 <dbl> …
## $ height_X261 <dbl> …
## $ height_X271 <dbl> …
## $ height_X281 <dbl> …
## $ height_X301 <dbl> …
## $ width_X3 <dbl> …
## $ width_X4 <dbl> …
## $ width_X5 <dbl> …
## $ width_X9 <dbl> …
## $ width_X15 <dbl> …
## $ width_X16 <dbl> …
## $ width_X18 <dbl> …
## $ width_X20 <dbl> …
## $ width_X22 <dbl> …
## $ width_X23 <dbl> …
## $ width_X24 <dbl> …
## $ width_X25 <dbl> …
## $ width_X27 <dbl> …
## $ width_X28 <dbl> …
## $ width_X29 <dbl> …
## $ width_X30 <dbl> …
## $ width_X33 <dbl> …
## $ width_X34 <dbl> …
## $ width_X35 <dbl> …
## $ width_X36 <dbl> …
## $ width_X37 <dbl> …
## $ width_X38 <dbl> …
## $ width_X39 <dbl> …
## $ width_X40 <dbl> …
## $ width_X41 <dbl> …
## $ width_X42 <dbl> …
## $ width_X43 <dbl> …
## $ width_X44 <dbl> …
## $ width_X45 <dbl> …
## $ width_X46 <dbl> …
## $ width_X47 <dbl> …
## $ width_X48 <dbl> …
## $ width_X49 <dbl> …
## $ width_X50 <dbl> …
## $ width_X51 <dbl> …
## $ width_X52 <dbl> …
## $ width_X53 <dbl> …
## $ width_X54 <dbl> …
## $ width_X55 <dbl> …
## $ width_X56 <dbl> …
## $ width_X57 <dbl> …
## $ width_X58 <dbl> …
## $ width_X59 <dbl> …
## $ width_X60 <dbl> …
## $ width_X61 <dbl> …
## $ width_X62 <dbl> …
## $ width_X63 <dbl> …
## $ width_X64 <dbl> …
## $ width_X65 <dbl> …
## $ width_X66 <dbl> …
## $ width_X67 <dbl> …
## $ width_X68 <dbl> …
## $ width_X69 <dbl> …
## $ width_X70 <dbl> …
## $ width_X71 <dbl> …
## $ width_X72 <dbl> …
## $ width_X73 <dbl> …
## $ width_X74 <dbl> …
## $ width_X75 <dbl> …
## $ width_X76 <dbl> …
## $ width_X77 <dbl> …
## $ width_X78 <dbl> …
## $ width_X79 <dbl> …
## $ width_X80 <dbl> …
## $ width_X81 <dbl> …
## $ width_X82 <dbl> …
## $ width_X83 <dbl> …
## $ width_X84 <dbl> …
## $ width_X85 <dbl> …
## $ width_X86 <dbl> …
## $ width_X87 <dbl> …
## $ width_X88 <dbl> …
## $ width_X89 <dbl> …
## $ width_X90 <dbl> …
## $ width_X92 <dbl> …
## $ width_X93 <dbl> …
## $ width_X94 <dbl> …
## $ width_X95 <dbl> …
## $ width_X96 <dbl> …
## $ width_X98 <dbl> …
## $ width_X99 <dbl> …
## $ width_X100 <dbl> …
## $ width_X103 <dbl> …
## $ width_X104 <dbl> …
## $ width_X105 <dbl> …
## $ width_X108 <dbl> …
## $ width_X110 <dbl> …
## $ width_X111 <dbl> …
## $ width_X112 <dbl> …
## $ width_X113 <dbl> …
## $ width_X114 <dbl> …
## $ width_X117 <dbl> …
## $ width_X118 <dbl> …
## $ width_X119 <dbl> …
## $ width_X120 <dbl> …
## $ width_X121 <dbl> …
## $ width_X122 <dbl> …
## $ width_X124 <dbl> …
## $ width_X126 <dbl> …
## $ width_X127 <dbl> …
## $ width_X128 <dbl> …
## $ width_X129 <dbl> …
## $ width_X130 <dbl> …
## $ width_X131 <dbl> …
## $ width_X132 <dbl> …
## $ width_X134 <dbl> …
## $ width_X135 <dbl> …
## $ width_X136 <dbl> …
## $ width_X137 <dbl> …
## $ width_X138 <dbl> …
## $ width_X140 <dbl> …
## $ width_X141 <dbl> …
## $ width_X142 <dbl> …
## $ width_X143 <dbl> …
## $ width_X144 <dbl> …
## $ width_X145 <dbl> …
## $ width_X146 <dbl> …
## $ width_X147 <dbl> …
## $ width_X148 <dbl> …
## $ width_X149 <dbl> …
## $ width_X150 <dbl> …
## $ width_X151 <dbl> …
## $ width_X153 <dbl> …
## $ width_X155 <dbl> …
## $ width_X157 <dbl> …
## $ width_X159 <dbl> …
## $ width_X160 <dbl> …
## $ width_X161 <dbl> …
## $ width_X162 <dbl> …
## $ width_X164 <dbl> …
## $ width_X165 <dbl> …
## $ width_X169 <dbl> …
## $ width_X170 <dbl> …
## $ width_X171 <dbl> …
## $ width_X172 <dbl> …
## $ width_X173 <dbl> …
## $ width_X174 <dbl> …
## $ width_X175 <dbl> …
## $ width_X176 <dbl> …
## $ width_X177 <dbl> …
## $ width_X178 <dbl> …
## $ width_X179 <dbl> …
## $ width_X180 <dbl> …
## $ width_X181 <dbl> …
## $ width_X182 <dbl> …
## $ width_X183 <dbl> …
## $ width_X186 <dbl> …
## $ width_X188 <dbl> …
## $ width_X189 <dbl> …
## $ width_X190 <dbl> …
## $ width_X192 <dbl> …
## $ width_X193 <dbl> …
## $ width_X196 <dbl> …
## $ width_X197 <dbl> …
## $ width_X198 <dbl> …
## $ width_X199 <dbl> …
## $ width_X200 <dbl> …
## $ width_X202 <dbl> …
## $ width_X203 <dbl> …
## $ width_X204 <dbl> …
## $ width_X205 <dbl> …
## $ width_X208 <dbl> …
## $ width_X210 <dbl> …
## $ width_X211 <dbl> …
## $ width_X212 <dbl> …
## $ width_X213 <dbl> …
## $ width_X218 <dbl> …
## $ width_X219 <dbl> …
## $ width_X220 <dbl> …
## $ width_X222 <dbl> …
## $ width_X223 <dbl> …
## $ width_X225 <dbl> …
## $ width_X227 <dbl> …
## $ width_X228 <dbl> …
## $ width_X229 <dbl> …
## $ width_X230 <dbl> …
## $ width_X231 <dbl> …
## $ width_X233 <dbl> …
## $ width_X234 <dbl> …
## $ width_X235 <dbl> …
## $ width_X240 <dbl> …
## $ width_X241 <dbl> …
## $ width_X242 <dbl> …
## $ width_X243 <dbl> …
## $ width_X245 <dbl> …
## $ width_X246 <dbl> …
## $ width_X247 <dbl> …
## $ width_X249 <dbl> …
## $ width_X250 <dbl> …
## $ width_X251 <dbl> …
## $ width_X252 <dbl> …
## $ width_X254 <dbl> …
## $ width_X257 <dbl> …
## $ width_X258 <dbl> …
## $ width_X259 <dbl> …
## $ width_X260 <dbl> …
## $ width_X261 <dbl> …
## $ width_X266 <dbl> …
## $ width_X267 <dbl> …
## $ width_X270 <dbl> …
## $ width_X271 <dbl> …
## $ width_X273 <dbl> …
## $ width_X275 <dbl> …
## $ width_X276 <dbl> …
## $ width_X277 <dbl> …
## $ width_X279 <dbl> …
## $ width_X280 <dbl> …
## $ width_X282 <dbl> …
## $ width_X283 <dbl> …
## $ width_X285 <dbl> …
## $ width_X287 <dbl> …
## $ width_X291 <dbl> …
## $ width_X294 <dbl> …
## $ width_X297 <dbl> …
## $ width_X298 <dbl> …
## $ width_X300 <dbl> …
## $ width_X303 <dbl> …
## $ width_X307 <dbl> …
## $ width_X318 <dbl> …
## $ width_X319 <dbl> …
## $ width_X320 <dbl> …
## $ width_X322 <dbl> …
## $ width_X326 <dbl> …
## $ width_X327 <dbl> …
## $ width_X328 <dbl> …
## $ width_X331 <dbl> …
## $ width_X336 <dbl> …
## $ width_X339 <dbl> …
## $ width_X340 <dbl> …
## $ width_X341 <dbl> …
## $ width_X344 <dbl> …
## $ width_X347 <dbl> …
## $ width_X349 <dbl> …
## $ width_X367 <dbl> …
## $ width_X368 <dbl> …
## $ width_X369 <dbl> …
## $ width_X375 <dbl> …
## $ width_X380 <dbl> …
## $ width_X387 <dbl> …
## $ width_X420 <dbl> …
## $ sellable_online <fct> …
xgboost_spec <-
boost_tree(trees = tune())%>%
set_mode("classification") %>%
set_engine("xgboost")
xgboost_workflow <-
workflow() %>%
add_recipe(xgboost_recipe) %>%
add_model(xgboost_spec)
doParallel::registerDoParallel()
set.seed(31899)
xgboost_tune <-
tune_grid(xgboost_workflow,
resamples = ikea_cv,
grid = 5,
control = control_grid(save_pred = TRUE))
## → A | warning: ! There are new levels in `name`: "KYRRE", "FÖRSIKTIG", "NIKKEBY", "BRUSEN",
## "KNARREVIK", and "NORBERG".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## → B | warning: ! There are new levels in `old_price`: "SR 2,880", "SR 27", "SR 657", "SR 438",
## "SR 446", "SR 557", "SR 340", "SR 1,395", "SR 75", "SR 570", "SR 1,125", "SR
## 1,295", "SR 1,600", "SR 6,785", "SR 535", "SR 980", "SR 1,580", "SR 3,535",
## …, "SR 2,815", and "SR 1,735".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## → C | warning: ! There are new levels in `link`:
## "https://www.ikea.com/sa/en/p/franklin-bar-stool-with-backrest-foldable-black-black-60406785/",
## "https://www.ikea.com/sa/en/p/malm-bed-frame-high-w-2-storage-boxes-white-s79012991/",
## "https://www.ikea.com/sa/en/p/platsa-bed-frame-with-10-doors-white-s89305446/",
## "https://www.ikea.com/sa/en/p/slaekt-underbed-with-storage-white-s99239451/",
## "https://www.ikea.com/sa/en/p/slaekt-bed-frame-w-storage-slatted-bedbase-white-s29291956/",
## "https://www.ikea.com/sa/en/p/slaekt-bed-frame-with-3-storage-boxes-white-s89386070/",
## "https://www.ikea.com/sa/en/p/vallentuna-sofa-bed-module-hillared-dark-grey-s09149879/",
## "https://www.ikea.com/sa/en/p/vittsjoe-shelving-unit-black-brown-glass-90305803/",
## "https://www.ikea.com/sa/en/p/billy-bookcase-white-00263850/",
## "https://www.ikea.com/sa/en/p/jonaxel-shelving-unit-white-30419973/",
## "https://www.ikea.com/sa/en/p/billy-bookcase-white-80263832/",
## "https://www.ikea.com/sa/en/p/kolbjoern-cabinet-in-outdoor-beige-20345633/",
## "https://www.ikea.com/sa/en/p/vittsjoe-storage-combination-black-brown-glass-s59902658/",
## "https://www.ikea.com/sa/en/p/besta-storage-combination-with-doors-grey-stained-walnut-effect-kallviken-dark-grey-concrete-effect-s59206004/",
## "https://www.ikea.com/sa/en/p/billy-oxberg-bookcase-with-door-brown-ash-veneer-s29287389/",
## "https://www.ikea.com/sa/en/p/jonaxel-mesh-basket-white-20419964/",
## "https://www.ikea.com/sa/en/p/ivar-shelving-unit-pine-s89309722/",
## "https://www.ikea.com/sa/en/p/jonaxel-frames-clothes-rails-shelving-units-s09306204/",
## …,
## "https://www.ikea.com/sa/en/p/pax-wardrobe-white-auli-mirror-glass-s19306326/",
## and "https://www.ikea.com/sa/en/p/elvarli-2-sections-white-s49157565/".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## → D | warning: ! There are new levels in `short_description`: "Bed frame, high, w 2 storage
## boxes, 90x200 cm", "Bed frame with 10 doors, 143x244x223 cm", "Underbed with
## storage, 90x200 cm", "Bed frame w storage+slatted bedbase, 90x200 cm", "Bed
## frame with 3 storage boxes, 90x200 cm", "Sofa-bed module", "Shelving unit,
## 100x93 cm", "Bookcase, 80x28x202 cm", "Shelving unit, 25x51x70 cm",
## "Bookcase, 40x28x106 cm", "Cabinet in/outdoor, 90x161 cm", "Storage
## combination, 151x36x175 cm", "Mesh basket, 50x51x15 cm", "Shelving unit,
## 89x30x124 cm", "Frames/clothes rails/shelving units, 148x51x173 cm", "Cabinet
## with doors, 80x83 cm", "Wall-mounted shelving unit w 4 comp, 70x35x70 cm",
## "Bookcase, 200x30x106 cm", …, "2 sections, 125x55x216 cm", and "3 sections,
## 245x55x216 cm".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## → E | warning: ! There are new levels in `designer`: "C Styrbjörn/M Axelsson", "Lisa
## Norinder", "Nike Karlsson/IKEA of Sweden", and "Ehlén Johansson/Ebba
## Strandmark/IKEA of Sweden".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## → F | error: Names must be unique.
## ✖ These names are duplicated:
## * "short_description_Storage.combination.w.glass.doors...........162x37x134.cm" at locations 4449 and 4456.
## There were issues with some computations A: x1 B: x1 C: x1 D: x1 E: x…There were issues with some computations A: x3 B: x3 C: x3 D: x3 E: x…There were issues with some computations A: x6 B: x6 C: x6 D: x6 E: x…There were issues with some computations A: x10 B: x10 C: x10 D: x10 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → G | warning: ! There are new levels in `name`: "VITVAL", "SKUBB", "REGISSÖR", "TEODORES",
## "NOMINELL", "BALSBERGET", "RAST", "LERBERG", "SETSKOG", "MOSJÖ", "MOSTORP",
## and "PAX / FÄRVIK/AULI".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → H | warning: ! There are new levels in `old_price`: "SR 3,760", "SR 732", "SR 1,307", "SR
## 225", "SR 520", "SR 2,295", "SR 1,700", "SR 4,450", "SR 3,995", "SR 90", "SR
## 1,030", "SR 5,975", and "SR 2,270".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → I | warning: ! There are new levels in `link`:
## "https://www.ikea.com/sa/en/p/brimnes-bed-frame-w-storage-and-headboard-white-luroey-s49278341/",
## "https://www.ikea.com/sa/en/p/vitval-desk-top-white-40411410/",
## "https://www.ikea.com/sa/en/p/platsa-bed-frame-with-6-doors-12-drawers-white-fonnes-s09324284/",
## "https://www.ikea.com/sa/en/p/groenlid-corner-sofa-bed-5-seat-with-chaise-longue-ljungen-dark-red-s49278591/",
## "https://www.ikea.com/sa/en/p/vimle-3-seat-sofa-bed-with-open-end-tallmyra-black-grey-s39292465/",
## "https://www.ikea.com/sa/en/p/eket-cabinet-w-2-doors-and-2-shelves-white-30334605/",
## "https://www.ikea.com/sa/en/p/eket-cabinet-combination-with-legs-golden-brown-s79286434/",
## "https://www.ikea.com/sa/en/p/kallax-shelving-unit-black-brown-20409936/",
## "https://www.ikea.com/sa/en/p/hejne-4-sections-shelves-softwood-s49046978/",
## "https://www.ikea.com/sa/en/p/kallax-insert-with-door-white-20278167/",
## "https://www.ikea.com/sa/en/p/eket-cabinet-golden-brown-80373703/",
## "https://www.ikea.com/sa/en/p/besta-tv-bench-with-drawers-grey-stained-walnut-effect-lappviken-stubbarp-lappviken-light-grey-s59197981/",
## "https://www.ikea.com/sa/en/p/skubb-storage-case-white-90294989/",
## "https://www.ikea.com/sa/en/p/eket-cabinet-w-door-and-2-shelves-dark-grey-00344941/",
## "https://www.ikea.com/sa/en/p/billy-oxberg-bookcase-with-glass-door-white-glass-s29287445/",
## "https://www.ikea.com/sa/en/p/skubb-storage-case-black-30294987/",
## "https://www.ikea.com/sa/en/p/eket-wall-mounted-shelving-unit-white-s49285817/",
## "https://www.ikea.com/sa/en/p/algot-wall-upright-shelves-rod-white-s79276246/",
## …,
## "https://www.ikea.com/sa/en/p/pax-faervik-auli-wardrobe-combination-white-white-glass-mirror-glass-s99330515/",
## and
## "https://www.ikea.com/sa/en/p/pax-wardrobe-white-fjellhamar-light-bamboo-s29306302/".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → J | warning: ! There are new levels in `short_description`: "Bed frame w storage and
## headboard, 90x200 cm", "Desk top, 95x45 cm", "Bed frame with 6 doors+12
## drawers, 140x244x203 cm", "Cabinet w 2 doors and 2 shelves, 70x25x70 cm",
## "Shelving unit, 112x147 cm", "4 sections/shelves, 307x50x171 cm", "Insert
## with door, 33x33 cm", "Cabinet, 35x25x35 cm", "Storage case, 69x55x19 cm",
## "Cabinet w door and 2 shelves, 35x25x70 cm", "Bookcase with glass door,
## 40x30x237 cm", "Wall-mounted shelving unit, 35x35x35 cm", "Frame/mesh
## baskets/shelving units, 99x51x173 cm", "2 sections/shelves, 134x50x179 cm",
## "2 sections/shelves, 174x50x226 cm", "Shelving unit with cabinets, 85x40x110
## cm", "Wall-mounted shelf combination, 193x25x176 cm", "Cabinet with doors,
## 89x30x124 cm", …, "Wardrobe, 63x59x216 cm", and "Wardrobe combination,
## 375x58x236 cm".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → K | warning: ! There are new levels in `designer`: "204.099.36 Choose whether you want to
## place it vertically or horizontally and use it as a shelf or sideboard.This
## furniture must be fixed to the wall with the enclosed wall fastener.Different
## wall materials require different types of fixing devices. Use fixing devices
## suitable for the walls in your home, sold separately.Two persons are needed
## for the assembly of this furniture.May be completed with KALLAX insert, sold
## separately.", "Gillis Lundgren/K Hagberg/M Hagberg/IKEA of Sweden", "Olle
## Lundberg", "803.086.75 This product has been developed and tested for
## domestic use.To be completed with LEIFARNE or SVENBERTIL seat shell.",
## "902.952.53 Cable outlets make it easy to lead cables out the back, so
## they’re hidden from view but close at hand when you need them.The large
## drawer makes it easy to keep remote controls, game controllers and other TV
## accessories organised.Behind the doors, there’s plenty of extra storage space
## to help keep your living room organised.A floor-standing TV bench must be
## fixed to the wall with the included wall fastener.Different wall materials
## require different types of fixing devices. Use fixing devices suitable for
## the walls in your home, sold separately.Push openers included.1 fixed shelf
## and 3 adjustable shelves included.", and "IKEA of Sweden/Ehlén
## Johansson/Andreas Fredriksson".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → L | error: Names must be unique.
## ✖ These names are duplicated:
## * "short_description_Storage.combination.w.glass.doors...........162x37x134.cm" at locations 4472 and 4479.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → M | warning: ! There are new levels in `name`: "ALGOT / SKÅDIS", "BINGSTA", "LÅNGFJÄLL",
## "MÄSTERBY", "TOSTERÖ", "INNAMO", "ASKHOLMEN", "SALTHOLMEN", "BRÄDA",
## "LISABO", "KLEPPSTAD", and "PAX / VIKEDAL".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → N | warning: ! There are new levels in `old_price`: "SR 2,205", "SR 1,715", "SR 1,995", "SR
## 2,495", "SR 1,098", "SR 776", "SR 981", "SR 640", "SR 1,835", "SR 3,790", "SR
## 525", "SR 635", "SR 575", "SR 59", "SR 179", "SR 3,208", "SR 8,350", "SR
## 2,580", "SR 3,490", and "SR 2,090".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → O | warning: ! There are new levels in `link`:
## "https://www.ikea.com/sa/en/p/platsa-bed-frame-with-4-drawers-white-fonnes-s89326463/",
## "https://www.ikea.com/sa/en/p/brimnes-headboard-with-storage-compartment-white-20228709/",
## "https://www.ikea.com/sa/en/p/platsa-bed-frame-with-4-drawers-white-fonnes-s09302913/",
## "https://www.ikea.com/sa/en/p/flottebo-sofa-bed-vissle-dark-grey-s59297481/",
## "https://www.ikea.com/sa/en/p/flottebo-sofa-bed-vissle-purple-s69297471/",
## "https://www.ikea.com/sa/en/p/groenlid-2-seat-sofa-bed-section-ljungen-dark-red-s39277196/",
## "https://www.ikea.com/sa/en/p/kallax-shelf-insert-light-grey-20346072/",
## "https://www.ikea.com/sa/en/p/kolbjoern-cabinet-in-outdoor-beige-30409295/",
## "https://www.ikea.com/sa/en/p/eket-cabinet-w-2-doors-and-1-shelf-white-20333951/",
## "https://www.ikea.com/sa/en/p/besta-tv-bench-with-drawers-grey-stained-walnut-effect-lappviken-stallarp-grey-stained-walnut-eff-clear-glass-s59276266/",
## "https://www.ikea.com/sa/en/p/ivar-4-sections-shelves-pine-s09251348/",
## "https://www.ikea.com/sa/en/p/svalnaes-wall-mounted-storage-combination-bamboo-white-s59184441/",
## "https://www.ikea.com/sa/en/p/jonaxel-frame-mesh-baskets-shelving-units-s19297685/",
## "https://www.ikea.com/sa/en/p/eket-cabinet-w-door-and-1-shelf-white-90333938/",
## "https://www.ikea.com/sa/en/p/algot-wall-upright-shelves-rod-white-s09903820/",
## "https://www.ikea.com/sa/en/p/eket-wall-mounted-cabinet-combination-white-s99221026/",
## "https://www.ikea.com/sa/en/p/besta-tv-storage-combination-glass-doors-black-brown-selsviken-high-gloss-black-smoked-glass-s09300650/",
## "https://www.ikea.com/sa/en/p/algot-skadis-wall-upright-shelves-rod-s19276414/",
## …, "https://www.ikea.com/sa/en/p/elvarli-2-sections-white-bamboo-s39187822/",
## and
## "https://www.ikea.com/sa/en/p/pax-forsand-vikedal-wardrobe-combination-white-mirror-glass-s39329299/".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → P | warning: ! There are new levels in `short_description`: "Bed frame with 4 drawers,
## 140x244x163 cm", "Headboard with storage compartment, 140 cm", "Bed frame
## with 4 drawers, 142x244x43 cm", "Sofa-bed, 90 cm", "Shelf insert", "Cabinet w
## 2 doors and 1 shelf, 70x35x70 cm", "4 sections/shelves, 179x50x179 cm",
## "Wall-mounted storage combination, 297x35x176 cm", "Frame/mesh
## baskets/shelving units, 148x51x173 cm", "Cabinet w door and 1 shelf, 35x35x70
## cm", "Wall upright/shelves/rod, 66x41x197 cm", "Wall-mounted cabinet
## combination, 70x35x105 cm", "TV storage combination/glass doors, 300x42x193
## cm", "Frame/mesh baskets/clothes rails, 148x51x207 cm", "Glass-door cabinet
## with 3 drawers, 90x197 cm", "Sideboard, 145x87 cm", "Wall-mounted cabinet
## combination, 80x35x210 cm", "Cabinet combination with feet, 35x35x107 cm", …,
## "Wardrobe with 2 doors, 78x190 cm", and "Wardrobe combination, 75x60x201 cm".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → Q | warning: ! There are new levels in `designer`: "Carl Öjerstam/Marcus Arvonen/IKEA of
## Sweden", "Francis Cayouette/Eva Lilja Löwenhielm", "IKEA of Sweden/A
## Fredriksson/J Hultqvist/W Chong", "T Christensen/K Legaard", "Elizabet
## Gutierrez", "Chris Martin", "104.114.40 This waterproof storage box protects
## your outdoor pads and cushions from rain, sun, dirt, dust and pollen and
## helps you keep them organised when they’re not being used.Protecting your
## outdoor pads and cushions in a waterproof storage box is a simple and
## effective way to make them look new and fresh longer.The colour stays fresh
## for longer as the fabric is fade resistant. Handles make it easy to move.Make
## sure the cushions are completely dry before storing them away in the storage
## box.During the off-season, store the box filled with cushions in a cool dry
## place indoors.The storage box is light in weight, so you may need to fill it
## to keep it from moving around in the wind.For example, the storage box can be
## filled with 3 seat cushions and 3 back cushions for outdoor sofas and 4
## decorative cushions.For example, the storage box can be filled with 6
## seat/back cushions and 6 decorative cushions.For example, the storage box can
## be filled with 2 seat cushions and 2 back cushions for outdoor sofas, 2 chair
## cushions for armchairs and 2-4 decorative cushions.", "Eva Lilja
## Löwenhielm/IKEA of Sweden/Nike Karlsson", "Niels Gammelgaard", and
## "702.453.39 Can be placed in the middle of a room because the back is
## finished.The high-gloss surfaces reflect light and give a vibrant look.".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → R | error: Names must be unique.
## ✖ These names are duplicated:
## * "short_description_Storage.combination.w.glass.doors...........162x37x134.cm" at locations 4455 and 4461.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → S | warning: ! There are new levels in `name`: "VATTVIKEN", "SVÄRTA", "GNEDBY", "FINNBY",
## "IKEA PS", "STALLARP", "PELLO", "KARLJAN", "REMSTA", "ODGER", "MARKERAD",
## "KOPPANG", "URBAN", "BYLLAN", "ARKELSTORP", "VESKEN", "VIGGJA", "PAX /
## MEHAMN", "PAX / FORSAND", and "PAX / HOKKSUND".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → T | warning: ! There are new levels in `old_price`: "SR 2,360", "SR 7,225", "SR 237", "SR
## 1,948", "SR 2,325", "SR 2,350", "SR 752", "SR 2,995", "SR 2,435", "SR 2,095",
## "SR 5,275", "SR 8,000", "SR 145", and "SR 3,275".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → U | warning: ! There are new levels in `link`:
## "https://www.ikea.com/sa/en/p/vattviken-armchair-bed-lerhaga-light-grey-50468953/",
## "https://www.ikea.com/sa/en/p/platsa-bed-frame-with-2-door-3-drawers-white-fonnes-s99302975/",
## "https://www.ikea.com/sa/en/p/holmsund-three-seat-sofa-bed-orrsta-light-white-grey-s89240761/",
## "https://www.ikea.com/sa/en/p/vallentuna-modular-corner-sofa-3-seat-sofa-bed-and-storage-murum-white-s09278003/",
## "https://www.ikea.com/sa/en/p/svaerta-desk-top-silver-colour-20249896/",
## "https://www.ikea.com/sa/en/p/lidhult-2-seat-sofa-bed-lejde-grey-black-s29257066/",
## "https://www.ikea.com/sa/en/p/kallax-shelving-unit-white-20275814/",
## "https://www.ikea.com/sa/en/p/vittsjoe-shelving-unit-black-brown-glass-50214678/",
## "https://www.ikea.com/sa/en/p/gnedby-shelving-unit-white-40277143/",
## "https://www.ikea.com/sa/en/p/finnby-bookcase-black-10261129/",
## "https://www.ikea.com/sa/en/p/vilto-shelving-unit-birch-90344456/",
## "https://www.ikea.com/sa/en/p/ivar-shelving-unit-pine-s69251345/",
## "https://www.ikea.com/sa/en/p/vittsjoe-storage-combination-black-brown-glass-s09294526/",
## "https://www.ikea.com/sa/en/p/besta-frame-black-brown-60245957/",
## "https://www.ikea.com/sa/en/p/jonaxel-frame-with-mesh-baskets-s09297488/",
## "https://www.ikea.com/sa/en/p/kolbjoern-shelving-unit-with-2-cabinets-beige-s19291650/",
## "https://www.ikea.com/sa/en/p/eket-cabinet-with-3-drawers-dark-grey-70344933/",
## "https://www.ikea.com/sa/en/p/ivar-4-sections-shelves-pine-s09248544/", …,
## "https://www.ikea.com/sa/en/p/pax-forsand-wardrobe-combination-black-brown-black-brown-stained-ash-effect-s59324936/",
## and
## "https://www.ikea.com/sa/en/p/pax-hokksund-wardrobe-combination-black-brown-high-gloss-light-beige-s69330475/".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → V | warning: ! There are new levels in `short_description`: "Armchair-bed", "Bed frame with
## 2 door+3 drawers, 142x244x163 cm", "Three-seat sofa-bed", "Desk top",
## "Shelving unit, 77x77 cm", "Shelving unit, 51x175 cm", "Shelving unit, 202
## cm", "Bookcase, 60x180 cm", "Shelving unit, 46x150 cm", "Shelving unit,
## 89x50x179 cm", "Storage combination, 200x36x93 cm", "Frame with mesh baskets,
## 50x51x104 cm", "Shelving unit with 2 cabinets, 171x37x161 cm", "Cabinet with
## 3 drawers, 70x35x70 cm", "4 sections/shelves, 344x30x226 cm", "Shelf unit,
## 80x120 cm", "Wall-mounted shelf combination, 86x25x176 cm", "Shelving unit
## with 2 cabinets, 171x37 cm", …, "Open wardrobe, 80x123 cm", and "Wardrobe w
## 10 doors, 380x42x221 cm".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → W | warning: ! There are new levels in `designer`: "504.689.53 Small and easy-to-place
## chair-bed which can easily be converted into a single bed.The storage space
## under the seat has room for bedlinen or other things.Just as nice to look at
## from all sides – perfect to place in the middle of the room or use as a room
## divider.The cushion cover is easy to keep clean and fresh, as you can take it
## off and machine-wash it.Easy to assemble.1 cushion included.", "702.945.08
## It’s easy to keep the cables from your TV and other devices out of sight but
## close at hand, as there are several cable outlets at the back of the TV
## bench.You can choose to stand the TV bench on the floor or mount it on the
## wall to free up floor space.If you want to organise inside you can complement
## with BESTÅ interior fittings.Steady also on uneven floors, thanks to the
## adjustable feet.This furniture must be fixed to the wall with the enclosed
## wall fastener.This TV bench can take a max load of 50 kg on the top.Different
## wall materials require different types of fixing devices. Use fixing devices
## suitable for the walls in your home, sold separately.May be completed with
## STALLARP, STUBBARP or NANNARP legs. This TV bench requires 4 legs and 2 BESTÅ
## supporting legs.May be completed with SULARP legs. This TV bench requires 2
## legs and 2 BESTÅ supporting legs.", "102.998.77 It’s easy to keep the cables
## from your TV and other devices out of sight but close at hand, as there are
## several cable outlets at the back of the TV bench.If you want to organise
## inside you can complement with BESTÅ interior fittings.Steady also on uneven
## floors, thanks to the adjustable feet.For safety reasons this TV bench shall
## not be hung on the wall.This furniture must be fixed to the wall with the
## enclosed wall fastener.This TV bench can take a max load of 50 kg on the
## top.Different wall materials require different types of fixing devices. Use
## fixing devices suitable for the walls in your home, sold separately.May be
## completed with STALLARP, STUBBARP or NANNARP legs. This TV bench requires 4
## legs and 2 BESTÅ supporting legs.May be completed with SULARP legs. This TV
## bench requires 2 legs and 2 BESTÅ supporting legs.", "J Löfgren/J
## Pettersson", "Virgil Abloh", "Nike Karlsson/IKEA of Sweden/Eva Lilja
## Löwenhielm", "304.510.67", "602.141.59 You can collect cables and extension
## leads on the shelf under the table top, so they’re hidden but still close at
## hand.Can be placed in the middle of a room because the back is finished.You
## can mount the storage unit to the right or left, according to your space or
## preference. Combines with other furniture in the MALM series.May be completed
## with SUMMERA drawer insert with 6 compartments to create order in the
## drawer.", "IKEA of Sweden/Marcus Arvonen/Carl Öjerstam", and "Ehlén
## Johansson/K Hagberg/M Hagberg/IKEA of Sweden".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → X | error: Names must be unique.
## ✖ These names are duplicated:
## * "short_description_Storage.combination.w.glass.doors...........162x37x134.cm" at locations 4442 and 4449.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → Y | warning: ! There are new levels in `name`: "BRYGGJA", "AGEN", "IKEA PS GULLHOLMEN",
## "TOSSBERG", "NILSOVE / NORNA", "BALTSAR", "BENARP", "KARLHUGO", "MUREN",
## "KLIPPAN", "ISBERGET", and "VIKHAMMER".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → Z | warning: ! There are new levels in `old_price`: "SR 250", "SR 5,400", "SR 444", "SR
## 530", "SR 671", "SR 977", "SR 2,985", "SR 1,300", "SR 1,225", "SR 1,350", "SR
## 1,010", "SR 2,010", "SR 885", "SR 660", "SR 2,035", and "SR 765".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → a | warning: ! There are new levels in `link`:
## "https://www.ikea.com/sa/en/p/brimnes-bed-frame-with-storage-white-s79902935/",
## "https://www.ikea.com/sa/en/p/songesand-bed-frame-with-2-storage-boxes-brown-s69241097/",
## "https://www.ikea.com/sa/en/p/brimnes-headboard-with-storage-compartment-white-00400692/",
## "https://www.ikea.com/sa/en/p/vallentuna-2-seat-modular-sofa-w-2-sofa-beds-murum-white-s29277724/",
## "https://www.ikea.com/sa/en/p/groenlid-3-seat-sofa-bed-with-open-end-ljungen-medium-grey-s29278158/",
## "https://www.ikea.com/sa/en/p/groenlid-3-seat-sofa-bed-ljungen-light-green-s69278415/",
## "https://www.ikea.com/sa/en/p/fjaellbo-shelving-unit-black-50339292/",
## "https://www.ikea.com/sa/en/p/billy-bookcase-white-30263844/",
## "https://www.ikea.com/sa/en/p/kallax-shelving-unit-with-2-inserts-black-brown-s39278290/",
## "https://www.ikea.com/sa/en/p/eket-cabinet-combination-with-feet-white-stained-oak-effect-s79306875/",
## "https://www.ikea.com/sa/en/p/kallax-shelving-unit-black-brown-10275862/",
## "https://www.ikea.com/sa/en/p/eket-wall-mounted-cabinet-combination-white-s09189484/",
## "https://www.ikea.com/sa/en/p/billy-bookcase-white-s59182201/",
## "https://www.ikea.com/sa/en/p/algot-wall-upright-shelves-white-s39311765/",
## "https://www.ikea.com/sa/en/p/billy-oxberg-bookcase-with-panel-glass-doors-brown-ash-veneer-glass-s29281783/",
## "https://www.ikea.com/sa/en/p/jonaxel-frame-with-wire-baskets-s19297138/",
## "https://www.ikea.com/sa/en/p/eket-underframe-birch-90334612/",
## "https://www.ikea.com/sa/en/p/algot-wall-upright-shelves-drying-rack-white-s19903834/",
## …, "https://www.ikea.com/sa/en/p/elvarli-1-section-white-s59158121/", and
## "https://www.ikea.com/sa/en/p/pax-wardrobe-white-uggdal-faervik-s49127917/".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → b | warning: ! There are new levels in `short_description`: "Bed frame with 2 storage boxes,
## 140x200 cm", "Headboard with storage compartment, 90 cm", "2-seat modular
## sofa w 2 sofa-beds", "Shelving unit, 100x95 cm", "Bookcase, 80x28x106 cm",
## "Shelving unit with 2 inserts, 42x147 cm", "Cabinet combination with feet,
## 70x35x72 cm", "Shelving unit, 147x147 cm", "Wall-mounted cabinet combination,
## 105x35x70 cm", "Bookcase, 80x28x237 cm", "Wall upright/shelves, 176x41x197
## cm", "Frame with wire baskets, 50x51x104 cm", "Underframe, 35x25x10 cm",
## "Wall upright/shelves, 189x41x85 cm", "Wall upright/shelves, 132x41x199 cm",
## "Wall-mounted storage combination, 130x35x176 cm", "1 section/bottle racks,
## 89x30x124 cm", "Frame/w bskts/clths rl/shlv uts, 173x51x173 cm", …,
## "Wardrobe, 300x60x201 cm", and "1 section, 44x55x216 cm".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → c | warning: ! There are new levels in `designer`: "IKEA of Sweden/Sarah Fager", "304.289.15
## A simple unit can be enough storage for a limited space or the foundation for
## a larger storage solution if your needs change.You can choose to place the
## cabinet on the floor or mount it on the wall to free up floor space.You can
## create your own unique solution by freely combining cabinets of different
## sizes, with or without doors and drawers.The drawers have integrated
## push-openers, so you don’t need knobs or handles and can open the drawer with
## just a light push.Must be completed with EKET suspension rail if you choose
## to mount the frame on the wall. This frame requires 1 suspension rail, 35 cm
## long, sold separately.To be completed with feet, legs or plinth if you choose
## to place the cabinet on the floor. Sold separately.The max load for a
## wall-hung cabinet depends on the wall material.", "500.583.76 Rattan is a
## natural material which ages beautifully and develops its own unique character
## over time.Handwoven; each piece of furniture is unique.Stackable chair; saves
## space when not in use.Plastic feet; protect the furniture if in contact with
## a moist surface.May be completed with NORNA chair pad for enhanced seating
## comfort.", "Maria Vinka", "403.193.98 The high back gives good support for
## your neck and head.", "204.262.76 Solid oak is a hardwearing natural material
## which gives a warm, natural feeling.Wood is a natural living material, and
## variations in the grain, colour and texture makes each piece of wood
## furniture unique.Each piece of furniture is unique as it is handmade.For
## maximum quality, re-tighten the screws when necessary.", "404.662.85 Fits in
## TROFAST frames.Can be stacked when completed with a lid.May be completed with
## TROFAST lid.", and "IKEA of Sweden/Ola Wihlborg/Ehlén Johansson/Ebba
## Strandmark".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → d | error: Names must be unique.
## ✖ These names are duplicated:
## * "short_description_Storage.combination.w.glass.doors...........162x37x134.cm" at locations 4475 and 4482.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → e | warning: ! There are new levels in `name`: "NILSOVE", "MACKAPÄR", "STEFAN", "STOLJAN",
## "BUNSÖ", "PRÄSTHOLM", "HUSARÖ", "SANDBACKEN", "TORNVIKEN", "VUKU", and "PAX /
## SEKKEN".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → f | warning: ! There are new levels in `old_price`: "SR 437", "SR 232", "SR 892", "SR 455",
## "SR 205", "SR 326", "SR 1,277", "SR 1,505", "SR 95", "SR 745", "SR 2,368",
## "SR 2,075", "SR 200", "SR 2,750", and "SR 1,785".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → g | warning: ! There are new levels in `link`:
## "https://www.ikea.com/sa/en/p/hemnes-day-bed-frame-with-3-drawers-grey-60372276/",
## "https://www.ikea.com/sa/en/p/nordli-bed-frame-with-storage-white-40349847/",
## "https://www.ikea.com/sa/en/p/songesand-bed-frame-with-4-storage-boxes-brown-loenset-s29241160/",
## "https://www.ikea.com/sa/en/p/jonaxel-shelving-unit-s69297287/",
## "https://www.ikea.com/sa/en/p/olaus-shelving-unit-galvanised-60364295/",
## "https://www.ikea.com/sa/en/p/kallax-shelving-unit-with-4-inserts-white-s79278250/",
## "https://www.ikea.com/sa/en/p/algot-wall-upright-shelves-white-s39903791/",
## "https://www.ikea.com/sa/en/p/olaus-2-shelf-sections-s09279050/",
## "https://www.ikea.com/sa/en/p/hyllis-shelving-unit-with-cover-transparent-s69285939/",
## "https://www.ikea.com/sa/en/p/ivar-1-section-shelves-pine-s89248314/",
## "https://www.ikea.com/sa/en/p/besta-storage-combination-w-glass-doors-grey-stained-walnut-effect-notviken-blue-clear-glass-s99300839/",
## "https://www.ikea.com/sa/en/p/billy-bookcase-white-s89017827/",
## "https://www.ikea.com/sa/en/p/kolbjoern-shelving-unit-with-cabinet-green-s89317557/",
## "https://www.ikea.com/sa/en/p/bror-shelving-unit-black-s89276463/",
## "https://www.ikea.com/sa/en/p/billy-bookcase-brown-ash-veneer-s09177626/",
## "https://www.ikea.com/sa/en/p/eket-cabinet-combination-with-feet-white-s49189203/",
## "https://www.ikea.com/sa/en/p/kallax-shelving-unit-with-8-inserts-black-brown-s19030592/",
## "https://www.ikea.com/sa/en/p/ivar-3-sections-shelves-pine-s29248374/", …,
## "https://www.ikea.com/sa/en/p/platsa-wardrobe-with-7-doors-6-drawers-white-fonnes-white-s69325214/",
## and
## "https://www.ikea.com/sa/en/p/platsa-wardrobe-with-6-drawers-white-fonnes-white-s29324320/".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → h | warning: ! There are new levels in `short_description`: "Bed frame with 4 storage boxes,
## 140x200 cm", "Shelving unit, 182x51x160 cm", "Shelving unit, 92x36x94 cm",
## "Shelving unit with 4 inserts, 147x112 cm", "Wall upright/shelves, 86x41x85
## cm", "2 shelf sections, 197x36x181 cm", "Shelving unit with cover, 60x27x74
## cm", "1 section/shelves, 89x30x179 cm", "Bookcase, 200x28x237 cm", "Shelving
## unit, 65x40x190 cm", "Bookcase, 40x28x237 cm", "Cabinet combination with
## feet, 105x35x72 cm", "TV storage combination/glass doors, 240x42x128 cm",
## "Wall upright/shelves/drying rack, 66x61x197 cm", "Shelving unit, 127x41x85
## cm", "Wall upright/shelves, 66x61x197 cm", "Cabinet combination with feet,
## 140x35x212 cm", "Add-on unit, 160x80 cm", …, "Wardrobe with 7 doors+6
## drawers, 300x42x201 cm", and "Wardrobe with 6 drawers, 140x42x241 cm".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → i | warning: ! There are new levels in `designer`: "Thomas Sandell", "Eva Lilja
## Löwenhielm/IKEA of Sweden/Jonas Hultqvist", "IKEA of Sweden/Nike Karlsson/Eva
## Lilja Löwenhielm", "Lisa Hilland/IKEA of Sweden/David Wahl", "IKEA of
## Sweden/Francis Cayouette", "602.141.83 The pull-out panel gives you an extra
## work surface.You can collect cables and extension leads on the shelf under
## the table top, so they’re hidden but still close at hand.You can mount the
## pull-out panel to the left or right according to your needs.Can be placed in
## the middle of a room because the back is finished.Combines with other
## furniture in the MALM series.", "402.998.90 It’s easy to keep the cables from
## your TV and other devices out of sight but close at hand, as there are
## several cable outlets at the back of the TV bench.If you want to organise
## inside you can complement with BESTÅ interior fittings.Steady also on uneven
## floors, thanks to the adjustable feet.For safety reasons this TV bench shall
## not be hung on the wall.The TV bench must be fixed to the wall with the
## included wall fastener.This TV bench can take a max load of 50 kg on the
## top.Different wall materials require different types of fixing devices. Use
## fixing devices suitable for the walls in your home, sold separately.May be
## completed with STALLARP, STUBBARP or NANNARP legs. This TV bench requires 4
## legs and 1 BESTÅ supporting leg.May be completed with SULARP legs. This TV
## bench requires 2 legs and 1 BESTÅ supporting leg.", and "J Karlsson/W Chong".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → j | warning: ! There are new levels in `name`: "LYCKSELE LÖVÅS", "STUK", "DETOLF",
## "FABRIKÖR", "ADDE", "TULLSTA", "STIG", "VOLFGANG", "NORRNÄS", "BJÖRKSNÄS",
## "ANGERSBY", "KUNGSHAMN", "KULLABERG", and "PAX / HASVIK".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → k | warning: ! There are new levels in `old_price`: "SR 845", "SR 1,595", "SR 1,200", "SR
## 725", "SR 175", "SR 125", "SR 5,725", "SR 4,490", "SR 2,275", and "SR 2,160".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → l | warning: ! There are new levels in `link`:
## "https://www.ikea.com/sa/en/p/nordli-bed-frame-w-storage-and-headboard-white-s09241420/",
## "https://www.ikea.com/sa/en/p/platsa-bed-frame-with-storage-white-10453086/",
## "https://www.ikea.com/sa/en/p/lycksele-loevas-2-seat-sofa-bed-vallarum-cerise-s99280884/",
## "https://www.ikea.com/sa/en/p/kolbjoern-cabinet-in-outdoor-green-00450347/",
## "https://www.ikea.com/sa/en/p/lommarp-bookcase-dark-blue-green-40415465/",
## "https://www.ikea.com/sa/en/p/jonaxel-wire-basket-white-60419962/",
## "https://www.ikea.com/sa/en/p/billy-bookcase-white-s09017826/",
## "https://www.ikea.com/sa/en/p/billy-bookcase-with-panel-glass-doors-white-s69281776/",
## "https://www.ikea.com/sa/en/p/fjaellbo-shelving-unit-black-70339291/",
## "https://www.ikea.com/sa/en/p/eket-wall-mounted-shelving-unit-dark-grey-s39285827/",
## "https://www.ikea.com/sa/en/p/eket-cabinet-with-4-compartments-dark-grey-00334536/",
## "https://www.ikea.com/sa/en/p/stuk-storage-case-white-grey-40309573/",
## "https://www.ikea.com/sa/en/p/billy-oxberg-bookcase-with-panel-glass-door-brown-ash-veneer-glass-s09287413/",
## "https://www.ikea.com/sa/en/p/ivar-shelving-unit-pine-s49248311/",
## "https://www.ikea.com/sa/en/p/bror-shelving-unit-with-cabinets-black-s89272709/",
## "https://www.ikea.com/sa/en/p/besta-wall-mounted-cabinet-combination-black-brown-lappviken-black-brown-s39231603/",
## "https://www.ikea.com/sa/en/p/kallax-shelving-unit-with-4-inserts-white-s89030584/",
## "https://www.ikea.com/sa/en/p/ivar-2-sections-shelves-pine-s69248348/", …,
## "https://www.ikea.com/sa/en/p/elvarli-3-sections-white-s59157555/", and
## "https://www.ikea.com/sa/en/p/pax-wardrobe-black-brown-faervik-white-glass-s89025790/".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → m | warning: ! There are new levels in `short_description`: "Bed frame w storage and
## headboard, 140x200 cm", "Bookcase, 65x199 cm", "Wire basket, 25x51x15 cm",
## "Bookcase, 240x28x106 cm", "Bookcase with panel/glass doors, 80x30x202 cm",
## "Shelving unit, 100x136 cm", "Cabinet with 4 compartments, 70x35x70 cm",
## "Storage case, 55x51x18 cm", "Bookcase with panel/glass door, 40x30x202 cm",
## "Shelving unit with cabinets, 170x40x190 cm", "2 sections/shelves, 174x30x124
## cm", "3 sections/shelves, 230x50x171 cm", "Bookcase w hght ext ut/pnl/glss
## drs, 80x30x237 cm", "Suspension rail, 35 cm", "Cabinet with 2 doors, 61x35
## cm", "Shelving unit, 254x55x190 cm", "Shelving unit with cabinets, 170x40x110
## cm", "Shelving unit with clothes rail, 89x50x226 cm", …, "Wardrobe
## combination, 300x60x236 cm", and "3 sections, 205x55x216 cm".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → n | warning: ! There are new levels in `designer`: "Gillis Lundgren/IKEA of Sweden/K
## Hagberg/M Hagberg", "301.150.66 You sit comfortably thanks to the chair's
## shaped back and seat.You can hang the chair on a hook on the wall to save
## space.You can fold the chair, so it takes less space when you're not using
## it.The chair is available in different colours – choose your favourite or
## mix.This chair has been tested for home use and meets the requirements for
## durability and safety, set forth in the following standards: EN 12520 and EN
## 1022.", "804.046.72 You sit comfortably thanks to the restful flexibility of
## the seat.You sit comfortably thanks to the padded seat.This chair has been
## tested for home use and meets the requirements for durability and safety, set
## forth in the following standards: EN 12520 and EN 1022.", "Eva Schildt",
## "104.691.86 The sofa is packaged in a space-efficient way, making it easy to
## transport and carry into your home.You can store remote controls and other
## smaller items in the practical pockets on the sides of the armrests.",
## "704.510.65", "IKEA of Sweden/Ehlén Johansson/Francis Cayouette", "K
## Hagberg/M Hagberg/Ehlén Johansson/IKEA of Sweden", and "Ehlén Johansson/Ebba
## Strandmark/Ola Wihlborg/IKEA of Sweden".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → o | error: Names must be unique.
## ✖ These names are duplicated:
## * "short_description_Storage.combination.w.glass.doors...........162x37x134.cm" at locations 4470 and 4477.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → p | warning: ! There are new levels in `name`: "GLENN", "BILLY / GNEDBY", "RÖNNINGE",
## "GISTAD", "SVANÖ", "KNOTTEN", "INGATORP", "VADHOLMA", and "PAX / AULI".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → q | warning: ! There are new levels in `old_price`: "SR 5,640", "SR 350", "SR 649", "SR 22",
## "SR 452", "SR 840", "SR 785", "SR 690", "SR 380", "SR 1,190", "SR 1,150", "SR
## 6,875", "SR 800", "SR 4,750", "SR 2,875", "SR 6,625", "SR 1,120", "SR 1,865",
## "SR 780", and "SR 965".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → r | warning: ! There are new levels in `link`:
## "https://www.ikea.com/sa/en/p/glenn-bar-stool-white-chrome-plated-30135658/",
## "https://www.ikea.com/sa/en/p/groenlid-2-seat-sofa-bed-ljungen-dark-red-s29278101/",
## "https://www.ikea.com/sa/en/p/lidhult-2-seat-sofa-bed-section-grann-bomstad-dark-brown-s19290603/",
## "https://www.ikea.com/sa/en/p/vimle-3-seat-sofa-bed-gunnared-beige-s69292275/",
## "https://www.ikea.com/sa/en/p/olaus-1-shelf-section-s59201841/",
## "https://www.ikea.com/sa/en/p/lack-wall-shelf-unit-white-60282186/",
## "https://www.ikea.com/sa/en/p/hejne-1-section-softwood-s39031411/",
## "https://www.ikea.com/sa/en/p/billy-oxberg-bookcase-with-glass-doors-white-s69281804/",
## "https://www.ikea.com/sa/en/p/hyllis-shelving-unit-with-cover-transparent-s99291745/",
## "https://www.ikea.com/sa/en/p/algot-wall-upright-shelves-drying-rack-white-s29276531/",
## "https://www.ikea.com/sa/en/p/eket-cabinet-combination-with-feet-dark-grey-s69190861/",
## "https://www.ikea.com/sa/en/p/liatorp-bookcase-white-00116595/",
## "https://www.ikea.com/sa/en/p/bror-hook-for-post-black-50343147/",
## "https://www.ikea.com/sa/en/p/billy-oxberg-bookcase-white-glass-s89017832/",
## "https://www.ikea.com/sa/en/p/eket-underframe-birch-80349001/",
## "https://www.ikea.com/sa/en/p/billy-gnedby-bookcase-black-brown-s99020476/",
## "https://www.ikea.com/sa/en/p/jonaxel-mesh-basket-white-90419965/",
## "https://www.ikea.com/sa/en/p/bror-shelving-unit-black-s59282998/", …,
## "https://www.ikea.com/sa/en/p/pax-wardrobe-white-hokksund-high-gloss-light-beige-s19305906/",
## and
## "https://www.ikea.com/sa/en/p/pax-wardrobe-white-uggdal-faervik-s09305836/".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → s | warning: ! There are new levels in `short_description`: "Bar stool, 77 cm", "1 shelf
## section, 92x36x181 cm", "Wall shelf unit, 30x190 cm", "1 section, 78x31x171
## cm", "Bookcase with glass-doors, 120x30x202 cm", "Shelving unit with cover,
## 60x27x140 cm", "Wall upright/shelves/drying rack, 132x41x199 cm", "Cabinet
## combination with feet, 105x35x107 cm", "Bookcase, 96x214 cm", "Hook for post,
## 7x5x3 cm 2 pack", "Underframe, 35x35x10 cm", "Bookcase, 200x28x202 cm", "Mesh
## basket, 25x51x15 cm", "Shelving unit, 85x55x190 cm", "1 section/shelves,
## 89x50x179 cm", "Cabinet, 35x35x35 cm", "Frame with clothes rail, 50x51x104
## cm", "Cover, 81x172 cm", …, "Wardrobe, 100x35x236 cm", and "Wardrobe
## combination, 150x44x236 cm".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → t | warning: ! There are new levels in `designer`: "Eva Lilja Löwenhielm/K Malmvall/E Lilja
## Löwenhielm", "Jonas Hultqvist/IKEA of Sweden/Eva Lilja Löwenhielm", "IKEA of
## Sweden/David Wahl/Lisa Hilland", "702.998.79 It’s easy to keep the cables
## from your TV and other devices out of sight but close at hand, as there are
## several cable outlets at the back of the TV bench.If you want to organise
## inside you can complement with BESTÅ interior fittings.Steady also on uneven
## floors, thanks to the adjustable feet.For safety reasons this TV bench shall
## not be hung on the wall.This furniture must be fixed to the wall with the
## enclosed wall fastener.This TV bench can take a max load of 50 kg on the
## top.Different wall materials require different types of fixing devices. Use
## fixing devices suitable for the walls in your home, sold separately.May be
## completed with STALLARP, STUBBARP or NANNARP legs. This TV bench requires 4
## legs and 2 BESTÅ supporting legs.May be completed with SULARP legs. This TV
## bench requires 2 legs and 2 BESTÅ supporting legs.", "IKEA of Sweden/K
## Hagberg/M Hagberg/Ehlén Johansson", and "IKEA of Sweden/Ehlén Johansson/K
## Hagberg/M Hagberg".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → u | error: Names must be unique.
## ✖ These names are duplicated:
## * "short_description_Storage.combination.w.glass.doors...........162x37x134.cm" at locations 4458 and 4464.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → v | warning: ! There are new levels in `name`: "FRIHETEN", "HARRY", "ULRIKSBERG", "TERJE",
## "EKERÖ", "GRUVBYN", "ERNFRID", "GULLIVER", "BROMMÖ", "GODVIN", and
## "LAPPLAND".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → w | warning: ! There are new levels in `old_price`: "SR 2,560", "SR 1,885", "SR 2,395", "SR
## 30", "SR 10/4 pack", "SR 2,605", "SR 587", "SR 432", "SR 1,620", "SR 3,250",
## "SR 1,210", "SR 9,685", "SR 360", "SR 1,090", "SR 2,230", and "SR 1,230".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → x | warning: ! There are new levels in `link`:
## "https://www.ikea.com/sa/en/p/malm-bed-frame-high-w-2-storage-boxes-white-s19175957/",
## "https://www.ikea.com/sa/en/p/platsa-bed-frame-with-10-drawers-white-fonnes-s89302914/",
## "https://www.ikea.com/sa/en/p/platsa-bed-frame-with-2-drawers-white-fonnes-s99302918/",
## "https://www.ikea.com/sa/en/p/platsa-bed-frame-with-storage-white-s19302917/",
## "https://www.ikea.com/sa/en/p/lidhult-2-seat-sofa-bed-section-lejde-grey-black-s19290014/",
## "https://www.ikea.com/sa/en/p/nyhamn-3-seat-sofa-bed-with-foam-mattress-skiftebo-yellow-s49306443/",
## "https://www.ikea.com/sa/en/p/friheten-3-seat-sofa-bed-skiftebo-blue-60431563/",
## "https://www.ikea.com/sa/en/p/eket-wall-mounted-storage-combination-light-grey-dark-grey-red-s19286390/",
## "https://www.ikea.com/sa/en/p/kallax-shelving-unit-with-doors-white-s09197436/",
## "https://www.ikea.com/sa/en/p/algot-mesh-basket-white-10218517/",
## "https://www.ikea.com/sa/en/p/kolbjoern-shelving-unit-in-outdoor-green-40450350/",
## "https://www.ikea.com/sa/en/p/besta-cabinet-unit-black-brown-s69284987/",
## "https://www.ikea.com/sa/en/p/besta-storage-combination-with-doors-grey-stained-walnut-effect-lappviken-light-grey-s29205534/",
## "https://www.ikea.com/sa/en/p/skadis-connector-for-algot-white-00335885/",
## "https://www.ikea.com/sa/en/p/hemnes-bookcase-black-brown-60371762/",
## "https://www.ikea.com/sa/en/p/besta-tv-storage-combination-glass-doors-black-brown-lappviken-light-grey-clear-glass-s49203355/",
## "https://www.ikea.com/sa/en/p/ivar-shelving-unit-with-clothes-rail-s09287979/",
## "https://www.ikea.com/sa/en/p/algot-wall-upright-shelves-drying-rack-s79303103/",
## …, "https://www.ikea.com/sa/en/p/pax-wardrobe-combination-white-s59324248/",
## and "https://www.ikea.com/sa/en/p/pax-wardrobe-combination-white-s19385677/".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → y | warning: ! There are new levels in `short_description`: "Bed frame, high, w 2 storage
## boxes, 180x200 cm", "Bed frame with 10 drawers, 140x244x103 cm", "Bed frame
## with 2 drawers, 142x244x103 cm", "Bed frame with storage, 140x244x223 cm",
## "Wall-mounted storage combination, 70x25x175 cm", "Shelving unit with doors,
## 77x147 cm", "Mesh basket, 38x60x14 cm", "Shelving unit in/outdoor, 80x81 cm",
## "Connector for ALGOT", "Bookcase, 49x197 cm", "Shelving unit with clothes
## rail, 174x50x179 cm", "2 sections/shelves, 134x30x179 cm", "Cabinet
## combination with feet, 70x25x107 cm", "Cabinet with doors, 78x95 cm", "File
## cabinet, 41x104 cm", "Glass-door cabinet with plinth, 81x37x134 cm", "Storage
## combination, 95x92 cm", "Storage combination, 60x92 cm", …, "Wardrobe,
## 88x58x208 cm", and "Wardrobe combination, 150x58x236 cm".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → z | warning: ! There are new levels in `designer`: "Marcus Arvonen/Carl Öjerstam/IKEA of
## Sweden", "IKEA of Sweden/Carl Öjerstam", "Lars Norinder", "104.710.85 The
## chair legs are made of solid wood, which is a durable natural material.You
## sit comfortably thanks to the high back and seat with polyester wadding.For
## increased stability, re-tighten the screws about two weeks after assembly and
## when necessary.This chair has been tested for home use and meets the
## requirements for durability and safety, set forth in the following standards:
## EN 12520 and EN 1022.", "Eva Lilja Löwenhielm/K Hagberg/M Hagberg/IKEA of
## Sweden", "404.262.75 Solid wood is a hardwearing natural material.Handmade by
## skilled craftspeople, which makes every product unique in design and size.For
## increased stability, re-tighten the screws about two weeks after assembly and
## when necessary.Seats 4-6.", "IKEA of Sweden/Ola Wihlborg/Ehlén Johansson",
## "IKEA of Sweden/Ehlén Johansson/Ola Wihlborg", and "Ehlén Johansson/Ola
## Wihlborg/IKEA of Sweden".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → 1 | error: Names must be unique.
## ✖ These names are duplicated:
## * "short_description_Storage.combination.w.glass.doors...........162x37x134.cm" at locations 4474 and 4480.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → 2 | warning: ! There are new levels in `name`: "LAIVA", "NOLMYRA", "JOKKMOKK", "MARTIN",
## "FANBYN", "FREKVENS", "BYÅS", "RAKKESTAD", "SUNDLANDET", and "PAX /
## GRIMO/VIKEDAL".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → 3 | warning: ! There are new levels in `old_price`: "SR 550", "SR 951", "SR 1,182", "SR 99",
## "SR 505", "SR 500", "SR 3,885", "SR 3,370", "SR 7,785", "SR 2,770", "SR
## 2,760", "SR 1,985", "SR 3,500", and "SR 2,830".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → 4 | warning: ! There are new levels in `link`:
## "https://www.ikea.com/sa/en/p/nyhamn-sofa-bed-with-triple-cushion-with-foam-mattress-skiftebo-yellow-s09306416/",
## "https://www.ikea.com/sa/en/p/lycksele-murbo-two-seat-sofa-bed-ebbarp-black-white-s19166180/",
## "https://www.ikea.com/sa/en/p/brimnes-day-bed-w-2-drawers-2-mattresses-white-malfors-medium-firm-s19129932/",
## "https://www.ikea.com/sa/en/p/holmsund-corner-sofa-bed-nordvalla-medium-grey-s79150746/",
## "https://www.ikea.com/sa/en/p/jonaxel-shelving-unit-white-50419972/",
## "https://www.ikea.com/sa/en/p/laiva-bookcase-black-brown-40178591/",
## "https://www.ikea.com/sa/en/p/billy-bookcase-white-50263838/",
## "https://www.ikea.com/sa/en/p/billy-bookcase-brown-ash-veneer-s69155853/",
## "https://www.ikea.com/sa/en/p/ivar-storage-unit-with-foldable-table-pine-00319135/",
## "https://www.ikea.com/sa/en/p/vittsjoe-shelving-unit-black-brown-glass-20213312/",
## "https://www.ikea.com/sa/en/p/fjaellbo-shelving-unit-black-70342199/",
## "https://www.ikea.com/sa/en/p/brusali-bookcase-brown-70302283/",
## "https://www.ikea.com/sa/en/p/brimnes-bookcase-white-90301225/",
## "https://www.ikea.com/sa/en/p/billy-bookcase-white-s79017837/",
## "https://www.ikea.com/sa/en/p/jonaxel-frame-white-10429992/",
## "https://www.ikea.com/sa/en/p/besta-storage-combination-with-doors-black-brown-lappviken-sindvik-black-brown-clear-glass-s69208026/",
## "https://www.ikea.com/sa/en/p/eket-wall-mounted-cabinet-combination-dark-grey-s79189150/",
## "https://www.ikea.com/sa/en/p/billy-bottna-bookcase-with-display-shelf-white-beige-s89277113/",
## …,
## "https://www.ikea.com/sa/en/p/pax-wardrobe-brown-stained-ash-effect-uggdal-grey-glass-s39305873/",
## and "https://www.ikea.com/sa/en/p/elvarli-3-sections-white-s99157577/".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → 5 | warning: ! There are new levels in `short_description`: "Shelving unit, 80x38x160 cm",
## "Bookcase, 62x165 cm", "Bookcase, 40x28x202 cm", "Bookcase, 215/135x28x237
## cm", "Storage unit with foldable table, 80x30-104x155 cm", "Shelving unit,
## 100x175 cm", "Shelving unit, 51x136 cm", "Bookcase, 67x190 cm", "Bookcase,
## 60x190 cm", "Bookcase, 160x28x202 cm", "Frame, 25x51x70 cm", "Wall-mounted
## cabinet combination, 175x35x210 cm", "Bookcase with display shelf, 80x28x106
## cm", "Bookcase, 120x28x237 cm", "Frame/wire baskets/clothes rails, 99x51x173
## cm", "Shelving unit, 121x134 cm", "Frame/w bskts/clths rl/shlv uts,
## 198x51x173 cm", "Bookcase with display shelf, 80x28x202 cm", …, "Wardrobe
## with 9 doors, 300x57x271 cm", and "Wardrobe combination, 200x60x236 cm".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → 6 | warning: ! There are new levels in `designer`: "502.638.38 Shallow shelves help you to
## use small wall spaces effectively by accommodating small items in a minimum
## of space.Adjustable shelves; adapt space between shelves according to your
## needs.A simple unit can be enough storage for a limited space or the
## foundation for a larger storage solution if your needs change.This furniture
## must be fixed to the wall with the enclosed wall fastener.Different wall
## materials require different types of fixing devices. Use fixing devices
## suitable for the walls in your home, sold separately.Min. ceiling height
## required: 205 cm.1 fixed shelf and 4 adjustable shelves included.May be
## completed with BILLY corner fitting to form a stable corner unit.May be
## completed with BILLY height extension unit in the same width for added
## storage vertically.May be completed with doors; available in different
## colours and designs.", "Jooyeon Lee", "IKEA of Sweden/E Strandmark",
## "003.850.69 For increased stability, re-tighten the screws about two weeks
## after assembly and when necessary.Complete with FANBYN seat shell.",
## "102.945.11 It’s easy to keep the cables from your TV and other devices out
## of sight but close at hand, as there are several cable outlets at the back of
## the TV bench.You can choose to stand the TV bench on the floor or mount it on
## the wall to free up floor space.If you want to organise inside you can
## complement with BESTÅ interior fittings.Steady also on uneven floors, thanks
## to the adjustable feet.This furniture must be fixed to the wall with the
## enclosed wall fastener.This TV bench can take a max load of 50 kg on the
## top.Different wall materials require different types of fixing devices. Use
## fixing devices suitable for the walls in your home, sold separately.May be
## completed with STALLARP, STUBBARP or NANNARP legs. This TV bench requires 4
## legs and 1 BESTÅ supporting leg.May be completed with SULARP legs. This TV
## bench requires 2 legs and 1 BESTÅ supporting leg.", and "Ola Wihlborg/Ehlén
## Johansson/IKEA of Sweden".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 … → 7 | error: Names must be unique.
## ✖ These names are duplicated:
## * "short_description_Storage.combination.w.glass.doors...........162x37x134.cm" at locations 4465 and 4471.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …There were issues with some computations A: x15 B: x15 C: x15 D: x15 …
## Warning: All models failed. Run `show_notes(.Last.tune.result)` for more
## information.
## There were issues with some computations A: x15 B: x15 C: x15 D: x15 …