forked from sanand0/beautiful-visualisations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshopping.html
971 lines (971 loc) · 69.4 KB
/
shopping.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
<!DOCTYPE html><html>
<head>
<title>Shopping</title>
<link rel="stylesheet" href="common.css">
<style>
text.cat { font-size: 125%; }
text.cat:hover { fill: red; font-weight: bold; font-size: 200%; }
text.cat:hover + g { opacity: 1; }
path { fill: none; }
g > g { opacity: 0.04; }
</style>
</head><body>
<h1>Shopping</h1>
<p>Shoppers' movements across aisles at a store</p>
<svg width="940px" height="900px" xmlns="http://www.w3.org/2000/svg">
<g transform="rotate(90 375 325)">
<text class="cat" x="275" y="520" transform="rotate(-90 275 520)" dominant-baseline="middle" style="text-anchor:middle">Outside</text>
<g stroke="black">
<path d="M275,520 C275,390 225,170 225,40" stroke-width="0.35962px" />
<path d="M275,520 C275,390 320,170 320,40" stroke-width="0.69172px" />
<path d="M275,520 C275,390 370,170 370,40" stroke-width="0.2678px" />
<path d="M275,520 C275,390 420,170 420,40" stroke-width="0.44074px" />
<path d="M275,520 C275,390 470,170 470,40" stroke-width="0.14386px" />
<path d="M275,520 C275,390 520,170 520,40" stroke-width="0.0505px" />
<path d="M275,520 C275,390 560,170 560,40" stroke-width="0.03826px" />
<path d="M275,520 C275,390 595,170 595,40" stroke-width="0.0306px" />
<path d="M275,520 C275,390 630,170 630,40" stroke-width="0.01684px" />
<path d="M275,520 C275,390 670,170 670,40" stroke-width="0.06886px" />
<path d="M275,520 C275,390 710,170 710,40" stroke-width="0.01836px" />
<path d="M275,520 C275,390 750,170 750,40" stroke-width="0.03366px" />
<path d="M275,520 C275,390 790,170 790,40" stroke-width="0.01684px" />
<path d="M275,520 C275,390 825,170 825,40" stroke-width="0.0199px" />
<path d="M275,520 C275,390 860,170 860,40" stroke-width="0.03366px" />
<path d="M275,520 C275,390 895,170 895,40" stroke-width="0.03214px" />
<path d="M275,520 C275,390 895,110 895,240" stroke-width="0.04284px" />
<path d="M275,520 C275,390 850,110 850,240" stroke-width="0.03214px" />
<path d="M275,520 C275,390 805,110 805,240" stroke-width="0.04132px" />
<path d="M275,520 C275,390 730,110 730,240" stroke-width="0.14538px" />
<path d="M275,520 C275,390 650,110 650,240" stroke-width="0.04284px" />
<path d="M275,520 C275,390 610,110 610,240" stroke-width="0.0352px" />
<path d="M275,520 C275,390 575,110 575,240" stroke-width="0.03826px" />
<path d="M275,520 C275,390 550,110 550,240" stroke-width="0.05204px" />
<path d="M275,520 C275,390 450,110 450,240" stroke-width="0.6351px" />
<path d="M275,520 C275,390 390,110 390,240" stroke-width="8.43064px" />
<path d="M275,520 C275,390 150,240 70,240" stroke-width="5.79692px" />
<path d="M275,520 C275,390 480,390 480,520" stroke-width="2.3047px" />
<path d="M275,520 C275,390 700,390 700,520" stroke-width="0.13926px" />
</g>
<text class="cat" x="225" y="40" transform="rotate(-90 225 40)" dominant-baseline="middle" style="text-anchor:middle">Entertainment</text>
<g stroke="black">
<path d="M225,40 C225,170 275,390 275,520" stroke-width="0.48256px" />
<path d="M225,40 C225,170 320,170 320,40" stroke-width="3.62502px" />
<path d="M225,40 C225,170 370,170 370,40" stroke-width="1.33688px" />
<path d="M225,40 C225,170 420,170 420,40" stroke-width="1.53314px" />
<path d="M225,40 C225,170 470,170 470,40" stroke-width="0.60032px" />
<path d="M225,40 C225,170 520,170 520,40" stroke-width="0.2817px" />
<path d="M225,40 C225,170 560,170 560,40" stroke-width="0.16162px" />
<path d="M225,40 C225,170 595,170 595,40" stroke-width="0.10852px" />
<path d="M225,40 C225,170 630,170 630,40" stroke-width="0.11776px" />
<path d="M225,40 C225,170 670,170 670,40" stroke-width="0.36942px" />
<path d="M225,40 C225,170 710,170 710,40" stroke-width="0.16856px" />
<path d="M225,40 C225,170 750,170 750,40" stroke-width="0.12468px" />
<path d="M225,40 C225,170 790,170 790,40" stroke-width="0.09236px" />
<path d="M225,40 C225,170 825,170 825,40" stroke-width="0.13854px" />
<path d="M225,40 C225,170 860,170 860,40" stroke-width="0.14316px" />
<path d="M225,40 C225,170 895,170 895,40" stroke-width="0.2078px" />
<path d="M225,40 C225,170 895,110 895,240" stroke-width="0.06696px" />
<path d="M225,40 C225,170 850,110 850,240" stroke-width="0.01848px" />
<path d="M225,40 C225,170 805,110 805,240" stroke-width="0.03926px" />
<path d="M225,40 C225,170 730,110 730,240" stroke-width="0.1016px" />
<path d="M225,40 C225,170 650,110 650,240" stroke-width="0.03694px" />
<path d="M225,40 C225,170 610,110 610,240" stroke-width="0.06234px" />
<path d="M225,40 C225,170 575,110 575,240" stroke-width="0.05542px" />
<path d="M225,40 C225,170 550,110 550,240" stroke-width="0.08774px" />
<path d="M225,40 C225,170 450,110 450,240" stroke-width="0.9282px" />
<path d="M225,40 C225,170 390,110 390,240" stroke-width="6.45348px" />
<path d="M225,40 C225,170 150,240 70,240" stroke-width="2.40822px" />
<path d="M225,40 C225,170 480,390 480,520" stroke-width="0.2309px" />
<path d="M225,40 C225,170 700,390 700,520" stroke-width="0.01848px" />
</g>
<text class="cat" x="320" y="40" transform="rotate(-90 320 40)" dominant-baseline="middle" style="text-anchor:middle">Meat/Fish/Poultry</text>
<g stroke="black">
<path d="M320,40 C320,170 275,390 275,520" stroke-width="0.30908px" />
<path d="M320,40 C320,170 225,170 225,40" stroke-width="0.2344px" />
<path d="M320,40 C320,170 370,170 370,40" stroke-width="8.6654px" />
<path d="M320,40 C320,170 420,170 420,40" stroke-width="4.2259px" />
<path d="M320,40 C320,170 470,170 470,40" stroke-width="1.36578px" />
<path d="M320,40 C320,170 520,170 520,40" stroke-width="0.32042px" />
<path d="M320,40 C320,170 560,170 560,40" stroke-width="0.3223px" />
<path d="M320,40 C320,170 595,170 595,40" stroke-width="0.2826px" />
<path d="M320,40 C320,170 630,170 630,40" stroke-width="0.17864px" />
<path d="M320,40 C320,170 670,170 670,40" stroke-width="0.4688px" />
<path d="M320,40 C320,170 710,170 710,40" stroke-width="0.16352px" />
<path d="M320,40 C320,170 750,170 750,40" stroke-width="0.14178px" />
<path d="M320,40 C320,170 790,170 790,40" stroke-width="0.10586px" />
<path d="M320,40 C320,170 825,170 825,40" stroke-width="0.12098px" />
<path d="M320,40 C320,170 860,170 860,40" stroke-width="0.13138px" />
<path d="M320,40 C320,170 895,170 895,40" stroke-width="0.1654px" />
<path d="M320,40 C320,170 895,110 895,240" stroke-width="0.06238px" />
<path d="M320,40 C320,170 850,110 850,240" stroke-width="0.06806px" />
<path d="M320,40 C320,170 805,110 805,240" stroke-width="0.02742px" />
<path d="M320,40 C320,170 730,110 730,240" stroke-width="0.06522px" />
<path d="M320,40 C320,170 650,110 650,240" stroke-width="0.0293px" />
<path d="M320,40 C320,170 610,110 610,240" stroke-width="0.05954px" />
<path d="M320,40 C320,170 575,110 575,240" stroke-width="0.06616px" />
<path d="M320,40 C320,170 550,110 550,240" stroke-width="0.0775px" />
<path d="M320,40 C320,170 450,110 450,240" stroke-width="0.59262px" />
<path d="M320,40 C320,170 390,110 390,240" stroke-width="1.45842px" />
<path d="M320,40 C320,170 150,240 70,240" stroke-width="0.27694px" />
<path d="M320,40 C320,170 480,390 480,520" stroke-width="0.01324px" />
<path d="M320,40 C320,170 700,390 700,520" stroke-width="0.00094px" />
</g>
<text class="cat" x="370" y="40" transform="rotate(-90 370 40)" dominant-baseline="middle" style="text-anchor:middle">Ready Meals</text>
<g stroke="black">
<path d="M370,40 C370,170 275,390 275,520" stroke-width="0.33812px" />
<path d="M370,40 C370,170 225,170 225,40" stroke-width="0.13032px" />
<path d="M370,40 C370,170 320,170 320,40" stroke-width="1.12122px" />
<path d="M370,40 C370,170 420,170 420,40" stroke-width="10.09686px" />
<path d="M370,40 C370,170 470,170 470,40" stroke-width="1.95598px" />
<path d="M370,40 C370,170 520,170 520,40" stroke-width="0.38274px" />
<path d="M370,40 C370,170 560,170 560,40" stroke-width="0.42384px" />
<path d="M370,40 C370,170 595,170 595,40" stroke-width="0.29116px" />
<path d="M370,40 C370,170 630,170 630,40" stroke-width="0.14794px" />
<path d="M370,40 C370,170 670,170 670,40" stroke-width="0.56354px" />
<path d="M370,40 C370,170 710,170 710,40" stroke-width="0.16554px" />
<path d="M370,40 C370,170 750,170 750,40" stroke-width="0.13032px" />
<path d="M370,40 C370,170 790,170 790,40" stroke-width="0.11388px" />
<path d="M370,40 C370,170 825,170 825,40" stroke-width="0.14324px" />
<path d="M370,40 C370,170 860,170 860,40" stroke-width="0.10684px" />
<path d="M370,40 C370,170 895,170 895,40" stroke-width="0.17494px" />
<path d="M370,40 C370,170 895,110 895,240" stroke-width="0.07162px" />
<path d="M370,40 C370,170 850,110 850,240" stroke-width="0.06692px" />
<path d="M370,40 C370,170 805,110 805,240" stroke-width="0.04344px" />
<path d="M370,40 C370,170 730,110 730,240" stroke-width="0.07162px" />
<path d="M370,40 C370,170 650,110 650,240" stroke-width="0.03052px" />
<path d="M370,40 C370,170 610,110 610,240" stroke-width="0.07044px" />
<path d="M370,40 C370,170 575,110 575,240" stroke-width="0.0951px" />
<path d="M370,40 C370,170 550,110 550,240" stroke-width="0.0904px" />
<path d="M370,40 C370,170 450,110 450,240" stroke-width="1.59436px" />
<path d="M370,40 C370,170 390,110 390,240" stroke-width="1.32198px" />
<path d="M370,40 C370,170 150,240 70,240" stroke-width="0.24656px" />
<path d="M370,40 C370,170 480,390 480,520" stroke-width="0.00822px" />
<path d="M370,40 C370,170 700,390 700,520" stroke-width="0.00234px" />
</g>
<text class="cat" x="420" y="40" transform="rotate(-90 420 40)" dominant-baseline="middle" style="text-anchor:middle">Dairy</text>
<g stroke="black">
<path d="M420,40 C420,170 275,390 275,520" stroke-width="0.37376px" />
<path d="M420,40 C420,170 225,170 225,40" stroke-width="0.09604px" />
<path d="M420,40 C420,170 320,170 320,40" stroke-width="0.41472px" />
<path d="M420,40 C420,170 370,170 370,40" stroke-width="0.61574px" />
<path d="M420,40 C420,170 470,170 470,40" stroke-width="9.27258px" />
<path d="M420,40 C420,170 520,170 520,40" stroke-width="1.093px" />
<path d="M420,40 C420,170 560,170 560,40" stroke-width="0.9977px" />
<path d="M420,40 C420,170 595,170 595,40" stroke-width="0.5815px" />
<path d="M420,40 C420,170 630,170 630,40" stroke-width="0.34398px" />
<path d="M420,40 C420,170 670,170 670,40" stroke-width="1.3104px" />
<path d="M420,40 C420,170 710,170 710,40" stroke-width="0.32016px" />
<path d="M420,40 C420,170 750,170 750,40" stroke-width="0.22486px" />
<path d="M420,40 C420,170 790,170 790,40" stroke-width="0.27994px" />
<path d="M420,40 C420,170 825,170 825,40" stroke-width="0.24272px" />
<path d="M420,40 C420,170 860,170 860,40" stroke-width="0.19656px" />
<path d="M420,40 C420,170 895,170 895,40" stroke-width="0.30228px" />
<path d="M420,40 C420,170 895,110 895,240" stroke-width="0.09382px" />
<path d="M420,40 C420,170 850,110 850,240" stroke-width="0.0551px" />
<path d="M420,40 C420,170 805,110 805,240" stroke-width="0.0685px" />
<path d="M420,40 C420,170 730,110 730,240" stroke-width="0.13328px" />
<path d="M420,40 C420,170 650,110 650,240" stroke-width="0.05808px" />
<path d="M420,40 C420,170 610,110 610,240" stroke-width="0.11392px" />
<path d="M420,40 C420,170 575,110 575,240" stroke-width="0.18464px" />
<path d="M420,40 C420,170 550,110 550,240" stroke-width="0.18614px" />
<path d="M420,40 C420,170 450,110 450,240" stroke-width="1.7132px" />
<path d="M420,40 C420,170 390,110 390,240" stroke-width="0.4981px" />
<path d="M420,40 C420,170 150,240 70,240" stroke-width="0.21816px" />
<path d="M420,40 C420,170 480,390 480,520" stroke-width="0.00968px" />
<path d="M420,40 C420,170 700,390 700,520" stroke-width="0.00148px" />
</g>
<text class="cat" x="470" y="40" transform="rotate(-90 470 40)" dominant-baseline="middle" style="text-anchor:middle">Yogurts & Desserts</text>
<g stroke="black">
<path d="M470,40 C470,170 275,390 275,520" stroke-width="0.40146px" />
<path d="M470,40 C470,170 225,170 225,40" stroke-width="0.0675px" />
<path d="M470,40 C470,170 320,170 320,40" stroke-width="0.29974px" />
<path d="M470,40 C470,170 370,170 370,40" stroke-width="0.36996px" />
<path d="M470,40 C470,170 420,170 420,40" stroke-width="1.10626px" />
<path d="M470,40 C470,170 520,170 520,40" stroke-width="4.06228px" />
<path d="M470,40 C470,170 560,170 560,40" stroke-width="3.15316px" />
<path d="M470,40 C470,170 595,170 595,40" stroke-width="1.30878px" />
<path d="M470,40 C470,170 630,170 630,40" stroke-width="0.721px" />
<path d="M470,40 C470,170 670,170 670,40" stroke-width="1.95148px" />
<path d="M470,40 C470,170 710,170 710,40" stroke-width="0.57338px" />
<path d="M470,40 C470,170 750,170 750,40" stroke-width="0.39336px" />
<path d="M470,40 C470,170 790,170 790,40" stroke-width="0.35736px" />
<path d="M470,40 C470,170 825,170 825,40" stroke-width="0.32224px" />
<path d="M470,40 C470,170 860,170 860,40" stroke-width="0.27994px" />
<path d="M470,40 C470,170 895,170 895,40" stroke-width="0.32134px" />
<path d="M470,40 C470,170 895,110 895,240" stroke-width="0.16022px" />
<path d="M470,40 C470,170 850,110 850,240" stroke-width="0.09452px" />
<path d="M470,40 C470,170 805,110 805,240" stroke-width="0.09362px" />
<path d="M470,40 C470,170 730,110 730,240" stroke-width="0.12962px" />
<path d="M470,40 C470,170 650,110 650,240" stroke-width="0.09452px" />
<path d="M470,40 C470,170 610,110 610,240" stroke-width="0.21964px" />
<path d="M470,40 C470,170 575,110 575,240" stroke-width="0.40056px" />
<path d="M470,40 C470,170 550,110 550,240" stroke-width="0.61838px" />
<path d="M470,40 C470,170 450,110 450,240" stroke-width="1.90198px" />
<path d="M470,40 C470,170 390,110 390,240" stroke-width="0.37986px" />
<path d="M470,40 C470,170 150,240 70,240" stroke-width="0.20252px" />
<path d="M470,40 C470,170 480,390 480,520" stroke-width="0.0135px" />
<path d="M470,40 C470,170 700,390 700,520" stroke-width="0.0018px" />
</g>
<text class="cat" x="520" y="40" transform="rotate(-90 520 40)" dominant-baseline="middle" style="text-anchor:middle">World Foods</text>
<g stroke="black">
<path d="M520,40 C520,170 275,390 275,520" stroke-width="0.39382px" />
<path d="M520,40 C520,170 225,170 225,40" stroke-width="0.07608px" />
<path d="M520,40 C520,170 320,170 320,40" stroke-width="0.18124px" />
<path d="M520,40 C520,170 370,170 370,40" stroke-width="0.21034px" />
<path d="M520,40 C520,170 420,170 420,40" stroke-width="0.39382px" />
<path d="M520,40 C520,170 470,170 470,40" stroke-width="0.6534px" />
<path d="M520,40 C520,170 560,170 560,40" stroke-width="6.51824px" />
<path d="M520,40 C520,170 595,170 595,40" stroke-width="2.50168px" />
<path d="M520,40 C520,170 630,170 630,40" stroke-width="1.02932px" />
<path d="M520,40 C520,170 670,170 670,40" stroke-width="2.06534px" />
<path d="M520,40 C520,170 710,170 710,40" stroke-width="0.63326px" />
<path d="M520,40 C520,170 750,170 750,40" stroke-width="0.44306px" />
<path d="M520,40 C520,170 790,170 790,40" stroke-width="0.4162px" />
<path d="M520,40 C520,170 825,170 825,40" stroke-width="0.3804px" />
<path d="M520,40 C520,170 860,170 860,40" stroke-width="0.27076px" />
<path d="M520,40 C520,170 895,170 895,40" stroke-width="0.42738px" />
<path d="M520,40 C520,170 895,110 895,240" stroke-width="0.1544px" />
<path d="M520,40 C520,170 850,110 850,240" stroke-width="0.09398px" />
<path d="M520,40 C520,170 805,110 805,240" stroke-width="0.11188px" />
<path d="M520,40 C520,170 730,110 730,240" stroke-width="0.18572px" />
<path d="M520,40 C520,170 650,110 650,240" stroke-width="0.07832px" />
<path d="M520,40 C520,170 610,110 610,240" stroke-width="0.28194px" />
<path d="M520,40 C520,170 575,110 575,240" stroke-width="0.50124px" />
<path d="M520,40 C520,170 550,110 550,240" stroke-width="0.66682px" />
<path d="M520,40 C520,170 450,110 450,240" stroke-width="0.7787px" />
<path d="M520,40 C520,170 390,110 390,240" stroke-width="0.34236px" />
<path d="M520,40 C520,170 150,240 70,240" stroke-width="0.20362px" />
<path d="M520,40 C520,170 480,390 480,520" stroke-width="0.00448px" />
<path d="M520,40 C520,170 700,390 700,520" stroke-width="0.00224px" />
</g>
<text class="cat" x="560" y="40" transform="rotate(-90 560 40)" dominant-baseline="middle" style="text-anchor:middle">Canned Foods</text>
<g stroke="black">
<path d="M560,40 C560,170 275,390 275,520" stroke-width="0.42892px" />
<path d="M560,40 C560,170 225,170 225,40" stroke-width="0.06026px" />
<path d="M560,40 C560,170 320,170 320,40" stroke-width="0.1666px" />
<path d="M560,40 C560,170 370,170 370,40" stroke-width="0.14534px" />
<path d="M560,40 C560,170 420,170 420,40" stroke-width="0.25168px" />
<path d="M560,40 C560,170 470,170 470,40" stroke-width="0.33322px" />
<path d="M560,40 C560,170 520,170 520,40" stroke-width="0.57426px" />
<path d="M560,40 C560,170 595,170 595,40" stroke-width="7.03296px" />
<path d="M560,40 C560,170 630,170 630,40" stroke-width="2.0117px" />
<path d="M560,40 C560,170 670,170 670,40" stroke-width="2.66926px" />
<path d="M560,40 C560,170 710,170 710,40" stroke-width="0.74264px" />
<path d="M560,40 C560,170 750,170 750,40" stroke-width="0.54946px" />
<path d="M560,40 C560,170 790,170 790,40" stroke-width="0.47678px" />
<path d="M560,40 C560,170 825,170 825,40" stroke-width="0.42184px" />
<path d="M560,40 C560,170 860,170 860,40" stroke-width="0.28004px" />
<path d="M560,40 C560,170 895,170 895,40" stroke-width="0.35626px" />
<path d="M560,40 C560,170 895,110 895,240" stroke-width="0.15066px" />
<path d="M560,40 C560,170 850,110 850,240" stroke-width="0.1152px" />
<path d="M560,40 C560,170 805,110 805,240" stroke-width="0.09926px" />
<path d="M560,40 C560,170 730,110 730,240" stroke-width="0.16838px" />
<path d="M560,40 C560,170 650,110 650,240" stroke-width="0.1613px" />
<path d="M560,40 C560,170 610,110 610,240" stroke-width="0.34384px" />
<path d="M560,40 C560,170 575,110 575,240" stroke-width="0.7781px" />
<path d="M560,40 C560,170 550,110 550,240" stroke-width="0.84368px" />
<path d="M560,40 C560,170 450,110 450,240" stroke-width="0.41652px" />
<path d="M560,40 C560,170 390,110 390,240" stroke-width="0.23218px" />
<path d="M560,40 C560,170 150,240 70,240" stroke-width="0.1737px" />
<path d="M560,40 C560,170 480,390 480,520" stroke-width="0.0124px" />
<path d="M560,40 C560,170 700,390 700,520" stroke-width="0.00354px" />
</g>
<text class="cat" x="595" y="40" transform="rotate(-90 595 40)" dominant-baseline="middle" style="text-anchor:middle">Rice, Pasta & Recipe Sauces</text>
<g stroke="black">
<path d="M595,40 C595,170 275,390 275,520" stroke-width="0.47818px" />
<path d="M595,40 C595,170 225,170 225,40" stroke-width="0.05292px" />
<path d="M595,40 C595,170 320,170 320,40" stroke-width="0.24092px" />
<path d="M595,40 C595,170 370,170 370,40" stroke-width="0.18068px" />
<path d="M595,40 C595,170 420,170 420,40" stroke-width="0.28472px" />
<path d="M595,40 C595,170 470,170 470,40" stroke-width="0.31028px" />
<path d="M595,40 C595,170 520,170 520,40" stroke-width="0.334px" />
<path d="M595,40 C595,170 560,170 560,40" stroke-width="0.73918px" />
<path d="M595,40 C595,170 630,170 630,40" stroke-width="6.12338px" />
<path d="M595,40 C595,170 670,170 670,40" stroke-width="3.97152px" />
<path d="M595,40 C595,170 710,170 710,40" stroke-width="1.12976px" />
<path d="M595,40 C595,170 750,170 750,40" stroke-width="0.75014px" />
<path d="M595,40 C595,170 790,170 790,40" stroke-width="0.6023px" />
<path d="M595,40 C595,170 825,170 825,40" stroke-width="0.47088px" />
<path d="M595,40 C595,170 860,170 860,40" stroke-width="0.35226px" />
<path d="M595,40 C595,170 895,170 895,40" stroke-width="0.44716px" />
<path d="M595,40 C595,170 895,110 895,240" stroke-width="0.19712px" />
<path d="M595,40 C595,170 850,110 850,240" stroke-width="0.14236px" />
<path d="M595,40 C595,170 805,110 805,240" stroke-width="0.1168px" />
<path d="M595,40 C595,170 730,110 730,240" stroke-width="0.26464px" />
<path d="M595,40 C595,170 650,110 650,240" stroke-width="0.21172px" />
<path d="M595,40 C595,170 610,110 610,240" stroke-width="0.73918px" />
<path d="M595,40 C595,170 575,110 575,240" stroke-width="0.75562px" />
<path d="M595,40 C595,170 550,110 550,240" stroke-width="0.1953px" />
<path d="M595,40 C595,170 450,110 450,240" stroke-width="0.40884px" />
<path d="M595,40 C595,170 390,110 390,240" stroke-width="0.31576px" />
<path d="M595,40 C595,170 150,240 70,240" stroke-width="0.16974px" />
<path d="M595,40 C595,170 480,390 480,520" stroke-width="0.01096px" />
<path d="M595,40 C595,170 700,390 700,520" stroke-width="0.00366px" />
</g>
<text class="cat" x="630" y="40" transform="rotate(-90 630 40)" dominant-baseline="middle" style="text-anchor:middle">Dressings, Table Sauces, Oil</text>
<g stroke="black">
<path d="M630,40 C630,170 275,390 275,520" stroke-width="0.37252px" />
<path d="M630,40 C630,170 225,170 225,40" stroke-width="0.05008px" />
<path d="M630,40 C630,170 320,170 320,40" stroke-width="0.17224px" />
<path d="M630,40 C630,170 370,170 370,40" stroke-width="0.12218px" />
<path d="M630,40 C630,170 420,170 420,40" stroke-width="0.26838px" />
<path d="M630,40 C630,170 470,170 470,40" stroke-width="0.30242px" />
<path d="M630,40 C630,170 520,170 520,40" stroke-width="0.22232px" />
<path d="M630,40 C630,170 560,170 560,40" stroke-width="0.33848px" />
<path d="M630,40 C630,170 595,170 595,40" stroke-width="0.8512px" />
<path d="M630,40 C630,170 670,170 670,40" stroke-width="7.90106px" />
<path d="M630,40 C630,170 710,170 710,40" stroke-width="2.26718px" />
<path d="M630,40 C630,170 750,170 750,40" stroke-width="1.04346px" />
<path d="M630,40 C630,170 790,170 790,40" stroke-width="0.63488px" />
<path d="M630,40 C630,170 825,170 825,40" stroke-width="0.60684px" />
<path d="M630,40 C630,170 860,170 860,40" stroke-width="0.41658px" />
<path d="M630,40 C630,170 895,170 895,40" stroke-width="0.51072px" />
<path d="M630,40 C630,170 895,110 895,240" stroke-width="0.29642px" />
<path d="M630,40 C630,170 850,110 850,240" stroke-width="0.15822px" />
<path d="M630,40 C630,170 805,110 805,240" stroke-width="0.17824px" />
<path d="M630,40 C630,170 730,110 730,240" stroke-width="0.45464px" />
<path d="M630,40 C630,170 650,110 650,240" stroke-width="0.4346px" />
<path d="M630,40 C630,170 610,110 610,240" stroke-width="0.9233px" />
<path d="M630,40 C630,170 575,110 575,240" stroke-width="0.44062px" />
<path d="M630,40 C630,170 550,110 550,240" stroke-width="0.19226px" />
<path d="M630,40 C630,170 450,110 450,240" stroke-width="0.4306px" />
<path d="M630,40 C630,170 390,110 390,240" stroke-width="0.26036px" />
<path d="M630,40 C630,170 150,240 70,240" stroke-width="0.1402px" />
<path d="M630,40 C630,170 480,390 480,520" stroke-width="0.00802px" />
<path d="M630,40 C630,170 700,390 700,520" stroke-width="0.002px" />
</g>
<text class="cat" x="670" y="40" transform="rotate(-90 670 40)" dominant-baseline="middle" style="text-anchor:middle">Bread, Cake & Rolls</text>
<g stroke="black">
<path d="M670,40 C670,170 275,390 275,520" stroke-width="0.64004px" />
<path d="M670,40 C670,170 225,170 225,40" stroke-width="0.0762px" />
<path d="M670,40 C670,170 320,170 320,40" stroke-width="0.17198px" />
<path d="M670,40 C670,170 370,170 370,40" stroke-width="0.16762px" />
<path d="M670,40 C670,170 420,170 420,40" stroke-width="0.36682px" />
<path d="M670,40 C670,170 470,170 470,40" stroke-width="0.3309px" />
<path d="M670,40 C670,170 520,170 520,40" stroke-width="0.16546px" />
<path d="M670,40 C670,170 560,170 560,40" stroke-width="0.20572px" />
<path d="M670,40 C670,170 595,170 595,40" stroke-width="0.2743px" />
<path d="M670,40 C670,170 630,170 630,40" stroke-width="0.43866px" />
<path d="M670,40 C670,170 710,170 710,40" stroke-width="5.2705px" />
<path d="M670,40 C670,170 750,170 750,40" stroke-width="2.21074px" />
<path d="M670,40 C670,170 790,170 790,40" stroke-width="1.84174px" />
<path d="M670,40 C670,170 825,170 825,40" stroke-width="1.5805px" />
<path d="M670,40 C670,170 860,170 860,40" stroke-width="0.95026px" />
<path d="M670,40 C670,170 895,170 895,40" stroke-width="1.11788px" />
<path d="M670,40 C670,170 895,110 895,240" stroke-width="0.47022px" />
<path d="M670,40 C670,170 850,110 850,240" stroke-width="0.3407px" />
<path d="M670,40 C670,170 805,110 805,240" stroke-width="0.36356px" />
<path d="M670,40 C670,170 730,110 730,240" stroke-width="0.76304px" />
<path d="M670,40 C670,170 650,110 650,240" stroke-width="0.42452px" />
<path d="M670,40 C670,170 610,110 610,240" stroke-width="0.31348px" />
<path d="M670,40 C670,170 575,110 575,240" stroke-width="0.27322px" />
<path d="M670,40 C670,170 550,110 550,240" stroke-width="0.15892px" />
<path d="M670,40 C670,170 450,110 450,240" stroke-width="0.51486px" />
<path d="M670,40 C670,170 390,110 390,240" stroke-width="0.30042px" />
<path d="M670,40 C670,170 150,240 70,240" stroke-width="0.24056px" />
<path d="M670,40 C670,170 480,390 480,520" stroke-width="0.02068px" />
<path d="M670,40 C670,170 700,390 700,520" stroke-width="0.00654px" />
</g>
<text class="cat" x="710" y="40" transform="rotate(-90 710 40)" dominant-baseline="middle" style="text-anchor:middle">Eggs, Baking, Spreads</text>
<g stroke="black">
<path d="M710,40 C710,170 275,390 275,520" stroke-width="0.54254px" />
<path d="M710,40 C710,170 225,170 225,40" stroke-width="0.06318px" />
<path d="M710,40 C710,170 320,170 320,40" stroke-width="0.1598px" />
<path d="M710,40 C710,170 370,170 370,40" stroke-width="0.12448px" />
<path d="M710,40 C710,170 420,170 420,40" stroke-width="0.2787px" />
<path d="M710,40 C710,170 470,170 470,40" stroke-width="0.35674px" />
<path d="M710,40 C710,170 520,170 520,40" stroke-width="0.11706px" />
<path d="M710,40 C710,170 560,170 560,40" stroke-width="0.20252px" />
<path d="M710,40 C710,170 595,170 595,40" stroke-width="0.23782px" />
<path d="M710,40 C710,170 630,170 630,40" stroke-width="0.46822px" />
<path d="M710,40 C710,170 670,170 670,40" stroke-width="0.86956px" />
<path d="M710,40 C710,170 750,170 750,40" stroke-width="5.864px" />
<path d="M710,40 C710,170 790,170 790,40" stroke-width="2.35972px" />
<path d="M710,40 C710,170 825,170 825,40" stroke-width="1.79116px" />
<path d="M710,40 C710,170 860,170 860,40" stroke-width="0.82126px" />
<path d="M710,40 C710,170 895,170 895,40" stroke-width="1.01078px" />
<path d="M710,40 C710,170 895,110 895,240" stroke-width="0.70792px" />
<path d="M710,40 C710,170 850,110 850,240" stroke-width="0.39204px" />
<path d="M710,40 C710,170 805,110 805,240" stroke-width="0.44594px" />
<path d="M710,40 C710,170 730,110 730,240" stroke-width="1.04608px" />
<path d="M710,40 C710,170 650,110 650,240" stroke-width="0.17838px" />
<path d="M710,40 C710,170 610,110 610,240" stroke-width="0.34002px" />
<path d="M710,40 C710,170 575,110 575,240" stroke-width="0.33074px" />
<path d="M710,40 C710,170 550,110 550,240" stroke-width="0.14864px" />
<path d="M710,40 C710,170 450,110 450,240" stroke-width="0.53326px" />
<path d="M710,40 C710,170 390,110 390,240" stroke-width="0.35674px" />
<path d="M710,40 C710,170 150,240 70,240" stroke-width="0.23968px" />
<path d="M710,40 C710,170 480,390 480,520" stroke-width="0.01114px" />
<path d="M710,40 C710,170 700,390 700,520" stroke-width="0.00186px" />
</g>
<text class="cat" x="750" y="40" transform="rotate(-90 750 40)" dominant-baseline="middle" style="text-anchor:middle">Sugar, Tea, Coffee, UHT Milk</text>
<g stroke="black">
<path d="M750,40 C750,170 275,390 275,520" stroke-width="0.79676px" />
<path d="M750,40 C750,170 225,170 225,40" stroke-width="0.06948px" />
<path d="M750,40 C750,170 320,170 320,40" stroke-width="0.1714px" />
<path d="M750,40 C750,170 370,170 370,40" stroke-width="0.12044px" />
<path d="M750,40 C750,170 420,170 420,40" stroke-width="0.2432px" />
<path d="M750,40 C750,170 470,170 470,40" stroke-width="0.2733px" />
<path d="M750,40 C750,170 520,170 520,40" stroke-width="0.16676px" />
<path d="M750,40 C750,170 560,170 560,40" stroke-width="0.16214px" />
<path d="M750,40 C750,170 595,170 595,40" stroke-width="0.21308px" />
<path d="M750,40 C750,170 630,170 630,40" stroke-width="0.31732px" />
<path d="M750,40 C750,170 670,170 670,40" stroke-width="0.5582px" />
<path d="M750,40 C750,170 710,170 710,40" stroke-width="0.9033px" />
<path d="M750,40 C750,170 790,170 790,40" stroke-width="5.42212px" />
<path d="M750,40 C750,170 825,170 825,40" stroke-width="2.92298px" />
<path d="M750,40 C750,170 860,170 860,40" stroke-width="1.37348px" />
<path d="M750,40 C750,170 895,170 895,40" stroke-width="1.29242px" />
<path d="M750,40 C750,170 895,110 895,240" stroke-width="0.74812px" />
<path d="M750,40 C750,170 850,110 850,240" stroke-width="0.63px" />
<path d="M750,40 C750,170 805,110 805,240" stroke-width="0.55356px" />
<path d="M750,40 C750,170 730,110 730,240" stroke-width="0.87782px" />
<path d="M750,40 C750,170 650,110 650,240" stroke-width="0.2015px" />
<path d="M750,40 C750,170 610,110 610,240" stroke-width="0.33584px" />
<path d="M750,40 C750,170 575,110 575,240" stroke-width="0.315px" />
<path d="M750,40 C750,170 550,110 550,240" stroke-width="0.1436px" />
<path d="M750,40 C750,170 450,110 450,240" stroke-width="0.56282px" />
<path d="M750,40 C750,170 390,110 390,240" stroke-width="0.30804px" />
<path d="M750,40 C750,170 150,240 70,240" stroke-width="0.28026px" />
<path d="M750,40 C750,170 480,390 480,520" stroke-width="0.03012px" />
<path d="M750,40 C750,170 700,390 700,520" stroke-width="0.00694px" />
</g>
<text class="cat" x="790" y="40" transform="rotate(-90 790 40)" dominant-baseline="middle" style="text-anchor:middle">Cereals</text>
<g stroke="black">
<path d="M790,40 C790,170 275,390 275,520" stroke-width="0.97646px" />
<path d="M790,40 C790,170 225,170 225,40" stroke-width="0.06694px" />
<path d="M790,40 C790,170 320,170 320,40" stroke-width="0.14774px" />
<path d="M790,40 C790,170 370,170 370,40" stroke-width="0.12466px" />
<path d="M790,40 C790,170 420,170 420,40" stroke-width="0.26084px" />
<path d="M790,40 C790,170 470,170 470,40" stroke-width="0.26084px" />
<path d="M790,40 C790,170 520,170 520,40" stroke-width="0.0831px" />
<path d="M790,40 C790,170 560,170 560,40" stroke-width="0.1639px" />
<path d="M790,40 C790,170 595,170 595,40" stroke-width="0.18468px" />
<path d="M790,40 C790,170 630,170 630,40" stroke-width="0.19622px" />
<path d="M790,40 C790,170 670,170 670,40" stroke-width="0.47784px" />
<path d="M790,40 C790,170 710,170 710,40" stroke-width="0.49862px" />
<path d="M790,40 C790,170 750,170 750,40" stroke-width="0.67868px" />
<path d="M790,40 C790,170 825,170 825,40" stroke-width="5.86104px" />
<path d="M790,40 C790,170 860,170 860,40" stroke-width="1.77054px" />
<path d="M790,40 C790,170 895,170 895,40" stroke-width="2.11218px" />
<path d="M790,40 C790,170 895,110 895,240" stroke-width="1.22576px" />
<path d="M790,40 C790,170 850,110 850,240" stroke-width="0.84026px" />
<path d="M790,40 C790,170 805,110 805,240" stroke-width="1.06648px" />
<path d="M790,40 C790,170 730,110 730,240" stroke-width="0.72714px" />
<path d="M790,40 C790,170 650,110 650,240" stroke-width="0.1662px" />
<path d="M790,40 C790,170 610,110 610,240" stroke-width="0.34396px" />
<path d="M790,40 C790,170 575,110 575,240" stroke-width="0.26316px" />
<path d="M790,40 C790,170 550,110 550,240" stroke-width="0.22622px" />
<path d="M790,40 C790,170 450,110 450,240" stroke-width="0.70638px" />
<path d="M790,40 C790,170 390,110 390,240" stroke-width="0.27932px" />
<path d="M790,40 C790,170 150,240 70,240" stroke-width="0.26546px" />
<path d="M790,40 C790,170 480,390 480,520" stroke-width="0.02308px" />
<path d="M790,40 C790,170 700,390 700,520" stroke-width="0.0023px" />
</g>
<text class="cat" x="825" y="40" transform="rotate(-90 825 40)" dominant-baseline="middle" style="text-anchor:middle">Biscuits</text>
<g stroke="black">
<path d="M825,40 C825,170 275,390 275,520" stroke-width="1.04876px" />
<path d="M825,40 C825,170 225,170 225,40" stroke-width="0.06158px" />
<path d="M825,40 C825,170 320,170 320,40" stroke-width="0.11124px" />
<path d="M825,40 C825,170 370,170 370,40" stroke-width="0.13706px" />
<path d="M825,40 C825,170 420,170 420,40" stroke-width="0.24828px" />
<path d="M825,40 C825,170 470,170 470,40" stroke-width="0.20062px" />
<path d="M825,40 C825,170 520,170 520,40" stroke-width="0.10328px" />
<path d="M825,40 C825,170 560,170 560,40" stroke-width="0.11918px" />
<path d="M825,40 C825,170 595,170 595,40" stroke-width="0.14698px" />
<path d="M825,40 C825,170 630,170 630,40" stroke-width="0.1748px" />
<path d="M825,40 C825,170 670,170 670,40" stroke-width="0.40918px" />
<path d="M825,40 C825,170 710,170 710,40" stroke-width="0.38336px" />
<path d="M825,40 C825,170 750,170 750,40" stroke-width="0.3774px" />
<path d="M825,40 C825,170 790,170 790,40" stroke-width="0.75678px" />
<path d="M825,40 C825,170 860,170 860,40" stroke-width="5.68278px" />
<path d="M825,40 C825,170 895,170 895,40" stroke-width="2.79274px" />
<path d="M825,40 C825,170 895,110 895,240" stroke-width="1.8254px" />
<path d="M825,40 C825,170 850,110 850,240" stroke-width="0.96534px" />
<path d="M825,40 C825,170 805,110 805,240" stroke-width="1.43212px" />
<path d="M825,40 C825,170 730,110 730,240" stroke-width="0.76076px" />
<path d="M825,40 C825,170 650,110 650,240" stroke-width="0.19862px" />
<path d="M825,40 C825,170 610,110 610,240" stroke-width="0.36746px" />
<path d="M825,40 C825,170 575,110 575,240" stroke-width="0.27808px" />
<path d="M825,40 C825,170 550,110 550,240" stroke-width="0.19664px" />
<path d="M825,40 C825,170 450,110 450,240" stroke-width="0.62966px" />
<path d="M825,40 C825,170 390,110 390,240" stroke-width="0.29398px" />
<path d="M825,40 C825,170 150,240 70,240" stroke-width="0.2761px" />
<path d="M825,40 C825,170 480,390 480,520" stroke-width="0.01788px" />
<path d="M825,40 C825,170 700,390 700,520" stroke-width="0.00398px" />
</g>
<text class="cat" x="860" y="40" transform="rotate(-90 860 40)" dominant-baseline="middle" style="text-anchor:middle">Confectionary & Bottled Carbs</text>
<g stroke="black">
<path d="M860,40 C860,170 275,390 275,520" stroke-width="1.37344px" />
<path d="M860,40 C860,170 225,170 225,40" stroke-width="0.08066px" />
<path d="M860,40 C860,170 320,170 320,40" stroke-width="0.17514px" />
<path d="M860,40 C860,170 370,170 370,40" stroke-width="0.17744px" />
<path d="M860,40 C860,170 420,170 420,40" stroke-width="0.21892px" />
<path d="M860,40 C860,170 470,170 470,40" stroke-width="0.22584px" />
<path d="M860,40 C860,170 520,170 520,40" stroke-width="0.1567px" />
<path d="M860,40 C860,170 560,170 560,40" stroke-width="0.17744px" />
<path d="M860,40 C860,170 595,170 595,40" stroke-width="0.17284px" />
<path d="M860,40 C860,170 630,170 630,40" stroke-width="0.16822px" />
<path d="M860,40 C860,170 670,170 670,40" stroke-width="0.4148px" />
<path d="M860,40 C860,170 710,170 710,40" stroke-width="0.3157px" />
<path d="M860,40 C860,170 750,170 750,40" stroke-width="0.34106px" />
<path d="M860,40 C860,170 790,170 790,40" stroke-width="0.39636px" />
<path d="M860,40 C860,170 825,170 825,40" stroke-width="1.45178px" />
<path d="M860,40 C860,170 895,170 895,40" stroke-width="4.52126px" />
<path d="M860,40 C860,170 895,110 895,240" stroke-width="2.84826px" />
<path d="M860,40 C860,170 850,110 850,240" stroke-width="1.55086px" />
<path d="M860,40 C860,170 805,110 805,240" stroke-width="1.3066px" />
<path d="M860,40 C860,170 730,110 730,240" stroke-width="1.1015px" />
<path d="M860,40 C860,170 650,110 650,240" stroke-width="0.25118px" />
<path d="M860,40 C860,170 610,110 610,240" stroke-width="0.38714px" />
<path d="M860,40 C860,170 575,110 575,240" stroke-width="0.35258px" />
<path d="M860,40 C860,170 550,110 550,240" stroke-width="0.2051px" />
<path d="M860,40 C860,170 450,110 450,240" stroke-width="0.77198px" />
<path d="M860,40 C860,170 390,110 390,240" stroke-width="0.43784px" />
<path d="M860,40 C860,170 150,240 70,240" stroke-width="0.37102px" />
<path d="M860,40 C860,170 480,390 480,520" stroke-width="0.0484px" />
</g>
<text class="cat" x="895" y="40" transform="rotate(-90 895 40)" dominant-baseline="middle" style="text-anchor:middle">Canned Carbs & Juices</text>
<g stroke="black">
<path d="M895,40 C895,170 275,390 275,520" stroke-width="1.5138px" />
<path d="M895,40 C895,170 225,170 225,40" stroke-width="0.11354px" />
<path d="M895,40 C895,170 320,170 320,40" stroke-width="0.19368px" />
<path d="M895,40 C895,170 370,170 370,40" stroke-width="0.187px" />
<path d="M895,40 C895,170 420,170 420,40" stroke-width="0.33838px" />
<path d="M895,40 C895,170 470,170 470,40" stroke-width="0.29608px" />
<path d="M895,40 C895,170 520,170 520,40" stroke-width="0.1959px" />
<path d="M895,40 C895,170 560,170 560,40" stroke-width="0.1269px" />
<path d="M895,40 C895,170 595,170 595,40" stroke-width="0.17142px" />
<path d="M895,40 C895,170 630,170 630,40" stroke-width="0.22262px" />
<path d="M895,40 C895,170 670,170 670,40" stroke-width="0.45414px" />
<path d="M895,40 C895,170 710,170 710,40" stroke-width="0.38068px" />
<path d="M895,40 C895,170 750,170 750,40" stroke-width="0.39848px" />
<path d="M895,40 C895,170 790,170 790,40" stroke-width="0.46304px" />
<path d="M895,40 C895,170 825,170 825,40" stroke-width="0.81256px" />
<path d="M895,40 C895,170 860,170 860,40" stroke-width="1.48708px" />
<path d="M895,40 C895,170 895,110 895,240" stroke-width="4.45236px" />
<path d="M895,40 C895,170 850,110 850,240" stroke-width="1.71416px" />
<path d="M895,40 C895,170 805,110 805,240" stroke-width="1.54496px" />
<path d="M895,40 C895,170 730,110 730,240" stroke-width="1.2756px" />
<path d="M895,40 C895,170 650,110 650,240" stroke-width="0.26492px" />
<path d="M895,40 C895,170 610,110 610,240" stroke-width="0.56544px" />
<path d="M895,40 C895,170 575,110 575,240" stroke-width="0.4252px" />
<path d="M895,40 C895,170 550,110 550,240" stroke-width="0.27828px" />
<path d="M895,40 C895,170 450,110 450,240" stroke-width="1.09306px" />
<path d="M895,40 C895,170 390,110 390,240" stroke-width="0.53428px" />
<path d="M895,40 C895,170 150,240 70,240" stroke-width="0.44746px" />
<path d="M895,40 C895,170 480,390 480,520" stroke-width="0.03562px" />
<path d="M895,40 C895,170 700,390 700,520" stroke-width="0.01336px" />
</g>
<text class="cat" x="895" y="240" transform="rotate(-90 895 240)" dominant-baseline="middle" style="text-anchor:middle">Ice Creams & Frozen Meat/Fish</text>
<g stroke="black">
<path d="M895,240 C895,110 275,390 275,520" stroke-width="3.92828px" />
<path d="M895,240 C895,110 225,170 225,40" stroke-width="0.05422px" />
<path d="M895,240 C895,110 320,170 320,40" stroke-width="0.1397px" />
<path d="M895,240 C895,110 370,170 370,40" stroke-width="0.11468px" />
<path d="M895,240 C895,110 420,170 420,40" stroke-width="0.16472px" />
<path d="M895,240 C895,110 470,170 470,40" stroke-width="0.16056px" />
<path d="M895,240 C895,110 520,170 520,40" stroke-width="0.06046px" />
<path d="M895,240 C895,110 560,170 560,40" stroke-width="0.06046px" />
<path d="M895,240 C895,110 595,170 595,40" stroke-width="0.07298px" />
<path d="M895,240 C895,110 630,170 630,40" stroke-width="0.11676px" />
<path d="M895,240 C895,110 670,170 670,40" stroke-width="0.17514px" />
<path d="M895,240 C895,110 710,170 710,40" stroke-width="0.17098px" />
<path d="M895,240 C895,110 750,170 750,40" stroke-width="0.11676px" />
<path d="M895,240 C895,110 790,170 790,40" stroke-width="0.10216px" />
<path d="M895,240 C895,110 825,170 825,40" stroke-width="0.1668px" />
<path d="M895,240 C895,110 860,170 860,40" stroke-width="0.21476px" />
<path d="M895,240 C895,110 895,170 895,40" stroke-width="0.65262px" />
<path d="M895,240 C895,110 850,110 850,240" stroke-width="6.23228px" />
<path d="M895,240 C895,110 805,110 805,240" stroke-width="1.80358px" />
<path d="M895,240 C895,110 730,110 730,240" stroke-width="1.24478px" />
<path d="M895,240 C895,110 650,110 650,240" stroke-width="0.33778px" />
<path d="M895,240 C895,110 610,110 610,240" stroke-width="0.62344px" />
<path d="M895,240 C895,110 575,110 575,240" stroke-width="0.51292px" />
<path d="M895,240 C895,110 550,110 550,240" stroke-width="0.21476px" />
<path d="M895,240 C895,110 450,110 450,240" stroke-width="1.21352px" />
<path d="M895,240 C895,110 390,110 390,240" stroke-width="0.70476px" />
<path d="M895,240 C895,110 150,240 70,240" stroke-width="0.55672px" />
<path d="M895,240 C895,110 480,390 480,520" stroke-width="0.06672px" />
<path d="M895,240 C895,110 700,390 700,520" stroke-width="0.01668px" />
</g>
<text class="cat" x="850" y="240" transform="rotate(-90 850 240)" dominant-baseline="middle" style="text-anchor:middle">Frozen veg & prepared foods</text>
<g stroke="black">
<path d="M850,240 C850,110 275,390 275,520" stroke-width="3.16624px" />
<path d="M850,240 C850,110 225,170 225,40" stroke-width="0.04568px" />
<path d="M850,240 C850,110 320,170 320,40" stroke-width="0.1707px" />
<path d="M850,240 C850,110 370,170 370,40" stroke-width="0.21638px" />
<path d="M850,240 C850,110 420,170 420,40" stroke-width="0.20436px" />
<path d="M850,240 C850,110 470,170 470,40" stroke-width="0.14666px" />
<path d="M850,240 C850,110 520,170 520,40" stroke-width="0.08896px" />
<path d="M850,240 C850,110 560,170 560,40" stroke-width="0.113px" />
<path d="M850,240 C850,110 595,170 595,40" stroke-width="0.14424px" />
<path d="M850,240 C850,110 630,170 630,40" stroke-width="0.15146px" />
<path d="M850,240 C850,110 670,170 670,40" stroke-width="0.28128px" />
<path d="M850,240 C850,110 710,170 710,40" stroke-width="0.24042px" />
<path d="M850,240 C850,110 750,170 750,40" stroke-width="0.14666px" />
<path d="M850,240 C850,110 790,170 790,40" stroke-width="0.12982px" />
<path d="M850,240 C850,110 825,170 825,40" stroke-width="0.43514px" />
<path d="M850,240 C850,110 860,170 860,40" stroke-width="0.43996px" />
<path d="M850,240 C850,110 895,170 895,40" stroke-width="0.4015px" />
<path d="M850,240 C850,110 895,110 895,240" stroke-width="2.88016px" />
<path d="M850,240 C850,110 805,110 805,240" stroke-width="3.34174px" />
<path d="M850,240 C850,110 730,110 730,240" stroke-width="1.72616px" />
<path d="M850,240 C850,110 650,110 650,240" stroke-width="0.577px" />
<path d="M850,240 C850,110 610,110 610,240" stroke-width="1.02416px" />
<path d="M850,240 C850,110 575,110 575,240" stroke-width="0.70442px" />
<path d="M850,240 C850,110 550,110 550,240" stroke-width="0.37264px" />
<path d="M850,240 C850,110 450,110 450,240" stroke-width="1.48336px" />
<path d="M850,240 C850,110 390,110 390,240" stroke-width="0.70442px" />
<path d="M850,240 C850,110 150,240 70,240" stroke-width="0.59142px" />
<path d="M850,240 C850,110 480,390 480,520" stroke-width="0.06972px" />
<path d="M850,240 C850,110 700,390 700,520" stroke-width="0.0024px" />
</g>
<text class="cat" x="805" y="240" transform="rotate(-90 805 240)" dominant-baseline="middle" style="text-anchor:middle">Nuts & Snacks</text>
<g stroke="black">
<path d="M805,240 C805,110 275,390 275,520" stroke-width="5.47596px" />
<path d="M805,240 C805,110 225,170 225,40" stroke-width="0.063px" />
<path d="M805,240 C805,110 320,170 320,40" stroke-width="0.13696px" />
<path d="M805,240 C805,110 370,170 370,40" stroke-width="0.1534px" />
<path d="M805,240 C805,110 420,170 420,40" stroke-width="0.18354px" />
<path d="M805,240 C805,110 470,170 470,40" stroke-width="0.19998px" />
<path d="M805,240 C805,110 520,170 520,40" stroke-width="0.09314px" />
<path d="M805,240 C805,110 560,170 560,40" stroke-width="0.09862px" />
<path d="M805,240 C805,110 595,170 595,40" stroke-width="0.11506px" />
<path d="M805,240 C805,110 630,170 630,40" stroke-width="0.14792px" />
<path d="M805,240 C805,110 670,170 670,40" stroke-width="0.27942px" />
<path d="M805,240 C805,110 710,170 710,40" stroke-width="0.22188px" />
<path d="M805,240 C805,110 750,170 750,40" stroke-width="0.2082px" />
<path d="M805,240 C805,110 790,170 790,40" stroke-width="0.32324px" />
<path d="M805,240 C805,110 825,170 825,40" stroke-width="0.58348px" />
<path d="M805,240 C805,110 860,170 860,40" stroke-width="0.452px" />
<path d="M805,240 C805,110 895,170 895,40" stroke-width="0.45474px" />
<path d="M805,240 C805,110 895,110 895,240" stroke-width="0.70676px" />
<path d="M805,240 C805,110 850,110 850,240" stroke-width="1.4135px" />
<path d="M805,240 C805,110 730,110 730,240" stroke-width="2.12574px" />
<path d="M805,240 C805,110 650,110 650,240" stroke-width="0.77798px" />
<path d="M805,240 C805,110 610,110 610,240" stroke-width="1.34228px" />
<path d="M805,240 C805,110 575,110 575,240" stroke-width="0.7451px" />
<path d="M805,240 C805,110 550,110 550,240" stroke-width="0.40816px" />
<path d="M805,240 C805,110 450,110 450,240" stroke-width="1.65456px" />
<path d="M805,240 C805,110 390,110 390,240" stroke-width="0.74784px" />
<path d="M805,240 C805,110 150,240 70,240" stroke-width="0.72866px" />
<path d="M805,240 C805,110 480,390 480,520" stroke-width="0.13148px" />
<path d="M805,240 C805,110 700,390 700,520" stroke-width="0.0274px" />
</g>
<text class="cat" x="730" y="240" transform="rotate(-90 730 240)" dominant-baseline="middle" style="text-anchor:middle">BWS</text>
<g stroke="black">
<path d="M730,240 C730,110 275,390 275,520" stroke-width="7.09086px" />
<path d="M730,240 C730,110 225,170 225,40" stroke-width="0.08088px" />
<path d="M730,240 C730,110 320,170 320,40" stroke-width="0.19506px" />
<path d="M730,240 C730,110 370,170 370,40" stroke-width="0.14986px" />
<path d="M730,240 C730,110 420,170 420,40" stroke-width="0.22836px" />
<path d="M730,240 C730,110 470,170 470,40" stroke-width="0.16176px" />
<path d="M730,240 C730,110 520,170 520,40" stroke-width="0.07374px" />
<path d="M730,240 C730,110 560,170 560,40" stroke-width="0.10466px" />
<path d="M730,240 C730,110 595,170 595,40" stroke-width="0.10228px" />
<path d="M730,240 C730,110 630,170 630,40" stroke-width="0.23312px" />
<path d="M730,240 C730,110 670,170 670,40" stroke-width="0.49238px" />
<path d="M730,240 C730,110 710,170 710,40" stroke-width="0.51618px" />
<path d="M730,240 C730,110 750,170 750,40" stroke-width="0.60656px" />
<path d="M730,240 C730,110 790,170 790,40" stroke-width="0.4472px" />
<path d="M730,240 C730,110 825,170 825,40" stroke-width="0.33064px" />
<path d="M730,240 C730,110 860,170 860,40" stroke-width="0.55424px" />
<path d="M730,240 C730,110 895,170 895,40" stroke-width="0.49px" />
<path d="M730,240 C730,110 895,110 895,240" stroke-width="0.54234px" />
<path d="M730,240 C730,110 850,110 850,240" stroke-width="0.37584px" />
<path d="M730,240 C730,110 805,110 805,240" stroke-width="0.86108px" />
<path d="M730,240 C730,110 650,110 650,240" stroke-width="0.67078px" />
<path d="M730,240 C730,110 610,110 610,240" stroke-width="0.89676px" />
<path d="M730,240 C730,110 575,110 575,240" stroke-width="0.68268px" />
<path d="M730,240 C730,110 550,110 550,240" stroke-width="0.40676px" />
<path d="M730,240 C730,110 450,110 450,240" stroke-width="1.62464px" />
<path d="M730,240 C730,110 390,110 390,240" stroke-width="1.03472px" />
<path d="M730,240 C730,110 150,240 70,240" stroke-width="0.85632px" />
<path d="M730,240 C730,110 480,390 480,520" stroke-width="0.16412px" />
<path d="M730,240 C730,110 700,390 700,520" stroke-width="0.02616px" />
</g>
<text class="cat" x="650" y="240" transform="rotate(-90 650 240)" dominant-baseline="middle" style="text-anchor:middle">Pet Foods</text>
<g stroke="black">
<path d="M650,240 C650,110 275,390 275,520" stroke-width="4.59714px" />
<path d="M650,240 C650,110 225,170 225,40" stroke-width="0.05518px" />
<path d="M650,240 C650,110 320,170 320,40" stroke-width="0.13796px" />
<path d="M650,240 C650,110 370,170 370,40" stroke-width="0.06622px" />
<path d="M650,240 C650,110 420,170 420,40" stroke-width="0.19868px" />
<path d="M650,240 C650,110 470,170 470,40" stroke-width="0.2042px" />
<path d="M650,240 C650,110 520,170 520,40" stroke-width="0.03864px" />
<path d="M650,240 C650,110 560,170 560,40" stroke-width="0.18212px" />
<path d="M650,240 C650,110 595,170 595,40" stroke-width="0.19316px" />
<path d="M650,240 C650,110 630,170 630,40" stroke-width="0.71744px" />
<path d="M650,240 C650,110 670,170 670,40" stroke-width="2.22406px" />
<path d="M650,240 C650,110 710,170 710,40" stroke-width="0.87748px" />
<path d="M650,240 C650,110 750,170 750,40" stroke-width="0.49668px" />
<path d="M650,240 C650,110 790,170 790,40" stroke-width="0.36424px" />
<path d="M650,240 C650,110 825,170 825,40" stroke-width="0.2925px" />
<path d="M650,240 C650,110 860,170 860,40" stroke-width="0.22076px" />
<path d="M650,240 C650,110 895,170 895,40" stroke-width="0.2649px" />
<path d="M650,240 C650,110 895,110 895,240" stroke-width="0.36424px" />
<path d="M650,240 C650,110 850,110 850,240" stroke-width="0.30906px" />
<path d="M650,240 C650,110 805,110 805,240" stroke-width="0.45254px" />
<path d="M650,240 C650,110 730,110 730,240" stroke-width="1.49006px" />
<path d="M650,240 C650,110 610,110 610,240" stroke-width="1.9095px" />
<path d="M650,240 C650,110 575,110 575,240" stroke-width="0.93818px" />
<path d="M650,240 C650,110 550,110 550,240" stroke-width="0.50772px" />
<path d="M650,240 C650,110 450,110 450,240" stroke-width="1.41832px" />
<path d="M650,240 C650,110 390,110 390,240" stroke-width="0.65122px" />
<path d="M650,240 C650,110 150,240 70,240" stroke-width="0.68432px" />
<path d="M650,240 C650,110 480,390 480,520" stroke-width="0.13796px" />
<path d="M650,240 C650,110 700,390 700,520" stroke-width="0.00552px" />
</g>
<text class="cat" x="610" y="240" transform="rotate(-90 610 240)" dominant-baseline="middle" style="text-anchor:middle">Fabric Care & Washing</text>
<g stroke="black">
<path d="M610,240 C610,110 275,390 275,520" stroke-width="3.28956px" />
<path d="M610,240 C610,110 225,170 225,40" stroke-width="0.04086px" />
<path d="M610,240 C610,110 320,170 320,40" stroke-width="0.1226px" />
<path d="M610,240 C610,110 370,170 370,40" stroke-width="0.08464px" />
<path d="M610,240 C610,110 420,170 420,40" stroke-width="0.216px" />
<path d="M610,240 C610,110 470,170 470,40" stroke-width="0.16638px" />
<path d="M610,240 C610,110 520,170 520,40" stroke-width="0.09048px" />
<path d="M610,240 C610,110 560,170 560,40" stroke-width="0.27438px" />
<path d="M610,240 C610,110 595,170 595,40" stroke-width="0.68302px" />
<path d="M610,240 C610,110 630,170 630,40" stroke-width="1.32516px" />
<path d="M610,240 C610,110 670,170 670,40" stroke-width="1.44776px" />
<path d="M610,240 C610,110 710,170 710,40" stroke-width="0.38238px" />
<path d="M610,240 C610,110 750,170 750,40" stroke-width="0.33566px" />
<path d="M610,240 C610,110 790,170 790,40" stroke-width="0.32108px" />
<path d="M610,240 C610,110 825,170 825,40" stroke-width="0.2014px" />
<path d="M610,240 C610,110 860,170 860,40" stroke-width="0.22184px" />
<path d="M610,240 C610,110 895,170 895,40" stroke-width="0.19848px" />
<path d="M610,240 C610,110 895,110 895,240" stroke-width="0.3415px" />
<path d="M610,240 C610,110 850,110 850,240" stroke-width="0.21016px" />
<path d="M610,240 C610,110 805,110 805,240" stroke-width="0.31816px" />
<path d="M610,240 C610,110 730,110 730,240" stroke-width="0.70636px" />
<path d="M610,240 C610,110 650,110 650,240" stroke-width="1.54408px" />
<path d="M610,240 C610,110 575,110 575,240" stroke-width="3.53766px" />
<path d="M610,240 C610,110 550,110 550,240" stroke-width="0.72972px" />
<path d="M610,240 C610,110 450,110 450,240" stroke-width="1.86224px" />
<path d="M610,240 C610,110 390,110 390,240" stroke-width="0.69176px" />
<path d="M610,240 C610,110 150,240 70,240" stroke-width="0.56334px" />
<path d="M610,240 C610,110 480,390 480,520" stroke-width="0.0788px" />
<path d="M610,240 C610,110 700,390 700,520" stroke-width="0.0146px" />
</g>
<text class="cat" x="575" y="240" transform="rotate(-90 575 240)" dominant-baseline="middle" style="text-anchor:middle">Kitchen Rolls, Toilet & Household Cleaners</text>
<g stroke="black">
<path d="M575,240 C575,110 275,390 275,520" stroke-width="3.41684px" />
<path d="M575,240 C575,110 225,170 225,40" stroke-width="0.06442px" />
<path d="M575,240 C575,110 320,170 320,40" stroke-width="0.14794px" />
<path d="M575,240 C575,110 370,170 370,40" stroke-width="0.10022px" />
<path d="M575,240 C575,110 420,170 420,40" stroke-width="0.22668px" />
<path d="M575,240 C575,110 470,170 470,40" stroke-width="0.20758px" />
<path d="M575,240 C575,110 520,170 520,40" stroke-width="0.1026px" />
<path d="M575,240 C575,110 560,170 560,40" stroke-width="0.86852px" />
<path d="M575,240 C575,110 595,170 595,40" stroke-width="1.35528px" />
<path d="M575,240 C575,110 630,170 630,40" stroke-width="0.68242px" />
<path d="M575,240 C575,110 670,170 670,40" stroke-width="0.86136px" />
<path d="M575,240 C575,110 710,170 710,40" stroke-width="0.26724px" />
<path d="M575,240 C575,110 750,170 750,40" stroke-width="0.22668px" />
<path d="M575,240 C575,110 790,170 790,40" stroke-width="0.14554px" />
<path d="M575,240 C575,110 825,170 825,40" stroke-width="0.1718px" />
<path d="M575,240 C575,110 860,170 860,40" stroke-width="0.1193px" />
<path d="M575,240 C575,110 895,170 895,40" stroke-width="0.10976px" />
<path d="M575,240 C575,110 895,110 895,240" stroke-width="0.19328px" />
<path d="M575,240 C575,110 850,110 850,240" stroke-width="0.1718px" />
<path d="M575,240 C575,110 805,110 805,240" stroke-width="0.1718px" />
<path d="M575,240 C575,110 730,110 730,240" stroke-width="0.43426px" />
<path d="M575,240 C575,110 650,110 650,240" stroke-width="0.44858px" />
<path d="M575,240 C575,110 610,110 610,240" stroke-width="3.43594px" />
<path d="M575,240 C575,110 550,110 550,240" stroke-width="1.7132px" />
<path d="M575,240 C575,110 450,110 450,240" stroke-width="2.82988px" />
<path d="M575,240 C575,110 390,110 390,240" stroke-width="0.75162px" />
<path d="M575,240 C575,110 150,240 70,240" stroke-width="0.68002px" />
<path d="M575,240 C575,110 480,390 480,520" stroke-width="0.07158px" />
<path d="M575,240 C575,110 700,390 700,520" stroke-width="0.02386px" />
</g>
<text class="cat" x="550" y="240" transform="rotate(-90 550 240)" dominant-baseline="middle" style="text-anchor:middle">Toilet Rolls & Tissues</text>
<g stroke="black">
<path d="M550,240 C550,110 275,390 275,520" stroke-width="4.29384px" />
<path d="M550,240 C550,110 225,170 225,40" stroke-width="0.04464px" />
<path d="M550,240 C550,110 320,170 320,40" stroke-width="0.1177px" />
<path d="M550,240 C550,110 370,170 370,40" stroke-width="0.15422px" />
<path d="M550,240 C550,110 420,170 420,40" stroke-width="0.28004px" />
<path d="M550,240 C550,110 470,170 470,40" stroke-width="0.27598px" />
<path d="M550,240 C550,110 520,170 520,40" stroke-width="0.34496px" />
<path d="M550,240 C550,110 560,170 560,40" stroke-width="0.84416px" />
<path d="M550,240 C550,110 595,170 595,40" stroke-width="0.66558px" />
<path d="M550,240 C550,110 630,170 630,40" stroke-width="0.41802px" />
<path d="M550,240 C550,110 670,170 670,40" stroke-width="0.62906px" />
<path d="M550,240 C550,110 710,170 710,40" stroke-width="0.2435px" />
<path d="M550,240 C550,110 750,170 750,40" stroke-width="0.18668px" />
<path d="M550,240 C550,110 790,170 790,40" stroke-width="0.1461px" />
<path d="M550,240 C550,110 825,170 825,40" stroke-width="0.12582px" />
<path d="M550,240 C550,110 860,170 860,40" stroke-width="0.1461px" />
<path d="M550,240 C550,110 895,170 895,40" stroke-width="0.11364px" />
<path d="M550,240 C550,110 895,110 895,240" stroke-width="0.17452px" />
<path d="M550,240 C550,110 850,110 850,240" stroke-width="0.1177px" />
<path d="M550,240 C550,110 805,110 805,240" stroke-width="0.16234px" />
<path d="M550,240 C550,110 730,110 730,240" stroke-width="0.31656px" />
<path d="M550,240 C550,110 650,110 650,240" stroke-width="0.20292px" />
<path d="M550,240 C550,110 610,110 610,240" stroke-width="0.79546px" />
<path d="M550,240 C550,110 575,110 575,240" stroke-width="4.33036px" />
<path d="M550,240 C550,110 450,110 450,240" stroke-width="3.23052px" />
<path d="M550,240 C550,110 390,110 390,240" stroke-width="0.82792px" />
<path d="M550,240 C550,110 150,240 70,240" stroke-width="0.72646px" />
<path d="M550,240 C550,110 480,390 480,520" stroke-width="0.07306px" />
<path d="M550,240 C550,110 700,390 700,520" stroke-width="0.01218px" />
</g>
<text class="cat" x="0" y="0" transform="rotate(-90 0 0)" dominant-baseline="middle" style="text-anchor:middle">N/A</text>
<g stroke="black">
</g>
<text class="cat" x="450" y="240" transform="rotate(-90 450 240)" dominant-baseline="middle" style="text-anchor:middle">Baby, Health, Beauty & Pharmacy</text>
<g stroke="black">
<path d="M450,240 C450,110 275,390 275,520" stroke-width="7.62732px" />
<path d="M450,240 C450,110 225,170 225,40" stroke-width="0.09082px" />
<path d="M450,240 C450,110 320,170 320,40" stroke-width="0.43092px" />
<path d="M450,240 C450,110 370,170 370,40" stroke-width="0.33742px" />
<path d="M450,240 C450,110 420,170 420,40" stroke-width="1.73434px" />
<path d="M450,240 C450,110 470,170 470,40" stroke-width="1.75748px" />
<path d="M450,240 C450,110 520,170 520,40" stroke-width="0.71938px" />
<path d="M450,240 C450,110 560,170 560,40" stroke-width="0.58138px" />
<path d="M450,240 C450,110 595,170 595,40" stroke-width="0.29024px" />
<path d="M450,240 C450,110 630,170 630,40" stroke-width="0.21724px" />
<path d="M450,240 C450,110 670,170 670,40" stroke-width="0.48166px" />
<path d="M450,240 C450,110 710,170 710,40" stroke-width="0.14334px" />
<path d="M450,240 C450,110 750,170 750,40" stroke-width="0.12376px" />
<path d="M450,240 C450,110 790,170 790,40" stroke-width="0.11396px" />
<path d="M450,240 C450,110 825,170 825,40" stroke-width="0.1015px" />
<path d="M450,240 C450,110 860,170 860,40" stroke-width="0.10506px" />
<path d="M450,240 C450,110 895,170 895,40" stroke-width="0.12732px" />
<path d="M450,240 C450,110 895,110 895,240" stroke-width="0.11396px" />
<path d="M450,240 C450,110 850,110 850,240" stroke-width="0.08904px" />
<path d="M450,240 C450,110 805,110 805,240" stroke-width="0.10238px" />
<path d="M450,240 C450,110 730,110 730,240" stroke-width="0.21278px" />
<path d="M450,240 C450,110 650,110 650,240" stroke-width="0.12998px" />
<path d="M450,240 C450,110 610,110 610,240" stroke-width="0.32586px" />
<path d="M450,240 C450,110 575,110 575,240" stroke-width="0.60452px" />
<path d="M450,240 C450,110 550,110 550,240" stroke-width="0.98468px" />
<path d="M450,240 C450,110 390,110 390,240" stroke-width="1.15028px" />
<path d="M450,240 C450,110 150,240 70,240" stroke-width="1.05146px" />
<path d="M450,240 C450,110 480,390 480,520" stroke-width="0.21278px" />
<path d="M450,240 C450,110 700,390 700,520" stroke-width="0.03918px" />
</g>
<text class="cat" x="390" y="240" transform="rotate(-90 390 240)" dominant-baseline="middle" style="text-anchor:middle">Fresh Produce</text>
<g stroke="black">
<path d="M390,240 C390,110 275,390 275,520" stroke-width="1.5254px" />
<path d="M390,240 C390,110 225,170 225,40" stroke-width="0.52146px" />
<path d="M390,240 C390,110 320,170 320,40" stroke-width="6.73646px" />
<path d="M390,240 C390,110 370,170 370,40" stroke-width="2.18338px" />
<path d="M390,240 C390,110 420,170 420,40" stroke-width="2.95532px" />
<path d="M390,240 C390,110 470,170 470,40" stroke-width="0.87202px" />
<path d="M390,240 C390,110 520,170 520,40" stroke-width="0.2443px" />
<path d="M390,240 C390,110 560,170 560,40" stroke-width="0.17194px" />
<path d="M390,240 C390,110 595,170 595,40" stroke-width="0.1586px" />
<path d="M390,240 C390,110 630,170 630,40" stroke-width="0.11856px" />
<path d="M390,240 C390,110 670,170 670,40" stroke-width="0.271px" />
<path d="M390,240 C390,110 710,170 710,40" stroke-width="0.09238px" />
<path d="M390,240 C390,110 750,170 750,40" stroke-width="0.07852px" />
<path d="M390,240 C390,110 790,170 790,40" stroke-width="0.0811px" />
<path d="M390,240 C390,110 825,170 825,40" stroke-width="0.07852px" />
<path d="M390,240 C390,110 860,170 860,40" stroke-width="0.10008px" />
<path d="M390,240 C390,110 895,170 895,40" stroke-width="0.1124px" />
<path d="M390,240 C390,110 895,110 895,240" stroke-width="0.08828px" />
<path d="M390,240 C390,110 850,110 850,240" stroke-width="0.05544px" />
<path d="M390,240 C390,110 805,110 805,240" stroke-width="0.0539px" />
<path d="M390,240 C390,110 730,110 730,240" stroke-width="0.14372px" />
<path d="M390,240 C390,110 650,110 650,240" stroke-width="0.05594px" />
<path d="M390,240 C390,110 610,110 610,240" stroke-width="0.09342px" />
<path d="M390,240 C390,110 575,110 575,240" stroke-width="0.12524px" />
<path d="M390,240 C390,110 550,110 550,240" stroke-width="0.14064px" />
<path d="M390,240 C390,110 450,110 450,240" stroke-width="2.00682px" />
<path d="M390,240 C390,110 150,240 70,240" stroke-width="0.67544px" />
<path d="M390,240 C390,110 480,390 480,520" stroke-width="0.2325px" />
<path d="M390,240 C390,110 700,390 700,520" stroke-width="0.0272px" />
</g>
<text class="cat" x="70" y="240" transform="rotate(-90 70 240)" dominant-baseline="middle" style="text-anchor:middle">General Merchandise</text>
<g stroke="black">
<path d="M70,240 C150,240 275,390 275,520" stroke-width="2.46022px" />
<path d="M70,240 C150,240 225,170 225,40" stroke-width="6.4151px" />
<path d="M70,240 C150,240 320,170 320,40" stroke-width="1.31256px" />
<path d="M70,240 C150,240 370,170 370,40" stroke-width="0.52584px" />
<path d="M70,240 C150,240 420,170 420,40" stroke-width="0.63904px" />
<path d="M70,240 C150,240 470,170 470,40" stroke-width="0.2699px" />
<path d="M70,240 C150,240 520,170 520,40" stroke-width="0.1091px" />
<path d="M70,240 C150,240 560,170 560,40" stroke-width="0.06152px" />
<path d="M70,240 C150,240 595,170 595,40" stroke-width="0.05414px" />
<path d="M70,240 C150,240 630,170 630,40" stroke-width="0.03938px" />
<path d="M70,240 C150,240 670,170 670,40" stroke-width="0.12798px" />
<path d="M70,240 C150,240 710,170 710,40" stroke-width="0.04758px" />
<path d="M70,240 C150,240 750,170 750,40" stroke-width="0.03774px" />
<path d="M70,240 C150,240 790,170 790,40" stroke-width="0.03692px" />
<path d="M70,240 C150,240 825,170 825,40" stroke-width="0.05414px" />
<path d="M70,240 C150,240 860,170 860,40" stroke-width="0.05824px" />
<path d="M70,240 C150,240 895,170 895,40" stroke-width="0.07302px" />
<path d="M70,240 C150,240 895,110 895,240" stroke-width="0.02954px" />
<path d="M70,240 C150,240 850,110 850,240" stroke-width="0.02872px" />
<path d="M70,240 C150,240 805,110 805,240" stroke-width="0.02544px" />
<path d="M70,240 C150,240 730,110 730,240" stroke-width="0.06562px" />
<path d="M70,240 C150,240 650,110 650,240" stroke-width="0.0205px" />
<path d="M70,240 C150,240 610,110 610,240" stroke-width="0.03774px" />
<path d="M70,240 C150,240 575,110 575,240" stroke-width="0.05332px" />
<path d="M70,240 C150,240 550,110 550,240" stroke-width="0.03774px" />
<path d="M70,240 C150,240 450,110 450,240" stroke-width="0.62018px" />
<path d="M70,240 C150,240 390,110 390,240" stroke-width="5.62182px" />
<path d="M70,240 C150,240 480,390 480,520" stroke-width="1.08122px" />
<path d="M70,240 C150,240 700,390 700,520" stroke-width="0.05578px" />
</g>
<text class="cat" x="480" y="520" transform="rotate(-90 480 520)" dominant-baseline="middle" style="text-anchor:middle">Apparel</text>
<g stroke="black">
<path d="M480,520 C480,390 275,390 275,520" stroke-width="2.25264px" />
<path d="M480,520 C480,390 225,170 225,40" stroke-width="0.32632px" />
<path d="M480,520 C480,390 320,170 320,40" stroke-width="0.2921px" />
<path d="M480,520 C480,390 370,170 370,40" stroke-width="0.12894px" />
<path d="M480,520 C480,390 420,170 420,40" stroke-width="0.18158px" />
<path d="M480,520 C480,390 470,170 470,40" stroke-width="0.06578px" />
<path d="M480,520 C480,390 520,170 520,40" stroke-width="0.01842px" />
<path d="M480,520 C480,390 560,170 560,40" stroke-width="0.01052px" />
<path d="M480,520 C480,390 595,170 595,40" stroke-width="0.01578px" />
<path d="M480,520 C480,390 630,170 630,40" stroke-width="0.0079px" />
<path d="M480,520 C480,390 670,170 670,40" stroke-width="0.05526px" />
<path d="M480,520 C480,390 710,170 710,40" stroke-width="0.01842px" />
<path d="M480,520 C480,390 750,170 750,40" stroke-width="0.01316px" />
<path d="M480,520 C480,390 790,170 790,40" stroke-width="0.00264px" />
<path d="M480,520 C480,390 825,170 825,40" stroke-width="0.00526px" />
<path d="M480,520 C480,390 860,170 860,40" stroke-width="0.01316px" />
<path d="M480,520 C480,390 895,170 895,40" stroke-width="0.01842px" />
<path d="M480,520 C480,390 895,110 895,240" stroke-width="0.01578px" />
<path d="M480,520 C480,390 850,110 850,240" stroke-width="0.0079px" />
<path d="M480,520 C480,390 805,110 805,240" stroke-width="0.01316px" />
<path d="M480,520 C480,390 730,110 730,240" stroke-width="0.04474px" />
<path d="M480,520 C480,390 650,110 650,240" stroke-width="0.02632px" />
<path d="M480,520 C480,390 610,110 610,240" stroke-width="0.02368px" />
<path d="M480,520 C480,390 575,110 575,240" stroke-width="0.02368px" />
<path d="M480,520 C480,390 550,110 550,240" stroke-width="0.0421px" />
<path d="M480,520 C480,390 450,110 450,240" stroke-width="0.61316px" />
<path d="M480,520 C480,390 390,110 390,240" stroke-width="7.46316px" />
<path d="M480,520 C480,390 150,240 70,240" stroke-width="6.3px" />
<path d="M480,520 C480,390 700,390 700,520" stroke-width="2.0px" />
</g>
<text class="cat" x="700" y="520" transform="rotate(-90 700 520)" dominant-baseline="middle" style="text-anchor:middle">Cafe</text>
<g stroke="black">
<path d="M700,520 C700,390 275,390 275,520" stroke-width="2.95082px" />
<path d="M700,520 C700,390 225,170 225,40" stroke-width="0.1543px" />
<path d="M700,520 C700,390 320,170 320,40" stroke-width="0.135px" />
<path d="M700,520 C700,390 370,170 370,40" stroke-width="0.09644px" />
<path d="M700,520 C700,390 420,170 420,40" stroke-width="0.03858px" />
<path d="M700,520 C700,390 470,170 470,40" stroke-width="0.05786px" />
<path d="M700,520 C700,390 520,170 520,40" stroke-width="0.01928px" />
<path d="M700,520 C700,390 560,170 560,40" stroke-width="0.01928px" />
<path d="M700,520 C700,390 630,170 630,40" stroke-width="0.03858px" />
<path d="M700,520 C700,390 710,170 710,40" stroke-width="0.01928px" />
<path d="M700,520 C700,390 895,170 895,40" stroke-width="0.01928px" />
<path d="M700,520 C700,390 895,110 895,240" stroke-width="0.07714px" />
<path d="M700,520 C700,390 805,110 805,240" stroke-width="0.01928px" />
<path d="M700,520 C700,390 650,110 650,240" stroke-width="0.01928px" />
<path d="M700,520 C700,390 575,110 575,240" stroke-width="0.01928px" />
<path d="M700,520 C700,390 450,110 450,240" stroke-width="0.135px" />
<path d="M700,520 C700,390 390,110 390,240" stroke-width="2.00578px" />
<path d="M700,520 C700,390 150,240 70,240" stroke-width="2.1408px" />
<path d="M700,520 C700,390 480,390 480,520" stroke-width="12.03472px" />
</g>
</g>
</svg>
</body></html>