workarea-magento_migrator 1.0.0.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +23 -0
  3. data/.ruby-gemset +1 -0
  4. data/Gemfile +16 -0
  5. data/LICENSE +52 -0
  6. data/README.md +56 -0
  7. data/Rakefile +57 -0
  8. data/app/assets/images/workarea/admin/magento_data_migration/.keep +0 -0
  9. data/app/assets/images/workarea/storefront/magento_data_migration/.keep +0 -0
  10. data/app/assets/javascripts/workarea/admin/magento_data_migration/.keep +0 -0
  11. data/app/assets/javascripts/workarea/storefront/magento_data_migration/.keep +0 -0
  12. data/app/assets/stylesheets/workarea/admin/magento_data_migration/.keep +0 -0
  13. data/app/assets/stylesheets/workarea/storefront/magento_data_migration/.keep +0 -0
  14. data/app/controllers/.keep +0 -0
  15. data/app/helpers/.keep +0 -0
  16. data/app/mailers/.keep +0 -0
  17. data/app/models/.keep +0 -0
  18. data/app/models/workarea/magento_customer.rb +10 -0
  19. data/app/models/workarea/user.decorator +20 -0
  20. data/app/views/.keep +0 -0
  21. data/bin/magento_migrator +21 -0
  22. data/bin/rails +25 -0
  23. data/config/data/catalog_category.yml +55 -0
  24. data/config/data/catalog_product.yml +51 -0
  25. data/config/initializers/workarea.rb +3 -0
  26. data/config/routes.rb +2 -0
  27. data/data/categories.json +28460 -0
  28. data/data/content_pages.json +7566 -0
  29. data/data/taxons.json +1336 -0
  30. data/dump.rdb +0 -0
  31. data/fields_for_magento_modules.md +30 -0
  32. data/lib/field-mapping/fields_for_magento_customer_module.md +30 -0
  33. data/lib/field-mapping/fields_for_workarea_customer_module.md +23 -0
  34. data/lib/sql/magento_customer.sql +26 -0
  35. data/lib/sql/magento_products.sql +147 -0
  36. data/lib/tasks/catalog_catagories.rake +21 -0
  37. data/lib/tasks/customers.rake +9 -0
  38. data/lib/tasks/products.rake +8 -0
  39. data/lib/tasks/workarea/import_magento_content.rake +14 -0
  40. data/lib/workarea/magento_migrator/catalog_category.rb +238 -0
  41. data/lib/workarea/magento_migrator/catalog_product.rb +38 -0
  42. data/lib/workarea/magento_migrator/engine.rb +10 -0
  43. data/lib/workarea/magento_migrator/magento_base.rb +119 -0
  44. data/lib/workarea/magento_migrator/sql_connection.rb +76 -0
  45. data/lib/workarea/magento_migrator/version.rb +5 -0
  46. data/lib/workarea/magento_migrator.rb +19 -0
  47. data/test/dummy/.ruby-version +1 -0
  48. data/test/dummy/Rakefile +6 -0
  49. data/test/dummy/app/assets/config/manifest.js +3 -0
  50. data/test/dummy/app/assets/images/.keep +0 -0
  51. data/test/dummy/app/assets/javascripts/application.js +14 -0
  52. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  53. data/test/dummy/app/controllers/application_controller.rb +2 -0
  54. data/test/dummy/app/controllers/concerns/.keep +0 -0
  55. data/test/dummy/app/helpers/application_helper.rb +2 -0
  56. data/test/dummy/app/jobs/application_job.rb +2 -0
  57. data/test/dummy/app/mailers/application_mailer.rb +4 -0
  58. data/test/dummy/app/models/concerns/.keep +0 -0
  59. data/test/dummy/app/views/layouts/application.html.erb +15 -0
  60. data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
  61. data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
  62. data/test/dummy/bin/bundle +3 -0
  63. data/test/dummy/bin/rails +4 -0
  64. data/test/dummy/bin/rake +4 -0
  65. data/test/dummy/bin/setup +25 -0
  66. data/test/dummy/bin/update +25 -0
  67. data/test/dummy/config/application.rb +34 -0
  68. data/test/dummy/config/boot.rb +5 -0
  69. data/test/dummy/config/environment.rb +5 -0
  70. data/test/dummy/config/environments/development.rb +52 -0
  71. data/test/dummy/config/environments/production.rb +83 -0
  72. data/test/dummy/config/environments/test.rb +45 -0
  73. data/test/dummy/config/initializers/application_controller_renderer.rb +8 -0
  74. data/test/dummy/config/initializers/assets.rb +12 -0
  75. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  76. data/test/dummy/config/initializers/content_security_policy.rb +25 -0
  77. data/test/dummy/config/initializers/cookies_serializer.rb +5 -0
  78. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  79. data/test/dummy/config/initializers/inflections.rb +16 -0
  80. data/test/dummy/config/initializers/mime_types.rb +4 -0
  81. data/test/dummy/config/initializers/workarea.rb +5 -0
  82. data/test/dummy/config/initializers/wrap_parameters.rb +9 -0
  83. data/test/dummy/config/locales/en.yml +33 -0
  84. data/test/dummy/config/puma.rb +34 -0
  85. data/test/dummy/config/routes.rb +5 -0
  86. data/test/dummy/config/spring.rb +6 -0
  87. data/test/dummy/config.ru +5 -0
  88. data/test/dummy/db/seeds.rb +2 -0
  89. data/test/dummy/lib/assets/.keep +0 -0
  90. data/test/dummy/log/.keep +0 -0
  91. data/test/teaspoon_env.rb +6 -0
  92. data/test/test_helper.rb +10 -0
  93. data/test/workarea/magento_migrator/catalog_product_test.rb +13 -0
  94. data/workarea-magento_migrator.gemspec +23 -0
  95. metadata +178 -0
data/data/taxons.json ADDED
@@ -0,0 +1,1336 @@
1
+ {
2
+ "Shop Murals": {
3
+ "New Wallpaper Murals": {
4
+ },
5
+ "Activities & Leisure": {
6
+ "Amusement Parks & Fairs": {
7
+ },
8
+ "Books": {
9
+ },
10
+ "Casinos": {
11
+ },
12
+ "Celebrations": {
13
+ },
14
+ "Dance": {
15
+ },
16
+ "Fantasy & Mythology": {
17
+ "Dragons": {
18
+ },
19
+ "Dream Scenes": {
20
+ },
21
+ "Fairies": {
22
+ },
23
+ "Fairy Tales": {
24
+ },
25
+ "Magical": {
26
+ },
27
+ "Mermaids": {
28
+ },
29
+ "Science Fiction": {
30
+ },
31
+ "Unicorns": {
32
+ },
33
+ "Wizards": {
34
+ },
35
+ "Other Fantasy & Mythology": {
36
+ }
37
+ },
38
+ "Food & Drink": {
39
+ "Cafes & Diners": {
40
+ },
41
+ "Chefs": {
42
+ },
43
+ "Coffee": {
44
+ },
45
+ "Desserts & Sweets": {
46
+ },
47
+ "Fruit": {
48
+ },
49
+ "Liquor": {
50
+ },
51
+ "Vegetables": {
52
+ },
53
+ "Wine": {
54
+ },
55
+ "Other Food & Drink": {
56
+ }
57
+ },
58
+ "Magic": {
59
+ },
60
+ "Movies": {
61
+ },
62
+ "Music": {
63
+ "Instruments": {
64
+ },
65
+ "Jazz": {
66
+ },
67
+ "Musicians": {
68
+ },
69
+ "Rock & Roll": {
70
+ }
71
+ },
72
+ "Nightclubs": {
73
+ },
74
+ "Religious & Spiritual": {
75
+ "Angels": {
76
+ },
77
+ "Buddha": {
78
+ },
79
+ "Christian": {
80
+ },
81
+ "Church": {
82
+ },
83
+ "Temples": {
84
+ },
85
+ "Zen": {
86
+ },
87
+ "Other Religious & Spiritual": {
88
+ }
89
+ },
90
+ "Science & Technology": {
91
+ },
92
+ "SciFi ": {
93
+ },
94
+ "Other Activities & Leisure": {
95
+ }
96
+ },
97
+ "Animals": {
98
+ "Birds": {
99
+ "Ducks & Waterfowl": {
100
+ },
101
+ "Eagles": {
102
+ },
103
+ "Owls": {
104
+ },
105
+ "Peacocks": {
106
+ },
107
+ "Sea Birds": {
108
+ },
109
+ "Tropical Birds": {
110
+ },
111
+ "Other Birds": {
112
+ }
113
+ },
114
+ "Butterflies & Insects": {
115
+ },
116
+ "Cats": {
117
+ },
118
+ "Dinosaurs": {
119
+ },
120
+ "Dogs": {
121
+ },
122
+ "Farm Animals": {
123
+ },
124
+ "Fish": {
125
+ },
126
+ "Horses": {
127
+ "Foals": {
128
+ },
129
+ "Rodeo Horses": {
130
+ },
131
+ "Wild Horses": {
132
+ },
133
+ "Working Horses": {
134
+ },
135
+ "Other Horses": {
136
+ }
137
+ },
138
+ "Jungle & Safari Animals": {
139
+ "Elephants": {
140
+ },
141
+ "Giraffes": {
142
+ },
143
+ "Large Cats": {
144
+ },
145
+ "Monkeys & Apes": {
146
+ },
147
+ "Zebras": {
148
+ },
149
+ "Other Jungle Animals": {
150
+ }
151
+ },
152
+ "Sea Life": {
153
+ "Dolphins": {
154
+ },
155
+ "Sea Creatures": {
156
+ },
157
+ "Sea Turtles": {
158
+ },
159
+ "Sharks": {
160
+ },
161
+ "Whales": {
162
+ },
163
+ "Other Sea Life": {
164
+ }
165
+ },
166
+ "Wildlife": {
167
+ "Bears": {
168
+ },
169
+ "Deer": {
170
+ },
171
+ "Moose & Elk": {
172
+ },
173
+ "Wolves": {
174
+ }
175
+ },
176
+ "Other Animals": {
177
+ }
178
+ },
179
+ "Architectural": {
180
+ "Bridges": {
181
+ },
182
+ "Building Interior Scenes": {
183
+ },
184
+ "Churches": {
185
+ },
186
+ "Doors": {
187
+ },
188
+ "Historic Castles": {
189
+ },
190
+ "Houses": {
191
+ },
192
+ "Pyramids & Egyptian": {
193
+ },
194
+ "Ruins": {
195
+ },
196
+ "Stadiums & Arenas": {
197
+ },
198
+ "Storefronts": {
199
+ "Cafes And Bistros": {
200
+ },
201
+ "Coffee Shops": {
202
+ },
203
+ "Retail Stores": {
204
+ },
205
+ "Other Storefront Murals": {
206
+ }
207
+ },
208
+ "Street Scenes": {
209
+ "Sidewalks": {
210
+ },
211
+ "Streets": {
212
+ },
213
+ "Other Street Scenes": {
214
+ }
215
+ },
216
+ "Window Scenes": {
217
+ }
218
+ },
219
+ "Art & Graphics": {
220
+ "Abstract": {
221
+ },
222
+ "Coloring Wallpaper": {
223
+ },
224
+ "Drawings & Illustrations": {
225
+ },
226
+ "Graffiti & Urban": {
227
+ },
228
+ "Botanical": {
229
+ "Graphic Leaves & Branches": {
230
+ },
231
+ "Modern Floral Graphics": {
232
+ },
233
+ "Modern Tree Graphics": {
234
+ }
235
+ },
236
+ "Graphics": {
237
+ },
238
+ "Pop Art": {
239
+ },
240
+ "Words & Quotes": {
241
+ "Inspirational & Motivational": {
242
+ },
243
+ "Messages & Quotes": {
244
+ },
245
+ "Word Collage": {
246
+ },
247
+ "Other Words": {
248
+ }
249
+ },
250
+ "Other Modern": {
251
+ }
252
+ },
253
+ "Beach & Tropical": {
254
+ "Beach Chairs": {
255
+ },
256
+ "Beach Window Scenes": {
257
+ },
258
+ "Caribbean Beaches": {
259
+ },
260
+ "Docks & Piers": {
261
+ },
262
+ "European Beaches": {
263
+ },
264
+ "Hawaiian Beaches": {
265
+ },
266
+ "Moonlit Beaches": {
267
+ },
268
+ "North American Beaches": {
269
+ },
270
+ "Palm Trees": {
271
+ },
272
+ "Sandy Beaches": {
273
+ },
274
+ "Seashells": {
275
+ },
276
+ "Sunrise Beach": {
277
+ },
278
+ "Sunset Beach": {
279
+ },
280
+ "Surf Scenes": {
281
+ },
282
+ "Other Beach & Tropical": {
283
+ }
284
+ },
285
+ "City & Skyline": {
286
+ "Asian Cities": {
287
+ },
288
+ "Australian Cities": {
289
+ },
290
+ "European Cities": {
291
+ "London": {
292
+ },
293
+ "Paris": {
294
+ },
295
+ "Other European Cities": {
296
+ }
297
+ },
298
+ "New York City": {
299
+ "New York Skyline": {
300
+ },
301
+ "New York Street Scenes": {
302
+ },
303
+ "Times Square": {
304
+ }
305
+ },
306
+ "North American Cities": {
307
+ "Boston": {
308
+ },
309
+ "Chicago": {
310
+ },
311
+ "Hollywood": {
312
+ },
313
+ "Las Vegas": {
314
+ },
315
+ "Los Angeles": {
316
+ },
317
+ "New Orleans": {
318
+ },
319
+ "San Francisco": {
320
+ },
321
+ "Seattle": {
322
+ },
323
+ "Washington DC": {
324
+ },
325
+ "Other North American Cities": {
326
+ }
327
+ },
328
+ "South American Cities": {
329
+ },
330
+ "City Scenes": {
331
+ }
332
+ },
333
+ "Fine Art": {
334
+ },
335
+ "Forests": {
336
+ "Autumn Forests": {
337
+ },
338
+ "Rainforests": {
339
+ },
340
+ "Spring & Summer Forests": {
341
+ },
342
+ "Winter Forests": {
343
+ },
344
+ "Other Forests": {
345
+ }
346
+ },
347
+ "Italian": {
348
+ "Italian Coast": {
349
+ },
350
+ "Italian Vineyards": {
351
+ },
352
+ "Mediterranean & Greek": {
353
+ },
354
+ "Tuscan": {
355
+ },
356
+ "Venice": {
357
+ },
358
+ "Other Italian": {
359
+ }
360
+ },
361
+ "Kids Rooms": {
362
+ "Boys Murals": {
363
+ "Ceiling - Boys": {
364
+ },
365
+ "Cowboys & Western - Boys": {
366
+ },
367
+ "Dinosaurs - Boys": {
368
+ },
369
+ "Dragons & Wizards - Boys": {
370
+ },
371
+ "Graffiti & Urban - Boys": {
372
+ },
373
+ "Graphic Patterns - Boys": {
374
+ },
375
+ "Jungle & Safari - Boys": {
376
+ },
377
+ "Pirates & Nautical - Boys": {
378
+ },
379
+ "Robots - Boys": {
380
+ },
381
+ "Space - Boys": {
382
+ },
383
+ "Sports - Boys": {
384
+ },
385
+ "Transportation - Boys": {
386
+ },
387
+ "Underwater & Sealife - Boys": {
388
+ },
389
+ "Wildlife - Boys": {
390
+ },
391
+ "Other Boys Murals": {
392
+ }
393
+ },
394
+ "Girls Murals": {
395
+ "Butterflies - Girls": {
396
+ },
397
+ "Ceiling - Girls": {
398
+ },
399
+ "Fairies & Pixies - Girls": {
400
+ },
401
+ "Graffiti & Urban-Girls": {
402
+ },
403
+ "Graphic Patterns - Girls": {
404
+ },
405
+ "Inspirational - Girls": {
406
+ },
407
+ "Mythical & Wizards -Girls": {
408
+ },
409
+ "Princess Castle - Girls": {
410
+ },
411
+ "Sports - Girls": {
412
+ },
413
+ "Tropical & Beach - Girls": {
414
+ },
415
+ "Underwater & Sealife - Girls": {
416
+ },
417
+ "Unicorns & Pegasus - Girls": {
418
+ },
419
+ "Other Girls Murals": {
420
+ }
421
+ },
422
+ "Nursery Murals": {
423
+ "Animals - Nursery": {
424
+ },
425
+ "Butterflies & Small Animals - Nursery": {
426
+ },
427
+ "Ceiling - Nursery": {
428
+ },
429
+ "Fairytale - Nursery": {
430
+ },
431
+ "Forest - Nursery": {
432
+ },
433
+ "Graphic Patterns - Nursery": {
434
+ },
435
+ "Noah's Ark": {
436
+ },
437
+ "Alice In Wonderland": {
438
+ },
439
+ "Nursery Rhyme": {
440
+ },
441
+ "Teddybears - Nursery": {
442
+ },
443
+ "Underwater & Sealife - Nursery": {
444
+ },
445
+ "Other Nursery Murals": {
446
+ }
447
+ },
448
+ "Beatrix Potter": {
449
+ "Beatrix Potter Bunnies": {
450
+ },
451
+ "Beatrix Potter Mice": {
452
+ },
453
+ "Beatrix Potter Patterns": {
454
+ },
455
+ "Peter Rabbit": {
456
+ }
457
+ },
458
+ "Teen Murals": {
459
+ "Astronomy & Scifi - Teen": {
460
+ },
461
+ "Ceiling - Teen": {
462
+ },
463
+ "Cities - Teen": {
464
+ },
465
+ "Drive & Fly - Teen": {
466
+ },
467
+ "Fashion - Teen": {
468
+ },
469
+ "Fantasy & Mythology - Teen": {
470
+ },
471
+ "Graffiti & Urban - Teen": {
472
+ },
473
+ "Graphic Patterns - Teen": {
474
+ },
475
+ "Inspirational - Teen": {
476
+ },
477
+ "Movie - Teen": {
478
+ },
479
+ "Music & Culture -Teen": {
480
+ },
481
+ "Nautical - Teen": {
482
+ },
483
+ "Sports - Teen": {
484
+ },
485
+ "Wildlife - Teen": {
486
+ },
487
+ "Other - Teen": {
488
+ }
489
+ }
490
+ },
491
+ "Landmarks": {
492
+ "Mark Herman Landmark Art": {
493
+ "California": {
494
+ },
495
+ "Minnesota": {
496
+ },
497
+ "New York": {
498
+ }
499
+ },
500
+ "National Parks": {
501
+ },
502
+ "Eiffel Tower": {
503
+ },
504
+ "Golden Gate Bridge": {
505
+ },
506
+ "Statue of Liberty": {
507
+ },
508
+ "Other Famous Landmarks": {
509
+ }
510
+ },
511
+ "Landscape & Scenic": {
512
+ "Country Landscapes": {
513
+ "Barns & Farms": {
514
+ },
515
+ "Cabins": {
516
+ },
517
+ "Cottages": {
518
+ }
519
+ },
520
+ "Desert Landscapes": {
521
+ },
522
+ "Famous Landscapes": {
523
+ },
524
+ "Garden & Terrace Landscapes": {
525
+ },
526
+ "Mountain Landscapes": {
527
+ },
528
+ "Nautical & Coastal Landscapes": {
529
+ "Coastal Views": {
530
+ },
531
+ "Lighthouses": {
532
+ },
533
+ "Ports & Harbors": {
534
+ }
535
+ },
536
+ "River, Lake & Pond Landscapes": {
537
+ },
538
+ "Roads": {
539
+ },
540
+ "Villages": {
541
+ },
542
+ "Vines & Vineyards": {
543
+ },
544
+ "Other Landscape Settings": {
545
+ }
546
+ },
547
+ "Large Murals": {
548
+ },
549
+ "Maps & Flags": {
550
+ "World Map": {
551
+ },
552
+ "Antique & Vintage Maps": {
553
+ },
554
+ "Asia Map": {
555
+ },
556
+ "Australia Map": {
557
+ },
558
+ "Carribbean Map": {
559
+ },
560
+ "Europe Map": {
561
+ },
562
+ "Lake Maps": {
563
+ },
564
+ "North America Map": {
565
+ },
566
+ "South America Map": {
567
+ },
568
+ "Other Maps": {
569
+ },
570
+ "American Flags": {
571
+ },
572
+ "World Flags": {
573
+ },
574
+ "Other Flags": {
575
+ },
576
+ "Flag": {
577
+ },
578
+ "Map": {
579
+ }
580
+ },
581
+ "Nature": {
582
+ "Deserts & Canyons": {
583
+ },
584
+ "Caves": {
585
+ },
586
+ "Garden & Botanical": {
587
+ "Cherry Blossoms": {
588
+ },
589
+ "Flowers": {
590
+ },
591
+ "Gardens": {
592
+ },
593
+ "Grasses": {
594
+ },
595
+ "Other Garden & Botanical": {
596
+ }
597
+ },
598
+ "Glaciers": {
599
+ },
600
+ "Jungles": {
601
+ },
602
+ "Mountains": {
603
+ },
604
+ "Rainbows": {
605
+ },
606
+ "Sky & Clouds": {
607
+ },
608
+ "Stones & Rocks": {
609
+ },
610
+ "Sunrise & Sunset": {
611
+ },
612
+ "Water": {
613
+ "Oceans": {
614
+ },
615
+ "Ponds": {
616
+ },
617
+ "Rivers & Lakes": {
618
+ },
619
+ "Waterfalls": {
620
+ },
621
+ "Waves": {
622
+ },
623
+ "Other Water Scenes": {
624
+ }
625
+ },
626
+ "Other Nature": {
627
+ }
628
+ },
629
+ "Panoramic (inactive)": {
630
+ },
631
+ "Panoramic": {
632
+ },
633
+ "Patterns": {
634
+ "Animal Prints & Patterns": {
635
+ },
636
+ "Camouflage Patterns": {
637
+ },
638
+ "Chevron Patterns": {
639
+ },
640
+ "Circle & Polka Dot Patterns": {
641
+ },
642
+ "Damask Patterns": {
643
+ },
644
+ "Ethnic Pattern Murals": {
645
+ },
646
+ "Floral Pattern Murals": {
647
+ },
648
+ "Geometric Patterns": {
649
+ },
650
+ "Object & Thing Patterns": {
651
+ },
652
+ "Paisley Patterns": {
653
+ },
654
+ "Plaid Pattern Murals": {
655
+ },
656
+ "Scalable Patterns": {
657
+ },
658
+ "Stripe & Line Patterns": {
659
+ },
660
+ "Tropical Leaf Patterns": {
661
+ },
662
+ "Vintage Patterns": {
663
+ },
664
+ "Wave & Curl Patterns": {
665
+ },
666
+ "Woodland Patterns": {
667
+ },
668
+ "Other Patterns": {
669
+ }
670
+ },
671
+ "Removable Wallpaper": {
672
+ "Animal Prints & Patterns ": {
673
+ },
674
+ "Camouflage": {
675
+ },
676
+ "Chevron": {
677
+ },
678
+ "Circles & Polka Dots": {
679
+ },
680
+ "Damask": {
681
+ },
682
+ "Ethnic": {
683
+ },
684
+ "For Kids": {
685
+ },
686
+ "Floral and Flowers": {
687
+ },
688
+ "Geometric": {
689
+ },
690
+ "Marble": {
691
+ },
692
+ "Modern": {
693
+ },
694
+ "Objects & Things": {
695
+ },
696
+ "Paisley": {
697
+ },
698
+ "Plaids": {
699
+ },
700
+ "Stripes & Lines": {
701
+ },
702
+ "Vintage": {
703
+ },
704
+ "Waves & Curls": {
705
+ },
706
+ "Other Removable Wallpaper": {
707
+ }
708
+ },
709
+ "Room Wraps": {
710
+ "Candy Kingdom Room Wrap Wall Mural": {
711
+ },
712
+ "Friendly Forest Room Wrap Wall Mural": {
713
+ },
714
+ "Enchanted Forest Room Wrap Wall Mural": {
715
+ },
716
+ "Endless Beach Room Wrap Wall Mural": {
717
+ },
718
+ "Make Waves Room Wrap Wall Mural": {
719
+ }
720
+ },
721
+ "Seasonal": {
722
+ "Autumn": {
723
+ },
724
+ "Spring": {
725
+ },
726
+ "Summer": {
727
+ },
728
+ "Winter": {
729
+ },
730
+ "Holidays": {
731
+ "Christmas": {
732
+ },
733
+ "Halloween": {
734
+ },
735
+ "Patriotic Murals": {
736
+ }
737
+ }
738
+ },
739
+ "Space & Galaxy ": {
740
+ "Constellations ": {
741
+ },
742
+ "Galaxy ": {
743
+ },
744
+ "Moon ": {
745
+ },
746
+ "Nebula ": {
747
+ },
748
+ "Planets & Solar Systems ": {
749
+ },
750
+ "Space Ships": {
751
+ },
752
+ "Stars ": {
753
+ }
754
+ },
755
+ "Sports": {
756
+ "Adventure Sports": {
757
+ "Biking": {
758
+ },
759
+ "Hiking": {
760
+ },
761
+ "Rock Climbing": {
762
+ },
763
+ "Running": {
764
+ }
765
+ },
766
+ "Baseball": {
767
+ },
768
+ "Basketball": {
769
+ },
770
+ "Stadium Blueprints": {
771
+ "Baseball Stadium Blueprints": {
772
+ },
773
+ "Football Stadium Blueprints": {
774
+ },
775
+ "Golf Course Blueprints": {
776
+ },
777
+ "College Stadium Blueprints": {
778
+ },
779
+ "Soccer Stadium Blueprints": {
780
+ }
781
+ },
782
+ "Football": {
783
+ },
784
+ "Golf": {
785
+ "Aerial Views": {
786
+ },
787
+ "Augusta": {
788
+ },
789
+ "Pebble Beach": {
790
+ },
791
+ "Other Golf Courses": {
792
+ },
793
+ "Other Golf Scenes": {
794
+ }
795
+ },
796
+ "Hockey": {
797
+ },
798
+ "Hunting, Fishing & Camping": {
799
+ },
800
+ "Motorized Sports": {
801
+ },
802
+ "Sailing": {
803
+ },
804
+ "Skiing": {
805
+ },
806
+ "Snowboarding": {
807
+ },
808
+ "Soccer": {
809
+ },
810
+ "Sports Stadiums": {
811
+ },
812
+ "Surfing": {
813
+ },
814
+ "Tennis": {
815
+ },
816
+ "Winter Sports": {
817
+ },
818
+ "Other-Sports": {
819
+ }
820
+ },
821
+ "Styles": {
822
+ "Black & White": {
823
+ },
824
+ "Borders": {
825
+ },
826
+ "Famous Artwork": {
827
+ "da Vinci": {
828
+ },
829
+ "Michelangelo": {
830
+ },
831
+ "Monet": {
832
+ },
833
+ "van Gogh": {
834
+ },
835
+ "Other Famous Artwork": {
836
+ }
837
+ },
838
+ "Macro Photography": {
839
+ },
840
+ "Nostalgic Scenes": {
841
+ },
842
+ "Ombre": {
843
+ },
844
+ "Retro": {
845
+ "Diners": {
846
+ },
847
+ "Fifties": {
848
+ },
849
+ "Nightlife": {
850
+ },
851
+ "Other Retro": {
852
+ }
853
+ },
854
+ "Rustic": {
855
+ },
856
+ "Vintage": {
857
+ },
858
+ "Watercolor": {
859
+ },
860
+ "Western": {
861
+ },
862
+ "Zen & Asian": {
863
+ },
864
+ "Pointilism": {
865
+ }
866
+ },
867
+ "Textures & Backgrounds": {
868
+ "Abstract": {
869
+ },
870
+ "Bricks": {
871
+ },
872
+ "Concrete ": {
873
+ },
874
+ "Marble Wallpaper": {
875
+ },
876
+ "Metals": {
877
+ },
878
+ "Natural": {
879
+ },
880
+ "Stone Backgrounds": {
881
+ },
882
+ "Tile": {
883
+ },
884
+ "Wood": {
885
+ },
886
+ "Woven": {
887
+ },
888
+ "3D": {
889
+ },
890
+ "Other Textures": {
891
+ }
892
+ },
893
+ "Transportation": {
894
+ "Airplanes & Helicopters": {
895
+ },
896
+ "Cars": {
897
+ "Classic Cars": {
898
+ }
899
+ },
900
+ "Hot Air Balloons": {
901
+ },
902
+ "Motorcycles & Bicycles": {
903
+ },
904
+ "Ships & Boats": {
905
+ "Sailboats": {
906
+ },
907
+ "Other Ships & Boats": {
908
+ }
909
+ },
910
+ "Tractors": {
911
+ },
912
+ "Trains": {
913
+ },
914
+ "Trucks": {
915
+ }
916
+ },
917
+ "Trees": {
918
+ "Bamboo": {
919
+ },
920
+ "Birch & Aspen": {
921
+ },
922
+ "Deciduous Trees": {
923
+ },
924
+ "Evergreen Trees": {
925
+ },
926
+ "Leaves, Branches & Bark": {
927
+ },
928
+ "Lone Trees": {
929
+ },
930
+ "Palm Trees": {
931
+ }
932
+ }
933
+ },
934
+ "Create Your Own": {
935
+ },
936
+ "For Homes": {
937
+ "Bathrooms": {
938
+ },
939
+ "Bedrooms": {
940
+ },
941
+ "Ceilings": {
942
+ },
943
+ "Dining Rooms": {
944
+ },
945
+ "Family & Game": {
946
+ },
947
+ "Garages": {
948
+ },
949
+ "Home Gyms": {
950
+ },
951
+ "Home Offices": {
952
+ },
953
+ "Kids' Rooms": {
954
+ },
955
+ "Kitchen": {
956
+ },
957
+ "Living Rooms": {
958
+ },
959
+ "Nurseries": {
960
+ },
961
+ "Other Rooms": {
962
+ },
963
+ "Unique Spaces": {
964
+ },
965
+ "Inspiration & Ideas": {
966
+ }
967
+ },
968
+ "For Business": {
969
+ "Architect, Interior Designer & Contractor": {
970
+ },
971
+ "Bar & Club": {
972
+ },
973
+ "Church & Places of Worship": {
974
+ },
975
+ "College & University": {
976
+ },
977
+ "Corporate & Office": {
978
+ },
979
+ "Daycare Centers": {
980
+ },
981
+ "Dental": {
982
+ },
983
+ "Events & Temporary": {
984
+ },
985
+ "Gym & Fitness": {
986
+ },
987
+ "Healthcare Design": {
988
+ },
989
+ "Hospital": {
990
+ },
991
+ "Hotel": {
992
+ },
993
+ "Medical Office": {
994
+ },
995
+ "Other Businesses": {
996
+ },
997
+ "Pediatric Dental Office": {
998
+ },
999
+ "Pediatric Medical Office": {
1000
+ },
1001
+ "Pet Care": {
1002
+ },
1003
+ "Property Management": {
1004
+ },
1005
+ "Restaurant": {
1006
+ },
1007
+ "Retail": {
1008
+ },
1009
+ "Salon & Spa": {
1010
+ },
1011
+ "Schools": {
1012
+ },
1013
+ "Senior Living": {
1014
+ },
1015
+ "Unique Spaces": {
1016
+ },
1017
+ "Business Program Sign Up": {
1018
+ },
1019
+ "Business Idea Books ": {
1020
+ },
1021
+ "Business Material Swatches": {
1022
+ },
1023
+ "Business Case Studies ": {
1024
+ },
1025
+ "Sign Up For Business Newsletters": {
1026
+ }
1027
+ },
1028
+ "Designers/Trade": {
1029
+ "Design Inspiration": {
1030
+ },
1031
+ "Technical Information": {
1032
+ },
1033
+ "Design Idea Books": {
1034
+ },
1035
+ "Designer Material Swatches": {
1036
+ },
1037
+ "Create Design/Trade Account": {
1038
+ },
1039
+ "Sign Up For Designer Newsletters": {
1040
+ }
1041
+ },
1042
+ "Resources & How To": {
1043
+ "How It Works": {
1044
+ "Choosing Your Mural": {
1045
+ },
1046
+ "Image Quality": {
1047
+ },
1048
+ "Measuring Your Wall": {
1049
+ },
1050
+ "Pricing": {
1051
+ },
1052
+ "Custom Printed Samples": {
1053
+ },
1054
+ "Ordering": {
1055
+ },
1056
+ "Preparing Your Wall": {
1057
+ },
1058
+ "Double Cutting": {
1059
+ },
1060
+ "Professional Installers": {
1061
+ },
1062
+ "Caring for Your Mural": {
1063
+ },
1064
+ "Removal": {
1065
+ },
1066
+ "Wishlist Favorites": {
1067
+ }
1068
+ },
1069
+ "Our Materials": {
1070
+ "Compare Materials": {
1071
+ },
1072
+ "Eco Bella™ - Texture": {
1073
+ },
1074
+ "Prepasted Wallpaper": {
1075
+ },
1076
+ "SmartStick®": {
1077
+ },
1078
+ "Vinyl HD - Texture": {
1079
+ },
1080
+ "Eco Bella™ Smooth": {
1081
+ },
1082
+ "Embellitex™ Canvas": {
1083
+ },
1084
+ "Lumaluxe": {
1085
+ },
1086
+ "Luxuriant™ Vinyl": {
1087
+ },
1088
+ "3 Mil Vinyl": {
1089
+ },
1090
+ "3M™ Scotchcal™ Film (IJ8624)": {
1091
+ },
1092
+ "Satin Linen": {
1093
+ },
1094
+ "Vinyl HD - Matte": {
1095
+ },
1096
+ "VersaGrip": {
1097
+ },
1098
+ "Window Films": {
1099
+ },
1100
+ "Window Film - Clear": {
1101
+ },
1102
+ "Window Film - Matte White": {
1103
+ },
1104
+ "Window Film - Frosted": {
1105
+ },
1106
+ "Custom Gallery Wrapped Canvas Prints": {
1107
+ },
1108
+ "Which Material Should I Choose?": {
1109
+ }
1110
+ },
1111
+ "Customization": {
1112
+ "Custom Sizing": {
1113
+ },
1114
+ "Custom Wallpaper": {
1115
+ },
1116
+ "Collage Murals": {
1117
+ },
1118
+ "Color Matching": {
1119
+ },
1120
+ "Personalization": {
1121
+ },
1122
+ "Dry Erase Wallpaper": {
1123
+ },
1124
+ "MicroBloc Antimicrobial Topcoat": {
1125
+ }
1126
+ },
1127
+ "Installation": {
1128
+ },
1129
+ "The Design Team": {
1130
+ },
1131
+ "FAQ": {
1132
+ },
1133
+ "Videos": {
1134
+ "How-to Videos": {
1135
+ },
1136
+ "New Product Videos": {
1137
+ },
1138
+ "Installation Videos": {
1139
+ },
1140
+ "Testimonial Videos": {
1141
+ },
1142
+ "Inspiration Videos": {
1143
+ },
1144
+ "About Us Videos": {
1145
+ }
1146
+ },
1147
+ "Design Idea Books": {
1148
+ },
1149
+ "Material Swatches": {
1150
+ },
1151
+ "Newsletters": {
1152
+ "Designer Tips & Tricks": {
1153
+ "David Bromstad": {
1154
+ },
1155
+ "Vanessa DeLeon": {
1156
+ },
1157
+ "Carrie Drosnes": {
1158
+ },
1159
+ "Jonathan Fong": {
1160
+ },
1161
+ "Melanie Gaboriault": {
1162
+ },
1163
+ "Kelli Kaufer": {
1164
+ },
1165
+ "Renae Keller": {
1166
+ },
1167
+ "Kari Whitman": {
1168
+ }
1169
+ },
1170
+ "Trend Alerts": {
1171
+ "Boho": {
1172
+ },
1173
+ "Colors": {
1174
+ },
1175
+ "Fronds & Ferns": {
1176
+ },
1177
+ "Maps": {
1178
+ },
1179
+ "Metals & Minerals": {
1180
+ },
1181
+ "Texture": {
1182
+ },
1183
+ "Watercolors": {
1184
+ },
1185
+ "Western": {
1186
+ }
1187
+ },
1188
+ "Unique Techniques": {
1189
+ "Ceilings": {
1190
+ },
1191
+ "Frames & Panes": {
1192
+ },
1193
+ "Layering": {
1194
+ },
1195
+ "Perspective Play": {
1196
+ },
1197
+ "Room Wraps": {
1198
+ },
1199
+ "Stairwells": {
1200
+ },
1201
+ "Walls to Windows": {
1202
+ }
1203
+ }
1204
+ },
1205
+ "Upload File Form": {
1206
+ }
1207
+ },
1208
+ "Inspiration": {
1209
+ "How To & Tips": {
1210
+ "Wallpaper vs. Paint: Which is Right for You?": {
1211
+ },
1212
+ "How to Remove Wallpaper Bubbles": {
1213
+ },
1214
+ "Can Wallpaper and Wall Murals Be Recycled?": {
1215
+ },
1216
+ "How to Wallpaper Corners": {
1217
+ },
1218
+ "What is the Difference Between Wallpaper and Wall Murals?": {
1219
+ },
1220
+ "Can You Use Wallpaper in a Bathroom?": {
1221
+ },
1222
+ "How to Remove Wallpaper Glue": {
1223
+ },
1224
+ "What Wallpaper is Best for Textured Walls?": {
1225
+ },
1226
+ "What Will Wallpaper Stick To?": {
1227
+ },
1228
+ "How To Create A Social Media Wall That Pops": {
1229
+ }
1230
+ },
1231
+ "Articles": {
1232
+ "5 Breathtaking Landscape Wall Murals": {
1233
+ },
1234
+ "Creative Kids Room Decor Ideas": {
1235
+ },
1236
+ "The Positive Impact of Wall Art In Medical Facilities": {
1237
+ },
1238
+ "Top Wall Decor Trends for 2019": {
1239
+ },
1240
+ "5 Tips for Using Wallpaper Murals": {
1241
+ },
1242
+ "A Medical Office Makeover With Tropical Beach Wallpaper Murals": {
1243
+ },
1244
+ "Branch Out With Nature Murals": {
1245
+ },
1246
+ "How To Boost Morale & Productivity at Work": {
1247
+ },
1248
+ "The Golden Girls: Rooms Reimagined": {
1249
+ }
1250
+ },
1251
+ "Customer Examples": {
1252
+ },
1253
+ "Where You've Seen Us": {
1254
+ "A Storied Style": {
1255
+ },
1256
+ "One Of A Kind": {
1257
+ },
1258
+ "Better Homes & Gardens Special Interest": {
1259
+ },
1260
+ "Classy Clutter": {
1261
+ },
1262
+ "DIY Network Blog Cabin": {
1263
+ },
1264
+ "Get A Room With Carson & Thom": {
1265
+ },
1266
+ "House & Home Web": {
1267
+ },
1268
+ "Jonathan Fong Style": {
1269
+ },
1270
+ "PenaVega Nursery": {
1271
+ },
1272
+ "BlissBranch": {
1273
+ },
1274
+ "The Doctors": {
1275
+ },
1276
+ "Pet Nation Renovation": {
1277
+ },
1278
+ "Romantic Homes Magazine": {
1279
+ },
1280
+ "Today Show Green Room": {
1281
+ },
1282
+ "Welcome Back Potter": {
1283
+ },
1284
+ "Frugalista Diaries": {
1285
+ },
1286
+ "House & Home": {
1287
+ },
1288
+ "The Ellen DeGeneres Show": {
1289
+ },
1290
+ "American Diner Revival": {
1291
+ },
1292
+ "Hotel Impossible": {
1293
+ },
1294
+ "Vanessa Deleon Interiors": {
1295
+ },
1296
+ "Martha Stewart Living": {
1297
+ },
1298
+ "Martha Stewart Weddings": {
1299
+ },
1300
+ "Extreme Makeover": {
1301
+ },
1302
+ "Oprah At Home": {
1303
+ },
1304
+ "WCCO-TV": {
1305
+ },
1306
+ "Stay or Sell": {
1307
+ },
1308
+ "LAB - The Collective": {
1309
+ }
1310
+ },
1311
+ "Customer Reviews": {
1312
+ },
1313
+ "Video Testimonials": {
1314
+ },
1315
+ "Mural Contest Winners": {
1316
+ }
1317
+ },
1318
+ "Customer Service": {
1319
+ "Shipping": {
1320
+ },
1321
+ "Returns": {
1322
+ },
1323
+ "Guarantee": {
1324
+ },
1325
+ "Meet Our Sales Team": {
1326
+ },
1327
+ "Coupons": {
1328
+ },
1329
+ "Contact Us": {
1330
+ },
1331
+ "Photo Contest Entry": {
1332
+ },
1333
+ "Upload File Form": {
1334
+ }
1335
+ }
1336
+ }