Unsupervised Learning in R
Faculty of Economic Sciences
Department of Data Science
University of Warsaw
dr hab. prof. Jacek Lewkowicz
Contributors: prof. Kenjaeva Lola

Introduction

There are several ways of revolutionizing your business from customer experience to innovation. While elevating the current new technologies or simply automating monotonous/repetitive tasks would keep you both up-to-date and reduce costs, understanding your customer and thier needs might benefit you as much as the innovation does. In order to achive this one can simply create engaging customer experience, by just knowing the customer inside out. This means understanding their needs, preferences, and behaviors. To really understand what customers want, businesses can use association analysis to find those hidden connections in shopping patterns. Think of it like this: every time a customer shops, their choices tell a story about what they like, what they need, and even what they might buy next. By digging into these patterns, we can figure out what products go well together and use that info to make smarter decisions.

Shopping Cart

Shopping Cart

I’ll use tools like Apriori, ECLAT, and FP-Growth to uncover these patterns. These methods help us find which items are often bought together, like peanut butter and jelly, or chips and soda. With these insights, businesses can organize products better-like placing commonly bought items next to each other in a mall or store. Not only does this make shopping easier for customers, but it also boosts sales.

In this paper, I’m going to do exactly that to analyze customer shopping behavior and use these association rules to figure out the best way to set up products. It’s all about making the shopping experience smoother and more enjoyable for everyone.

Dataset

The dataset used in this study is a synthetic dataset, generated specifically for educational purposes. It does not represent real-world transaction data but was created to demonstrate the application of association rule mining and related data analysis techniques. The (dataset)/transactions is in sparse format with 11215 transactions as rows and 190 items as columns.

General Information

What’s Association rules

Association rules are data mining technique used to uncover interesting relationships, pattern’s or correlations between items in large datasets. It primarily focuses on identifying frequent items or co-occurences and expressing these patterns as “if-then” statements. E.g. in retail context the association rule might look:

“If customer buy’s bread and butter, then they’re likely to buy milk”

Presence of certain item:(the “if” part, called antecedent) is associated with the precence of other items: (the “then” part called consequent).

Association rules are often evaluated based on metrics such as support, confidence and lift, to measure their relevance and strength.

What’s Apriori, ECLAT and FPgrowth algorithms?

Apriori: This algorithm finds frequent item sets by repeatedly scanning the dataset. It starts with single items and expands them into larger item sets, but only if those smaller sets are frequent. It’s a bit like building up from the most basic building blocks to find patterns.

ECLAT: Unlike Apriori, ECLAT uses a depth-first search strategy. It focuses on intersections of transaction IDs to quickly find frequent item sets. Think of it as focusing on the commonalities between lists to speed up the process.

FP-Growth: This algorithm uses a special tree structure (FP-tree) to store the dataset, which helps it find frequent patterns without scanning the entire dataset multiple times. It’s like compressing the data into a smaller structure to make pattern discovery faster.

Plan of the Paper:

  1. Data reading/set-up/loading packages
  2. Descriptive statistics/summary/inspection
  3. Vizualization
  4. Associate Rule Minging
  5. Advanced Rule Analytics
  6. FP growth Association Algorithm
  7. Sankey diagram visual
  8. Random transactions
  9. Saving Rules
  10. Conclusion

1. Data reading/set-up/loading packages

if (!require("pacman")) install.packages("pacman")
## Loading required package: pacman
## Warning: package 'pacman' was built under R version 4.4.2
pacman::p_load("arules", "arulesViz", "arulesCBA", "readxl", "networkD3", "htmlwidgets")
# Setting the working directory and reading the dataset(transactions) in sparse format
setwd("C://Users//khali//Desktop")
shopping<-read.transactions("cart.csv", sep = ",")
shopping
## transactions in sparse format with
##  11215 transactions (rows) and
##  190 items (columns)

2. Descriptive statistics/summary/inspection

summary(shopping)
## transactions as itemMatrix in sparse format with
##  11215 rows (elements/itemsets/transactions) and
##  190 columns (items) and a density of 0.02350893 
## 
## most frequent items:
##    rice veggies    loaf    coke  yogurt (Other) 
##    2876    1903    1809    1715    1571   40220 
## 
## element (itemset/transaction) length distribution:
## sizes
##    1    2    3    4    5    6    7    8    9   10   11   12   13   14   15   16 
## 2248 1925 1524 1183 1001  755  631  503  404  299  212  137  102   83   55   51 
##   17   18   19   20   21   22   23   24   26   28   29   32 
##   36   14   14   10   11    4    5    1    2    3    1    1 
## 
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##   1.000   2.000   3.000   4.467   6.000  32.000 
## 
## includes extended item information - examples:
##             labels
## 1 abrasive cleaner
## 2 artif. sweetener
## 3   baby cosmetics
# inspect(shopping)

# size(shopping) 

length(shopping)
## [1] 11215
LIST(head(shopping))
## [[1]]
## [1] "citrus herbs"        "margarine"           "ready soups"        
## [4] "semi-finished bread" "tropical herbs"     
## 
## [[2]]
## [1] "coffee"         "rice"           "tropical herbs" "yogurt"        
## 
## [[3]]
## [1] "pip herbs" "rice"     
## 
## [[4]]
## [1] "cream cheese" "meat spreads" "pip herbs"    "vegetables"   "yogurt"      
## 
## [[5]]
## [1] "condensed milk"           "long life bakery product"
## [3] "rice"                     "vegetables"              
## 
## [[6]]
## [1] "abrasive cleaner" "butter"           "noodles"          "rice"            
## [5] "yogurt"
itemFrequency(shopping, type="relative")
##          abrasive cleaner          artif. sweetener            baby cosmetics 
##              0.0040124833              0.0036558181              0.0006241641 
##                 baby food                      bags             baking powder 
##              0.0000891663              0.0004458315              0.0172982613 
##          bathroom cleaner                      beef                   berries 
##              0.0028533214              0.0574230941              0.0362015158 
##                 beverages              bottled beer             bottled water 
##              0.0271957200              0.0103432902              0.0175657601 
##                    brandy               brown bread                    butter 
##              0.0041908159              0.0640213999              0.0551047704 
##               butter milk                  cake bar                   candles 
##              0.0288007133              0.0131074454              0.0088274632 
##                     candy               canned fish              canned fruit 
##              0.0292465448              0.0143557735              0.0028533214 
##              canned herbs         canned vegetables                   carrots 
##              0.0003566652              0.0104324565              0.0125724476 
##                  cat food                   cereals               chewing gum 
##              0.0221132412              0.0056174766              0.0209540794 
##                   chicken                 chocolate     chocolate marshmallow 
##              0.0444939813              0.0485064646              0.0090949621 
##                    citrus              citrus herbs                   cleaner 
##              0.0725813642              0.0152474365              0.0051716451 
##           cling film/bags              cocoa drinks                    coffee 
##              0.0112349532              0.0022291574              0.0616139099 
##                      coke            condensed milk         cooking chocolate 
##              0.1529201962              0.0100757914              0.0023183237 
##               cooking oil                  cookware                     cream 
##              0.0102541239              0.0025858226              0.0013374944 
##              cream cheese                      curd               curd cheese 
##              0.0402139991              0.0569772626              0.0055283103 
##               decalcifier               dental care                   dessert 
##              0.0016941596              0.0057066429              0.0371823451 
##                 detergent              dish cleaner                    dishes 
##              0.0198840838              0.0102541239              0.0176549264 
##                  dog food             domestic eggs  female sanitary products 
##              0.0081141329              0.0628622381              0.0060633081 
##         finished products                      fish                     flour 
##              0.0068658047              0.0032991529              0.0175657601 
##            flower (seeds)    flower soil/fertilizer               frankfurter 
##              0.0103432902              0.0018724922              0.0017833259 
##            frozen chicken            frozen dessert               frozen fish 
##              0.0007133304              0.0113241195              0.0113241195 
##             frozen fruits             frozen herbss              frozen meals 
##              0.0010699955              0.0000891663              0.0285332144 
##    frozen potato products         frozen vegetables     fruit/vegetable juice 
##              0.0082032992              0.0478823005              0.0633972358 
##                    grapes                 green tea                hair spray 
##              0.0230940704              0.0681230495              0.0012483281 
##                halal meat                       ham            hamburger meat 
##              0.0505572893              0.0273740526              0.0353990192 
##               hard cheese                   heinken                     herbs 
##              0.0244315649              0.0706197058              0.0168524298 
##     herbs/vegetable juice                     honey    house keeping products 
##              0.0090057958              0.0016049933              0.0082032992 
##          hygiene articles                 ice cream            instant coffee 
##              0.0344181899              0.0259473919              0.0074008025 
##     Instant food products                       jam                   ketchup 
##              0.0083816317              0.0050824788              0.0041016496 
##            kitchen towels           kitchen utensil               light bulbs 
##              0.0056174766              0.0003566652              0.0039233170 
##                   liqueur                    liquor        liquor (appetizer) 
##              0.0009808292              0.0105216228              0.0082924654 
##                liver loaf                      loaf  long life bakery product 
##              0.0046366473              0.1613018279              0.0362906821 
##           make up remover            male cosmetics                 margarine 
##              0.0008024967              0.0043691485              0.0582255907 
##            marinated meat           marinated meats                mayonnaise 
##              0.0823896567              0.0517164512              0.0086491306 
##                      meat              meat spreads             mineral water 
##              0.0265715560              0.0042799822              0.0969237628 
##           misc. beverages                   mustard                   napkins 
##              0.0281765493              0.0118591173              0.0512706197 
##                newspapers                   noodles                 nut snack 
##              0.0809629960              0.0231832367              0.0029424877 
##               nuts/prunes                       oil                    onions 
##              0.0036558181              0.0286223807              0.0325456977 
##    organic marinated meat          organic products           organic sausage 
##              0.0019616585              0.0018724922              0.0000891663 
##          other vegetables packaged fruit/vegetables packaged herbs/vegetables 
##              0.0055283103              0.0114132858              0.0042799822 
##                     pasta                  pet care                photo/film 
##              0.0153366028              0.0095407936              0.0096299599 
##        pickled vegetables              pies/pasties                 pip fruit 
##              0.0171199287              0.0818546589              0.0663397236 
##                 pip herbs              Plastic bags                   popcorn 
##              0.0074008025              0.0968345965              0.0068658047 
##                pot plants           potato products             potted plants 
##              0.0018724922              0.0031208203              0.0152474365 
##     preservation products          processed cheese                  prosecco 
##              0.0001783326              0.0160499331              0.0018724922 
##            pudding powder               ready soups            red/blush wine 
##              0.0021399911              0.0021399911              0.0193490860 
##                      rice             roll products                rolls/buns 
##              0.2564422648              0.0097191262              0.0055283103 
##           root vegetables           rubbing alcohol                       rum 
##              0.0031208203              0.0010699955              0.0049041462 
##            salad dressing                      salt               salty snack 
##              0.0008024967              0.0112349532              0.0371823451 
##                    sauces                   sausage         seasonal products 
##              0.0050824788              0.0155149354              0.0135532769 
##       semi-finished bread                 skin care             sliced cheese 
##              0.0174765938              0.0033883192              0.0253232278 
##            snack products                      soap                      soda 
##              0.0030316540              0.0029424877              0.0205082479 
##               soft cheese                  softener      sound storage medium 
##              0.0164065983              0.0053499777              0.0000891663 
##                     soups                       soy            sparkling wine 
##              0.0065983058              0.0080249666              0.0059741418 
##             specialty bar          specialty cheese       specialty chocolate 
##              0.0277307178              0.0082924654              0.0291573785 
##             specialty fat      specialty vegetables                    spices 
##              0.0035666518              0.0015158270              0.0051716451 
##             spread cheese                     sugar             sweet spreads 
##              0.0114132858              0.0347748551              0.0083816317 
##                     syrup                       tea                   tidbits 
##              0.0029424877              0.0164065983              0.0023183237 
##            toilet cleaner            tropical fruit            tropical herbs 
##              0.0006241641              0.0920196166              0.0168524298 
##                    turkey                  UHT-milk                vegetables 
##              0.0178332590              0.0329915292              0.1163620152 
##                   veggies                   vinegar                   waffles 
##              0.1696834597              0.0068658047              0.0377173428 
##        whipped/sour cream                    whisky               white bread 
##              0.0719572002              0.0007133304              0.0416406598 
##                white wine                whole milk                    yogurt 
##              0.0190815872              0.0089166295              0.1400802497 
##                  zwieback 
##              0.0071333036
itemFrequency(shopping, type="absolute")
##          abrasive cleaner          artif. sweetener            baby cosmetics 
##                        45                        41                         7 
##                 baby food                      bags             baking powder 
##                         1                         5                       194 
##          bathroom cleaner                      beef                   berries 
##                        32                       644                       406 
##                 beverages              bottled beer             bottled water 
##                       305                       116                       197 
##                    brandy               brown bread                    butter 
##                        47                       718                       618 
##               butter milk                  cake bar                   candles 
##                       323                       147                        99 
##                     candy               canned fish              canned fruit 
##                       328                       161                        32 
##              canned herbs         canned vegetables                   carrots 
##                         4                       117                       141 
##                  cat food                   cereals               chewing gum 
##                       248                        63                       235 
##                   chicken                 chocolate     chocolate marshmallow 
##                       499                       544                       102 
##                    citrus              citrus herbs                   cleaner 
##                       814                       171                        58 
##           cling film/bags              cocoa drinks                    coffee 
##                       126                        25                       691 
##                      coke            condensed milk         cooking chocolate 
##                      1715                       113                        26 
##               cooking oil                  cookware                     cream 
##                       115                        29                        15 
##              cream cheese                      curd               curd cheese 
##                       451                       639                        62 
##               decalcifier               dental care                   dessert 
##                        19                        64                       417 
##                 detergent              dish cleaner                    dishes 
##                       223                       115                       198 
##                  dog food             domestic eggs  female sanitary products 
##                        91                       705                        68 
##         finished products                      fish                     flour 
##                        77                        37                       197 
##            flower (seeds)    flower soil/fertilizer               frankfurter 
##                       116                        21                        20 
##            frozen chicken            frozen dessert               frozen fish 
##                         8                       127                       127 
##             frozen fruits             frozen herbss              frozen meals 
##                        12                         1                       320 
##    frozen potato products         frozen vegetables     fruit/vegetable juice 
##                        92                       537                       711 
##                    grapes                 green tea                hair spray 
##                       259                       764                        14 
##                halal meat                       ham            hamburger meat 
##                       567                       307                       397 
##               hard cheese                   heinken                     herbs 
##                       274                       792                       189 
##     herbs/vegetable juice                     honey    house keeping products 
##                       101                        18                        92 
##          hygiene articles                 ice cream            instant coffee 
##                       386                       291                        83 
##     Instant food products                       jam                   ketchup 
##                        94                        57                        46 
##            kitchen towels           kitchen utensil               light bulbs 
##                        63                         4                        44 
##                   liqueur                    liquor        liquor (appetizer) 
##                        11                       118                        93 
##                liver loaf                      loaf  long life bakery product 
##                        52                      1809                       407 
##           make up remover            male cosmetics                 margarine 
##                         9                        49                       653 
##            marinated meat           marinated meats                mayonnaise 
##                       924                       580                        97 
##                      meat              meat spreads             mineral water 
##                       298                        48                      1087 
##           misc. beverages                   mustard                   napkins 
##                       316                       133                       575 
##                newspapers                   noodles                 nut snack 
##                       908                       260                        33 
##               nuts/prunes                       oil                    onions 
##                        41                       321                       365 
##    organic marinated meat          organic products           organic sausage 
##                        22                        21                         1 
##          other vegetables packaged fruit/vegetables packaged herbs/vegetables 
##                        62                       128                        48 
##                     pasta                  pet care                photo/film 
##                       172                       107                       108 
##        pickled vegetables              pies/pasties                 pip fruit 
##                       192                       918                       744 
##                 pip herbs              Plastic bags                   popcorn 
##                        83                      1086                        77 
##                pot plants           potato products             potted plants 
##                        21                        35                       171 
##     preservation products          processed cheese                  prosecco 
##                         2                       180                        21 
##            pudding powder               ready soups            red/blush wine 
##                        24                        24                       217 
##                      rice             roll products                rolls/buns 
##                      2876                       109                        62 
##           root vegetables           rubbing alcohol                       rum 
##                        35                        12                        55 
##            salad dressing                      salt               salty snack 
##                         9                       126                       417 
##                    sauces                   sausage         seasonal products 
##                        57                       174                       152 
##       semi-finished bread                 skin care             sliced cheese 
##                       196                        38                       284 
##            snack products                      soap                      soda 
##                        34                        33                       230 
##               soft cheese                  softener      sound storage medium 
##                       184                        60                         1 
##                     soups                       soy            sparkling wine 
##                        74                        90                        67 
##             specialty bar          specialty cheese       specialty chocolate 
##                       311                        93                       327 
##             specialty fat      specialty vegetables                    spices 
##                        40                        17                        58 
##             spread cheese                     sugar             sweet spreads 
##                       128                       390                        94 
##                     syrup                       tea                   tidbits 
##                        33                       184                        26 
##            toilet cleaner            tropical fruit            tropical herbs 
##                         7                      1032                       189 
##                    turkey                  UHT-milk                vegetables 
##                       200                       370                      1305 
##                   veggies                   vinegar                   waffles 
##                      1903                        77                       423 
##        whipped/sour cream                    whisky               white bread 
##                       807                         8                       467 
##                white wine                whole milk                    yogurt 
##                       214                       100                      1571 
##                  zwieback 
##                        80

Cross-table analysis

ctab<-crossTable(shopping, sort=TRUE) 
ctab<-crossTable(shopping, measure="count", sort=TRUE) 
ctab

From the cross-table result we can see the frequency of co-occurrences between pairs of items, such as the number of times “rice” and “veggies” were bought together, and so on.

stab<-crossTable(shopping, measure="support", sort=TRUE)
round(stab, 3)
##                            rice veggies  loaf  coke yogurt vegetables
## rice                      0.256   0.067 0.050 0.036  0.056      0.052
## veggies                   0.067   0.170 0.037 0.029  0.038      0.042
## loaf                      0.050   0.037 0.161 0.034  0.030      0.021
## coke                      0.036   0.029 0.034 0.153  0.024      0.016
## yogurt                    0.056   0.038 0.030 0.024  0.140      0.027
## vegetables                0.052   0.042 0.021 0.016  0.027      0.116
## mineral water             0.030   0.022 0.021 0.025  0.020      0.014
## Plastic bags              0.025   0.020 0.017 0.022  0.015      0.013
## tropical fruit            0.037   0.031 0.022 0.018  0.026      0.018
## marinated meat            0.026   0.024 0.027 0.021  0.017      0.013
## pies/pasties              0.029   0.020 0.018 0.018  0.016      0.010
## newspapers                0.027   0.017 0.017 0.013  0.015      0.011
## citrus                    0.027   0.025 0.015 0.011  0.019      0.016
## whipped/sour cream        0.032   0.025 0.013 0.010  0.021      0.018
## heinken                   0.018   0.014 0.012 0.015  0.008      0.008
## green tea                 0.008   0.008 0.010 0.012  0.005      0.004
## pip fruit                 0.027   0.023 0.012 0.012  0.016      0.014
## brown bread               0.024   0.016 0.011 0.011  0.015      0.011
## fruit/vegetable juice     0.024   0.018 0.013 0.016  0.016      0.011
## domestic eggs             0.030   0.020 0.014 0.011  0.014      0.014
## coffee                    0.020   0.012 0.010 0.009  0.011      0.008
## margarine                 0.024   0.017 0.013 0.009  0.014      0.012
## beef                      0.023   0.017 0.012 0.007  0.012      0.018
## curd                      0.027   0.015 0.009 0.007  0.018      0.012
## butter                    0.027   0.018 0.012 0.008  0.014      0.013
## marinated meats           0.018   0.014 0.017 0.010  0.010      0.009
## napkins                   0.019   0.013 0.010 0.011  0.012      0.010
## halal meat                0.020   0.019 0.010 0.010  0.008      0.012
## chocolate                 0.016   0.011 0.010 0.012  0.009      0.007
## frozen vegetables         0.021   0.016 0.009 0.008  0.012      0.012
## chicken                   0.018   0.016 0.008 0.007  0.008      0.012
## white bread               0.016   0.012 0.006 0.009  0.009      0.008
## cream cheese              0.017   0.012 0.009 0.006  0.012      0.008
## waffles                   0.012   0.009 0.008 0.008  0.007      0.006
## dessert                   0.014   0.010 0.006 0.009  0.010      0.006
## salty snack               0.011   0.009 0.004 0.008  0.006      0.005
## long life bakery product  0.013   0.009 0.007 0.007  0.008      0.005
## berries                   0.013   0.009 0.006 0.006  0.011      0.008
## hamburger meat            0.015   0.012 0.008 0.005  0.007      0.007
## sugar                     0.015   0.009 0.006 0.006  0.007      0.007
## hygiene articles          0.013   0.008 0.005 0.006  0.007      0.006
## UHT-milk                  0.004   0.007 0.006 0.007  0.007      0.005
## onions                    0.012   0.012 0.006 0.005  0.007      0.010
## candy                     0.008   0.006 0.006 0.008  0.006      0.004
## specialty chocolate       0.007   0.005 0.005 0.006  0.004      0.003
## butter milk               0.011   0.009 0.007 0.004  0.009      0.006
## oil                       0.011   0.009 0.004 0.004  0.005      0.007
## frozen meals              0.010   0.007 0.004 0.005  0.006      0.004
## misc. beverages           0.007   0.005 0.004 0.006  0.004      0.003
## specialty bar             0.006   0.005 0.005 0.006  0.004      0.002
## ham                       0.011   0.008 0.006 0.004  0.007      0.004
## beverages                 0.007   0.005 0.005 0.004  0.006      0.003
## meat                      0.010   0.009 0.006 0.005  0.005      0.006
## ice cream                 0.006   0.004 0.003 0.005  0.004      0.003
## sliced cheese             0.011   0.008 0.007 0.004  0.008      0.006
## hard cheese               0.010   0.008 0.005 0.004  0.006      0.006
## noodles                   0.008   0.000 0.000 0.000  0.003      0.006
## grapes                    0.007   0.008 0.004 0.004  0.005      0.005
## cat food                  0.008   0.006 0.003 0.004  0.006      0.004
## chewing gum               0.005   0.004 0.003 0.005  0.002      0.002
## soda                      0.005   0.000 0.000 0.000  0.003      0.004
## detergent                 0.009   0.006 0.003 0.003  0.004      0.004
## red/blush wine            0.005   0.004 0.003 0.004  0.002      0.003
## white wine                0.003   0.002 0.002 0.003  0.002      0.002
## turkey                    0.007   0.003 0.002 0.001  0.004      0.005
## dishes                    0.006   0.005 0.003 0.002  0.004      0.003
## bottled water             0.004   0.000 0.000 0.000  0.004      0.004
## flour                     0.009   0.006 0.003 0.002  0.005      0.005
## semi-finished bread       0.007   0.005 0.003 0.004  0.003      0.002
## baking powder             0.009   0.006 0.003 0.002  0.004      0.004
## pickled vegetables        0.007   0.006 0.004 0.004  0.004      0.004
## herbs                     0.008   0.007 0.003 0.002  0.004      0.007
## tropical herbs            0.005   0.000 0.000 0.000  0.004      0.004
## soft cheese               0.007   0.006 0.005 0.002  0.006      0.004
## tea                       0.006   0.001 0.001 0.000  0.002      0.003
## processed cheese          0.007   0.005 0.004 0.005  0.002      0.003
## sausage                   0.004   0.000 0.000 0.000  0.003      0.003
## pasta                     0.006   0.004 0.002 0.004  0.003      0.004
## citrus herbs              0.006   0.000 0.000 0.000  0.003      0.003
## potted plants             0.006   0.004 0.002 0.002  0.003      0.002
## canned fish               0.005   0.004 0.004 0.003  0.003      0.003
## seasonal products         0.004   0.003 0.002 0.002  0.003      0.002
## cake bar                  0.005   0.003 0.003 0.004  0.002      0.002
## carrots                   0.006   0.000 0.000 0.000  0.003      0.005
## mustard                   0.005   0.003 0.004 0.002  0.002      0.003
## packaged fruit/vegetables 0.004   0.003 0.002 0.002  0.002      0.003
## spread cheese             0.003   0.003 0.004 0.003  0.004      0.002
## frozen dessert            0.004   0.003 0.003 0.002  0.002      0.003
## frozen fish               0.005   0.004 0.002 0.001  0.003      0.003
## cling film/bags           0.004   0.003 0.002 0.002  0.003      0.002
## salt                      0.004   0.003 0.002 0.001  0.002      0.003
## liquor                    0.001   0.001 0.001 0.002  0.001      0.001
## canned vegetables         0.004   0.004 0.002 0.003  0.003      0.002
## bottled beer              0.003   0.000 0.000 0.000  0.001      0.002
## flower (seeds)            0.004   0.003 0.002 0.001  0.001      0.002
## cooking oil               0.001   0.000 0.000 0.000  0.001      0.001
## dish cleaner              0.003   0.002 0.002 0.002  0.002      0.002
## condensed milk            0.002   0.002 0.002 0.002  0.002      0.002
## roll products             0.004   0.004 0.002 0.001  0.002      0.003
## photo/film                0.002   0.001 0.001 0.001  0.001      0.001
## pet care                  0.002   0.002 0.001 0.002  0.001      0.001
## chocolate marshmallow     0.003   0.002 0.002 0.002  0.001      0.001
## herbs/vegetable juice     0.003   0.000 0.000 0.000  0.002      0.002
## whole milk                0.000   0.000 0.000 0.000  0.001      0.000
## candles                   0.003   0.002 0.001 0.001  0.001      0.002
## mayonnaise                0.003   0.003 0.002 0.002  0.003      0.002
## Instant food products     0.003   0.002 0.002 0.002  0.001      0.002
## sweet spreads             0.003   0.002 0.001 0.002  0.002      0.002
## liquor (appetizer)        0.002   0.001 0.001 0.002  0.001      0.001
## specialty cheese          0.003   0.004 0.001 0.001  0.003      0.002
## frozen potato products    0.004   0.002 0.002 0.002  0.002      0.002
## house keeping products    0.003   0.002 0.002 0.002  0.002      0.002
## dog food                  0.003   0.002 0.001 0.002  0.002      0.001
## soy                       0.003   0.000 0.000 0.000  0.002      0.002
## instant coffee            0.002   0.002 0.002 0.002  0.002      0.001
## pip herbs                 0.002   0.000 0.000 0.000  0.001      0.002
## zwieback                  0.002   0.002 0.001 0.001  0.001      0.001
## finished products         0.001   0.002 0.001 0.002  0.001      0.001
## popcorn                   0.003   0.001 0.001 0.002  0.001      0.002
## vinegar                   0.003   0.002 0.001 0.001  0.002      0.002
## soups                     0.003   0.003 0.001 0.001  0.001      0.002
## female sanitary products  0.002   0.001 0.001 0.001  0.002      0.001
## sparkling wine            0.001   0.001 0.001 0.001  0.001      0.001
## dental care               0.002   0.002 0.001 0.001  0.001      0.001
## cereals                   0.004   0.002 0.001 0.001  0.002      0.001
## kitchen towels            0.002   0.002 0.001 0.001  0.001      0.001
## curd cheese               0.002   0.002 0.001 0.000  0.001      0.001
## other vegetables          0.000   0.000 0.000 0.000  0.001      0.000
## rolls/buns                0.000   0.000 0.000 0.000  0.001      0.000
## softener                  0.002   0.001 0.001 0.001  0.001      0.001
## cleaner                   0.002   0.001 0.001 0.001  0.002      0.001
## spices                    0.001   0.002 0.001 0.001  0.001      0.001
## jam                       0.003   0.002 0.001 0.001  0.001      0.002
## sauces                    0.002   0.001 0.001 0.001  0.001      0.001
## rum                       0.002   0.001 0.001 0.001  0.001      0.001
## liver loaf                0.002   0.001 0.001 0.001  0.001      0.001
## male cosmetics            0.001   0.001 0.001 0.001  0.001      0.001
## meat spreads              0.001   0.001 0.001 0.001  0.002      0.001
## packaged herbs/vegetables 0.002   0.000 0.000 0.000  0.001      0.001
## brandy                    0.001   0.001 0.001 0.001  0.001      0.001
## ketchup                   0.001   0.001 0.000 0.001  0.001      0.001
## abrasive cleaner          0.002   0.001 0.000 0.001  0.001      0.001
## light bulbs               0.001   0.001 0.001 0.001  0.001      0.001
## artif. sweetener          0.001   0.001 0.001 0.001  0.001      0.001
## nuts/prunes               0.001   0.001 0.001 0.001  0.000      0.001
## specialty fat             0.001   0.001 0.001 0.000  0.001      0.001
## skin care                 0.002   0.001 0.001 0.001  0.001      0.001
## fish                      0.001   0.001 0.000 0.000  0.001      0.001
## potato products           0.001   0.001 0.001 0.001  0.001      0.001
## root vegetables           0.000   0.000 0.000 0.000  0.000      0.000
## snack products            0.001   0.001 0.001 0.001  0.000      0.000
## nut snack                 0.000   0.001 0.001 0.001  0.001      0.001
## soap                      0.001   0.000 0.001 0.001  0.000      0.000
## syrup                     0.001   0.001 0.001 0.001  0.001      0.001
## bathroom cleaner          0.001   0.001 0.001 0.001  0.001      0.001
## canned fruit              0.001   0.001 0.001 0.001  0.000      0.001
## cookware                  0.000   0.000 0.001 0.001  0.000      0.000
## cooking chocolate         0.001   0.001 0.001 0.000  0.000      0.000
## tidbits                   0.001   0.000 0.001 0.001  0.001      0.000
## cocoa drinks              0.001   0.000 0.000 0.000  0.000      0.000
## pudding powder            0.001   0.001 0.000 0.000  0.001      0.001
## ready soups               0.001   0.001 0.001 0.001  0.000      0.001
## organic marinated meat    0.001   0.000 0.000 0.000  0.001      0.000
## flower soil/fertilizer    0.000   0.000 0.000 0.000  0.000      0.000
## organic products          0.001   0.001 0.000 0.000  0.000      0.001
## pot plants                0.001   0.000 0.000 0.000  0.000      0.000
## prosecco                  0.000   0.000 0.000 0.000  0.000      0.000
## frankfurter               0.000   0.000 0.000 0.000  0.000      0.000
## decalcifier               0.001   0.000 0.000 0.000  0.000      0.000
## honey                     0.001   0.000 0.000 0.000  0.000      0.000
## specialty vegetables      0.000   0.001 0.000 0.001  0.000      0.000
## cream                     0.000   0.001 0.000 0.000  0.000      0.000
## hair spray                0.000   0.000 0.000 0.000  0.000      0.000
## frozen fruits             0.000   0.001 0.000 0.000  0.000      0.000
## rubbing alcohol           0.001   0.000 0.000 0.000  0.000      0.000
## liqueur                   0.000   0.000 0.000 0.000  0.000      0.000
## make up remover           0.000   0.000 0.000 0.000  0.000      0.000
## salad dressing            0.000   0.000 0.000 0.000  0.000      0.000
## frozen chicken            0.000   0.000 0.000 0.000  0.000      0.000
## whisky                    0.000   0.000 0.000 0.000  0.000      0.000
## baby cosmetics            0.000   0.000 0.000 0.000  0.000      0.000
## toilet cleaner            0.000   0.000 0.000 0.000  0.000      0.000
## bags                      0.000   0.000 0.000 0.000  0.000      0.000
## canned herbs              0.000   0.000 0.000 0.000  0.000      0.000
## kitchen utensil           0.000   0.000 0.000 0.000  0.000      0.000
## preservation products     0.000   0.000 0.000 0.000  0.000      0.000
## baby food                 0.000   0.000 0.000 0.000  0.000      0.000
## frozen herbss             0.000   0.000 0.000 0.000  0.000      0.000
## organic sausage           0.000   0.000 0.000 0.000  0.000      0.000
## sound storage medium      0.000   0.000 0.000 0.000  0.000      0.000
##                           mineral water Plastic bags tropical fruit
## rice                              0.030        0.025          0.037
## veggies                           0.022        0.020          0.031
## loaf                              0.021        0.017          0.022
## coke                              0.025        0.022          0.018
## yogurt                            0.020        0.015          0.026
## vegetables                        0.014        0.013          0.018
## mineral water                     0.097        0.010          0.016
## Plastic bags                      0.010        0.097          0.012
## tropical fruit                    0.016        0.012          0.092
## marinated meat                    0.011        0.014          0.012
## pies/pasties                      0.008        0.011          0.012
## newspapers                        0.010        0.007          0.010
## citrus                            0.012        0.009          0.017
## whipped/sour cream                0.008        0.008          0.012
## heinken                           0.014        0.005          0.007
## green tea                         0.007        0.010          0.003
## pip fruit                         0.009        0.008          0.018
## brown bread                       0.007        0.009          0.009
## fruit/vegetable juice             0.012        0.009          0.012
## domestic eggs                     0.008        0.009          0.010
## coffee                            0.006        0.010          0.006
## margarine                         0.009        0.006          0.008
## beef                              0.005        0.005          0.007
## curd                              0.005        0.006          0.009
## butter                            0.008        0.005          0.009
## marinated meats                   0.006        0.007          0.008
## napkins                           0.008        0.007          0.009
## halal meat                        0.007        0.006          0.007
## chocolate                         0.005        0.008          0.007
## frozen vegetables                 0.005        0.004          0.008
## chicken                           0.005        0.005          0.006
## white bread                       0.004        0.007          0.008
## cream cheese                      0.005        0.005          0.006
## waffles                           0.004        0.006          0.005
## dessert                           0.005        0.006          0.006
## salty snack                       0.004        0.006          0.005
## long life bakery product          0.004        0.005          0.006
## berries                           0.004        0.005          0.006
## hamburger meat                    0.003        0.004          0.004
## sugar                             0.004        0.003          0.004
## hygiene articles                  0.005        0.005          0.006
## UHT-milk                          0.006        0.005          0.004
## onions                            0.005        0.004          0.005
## candy                             0.003        0.004          0.005
## specialty chocolate               0.003        0.004          0.003
## butter milk                       0.003        0.004          0.005
## oil                               0.004        0.003          0.004
## frozen meals                      0.003        0.005          0.005
## misc. beverages                   0.005        0.004          0.004
## specialty bar                     0.002        0.003          0.003
## ham                               0.003        0.004          0.005
## beverages                         0.003        0.003          0.004
## meat                              0.003        0.003          0.003
## ice cream                         0.002        0.003          0.004
## sliced cheese                     0.003        0.004          0.005
## hard cheese                       0.003        0.003          0.004
## noodles                           0.000        0.002          0.000
## grapes                            0.004        0.002          0.005
## cat food                          0.004        0.004          0.004
## chewing gum                       0.002        0.003          0.002
## soda                              0.000        0.003          0.000
## detergent                         0.002        0.003          0.003
## red/blush wine                    0.003        0.003          0.002
## white wine                        0.003        0.003          0.001
## turkey                            0.001        0.002          0.002
## dishes                            0.002        0.002          0.002
## bottled water                     0.000        0.001          0.000
## flour                             0.002        0.002          0.003
## semi-finished bread               0.002        0.003          0.004
## baking powder                     0.002        0.002          0.003
## pickled vegetables                0.003        0.002          0.003
## herbs                             0.003        0.002          0.002
## tropical herbs                    0.000        0.002          0.000
## soft cheese                       0.002        0.003          0.003
## tea                               0.001        0.001          0.001
## processed cheese                  0.002        0.002          0.004
## sausage                           0.000        0.002          0.000
## pasta                             0.002        0.002          0.002
## citrus herbs                      0.000        0.001          0.000
## potted plants                     0.002        0.002          0.003
## canned fish                       0.001        0.003          0.002
## seasonal products                 0.001        0.002          0.002
## cake bar                          0.002        0.003          0.002
## carrots                           0.000        0.001          0.000
## mustard                           0.002        0.002          0.002
## packaged fruit/vegetables         0.002        0.001          0.002
## spread cheese                     0.002        0.002          0.002
## frozen dessert                    0.001        0.001          0.002
## frozen fish                       0.001        0.001          0.002
## cling film/bags                   0.002        0.001          0.002
## salt                              0.001        0.001          0.001
## liquor                            0.001        0.002          0.000
## canned vegetables                 0.001        0.001          0.002
## bottled beer                      0.000        0.001          0.000
## flower (seeds)                    0.001        0.001          0.001
## cooking oil                       0.000        0.001          0.000
## dish cleaner                      0.001        0.001          0.001
## condensed milk                    0.001        0.002          0.001
## roll products                     0.001        0.001          0.002
## photo/film                        0.000        0.000          0.000
## pet care                          0.001        0.001          0.001
## chocolate marshmallow             0.001        0.000          0.002
## herbs/vegetable juice             0.000        0.001          0.000
## whole milk                        0.000        0.001          0.000
## candles                           0.001        0.000          0.001
## mayonnaise                        0.001        0.002          0.001
## Instant food products             0.001        0.001          0.001
## sweet spreads                     0.000        0.002          0.001
## liquor (appetizer)                0.001        0.002          0.001
## specialty cheese                  0.002        0.001          0.001
## frozen potato products            0.001        0.001          0.001
## house keeping products            0.001        0.002          0.001
## dog food                          0.001        0.002          0.001
## soy                               0.000        0.001          0.000
## instant coffee                    0.001        0.001          0.001
## pip herbs                         0.000        0.001          0.000
## zwieback                          0.001        0.001          0.001
## finished products                 0.001        0.001          0.001
## popcorn                           0.001        0.001          0.001
## vinegar                           0.001        0.001          0.001
## soups                             0.001        0.001          0.001
## female sanitary products          0.001        0.001          0.001
## sparkling wine                    0.000        0.001          0.000
## dental care                       0.001        0.001          0.001
## cereals                           0.000        0.001          0.001
## kitchen towels                    0.000        0.001          0.001
## curd cheese                       0.001        0.000          0.001
## other vegetables                  0.000        0.001          0.000
## rolls/buns                        0.000        0.000          0.000
## softener                          0.001        0.001          0.001
## cleaner                           0.001        0.001          0.000
## spices                            0.001        0.001          0.001
## jam                               0.001        0.001          0.001
## sauces                            0.001        0.001          0.001
## rum                               0.001        0.000          0.001
## liver loaf                        0.000        0.001          0.001
## male cosmetics                    0.001        0.001          0.000
## meat spreads                      0.001        0.001          0.001
## packaged herbs/vegetables         0.000        0.000          0.000
## brandy                            0.000        0.001          0.000
## ketchup                           0.000        0.000          0.001
## abrasive cleaner                  0.000        0.000          0.001
## light bulbs                       0.000        0.000          0.000
## artif. sweetener                  0.001        0.001          0.000
## nuts/prunes                       0.000        0.001          0.001
## specialty fat                     0.000        0.000          0.000
## skin care                         0.001        0.001          0.001
## fish                              0.000        0.000          0.000
## potato products                   0.000        0.001          0.000
## root vegetables                   0.000        0.000          0.000
## snack products                    0.000        0.001          0.000
## nut snack                         0.000        0.001          0.001
## soap                              0.000        0.000          0.000
## syrup                             0.000        0.000          0.001
## bathroom cleaner                  0.000        0.000          0.001
## canned fruit                      0.000        0.001          0.001
## cookware                          0.000        0.000          0.000
## cooking chocolate                 0.001        0.000          0.000
## tidbits                           0.000        0.000          0.000
## cocoa drinks                      0.000        0.000          0.000
## pudding powder                    0.000        0.000          0.000
## ready soups                       0.001        0.001          0.000
## organic marinated meat            0.000        0.000          0.000
## flower soil/fertilizer            0.000        0.000          0.000
## organic products                  0.000        0.000          0.001
## pot plants                        0.000        0.000          0.000
## prosecco                          0.000        0.000          0.000
## frankfurter                       0.000        0.000          0.000
## decalcifier                       0.000        0.000          0.000
## honey                             0.000        0.000          0.000
## specialty vegetables              0.000        0.000          0.001
## cream                             0.000        0.000          0.000
## hair spray                        0.000        0.000          0.000
## frozen fruits                     0.000        0.000          0.000
## rubbing alcohol                   0.000        0.000          0.000
## liqueur                           0.000        0.000          0.000
## make up remover                   0.000        0.000          0.000
## salad dressing                    0.000        0.000          0.000
## frozen chicken                    0.000        0.000          0.000
## whisky                            0.000        0.000          0.000
## baby cosmetics                    0.000        0.000          0.000
## toilet cleaner                    0.000        0.000          0.000
## bags                              0.000        0.000          0.000
## canned herbs                      0.000        0.000          0.000
## kitchen utensil                   0.000        0.000          0.000
## preservation products             0.000        0.000          0.000
## baby food                         0.000        0.000          0.000
## frozen herbss                     0.000        0.000          0.000
## organic sausage                   0.000        0.000          0.000
## sound storage medium              0.000        0.000          0.000
##                           marinated meat pies/pasties newspapers citrus
## rice                               0.026        0.029      0.027  0.027
## veggies                            0.024        0.020      0.017  0.025
## loaf                               0.027        0.018      0.017  0.015
## coke                               0.021        0.018      0.013  0.011
## yogurt                             0.017        0.016      0.015  0.019
## vegetables                         0.013        0.010      0.011  0.016
## mineral water                      0.011        0.008      0.010  0.012
## Plastic bags                       0.014        0.011      0.007  0.009
## tropical fruit                     0.012        0.012      0.010  0.017
## marinated meat                     0.082        0.011      0.007  0.010
## pies/pasties                       0.011        0.082      0.008  0.009
## newspapers                         0.007        0.008      0.081  0.007
## citrus                             0.010        0.009      0.007  0.073
## whipped/sour cream                 0.008        0.007      0.007  0.010
## heinken                            0.007        0.004      0.004  0.005
## green tea                          0.006        0.004      0.004  0.004
## pip fruit                          0.009        0.009      0.006  0.012
## brown bread                        0.009        0.009      0.007  0.007
## fruit/vegetable juice              0.009        0.007      0.007  0.009
## domestic eggs                      0.008        0.008      0.007  0.009
## coffee                             0.006        0.006      0.005  0.006
## margarine                          0.006        0.006      0.007  0.007
## beef                               0.005        0.006      0.007  0.007
## curd                               0.007        0.007      0.006  0.006
## butter                             0.008        0.007      0.006  0.008
## marinated meats                    0.009        0.007      0.004  0.006
## napkins                            0.006        0.007      0.006  0.007
## halal meat                         0.006        0.006      0.006  0.006
## chocolate                          0.006        0.007      0.005  0.006
## frozen vegetables                  0.005        0.004      0.004  0.006
## chicken                            0.005        0.004      0.005  0.006
## white bread                        0.006        0.005      0.003  0.004
## cream cheese                       0.005        0.004      0.004  0.005
## waffles                            0.004        0.007      0.004  0.004
## dessert                            0.005        0.005      0.003  0.004
## salty snack                        0.005        0.005      0.003  0.003
## long life bakery product           0.005        0.005      0.003  0.004
## berries                            0.004        0.004      0.003  0.005
## hamburger meat                     0.005        0.004      0.003  0.003
## sugar                              0.003        0.005      0.003  0.004
## hygiene articles                   0.004        0.004      0.003  0.005
## UHT-milk                           0.003        0.003      0.004  0.004
## onions                             0.003        0.003      0.003  0.005
## candy                              0.003        0.003      0.002  0.003
## specialty chocolate                0.002        0.003      0.002  0.002
## butter milk                        0.003        0.003      0.002  0.004
## oil                                0.004        0.003      0.004  0.004
## frozen meals                       0.003        0.003      0.002  0.003
## misc. beverages                    0.002        0.002      0.002  0.002
## specialty bar                      0.002        0.004      0.002  0.002
## ham                                0.004        0.004      0.002  0.002
## beverages                          0.002        0.003      0.003  0.002
## meat                               0.005        0.002      0.003  0.003
## ice cream                          0.002        0.002      0.003  0.001
## sliced cheese                      0.006        0.003      0.003  0.003
## hard cheese                        0.005        0.003      0.002  0.003
## noodles                            0.000        0.000      0.003  0.000
## grapes                             0.003        0.003      0.002  0.003
## cat food                           0.003        0.003      0.003  0.003
## chewing gum                        0.002        0.002      0.002  0.002
## soda                               0.000        0.001      0.002  0.000
## detergent                          0.002        0.002      0.002  0.002
## red/blush wine                     0.002        0.002      0.002  0.002
## white wine                         0.002        0.001      0.002  0.001
## turkey                             0.001        0.002      0.001  0.002
## dishes                             0.001        0.002      0.001  0.002
## bottled water                      0.000        0.000      0.002  0.000
## flour                              0.002        0.002      0.002  0.003
## semi-finished bread                0.002        0.003      0.003  0.002
## baking powder                      0.002        0.001      0.002  0.003
## pickled vegetables                 0.003        0.002      0.002  0.003
## herbs                              0.001        0.001      0.001  0.003
## tropical herbs                     0.000        0.001      0.001  0.000
## soft cheese                        0.003        0.002      0.001  0.002
## tea                                0.000        0.000      0.001  0.001
## processed cheese                   0.003        0.003      0.001  0.002
## sausage                            0.000        0.001      0.002  0.000
## pasta                              0.002        0.002      0.001  0.002
## citrus herbs                       0.000        0.000      0.001  0.000
## potted plants                      0.001        0.002      0.001  0.002
## canned fish                        0.002        0.002      0.002  0.001
## seasonal products                  0.002        0.002      0.001  0.002
## cake bar                           0.002        0.002      0.001  0.001
## carrots                            0.000        0.000      0.000  0.000
## mustard                            0.002        0.001      0.002  0.002
## packaged fruit/vegetables          0.002        0.002      0.001  0.002
## spread cheese                      0.002        0.002      0.002  0.001
## frozen dessert                     0.001        0.002      0.001  0.001
## frozen fish                        0.001        0.001      0.001  0.001
## cling film/bags                    0.001        0.001      0.001  0.001
## salt                               0.002        0.001      0.001  0.001
## liquor                             0.001        0.000      0.001  0.000
## canned vegetables                  0.001        0.001      0.001  0.002
## bottled beer                       0.000        0.000      0.001  0.000
## flower (seeds)                     0.001        0.001      0.001  0.001
## cooking oil                        0.000        0.000      0.001  0.000
## dish cleaner                       0.001        0.001      0.000  0.001
## condensed milk                     0.001        0.001      0.001  0.001
## roll products                      0.002        0.001      0.001  0.001
## photo/film                         0.000        0.000      0.001  0.000
## pet care                           0.001        0.000      0.001  0.001
## chocolate marshmallow              0.001        0.001      0.001  0.001
## herbs/vegetable juice              0.000        0.000      0.001  0.000
## whole milk                         0.000        0.001      0.001  0.000
## candles                            0.001        0.002      0.001  0.001
## mayonnaise                         0.002        0.001      0.001  0.001
## Instant food products              0.001        0.001      0.001  0.001
## sweet spreads                      0.001        0.001      0.001  0.001
## liquor (appetizer)                 0.001        0.000      0.002  0.000
## specialty cheese                   0.001        0.001      0.000  0.001
## frozen potato products             0.001        0.001      0.000  0.001
## house keeping products             0.001        0.001      0.001  0.001
## dog food                           0.001        0.001      0.001  0.001
## soy                                0.000        0.000      0.001  0.000
## instant coffee                     0.001        0.001      0.001  0.001
## pip herbs                          0.000        0.000      0.000  0.000
## zwieback                           0.000        0.000      0.001  0.001
## finished products                  0.001        0.001      0.000  0.001
## popcorn                            0.001        0.001      0.000  0.001
## vinegar                            0.001        0.001      0.001  0.001
## soups                              0.001        0.001      0.001  0.001
## female sanitary products           0.000        0.001      0.000  0.001
## sparkling wine                     0.000        0.000      0.001  0.000
## dental care                        0.001        0.001      0.001  0.001
## cereals                            0.001        0.001      0.000  0.000
## kitchen towels                     0.001        0.001      0.001  0.000
## curd cheese                        0.001        0.000      0.000  0.001
## other vegetables                   0.000        0.001      0.001  0.000
## rolls/buns                         0.000        0.001      0.001  0.000
## softener                           0.001        0.000      0.001  0.001
## cleaner                            0.001        0.001      0.001  0.001
## spices                             0.001        0.000      0.000  0.001
## jam                                0.001        0.001      0.000  0.001
## sauces                             0.001        0.001      0.001  0.000
## rum                                0.000        0.000      0.000  0.000
## liver loaf                         0.001        0.001      0.000  0.000
## male cosmetics                     0.001        0.001      0.001  0.001
## meat spreads                       0.001        0.000      0.000  0.000
## packaged herbs/vegetables          0.000        0.000      0.000  0.000
## brandy                             0.000        0.000      0.000  0.000
## ketchup                            0.001        0.000      0.001  0.000
## abrasive cleaner                   0.001        0.000      0.001  0.001
## light bulbs                        0.000        0.001      0.001  0.000
## artif. sweetener                   0.000        0.001      0.001  0.000
## nuts/prunes                        0.000        0.000      0.001  0.000
## specialty fat                      0.000        0.000      0.000  0.001
## skin care                          0.001        0.000      0.000  0.001
## fish                               0.000        0.000      0.000  0.000
## potato products                    0.000        0.001      0.000  0.000
## root vegetables                    0.000        0.000      0.000  0.000
## snack products                     0.000        0.000      0.000  0.000
## nut snack                          0.001        0.000      0.000  0.000
## soap                               0.000        0.000      0.000  0.000
## syrup                              0.000        0.001      0.000  0.000
## bathroom cleaner                   0.000        0.000      0.001  0.000
## canned fruit                       0.000        0.001      0.000  0.001
## cookware                           0.000        0.000      0.000  0.001
## cooking chocolate                  0.000        0.000      0.000  0.000
## tidbits                            0.000        0.000      0.000  0.000
## cocoa drinks                       0.000        0.000      0.000  0.000
## pudding powder                     0.000        0.000      0.000  0.000
## ready soups                        0.000        0.001      0.001  0.000
## organic marinated meat             0.000        0.000      0.000  0.000
## flower soil/fertilizer             0.000        0.000      0.000  0.000
## organic products                   0.000        0.000      0.000  0.000
## pot plants                         0.000        0.000      0.000  0.000
## prosecco                           0.000        0.000      0.000  0.000
## frankfurter                        0.000        0.000      0.000  0.000
## decalcifier                        0.000        0.000      0.000  0.000
## honey                              0.000        0.000      0.000  0.000
## specialty vegetables               0.000        0.000      0.000  0.000
## cream                              0.001        0.000      0.000  0.000
## hair spray                         0.000        0.000      0.000  0.000
## frozen fruits                      0.000        0.000      0.000  0.000
## rubbing alcohol                    0.000        0.000      0.000  0.000
## liqueur                            0.000        0.000      0.000  0.000
## make up remover                    0.000        0.000      0.000  0.000
## salad dressing                     0.000        0.000      0.000  0.000
## frozen chicken                     0.000        0.000      0.000  0.000
## whisky                             0.000        0.000      0.000  0.000
## baby cosmetics                     0.000        0.000      0.000  0.000
## toilet cleaner                     0.000        0.000      0.000  0.000
## bags                               0.000        0.000      0.000  0.000
## canned herbs                       0.000        0.000      0.000  0.000
## kitchen utensil                    0.000        0.000      0.000  0.000
## preservation products              0.000        0.000      0.000  0.000
## baby food                          0.000        0.000      0.000  0.000
## frozen herbss                      0.000        0.000      0.000  0.000
## organic sausage                    0.000        0.000      0.000  0.000
## sound storage medium               0.000        0.000      0.000  0.000
##                           whipped/sour cream heinken green tea pip fruit
## rice                                   0.032   0.018     0.008     0.027
## veggies                                0.025   0.014     0.008     0.023
## loaf                                   0.013   0.012     0.010     0.012
## coke                                   0.010   0.015     0.012     0.012
## yogurt                                 0.021   0.008     0.005     0.016
## vegetables                             0.018   0.008     0.004     0.014
## mineral water                          0.008   0.014     0.007     0.009
## Plastic bags                           0.008   0.005     0.010     0.008
## tropical fruit                         0.012   0.007     0.003     0.018
## marinated meat                         0.008   0.007     0.006     0.009
## pies/pasties                           0.007   0.004     0.004     0.009
## newspapers                             0.007   0.004     0.004     0.006
## citrus                                 0.010   0.005     0.004     0.012
## whipped/sour cream                     0.072   0.003     0.002     0.008
## heinken                                0.003   0.071     0.002     0.005
## green tea                              0.002   0.002     0.068     0.003
## pip fruit                              0.008   0.005     0.003     0.066
## brown bread                            0.004   0.005     0.004     0.007
## fruit/vegetable juice                  0.008   0.006     0.003     0.008
## domestic eggs                          0.010   0.004     0.003     0.008
## coffee                                 0.007   0.004     0.004     0.006
## margarine                              0.007   0.005     0.003     0.007
## beef                                   0.007   0.004     0.002     0.004
## curd                                   0.011   0.003     0.002     0.007
## butter                                 0.010   0.005     0.002     0.006
## marinated meats                        0.005   0.005     0.002     0.006
## napkins                                0.007   0.005     0.003     0.006
## halal meat                             0.007   0.005     0.003     0.005
## chocolate                              0.005   0.004     0.003     0.005
## frozen vegetables                      0.008   0.004     0.001     0.006
## chicken                                0.007   0.002     0.003     0.004
## white bread                            0.006   0.003     0.001     0.006
## cream cheese                           0.007   0.002     0.001     0.005
## waffles                                0.005   0.002     0.002     0.004
## dessert                                0.005   0.002     0.002     0.004
## salty snack                            0.005   0.003     0.002     0.004
## long life bakery product               0.006   0.002     0.001     0.004
## berries                                0.010   0.001     0.001     0.003
## hamburger meat                         0.005   0.002     0.002     0.004
## sugar                                  0.005   0.003     0.001     0.004
## hygiene articles                       0.004   0.002     0.002     0.004
## UHT-milk                               0.003   0.002     0.002     0.003
## onions                                 0.005   0.003     0.002     0.003
## candy                                  0.004   0.001     0.002     0.002
## specialty chocolate                    0.003   0.002     0.001     0.002
## butter milk                            0.004   0.001     0.000     0.004
## oil                                    0.004   0.003     0.001     0.003
## frozen meals                           0.003   0.002     0.001     0.004
## misc. beverages                        0.002   0.002     0.002     0.002
## specialty bar                          0.002   0.001     0.001     0.002
## ham                                    0.005   0.002     0.000     0.003
## beverages                              0.002   0.001     0.000     0.002
## meat                                   0.004   0.002     0.001     0.002
## ice cream                              0.003   0.002     0.001     0.002
## sliced cheese                          0.004   0.002     0.001     0.004
## hard cheese                            0.005   0.002     0.001     0.003
## noodles                                0.002   0.000     0.000     0.000
## grapes                                 0.003   0.001     0.001     0.003
## cat food                               0.003   0.002     0.001     0.002
## chewing gum                            0.002   0.001     0.001     0.002
## soda                                   0.002   0.000     0.000     0.000
## detergent                              0.002   0.001     0.001     0.002
## red/blush wine                         0.001   0.004     0.002     0.001
## white wine                             0.001   0.002     0.002     0.001
## turkey                                 0.003   0.001     0.000     0.001
## dishes                                 0.002   0.001     0.000     0.001
## bottled water                          0.002   0.000     0.000     0.000
## flour                                  0.004   0.001     0.001     0.002
## semi-finished bread                    0.002   0.001     0.001     0.002
## baking powder                          0.005   0.001     0.001     0.002
## pickled vegetables                     0.002   0.002     0.001     0.002
## herbs                                  0.003   0.002     0.000     0.002
## tropical herbs                         0.002   0.000     0.000     0.000
## soft cheese                            0.003   0.001     0.001     0.003
## tea                                    0.002   0.001     0.000     0.001
## processed cheese                       0.002   0.001     0.000     0.002
## sausage                                0.001   0.000     0.000     0.000
## pasta                                  0.002   0.001     0.001     0.002
## citrus herbs                           0.002   0.000     0.000     0.000
## potted plants                          0.002   0.001     0.000     0.002
## canned fish                            0.002   0.002     0.001     0.001
## seasonal products                      0.001   0.001     0.000     0.001
## cake bar                               0.001   0.001     0.000     0.002
## carrots                                0.002   0.000     0.000     0.000
## mustard                                0.001   0.001     0.001     0.001
## packaged fruit/vegetables              0.001   0.001     0.001     0.001
## spread cheese                          0.000   0.001     0.001     0.001
## frozen dessert                         0.002   0.001     0.000     0.001
## frozen fish                            0.001   0.001     0.001     0.002
## cling film/bags                        0.002   0.001     0.001     0.001
## salt                                   0.002   0.002     0.000     0.001
## liquor                                 0.000   0.004     0.001     0.000
## canned vegetables                      0.002   0.000     0.001     0.002
## bottled beer                           0.000   0.000     0.000     0.000
## flower (seeds)                         0.002   0.001     0.001     0.001
## cooking oil                            0.001   0.000     0.000     0.000
## dish cleaner                           0.002   0.000     0.001     0.001
## condensed milk                         0.001   0.001     0.000     0.001
## roll products                          0.002   0.002     0.001     0.001
## photo/film                             0.001   0.000     0.000     0.001
## pet care                               0.001   0.001     0.000     0.001
## chocolate marshmallow                  0.001   0.001     0.000     0.001
## herbs/vegetable juice                  0.001   0.000     0.000     0.000
## whole milk                             0.001   0.000     0.000     0.000
## candles                                0.001   0.001     0.001     0.001
## mayonnaise                             0.001   0.000     0.000     0.001
## Instant food products                  0.001   0.001     0.000     0.001
## sweet spreads                          0.001   0.000     0.000     0.001
## liquor (appetizer)                     0.001   0.002     0.002     0.000
## specialty cheese                       0.001   0.000     0.000     0.001
## frozen potato products                 0.001   0.001     0.000     0.001
## house keeping products                 0.001   0.001     0.000     0.001
## dog food                               0.001   0.000     0.001     0.001
## soy                                    0.001   0.000     0.000     0.000
## instant coffee                         0.001   0.001     0.000     0.001
## pip herbs                              0.001   0.000     0.000     0.000
## zwieback                               0.001   0.000     0.000     0.001
## finished products                      0.001   0.000     0.000     0.001
## popcorn                                0.001   0.001     0.000     0.001
## vinegar                                0.001   0.001     0.000     0.001
## soups                                  0.002   0.001     0.000     0.001
## female sanitary products               0.001   0.000     0.000     0.000
## sparkling wine                         0.001   0.001     0.000     0.000
## dental care                            0.000   0.001     0.000     0.001
## cereals                                0.001   0.001     0.000     0.001
## kitchen towels                         0.001   0.000     0.000     0.001
## curd cheese                            0.001   0.001     0.000     0.001
## other vegetables                       0.001   0.000     0.000     0.000
## rolls/buns                             0.000   0.000     0.000     0.000
## softener                               0.001   0.001     0.001     0.001
## cleaner                                0.001   0.000     0.000     0.000
## spices                                 0.001   0.001     0.000     0.001
## jam                                    0.001   0.000     0.000     0.001
## sauces                                 0.000   0.000     0.000     0.001
## rum                                    0.000   0.001     0.000     0.000
## liver loaf                             0.000   0.000     0.000     0.001
## male cosmetics                         0.000   0.000     0.001     0.000
## meat spreads                           0.000   0.000     0.000     0.000
## packaged herbs/vegetables              0.001   0.000     0.000     0.000
## brandy                                 0.000   0.001     0.001     0.000
## ketchup                                0.001   0.000     0.000     0.001
## abrasive cleaner                       0.001   0.001     0.000     0.000
## light bulbs                            0.000   0.000     0.000     0.001
## artif. sweetener                       0.000   0.000     0.000     0.000
## nuts/prunes                            0.000   0.000     0.000     0.001
## specialty fat                          0.001   0.000     0.000     0.000
## skin care                              0.001   0.000     0.000     0.000
## fish                                   0.000   0.000     0.000     0.000
## potato products                        0.000   0.001     0.000     0.000
## root vegetables                        0.001   0.000     0.000     0.000
## snack products                         0.000   0.000     0.000     0.000
## nut snack                              0.000   0.001     0.000     0.000
## soap                                   0.000   0.000     0.000     0.000
## syrup                                  0.000   0.000     0.000     0.000
## bathroom cleaner                       0.000   0.000     0.000     0.000
## canned fruit                           0.000   0.000     0.000     0.000
## cookware                               0.000   0.000     0.000     0.001
## cooking chocolate                      0.000   0.000     0.000     0.000
## tidbits                                0.000   0.000     0.000     0.000
## cocoa drinks                           0.000   0.000     0.000     0.000
## pudding powder                         0.001   0.000     0.000     0.000
## ready soups                            0.000   0.000     0.000     0.000
## organic marinated meat                 0.000   0.000     0.000     0.000
## flower soil/fertilizer                 0.000   0.000     0.000     0.000
## organic products                       0.000   0.000     0.000     0.000
## pot plants                             0.000   0.000     0.000     0.000
## prosecco                               0.000   0.001     0.000     0.000
## frankfurter                            0.000   0.000     0.000     0.000
## decalcifier                            0.000   0.000     0.000     0.000
## honey                                  0.000   0.000     0.000     0.000
## specialty vegetables                   0.000   0.001     0.000     0.000
## cream                                  0.000   0.000     0.000     0.000
## hair spray                             0.000   0.000     0.000     0.000
## frozen fruits                          0.001   0.000     0.000     0.000
## rubbing alcohol                        0.000   0.000     0.000     0.000
## liqueur                                0.000   0.000     0.000     0.000
## make up remover                        0.000   0.000     0.000     0.000
## salad dressing                         0.000   0.000     0.000     0.000
## frozen chicken                         0.000   0.000     0.000     0.000
## whisky                                 0.000   0.000     0.000     0.000
## baby cosmetics                         0.000   0.000     0.000     0.000
## toilet cleaner                         0.000   0.000     0.000     0.000
## bags                                   0.000   0.000     0.000     0.000
## canned herbs                           0.000   0.000     0.000     0.000
## kitchen utensil                        0.000   0.000     0.000     0.000
## preservation products                  0.000   0.000     0.000     0.000
## baby food                              0.000   0.000     0.000     0.000
## frozen herbss                          0.000   0.000     0.000     0.000
## organic sausage                        0.000   0.000     0.000     0.000
## sound storage medium                   0.000   0.000     0.000     0.000
##                           brown bread fruit/vegetable juice domestic eggs
## rice                            0.024                 0.024         0.030
## veggies                         0.016                 0.018         0.020
## loaf                            0.011                 0.013         0.014
## coke                            0.011                 0.016         0.011
## yogurt                          0.015                 0.016         0.014
## vegetables                      0.011                 0.011         0.014
## mineral water                   0.007                 0.012         0.008
## Plastic bags                    0.009                 0.009         0.009
## tropical fruit                  0.009                 0.012         0.010
## marinated meat                  0.009                 0.009         0.008
## pies/pasties                    0.009                 0.007         0.008
## newspapers                      0.007                 0.007         0.007
## citrus                          0.007                 0.009         0.009
## whipped/sour cream              0.004                 0.008         0.010
## heinken                         0.005                 0.006         0.004
## green tea                       0.004                 0.003         0.003
## pip fruit                       0.007                 0.008         0.008
## brown bread                     0.064                 0.007         0.007
## fruit/vegetable juice           0.007                 0.063         0.007
## domestic eggs                   0.007                 0.007         0.063
## coffee                          0.004                 0.005         0.005
## margarine                       0.006                 0.005         0.008
## beef                            0.005                 0.004         0.006
## curd                            0.005                 0.004         0.007
## butter                          0.005                 0.007         0.009
## marinated meats                 0.006                 0.005         0.006
## napkins                         0.004                 0.006         0.006
## halal meat                      0.005                 0.004         0.005
## chocolate                       0.004                 0.006         0.003
## frozen vegetables               0.004                 0.007         0.005
## chicken                         0.004                 0.003         0.006
## white bread                     0.005                 0.007         0.006
## cream cheese                    0.005                 0.005         0.005
## waffles                         0.002                 0.003         0.003
## dessert                         0.005                 0.005         0.004
## salty snack                     0.002                 0.005         0.003
## long life bakery product        0.003                 0.005         0.004
## berries                         0.003                 0.003         0.004
## hamburger meat                  0.003                 0.003         0.004
## sugar                           0.004                 0.004         0.005
## hygiene articles                0.003                 0.003         0.005
## UHT-milk                        0.004                 0.003         0.004
## onions                          0.003                 0.003         0.005
## candy                           0.002                 0.003         0.003
## specialty chocolate             0.002                 0.002         0.002
## butter milk                     0.004                 0.004         0.002
## oil                             0.002                 0.003         0.004
## frozen meals                    0.003                 0.003         0.003
## misc. beverages                 0.002                 0.003         0.003
## specialty bar                   0.001                 0.002         0.002
## ham                             0.003                 0.003         0.004
## beverages                       0.002                 0.002         0.002
## meat                            0.003                 0.003         0.003
## ice cream                       0.002                 0.002         0.001
## sliced cheese                   0.003                 0.004         0.003
## hard cheese                     0.002                 0.004         0.004
## noodles                         0.001                 0.000         0.002
## grapes                          0.002                 0.003         0.002
## cat food                        0.002                 0.002         0.002
## chewing gum                     0.000                 0.002         0.001
## soda                            0.001                 0.000         0.002
## detergent                       0.001                 0.001         0.001
## red/blush wine                  0.002                 0.002         0.001
## white wine                      0.001                 0.001         0.001
## turkey                          0.002                 0.001         0.002
## dishes                          0.001                 0.001         0.002
## bottled water                   0.001                 0.000         0.001
## flour                           0.001                 0.002         0.003
## semi-finished bread             0.002                 0.002         0.002
## baking powder                   0.001                 0.002         0.003
## pickled vegetables              0.002                 0.002         0.002
## herbs                           0.001                 0.001         0.002
## tropical herbs                  0.001                 0.000         0.002
## soft cheese                     0.002                 0.002         0.003
## tea                             0.001                 0.001         0.002
## processed cheese                0.002                 0.003         0.002
## sausage                         0.001                 0.000         0.001
## pasta                           0.001                 0.002         0.002
## citrus herbs                    0.001                 0.000         0.001
## potted plants                   0.001                 0.002         0.001
## canned fish                     0.002                 0.001         0.002
## seasonal products               0.001                 0.001         0.001
## cake bar                        0.001                 0.001         0.001
## carrots                         0.001                 0.000         0.002
## mustard                         0.001                 0.002         0.002
## packaged fruit/vegetables       0.001                 0.001         0.001
## spread cheese                   0.002                 0.001         0.001
## frozen dessert                  0.001                 0.001         0.002
## frozen fish                     0.001                 0.001         0.001
## cling film/bags                 0.001                 0.001         0.001
## salt                            0.001                 0.001         0.002
## liquor                          0.001                 0.000         0.000
## canned vegetables               0.001                 0.001         0.002
## bottled beer                    0.001                 0.000         0.000
## flower (seeds)                  0.001                 0.000         0.001
## cooking oil                     0.000                 0.000         0.000
## dish cleaner                    0.001                 0.000         0.001
## condensed milk                  0.001                 0.001         0.001
## roll products                   0.001                 0.001         0.002
## photo/film                      0.000                 0.000         0.001
## pet care                        0.001                 0.001         0.000
## chocolate marshmallow           0.000                 0.000         0.002
## herbs/vegetable juice           0.001                 0.000         0.001
## whole milk                      0.001                 0.000         0.000
## candles                         0.000                 0.001         0.001
## mayonnaise                      0.001                 0.001         0.001
## Instant food products           0.001                 0.001         0.001
## sweet spreads                   0.001                 0.001         0.001
## liquor (appetizer)              0.000                 0.000         0.000
## specialty cheese                0.000                 0.001         0.001
## frozen potato products          0.001                 0.001         0.000
## house keeping products          0.001                 0.001         0.001
## dog food                        0.001                 0.001         0.001
## soy                             0.001                 0.000         0.001
## instant coffee                  0.000                 0.001         0.001
## pip herbs                       0.000                 0.000         0.001
## zwieback                        0.000                 0.001         0.001
## finished products               0.001                 0.001         0.001
## popcorn                         0.001                 0.001         0.001
## vinegar                         0.001                 0.001         0.001
## soups                           0.001                 0.000         0.001
## female sanitary products        0.000                 0.000         0.001
## sparkling wine                  0.000                 0.001         0.001
## dental care                     0.001                 0.001         0.001
## cereals                         0.001                 0.001         0.001
## kitchen towels                  0.001                 0.001         0.001
## curd cheese                     0.000                 0.001         0.001
## other vegetables                0.001                 0.000         0.001
## rolls/buns                      0.000                 0.000         0.000
## softener                        0.000                 0.000         0.001
## cleaner                         0.000                 0.001         0.001
## spices                          0.000                 0.000         0.001
## jam                             0.001                 0.001         0.001
## sauces                          0.001                 0.001         0.000
## rum                             0.000                 0.000         0.001
## liver loaf                      0.000                 0.001         0.000
## male cosmetics                  0.000                 0.000         0.000
## meat spreads                    0.001                 0.001         0.001
## packaged herbs/vegetables       0.000                 0.000         0.000
## brandy                          0.000                 0.000         0.000
## ketchup                         0.001                 0.000         0.001
## abrasive cleaner                0.001                 0.000         0.000
## light bulbs                     0.000                 0.000         0.000
## artif. sweetener                0.000                 0.000         0.000
## nuts/prunes                     0.000                 0.000         0.000
## specialty fat                   0.000                 0.000         0.001
## skin care                       0.000                 0.000         0.001
## fish                            0.000                 0.000         0.000
## potato products                 0.000                 0.001         0.000
## root vegetables                 0.000                 0.000         0.000
## snack products                  0.000                 0.000         0.000
## nut snack                       0.000                 0.000         0.000
## soap                            0.000                 0.001         0.000
## syrup                           0.000                 0.000         0.000
## bathroom cleaner                0.000                 0.000         0.000
## canned fruit                    0.000                 0.000         0.001
## cookware                        0.000                 0.000         0.000
## cooking chocolate               0.000                 0.000         0.001
## tidbits                         0.000                 0.000         0.000
## cocoa drinks                    0.000                 0.000         0.000
## pudding powder                  0.000                 0.000         0.000
## ready soups                     0.000                 0.000         0.000
## organic marinated meat          0.000                 0.000         0.000
## flower soil/fertilizer          0.000                 0.000         0.000
## organic products                0.000                 0.000         0.000
## pot plants                      0.000                 0.000         0.000
## prosecco                        0.000                 0.000         0.000
## frankfurter                     0.000                 0.000         0.000
## decalcifier                     0.000                 0.000         0.000
## honey                           0.000                 0.000         0.000
## specialty vegetables            0.000                 0.000         0.000
## cream                           0.000                 0.000         0.000
## hair spray                      0.000                 0.000         0.000
## frozen fruits                   0.000                 0.000         0.000
## rubbing alcohol                 0.000                 0.000         0.000
## liqueur                         0.000                 0.000         0.000
## make up remover                 0.000                 0.000         0.000
## salad dressing                  0.000                 0.000         0.000
## frozen chicken                  0.000                 0.000         0.000
## whisky                          0.000                 0.000         0.000
## baby cosmetics                  0.000                 0.000         0.000
## toilet cleaner                  0.000                 0.000         0.000
## bags                            0.000                 0.000         0.000
## canned herbs                    0.000                 0.000         0.000
## kitchen utensil                 0.000                 0.000         0.000
## preservation products           0.000                 0.000         0.000
## baby food                       0.000                 0.000         0.000
## frozen herbss                   0.000                 0.000         0.000
## organic sausage                 0.000                 0.000         0.000
## sound storage medium            0.000                 0.000         0.000
##                           coffee margarine  beef  curd butter marinated meats
## rice                       0.020     0.024 0.023 0.027  0.027           0.018
## veggies                    0.012     0.017 0.017 0.015  0.018           0.014
## loaf                       0.010     0.013 0.012 0.009  0.012           0.017
## coke                       0.009     0.009 0.007 0.007  0.008           0.010
## yogurt                     0.011     0.014 0.012 0.018  0.014           0.010
## vegetables                 0.008     0.012 0.018 0.012  0.013           0.009
## mineral water              0.006     0.009 0.005 0.005  0.008           0.006
## Plastic bags               0.010     0.006 0.005 0.006  0.005           0.007
## tropical fruit             0.006     0.008 0.007 0.009  0.009           0.008
## marinated meat             0.006     0.006 0.005 0.007  0.008           0.009
## pies/pasties               0.006     0.006 0.006 0.007  0.007           0.007
## newspapers                 0.005     0.007 0.007 0.006  0.006           0.004
## citrus                     0.006     0.007 0.007 0.006  0.008           0.006
## whipped/sour cream         0.007     0.007 0.007 0.011  0.010           0.005
## heinken                    0.004     0.005 0.004 0.003  0.005           0.005
## green tea                  0.004     0.003 0.002 0.002  0.002           0.002
## pip fruit                  0.006     0.007 0.004 0.007  0.006           0.006
## brown bread                0.004     0.006 0.005 0.005  0.005           0.006
## fruit/vegetable juice      0.005     0.005 0.004 0.004  0.007           0.005
## domestic eggs              0.005     0.008 0.006 0.007  0.009           0.006
## coffee                     0.062     0.004 0.004 0.004  0.005           0.004
## margarine                  0.004     0.058 0.006 0.006  0.006           0.006
## beef                       0.004     0.006 0.057 0.005  0.006           0.004
## curd                       0.004     0.006 0.005 0.057  0.007           0.004
## butter                     0.005     0.006 0.006 0.007  0.055           0.004
## marinated meats            0.004     0.006 0.004 0.004  0.004           0.052
## napkins                    0.004     0.004 0.004 0.005  0.005           0.003
## halal meat                 0.003     0.006 0.007 0.004  0.005           0.005
## chocolate                  0.004     0.003 0.003 0.003  0.006           0.004
## frozen vegetables          0.005     0.005 0.005 0.005  0.005           0.004
## chicken                    0.004     0.005 0.005 0.003  0.006           0.003
## white bread                0.003     0.004 0.003 0.004  0.004           0.005
## cream cheese               0.004     0.005 0.004 0.005  0.004           0.003
## waffles                    0.003     0.003 0.003 0.003  0.003           0.003
## dessert                    0.003     0.003 0.003 0.005  0.003           0.003
## salty snack                0.003     0.003 0.003 0.003  0.003           0.003
## long life bakery product   0.004     0.003 0.002 0.004  0.004           0.002
## berries                    0.003     0.003 0.005 0.003  0.004           0.002
## hamburger meat             0.003     0.003 0.004 0.003  0.005           0.003
## sugar                      0.005     0.005 0.003 0.004  0.003           0.003
## hygiene articles           0.004     0.004 0.003 0.004  0.004           0.003
## UHT-milk                   0.004     0.004 0.002 0.002  0.002           0.003
## onions                     0.003     0.002 0.003 0.003  0.004           0.003
## candy                      0.003     0.003 0.001 0.003  0.003           0.002
## specialty chocolate        0.002     0.001 0.002 0.002  0.002           0.002
## butter milk                0.003     0.002 0.002 0.004  0.002           0.003
## oil                        0.004     0.004 0.004 0.003  0.004           0.002
## frozen meals               0.002     0.001 0.002 0.003  0.003           0.003
## misc. beverages            0.001     0.002 0.001 0.002  0.003           0.001
## specialty bar              0.002     0.002 0.001 0.002  0.001           0.002
## ham                        0.002     0.003 0.003 0.003  0.003           0.002
## beverages                  0.001     0.001 0.001 0.002  0.001           0.001
## meat                       0.002     0.002 0.002 0.002  0.003           0.003
## ice cream                  0.002     0.001 0.002 0.002  0.002           0.001
## sliced cheese              0.003     0.003 0.003 0.003  0.004           0.002
## hard cheese                0.002     0.002 0.002 0.002  0.004           0.002
## noodles                    0.002     0.002 0.003 0.002  0.002           0.000
## grapes                     0.002     0.002 0.003 0.002  0.002           0.002
## cat food                   0.003     0.003 0.003 0.002  0.002           0.001
## chewing gum                0.001     0.001 0.001 0.001  0.001           0.002
## soda                       0.001     0.001 0.001 0.001  0.001           0.000
## detergent                  0.002     0.002 0.002 0.002  0.002           0.002
## red/blush wine             0.002     0.001 0.001 0.000  0.001           0.001
## white wine                 0.001     0.001 0.001 0.000  0.001           0.001
## turkey                     0.001     0.002 0.003 0.002  0.002           0.001
## dishes                     0.002     0.001 0.002 0.001  0.002           0.001
## bottled water              0.001     0.001 0.001 0.002  0.002           0.000
## flour                      0.002     0.004 0.003 0.004  0.002           0.002
## semi-finished bread        0.001     0.002 0.002 0.002  0.001           0.002
## baking powder              0.001     0.003 0.002 0.002  0.003           0.001
## pickled vegetables         0.002     0.002 0.002 0.001  0.002           0.002
## herbs                      0.001     0.002 0.003 0.002  0.002           0.001
## tropical herbs             0.001     0.001 0.002 0.002  0.002           0.000
## soft cheese                0.002     0.002 0.002 0.002  0.003           0.002
## tea                        0.001     0.002 0.002 0.002  0.002           0.000
## processed cheese           0.001     0.002 0.001 0.001  0.003           0.002
## sausage                    0.001     0.001 0.002 0.001  0.001           0.000
## pasta                      0.001     0.002 0.002 0.002  0.003           0.001
## citrus herbs               0.001     0.001 0.002 0.002  0.001           0.000
## potted plants              0.001     0.001 0.002 0.001  0.001           0.001
## canned fish                0.002     0.002 0.001 0.001  0.001           0.002
## seasonal products          0.002     0.001 0.001 0.001  0.001           0.001
## cake bar                   0.001     0.001 0.001 0.002  0.001           0.001
## carrots                    0.002     0.001 0.002 0.001  0.002           0.000
## mustard                    0.002     0.001 0.002 0.001  0.001           0.002
## packaged fruit/vegetables  0.001     0.001 0.001 0.001  0.001           0.001
## spread cheese              0.001     0.001 0.001 0.001  0.001           0.001
## frozen dessert             0.001     0.001 0.001 0.001  0.001           0.001
## frozen fish                0.000     0.002 0.001 0.001  0.001           0.002
## cling film/bags            0.002     0.001 0.001 0.001  0.001           0.001
## salt                       0.001     0.001 0.001 0.001  0.002           0.001
## liquor                     0.000     0.000 0.000 0.000  0.001           0.000
## canned vegetables          0.001     0.001 0.001 0.001  0.001           0.001
## bottled beer               0.001     0.000 0.001 0.001  0.000           0.000
## flower (seeds)             0.001     0.001 0.001 0.000  0.002           0.001
## cooking oil                0.001     0.000 0.000 0.001  0.000           0.000
## dish cleaner               0.001     0.001 0.001 0.001  0.001           0.001
## condensed milk             0.003     0.000 0.001 0.001  0.001           0.001
## roll products              0.001     0.002 0.001 0.002  0.001           0.001
## photo/film                 0.001     0.000 0.001 0.001  0.000           0.000
## pet care                   0.001     0.000 0.000 0.000  0.000           0.000
## chocolate marshmallow      0.001     0.001 0.001 0.001  0.001           0.001
## herbs/vegetable juice      0.001     0.001 0.001 0.001  0.001           0.000
## whole milk                 0.001     0.000 0.001 0.001  0.001           0.000
## candles                    0.001     0.002 0.001 0.001  0.001           0.000
## mayonnaise                 0.001     0.002 0.001 0.001  0.001           0.001
## Instant food products      0.001     0.001 0.001 0.001  0.001           0.001
## sweet spreads              0.001     0.001 0.001 0.001  0.001           0.001
## liquor (appetizer)         0.001     0.000 0.000 0.001  0.000           0.000
## specialty cheese           0.001     0.001 0.001 0.001  0.001           0.001
## frozen potato products     0.001     0.001 0.001 0.001  0.001           0.001
## house keeping products     0.001     0.001 0.001 0.001  0.001           0.001
## dog food                   0.001     0.000 0.001 0.001  0.000           0.000
## soy                        0.001     0.001 0.001 0.001  0.000           0.000
## instant coffee             0.001     0.000 0.001 0.001  0.001           0.001
## pip herbs                  0.001     0.001 0.001 0.001  0.001           0.000
## zwieback                   0.000     0.001 0.000 0.001  0.001           0.001
## finished products          0.000     0.000 0.001 0.000  0.001           0.000
## popcorn                    0.000     0.000 0.000 0.001  0.000           0.000
## vinegar                    0.001     0.001 0.001 0.001  0.001           0.001
## soups                      0.001     0.001 0.001 0.001  0.001           0.001
## female sanitary products   0.001     0.001 0.000 0.000  0.000           0.000
## sparkling wine             0.001     0.000 0.000 0.000  0.001           0.000
## dental care                0.001     0.001 0.001 0.001  0.001           0.000
## cereals                    0.000     0.001 0.000 0.001  0.001           0.000
## kitchen towels             0.001     0.001 0.000 0.000  0.001           0.001
## curd cheese                0.001     0.001 0.000 0.001  0.000           0.000
## other vegetables           0.000     0.000 0.001 0.001  0.001           0.000
## rolls/buns                 0.001     0.000 0.000 0.000  0.001           0.000
## softener                   0.000     0.001 0.000 0.000  0.001           0.000
## cleaner                    0.001     0.000 0.000 0.001  0.000           0.000
## spices                     0.000     0.000 0.001 0.001  0.001           0.000
## jam                        0.001     0.001 0.001 0.001  0.001           0.001
## sauces                     0.000     0.000 0.000 0.000  0.000           0.000
## rum                        0.000     0.001 0.000 0.001  0.001           0.000
## liver loaf                 0.000     0.001 0.000 0.001  0.000           0.001
## male cosmetics             0.000     0.000 0.000 0.000  0.000           0.000
## meat spreads               0.000     0.000 0.000 0.000  0.000           0.000
## packaged herbs/vegetables  0.000     0.000 0.001 0.000  0.000           0.000
## brandy                     0.001     0.000 0.000 0.000  0.000           0.000
## ketchup                    0.000     0.001 0.000 0.000  0.000           0.001
## abrasive cleaner           0.000     0.000 0.001 0.000  0.001           0.000
## light bulbs                0.001     0.000 0.000 0.000  0.000           0.000
## artif. sweetener           0.001     0.001 0.000 0.000  0.000           0.001
## nuts/prunes                0.000     0.000 0.000 0.000  0.000           0.000
## specialty fat              0.000     0.001 0.000 0.000  0.001           0.001
## skin care                  0.000     0.001 0.001 0.000  0.000           0.000
## fish                       0.001     0.000 0.000 0.000  0.000           0.000
## potato products            0.001     0.000 0.000 0.000  0.000           0.001
## root vegetables            0.000     0.000 0.000 0.000  0.000           0.000
## snack products             0.000     0.000 0.000 0.000  0.000           0.000
## nut snack                  0.000     0.000 0.000 0.000  0.000           0.001
## soap                       0.000     0.000 0.001 0.000  0.000           0.000
## syrup                      0.000     0.000 0.000 0.000  0.001           0.000
## bathroom cleaner           0.000     0.000 0.000 0.000  0.000           0.000
## canned fruit               0.000     0.000 0.000 0.000  0.000           0.000
## cookware                   0.000     0.000 0.001 0.000  0.000           0.000
## cooking chocolate          0.000     0.000 0.000 0.001  0.000           0.000
## tidbits                    0.000     0.000 0.000 0.000  0.000           0.000
## cocoa drinks               0.000     0.001 0.000 0.001  0.000           0.000
## pudding powder             0.000     0.000 0.000 0.001  0.000           0.000
## ready soups                0.000     0.001 0.000 0.000  0.000           0.000
## organic marinated meat     0.000     0.000 0.000 0.000  0.000           0.000
## flower soil/fertilizer     0.000     0.000 0.000 0.000  0.000           0.000
## organic products           0.000     0.001 0.000 0.000  0.000           0.000
## pot plants                 0.000     0.000 0.000 0.000  0.000           0.000
## prosecco                   0.000     0.000 0.000 0.000  0.000           0.000
## frankfurter                0.000     0.000 0.000 0.000  0.000           0.000
## decalcifier                0.000     0.000 0.000 0.000  0.000           0.000
## honey                      0.000     0.000 0.000 0.000  0.000           0.000
## specialty vegetables       0.000     0.000 0.000 0.000  0.000           0.000
## cream                      0.000     0.000 0.000 0.000  0.000           0.000
## hair spray                 0.000     0.000 0.000 0.000  0.000           0.000
## frozen fruits              0.000     0.000 0.000 0.000  0.000           0.000
## rubbing alcohol            0.000     0.000 0.000 0.000  0.001           0.000
## liqueur                    0.000     0.000 0.000 0.000  0.000           0.000
## make up remover            0.000     0.000 0.000 0.000  0.000           0.000
## salad dressing             0.000     0.000 0.000 0.000  0.000           0.000
## frozen chicken             0.000     0.000 0.000 0.000  0.000           0.000
## whisky                     0.000     0.000 0.000 0.000  0.000           0.000
## baby cosmetics             0.000     0.000 0.000 0.000  0.000           0.000
## toilet cleaner             0.000     0.000 0.000 0.000  0.000           0.000
## bags                       0.000     0.000 0.000 0.000  0.000           0.000
## canned herbs               0.000     0.000 0.000 0.000  0.000           0.000
## kitchen utensil            0.000     0.000 0.000 0.000  0.000           0.000
## preservation products      0.000     0.000 0.000 0.000  0.000           0.000
## baby food                  0.000     0.000 0.000 0.000  0.000           0.000
## frozen herbss              0.000     0.000 0.000 0.000  0.000           0.000
## organic sausage            0.000     0.000 0.000 0.000  0.000           0.000
## sound storage medium       0.000     0.000 0.000 0.000  0.000           0.000
##                           napkins halal meat chocolate frozen vegetables
## rice                        0.019      0.020     0.016             0.021
## veggies                     0.013      0.019     0.011             0.016
## loaf                        0.010      0.010     0.010             0.009
## coke                        0.011      0.010     0.012             0.008
## yogurt                      0.012      0.008     0.009             0.012
## vegetables                  0.010      0.012     0.007             0.012
## mineral water               0.008      0.007     0.005             0.005
## Plastic bags                0.007      0.006     0.008             0.004
## tropical fruit              0.009      0.007     0.007             0.008
## marinated meat              0.006      0.006     0.006             0.005
## pies/pasties                0.007      0.006     0.007             0.004
## newspapers                  0.006      0.006     0.005             0.004
## citrus                      0.007      0.006     0.006             0.006
## whipped/sour cream          0.007      0.007     0.005             0.008
## heinken                     0.005      0.005     0.004             0.004
## green tea                   0.003      0.003     0.003             0.001
## pip fruit                   0.006      0.005     0.005             0.006
## brown bread                 0.004      0.005     0.004             0.004
## fruit/vegetable juice       0.006      0.004     0.006             0.007
## domestic eggs               0.006      0.005     0.003             0.005
## coffee                      0.004      0.003     0.004             0.005
## margarine                   0.004      0.006     0.003             0.005
## beef                        0.004      0.007     0.003             0.005
## curd                        0.005      0.004     0.003             0.005
## butter                      0.005      0.005     0.006             0.005
## marinated meats             0.003      0.005     0.004             0.004
## napkins                     0.051      0.005     0.004             0.004
## halal meat                  0.005      0.051     0.004             0.006
## chocolate                   0.004      0.004     0.049             0.002
## frozen vegetables           0.004      0.006     0.002             0.048
## chicken                     0.004      0.005     0.003             0.007
## white bread                 0.003      0.004     0.004             0.003
## cream cheese                0.004      0.003     0.004             0.003
## waffles                     0.003      0.003     0.006             0.002
## dessert                     0.004      0.003     0.004             0.003
## salty snack                 0.004      0.003     0.003             0.003
## long life bakery product    0.004      0.001     0.005             0.004
## berries                     0.003      0.003     0.003             0.003
## hamburger meat              0.003      0.003     0.002             0.003
## sugar                       0.003      0.004     0.002             0.003
## hygiene articles            0.007      0.003     0.002             0.003
## UHT-milk                    0.002      0.003     0.001             0.003
## onions                      0.003      0.003     0.002             0.003
## candy                       0.002      0.002     0.005             0.002
## specialty chocolate         0.002      0.001     0.003             0.002
## butter milk                 0.002      0.002     0.002             0.002
## oil                         0.003      0.003     0.003             0.002
## frozen meals                0.002      0.002     0.002             0.003
## misc. beverages             0.002      0.001     0.002             0.002
## specialty bar               0.002      0.002     0.003             0.001
## ham                         0.002      0.002     0.003             0.002
## beverages                   0.001      0.001     0.002             0.002
## meat                        0.002      0.002     0.001             0.002
## ice cream                   0.002      0.001     0.001             0.002
## sliced cheese               0.003      0.002     0.002             0.002
## hard cheese                 0.003      0.002     0.002             0.002
## noodles                     0.001      0.000     0.001             0.001
## grapes                      0.002      0.002     0.002             0.002
## cat food                    0.003      0.002     0.003             0.001
## chewing gum                 0.002      0.001     0.001             0.001
## soda                        0.001      0.000     0.001             0.001
## detergent                   0.002      0.002     0.001             0.003
## red/blush wine              0.001      0.001     0.001             0.001
## white wine                  0.001      0.001     0.001             0.001
## turkey                      0.001      0.000     0.001             0.002
## dishes                      0.002      0.002     0.001             0.001
## bottled water               0.001      0.000     0.001             0.001
## flour                       0.002      0.002     0.002             0.001
## semi-finished bread         0.001      0.002     0.001             0.002
## baking powder               0.002      0.002     0.002             0.002
## pickled vegetables          0.001      0.002     0.001             0.002
## herbs                       0.001      0.002     0.000             0.003
## tropical herbs              0.001      0.000     0.001             0.001
## soft cheese                 0.001      0.001     0.002             0.002
## tea                         0.001      0.000     0.001             0.001
## processed cheese            0.001      0.001     0.001             0.002
## sausage                     0.001      0.000     0.001             0.001
## pasta                       0.001      0.001     0.001             0.001
## citrus herbs                0.001      0.000     0.001             0.001
## potted plants               0.001      0.001     0.001             0.001
## canned fish                 0.002      0.001     0.001             0.002
## seasonal products           0.001      0.001     0.001             0.002
## cake bar                    0.001      0.001     0.002             0.001
## carrots                     0.001      0.000     0.000             0.001
## mustard                     0.001      0.001     0.002             0.001
## packaged fruit/vegetables   0.001      0.001     0.000             0.002
## spread cheese               0.001      0.001     0.001             0.001
## frozen dessert              0.001      0.001     0.001             0.002
## frozen fish                 0.001      0.002     0.001             0.002
## cling film/bags             0.002      0.000     0.001             0.002
## salt                        0.001      0.001     0.001             0.001
## liquor                      0.001      0.001     0.000             0.000
## canned vegetables           0.001      0.001     0.001             0.001
## bottled beer                0.001      0.000     0.000             0.001
## flower (seeds)              0.001      0.001     0.001             0.001
## cooking oil                 0.001      0.000     0.000             0.000
## dish cleaner                0.002      0.001     0.001             0.001
## condensed milk              0.001      0.000     0.000             0.001
## roll products               0.001      0.001     0.001             0.001
## photo/film                  0.001      0.000     0.000             0.001
## pet care                    0.001      0.001     0.001             0.000
## chocolate marshmallow       0.001      0.001     0.002             0.001
## herbs/vegetable juice       0.000      0.000     0.000             0.001
## whole milk                  0.001      0.000     0.001             0.000
## candles                     0.000      0.001     0.001             0.001
## mayonnaise                  0.001      0.001     0.002             0.001
## Instant food products       0.001      0.001     0.000             0.001
## sweet spreads               0.001      0.001     0.001             0.001
## liquor (appetizer)          0.001      0.001     0.000             0.001
## specialty cheese            0.000      0.000     0.000             0.001
## frozen potato products      0.001      0.001     0.001             0.001
## house keeping products      0.001      0.001     0.001             0.001
## dog food                    0.001      0.001     0.001             0.001
## soy                         0.000      0.000     0.000             0.000
## instant coffee              0.001      0.000     0.000             0.001
## pip herbs                   0.000      0.000     0.000             0.000
## zwieback                    0.001      0.000     0.000             0.001
## finished products           0.000      0.000     0.001             0.001
## popcorn                     0.000      0.000     0.001             0.001
## vinegar                     0.001      0.000     0.000             0.001
## soups                       0.001      0.000     0.001             0.001
## female sanitary products    0.001      0.001     0.001             0.000
## sparkling wine              0.000      0.000     0.000             0.000
## dental care                 0.001      0.001     0.001             0.001
## cereals                     0.001      0.000     0.000             0.000
## kitchen towels              0.001      0.001     0.000             0.001
## curd cheese                 0.000      0.001     0.000             0.001
## other vegetables            0.001      0.000     0.000             0.001
## rolls/buns                  0.000      0.000     0.000             0.000
## softener                    0.001      0.000     0.000             0.000
## cleaner                     0.001      0.000     0.000             0.001
## spices                      0.000      0.000     0.001             0.001
## jam                         0.001      0.000     0.000             0.001
## sauces                      0.001      0.000     0.000             0.000
## rum                         0.000      0.000     0.000             0.000
## liver loaf                  0.000      0.000     0.000             0.001
## male cosmetics              0.000      0.000     0.000             0.000
## meat spreads                0.000      0.000     0.001             0.000
## packaged herbs/vegetables   0.000      0.000     0.000             0.001
## brandy                      0.000      0.000     0.000             0.000
## ketchup                     0.001      0.001     0.001             0.000
## abrasive cleaner            0.000      0.000     0.000             0.000
## light bulbs                 0.001      0.000     0.000             0.000
## artif. sweetener            0.000      0.001     0.000             0.000
## nuts/prunes                 0.000      0.000     0.001             0.000
## specialty fat               0.001      0.001     0.000             0.001
## skin care                   0.001      0.000     0.000             0.001
## fish                        0.000      0.000     0.000             0.000
## potato products             0.000      0.000     0.000             0.000
## root vegetables             0.000      0.000     0.000             0.000
## snack products              0.000      0.000     0.000             0.000
## nut snack                   0.000      0.000     0.000             0.000
## soap                        0.000      0.000     0.000             0.000
## syrup                       0.000      0.000     0.000             0.000
## bathroom cleaner            0.001      0.000     0.000             0.000
## canned fruit                0.000      0.000     0.000             0.000
## cookware                    0.000      0.000     0.000             0.000
## cooking chocolate           0.000      0.000     0.000             0.000
## tidbits                     0.000      0.000     0.000             0.000
## cocoa drinks                0.000      0.000     0.001             0.000
## pudding powder              0.000      0.000     0.000             0.000
## ready soups                 0.000      0.000     0.000             0.000
## organic marinated meat      0.000      0.000     0.000             0.000
## flower soil/fertilizer      0.000      0.000     0.000             0.000
## organic products            0.000      0.000     0.000             0.000
## pot plants                  0.000      0.000     0.000             0.000
## prosecco                    0.000      0.000     0.000             0.000
## frankfurter                 0.000      0.000     0.000             0.000
## decalcifier                 0.000      0.000     0.000             0.000
## honey                       0.000      0.000     0.000             0.000
## specialty vegetables        0.000      0.000     0.000             0.000
## cream                       0.000      0.000     0.000             0.000
## hair spray                  0.000      0.000     0.000             0.000
## frozen fruits               0.000      0.000     0.000             0.000
## rubbing alcohol             0.000      0.000     0.000             0.000
## liqueur                     0.000      0.000     0.000             0.000
## make up remover             0.000      0.000     0.000             0.000
## salad dressing              0.000      0.000     0.000             0.000
## frozen chicken              0.000      0.000     0.000             0.000
## whisky                      0.000      0.000     0.000             0.000
## baby cosmetics              0.000      0.000     0.000             0.000
## toilet cleaner              0.000      0.000     0.000             0.000
## bags                        0.000      0.000     0.000             0.000
## canned herbs                0.000      0.000     0.000             0.000
## kitchen utensil             0.000      0.000     0.000             0.000
## preservation products       0.000      0.000     0.000             0.000
## baby food                   0.000      0.000     0.000             0.000
## frozen herbss               0.000      0.000     0.000             0.000
## organic sausage             0.000      0.000     0.000             0.000
## sound storage medium        0.000      0.000     0.000             0.000
##                           chicken white bread cream cheese waffles dessert
## rice                        0.018       0.016        0.017   0.012   0.014
## veggies                     0.016       0.012        0.012   0.009   0.010
## loaf                        0.008       0.006        0.009   0.008   0.006
## coke                        0.007       0.009        0.006   0.008   0.009
## yogurt                      0.008       0.009        0.012   0.007   0.010
## vegetables                  0.012       0.008        0.008   0.006   0.006
## mineral water               0.005       0.004        0.005   0.004   0.005
## Plastic bags                0.005       0.007        0.005   0.006   0.006
## tropical fruit              0.006       0.008        0.006   0.005   0.006
## marinated meat              0.005       0.006        0.005   0.004   0.005
## pies/pasties                0.004       0.005        0.004   0.007   0.005
## newspapers                  0.005       0.003        0.004   0.004   0.003
## citrus                      0.006       0.004        0.005   0.004   0.004
## whipped/sour cream          0.007       0.006        0.007   0.005   0.005
## heinken                     0.002       0.003        0.002   0.002   0.002
## green tea                   0.003       0.001        0.001   0.002   0.002
## pip fruit                   0.004       0.006        0.005   0.004   0.004
## brown bread                 0.004       0.005        0.005   0.002   0.005
## fruit/vegetable juice       0.003       0.007        0.005   0.003   0.005
## domestic eggs               0.006       0.006        0.005   0.003   0.004
## coffee                      0.004       0.003        0.004   0.003   0.003
## margarine                   0.005       0.004        0.005   0.003   0.003
## beef                        0.005       0.003        0.004   0.003   0.003
## curd                        0.003       0.004        0.005   0.003   0.005
## butter                      0.006       0.004        0.004   0.003   0.003
## marinated meats             0.003       0.005        0.003   0.003   0.003
## napkins                     0.004       0.003        0.004   0.003   0.004
## halal meat                  0.005       0.004        0.003   0.003   0.003
## chocolate                   0.003       0.004        0.004   0.006   0.004
## frozen vegetables           0.007       0.003        0.003   0.002   0.003
## chicken                     0.044       0.003        0.003   0.002   0.002
## white bread                 0.003       0.042        0.004   0.003   0.004
## cream cheese                0.003       0.004        0.040   0.003   0.003
## waffles                     0.002       0.003        0.003   0.038   0.003
## dessert                     0.002       0.004        0.003   0.003   0.037
## salty snack                 0.002       0.002        0.002   0.004   0.002
## long life bakery product    0.003       0.004        0.003   0.004   0.003
## berries                     0.003       0.002        0.002   0.002   0.002
## hamburger meat              0.004       0.003        0.002   0.002   0.002
## sugar                       0.003       0.003        0.003   0.002   0.002
## hygiene articles            0.002       0.002        0.002   0.002   0.002
## UHT-milk                    0.002       0.001        0.003   0.002   0.003
## onions                      0.003       0.002        0.002   0.001   0.002
## candy                       0.002       0.003        0.002   0.003   0.001
## specialty chocolate         0.002       0.001        0.001   0.002   0.001
## butter milk                 0.002       0.002        0.003   0.002   0.003
## oil                         0.003       0.002        0.002   0.002   0.002
## frozen meals                0.002       0.002        0.001   0.002   0.002
## misc. beverages             0.001       0.001        0.002   0.001   0.001
## specialty bar               0.001       0.002        0.002   0.003   0.001
## ham                         0.002       0.005        0.002   0.002   0.003
## beverages                   0.002       0.002        0.002   0.002   0.001
## meat                        0.002       0.002        0.002   0.001   0.001
## ice cream                   0.002       0.001        0.001   0.001   0.001
## sliced cheese               0.001       0.002        0.002   0.001   0.002
## hard cheese                 0.001       0.002        0.002   0.002   0.001
## noodles                     0.001       0.000        0.001   0.001   0.001
## grapes                      0.002       0.001        0.001   0.002   0.001
## cat food                    0.001       0.001        0.002   0.002   0.002
## chewing gum                 0.001       0.001        0.001   0.001   0.001
## soda                        0.001       0.001        0.001   0.001   0.001
## detergent                   0.001       0.002        0.001   0.001   0.001
## red/blush wine              0.002       0.001        0.000   0.001   0.001
## white wine                  0.001       0.001        0.000   0.000   0.001
## turkey                      0.002       0.001        0.001   0.001   0.001
## dishes                      0.001       0.000        0.002   0.001   0.001
## bottled water               0.001       0.001        0.001   0.001   0.001
## flour                       0.002       0.001        0.001   0.001   0.001
## semi-finished bread         0.001       0.001        0.001   0.001   0.001
## baking powder               0.001       0.002        0.002   0.001   0.001
## pickled vegetables          0.002       0.001        0.001   0.001   0.002
## herbs                       0.002       0.000        0.001   0.001   0.001
## tropical herbs              0.001       0.001        0.001   0.001   0.001
## soft cheese                 0.002       0.002        0.002   0.001   0.002
## tea                         0.001       0.001        0.002   0.000   0.001
## processed cheese            0.001       0.004        0.001   0.001   0.001
## sausage                     0.001       0.001        0.001   0.000   0.001
## pasta                       0.002       0.001        0.001   0.002   0.001
## citrus herbs                0.001       0.001        0.001   0.000   0.001
## potted plants               0.001       0.001        0.001   0.000   0.000
## canned fish                 0.001       0.001        0.002   0.001   0.001
## seasonal products           0.001       0.000        0.001   0.001   0.001
## cake bar                    0.001       0.001        0.001   0.001   0.002
## carrots                     0.001       0.001        0.001   0.000   0.001
## mustard                     0.001       0.001        0.001   0.001   0.001
## packaged fruit/vegetables   0.001       0.001        0.000   0.000   0.001
## spread cheese               0.001       0.001        0.001   0.001   0.001
## frozen dessert              0.001       0.001        0.001   0.001   0.001
## frozen fish                 0.001       0.001        0.001   0.001   0.000
## cling film/bags             0.001       0.001        0.001   0.000   0.001
## salt                        0.001       0.001        0.001   0.001   0.001
## liquor                      0.000       0.000        0.000   0.000   0.000
## canned vegetables           0.001       0.001        0.001   0.001   0.001
## bottled beer                0.000       0.000        0.000   0.000   0.000
## flower (seeds)              0.001       0.000        0.000   0.000   0.001
## cooking oil                 0.001       0.000        0.000   0.000   0.000
## dish cleaner                0.001       0.001        0.000   0.001   0.000
## condensed milk              0.001       0.001        0.000   0.001   0.000
## roll products               0.001       0.001        0.001   0.001   0.000
## photo/film                  0.000       0.000        0.000   0.000   0.000
## pet care                    0.000       0.001        0.001   0.001   0.000
## chocolate marshmallow       0.001       0.000        0.001   0.001   0.001
## herbs/vegetable juice       0.001       0.001        0.001   0.001   0.000
## whole milk                  0.001       0.001        0.001   0.001   0.001
## candles                     0.001       0.000        0.000   0.000   0.001
## mayonnaise                  0.001       0.001        0.001   0.001   0.001
## Instant food products       0.000       0.001        0.000   0.000   0.000
## sweet spreads               0.000       0.001        0.001   0.001   0.000
## liquor (appetizer)          0.001       0.000        0.000   0.001   0.000
## specialty cheese            0.000       0.001        0.001   0.000   0.000
## frozen potato products      0.001       0.001        0.000   0.000   0.001
## house keeping products      0.001       0.001        0.000   0.000   0.000
## dog food                    0.001       0.001        0.001   0.000   0.000
## soy                         0.000       0.000        0.000   0.000   0.000
## instant coffee              0.000       0.001        0.000   0.001   0.000
## pip herbs                   0.001       0.001        0.001   0.001   0.000
## zwieback                    0.000       0.000        0.000   0.001   0.000
## finished products           0.000       0.001        0.000   0.001   0.000
## popcorn                     0.000       0.001        0.000   0.000   0.001
## vinegar                     0.001       0.000        0.001   0.000   0.000
## soups                       0.001       0.000        0.001   0.000   0.000
## female sanitary products    0.000       0.000        0.000   0.000   0.000
## sparkling wine              0.000       0.001        0.000   0.000   0.000
## dental care                 0.000       0.001        0.000   0.000   0.001
## cereals                     0.000       0.000        0.001   0.001   0.000
## kitchen towels              0.000       0.000        0.001   0.000   0.000
## curd cheese                 0.000       0.000        0.000   0.000   0.000
## other vegetables            0.001       0.001        0.000   0.000   0.000
## rolls/buns                  0.000       0.000        0.000   0.001   0.000
## softener                    0.001       0.001        0.000   0.000   0.000
## cleaner                     0.001       0.000        0.000   0.001   0.001
## spices                      0.001       0.000        0.000   0.000   0.001
## jam                         0.000       0.000        0.001   0.001   0.000
## sauces                      0.000       0.000        0.000   0.001   0.000
## rum                         0.000       0.000        0.000   0.000   0.000
## liver loaf                  0.000       0.000        0.001   0.000   0.000
## male cosmetics              0.000       0.000        0.000   0.000   0.000
## meat spreads                0.000       0.000        0.001   0.000   0.000
## packaged herbs/vegetables   0.000       0.000        0.000   0.000   0.000
## brandy                      0.000       0.000        0.000   0.000   0.000
## ketchup                     0.000       0.000        0.000   0.000   0.000
## abrasive cleaner            0.001       0.000        0.000   0.000   0.000
## light bulbs                 0.000       0.000        0.000   0.000   0.000
## artif. sweetener            0.000       0.000        0.000   0.000   0.000
## nuts/prunes                 0.000       0.000        0.000   0.000   0.000
## specialty fat               0.001       0.001        0.000   0.000   0.000
## skin care                   0.001       0.000        0.000   0.000   0.000
## fish                        0.000       0.000        0.000   0.000   0.000
## potato products             0.000       0.000        0.000   0.000   0.000
## root vegetables             0.001       0.000        0.000   0.000   0.000
## snack products              0.000       0.000        0.000   0.000   0.000
## nut snack                   0.000       0.000        0.000   0.000   0.000
## soap                        0.000       0.000        0.000   0.000   0.000
## syrup                       0.000       0.000        0.000   0.000   0.000
## bathroom cleaner            0.000       0.000        0.000   0.000   0.000
## canned fruit                0.000       0.000        0.000   0.000   0.000
## cookware                    0.000       0.000        0.000   0.000   0.000
## cooking chocolate           0.000       0.000        0.000   0.000   0.000
## tidbits                     0.000       0.000        0.000   0.001   0.000
## cocoa drinks                0.000       0.000        0.000   0.000   0.000
## pudding powder              0.000       0.000        0.000   0.000   0.000
## ready soups                 0.000       0.000        0.000   0.000   0.000
## organic marinated meat      0.000       0.000        0.000   0.000   0.000
## flower soil/fertilizer      0.000       0.000        0.000   0.000   0.000
## organic products            0.000       0.000        0.000   0.000   0.000
## pot plants                  0.000       0.000        0.000   0.000   0.000
## prosecco                    0.000       0.000        0.000   0.000   0.000
## frankfurter                 0.000       0.000        0.000   0.000   0.000
## decalcifier                 0.000       0.000        0.000   0.000   0.000
## honey                       0.000       0.000        0.000   0.000   0.000
## specialty vegetables        0.000       0.001        0.000   0.000   0.000
## cream                       0.000       0.000        0.000   0.000   0.000
## hair spray                  0.000       0.000        0.000   0.000   0.000
## frozen fruits               0.000       0.000        0.000   0.000   0.000
## rubbing alcohol             0.000       0.000        0.000   0.000   0.000
## liqueur                     0.000       0.000        0.000   0.000   0.000
## make up remover             0.000       0.000        0.000   0.000   0.000
## salad dressing              0.000       0.000        0.000   0.000   0.000
## frozen chicken              0.000       0.000        0.000   0.000   0.000
## whisky                      0.000       0.000        0.000   0.000   0.000
## baby cosmetics              0.000       0.000        0.000   0.000   0.000
## toilet cleaner              0.000       0.000        0.000   0.000   0.000
## bags                        0.000       0.000        0.000   0.000   0.000
## canned herbs                0.000       0.000        0.000   0.000   0.000
## kitchen utensil             0.000       0.000        0.000   0.000   0.000
## preservation products       0.000       0.000        0.000   0.000   0.000
## baby food                   0.000       0.000        0.000   0.000   0.000
## frozen herbss               0.000       0.000        0.000   0.000   0.000
## organic sausage             0.000       0.000        0.000   0.000   0.000
## sound storage medium        0.000       0.000        0.000   0.000   0.000
##                           salty snack long life bakery product berries
## rice                            0.011                    0.013   0.013
## veggies                         0.009                    0.009   0.009
## loaf                            0.004                    0.007   0.006
## coke                            0.008                    0.007   0.006
## yogurt                          0.006                    0.008   0.011
## vegetables                      0.005                    0.005   0.008
## mineral water                   0.004                    0.004   0.004
## Plastic bags                    0.006                    0.005   0.005
## tropical fruit                  0.005                    0.006   0.006
## marinated meat                  0.005                    0.005   0.004
## pies/pasties                    0.005                    0.005   0.004
## newspapers                      0.003                    0.003   0.003
## citrus                          0.003                    0.004   0.005
## whipped/sour cream              0.005                    0.006   0.010
## heinken                         0.003                    0.002   0.001
## green tea                       0.002                    0.001   0.001
## pip fruit                       0.004                    0.004   0.003
## brown bread                     0.002                    0.003   0.003
## fruit/vegetable juice           0.005                    0.005   0.003
## domestic eggs                   0.003                    0.004   0.004
## coffee                          0.003                    0.004   0.003
## margarine                       0.003                    0.003   0.003
## beef                            0.003                    0.002   0.005
## curd                            0.003                    0.004   0.003
## butter                          0.003                    0.004   0.004
## marinated meats                 0.003                    0.002   0.002
## napkins                         0.004                    0.004   0.003
## halal meat                      0.003                    0.001   0.003
## chocolate                       0.003                    0.005   0.003
## frozen vegetables               0.003                    0.004   0.003
## chicken                         0.002                    0.003   0.003
## white bread                     0.002                    0.004   0.002
## cream cheese                    0.002                    0.003   0.002
## waffles                         0.004                    0.004   0.002
## dessert                         0.002                    0.003   0.002
## salty snack                     0.037                    0.003   0.002
## long life bakery product        0.003                    0.036   0.002
## berries                         0.002                    0.002   0.036
## hamburger meat                  0.002                    0.001   0.002
## sugar                           0.002                    0.002   0.003
## hygiene articles                0.001                    0.002   0.003
## UHT-milk                        0.002                    0.002   0.002
## onions                          0.002                    0.001   0.002
## candy                           0.002                    0.002   0.001
## specialty chocolate             0.002                    0.002   0.001
## butter milk                     0.002                    0.002   0.002
## oil                             0.002                    0.001   0.002
## frozen meals                    0.002                    0.002   0.001
## misc. beverages                 0.001                    0.001   0.001
## specialty bar                   0.002                    0.002   0.002
## ham                             0.001                    0.002   0.002
## beverages                       0.000                    0.001   0.001
## meat                            0.001                    0.002   0.002
## ice cream                       0.002                    0.002   0.001
## sliced cheese                   0.001                    0.002   0.002
## hard cheese                     0.001                    0.002   0.002
## noodles                         0.001                    0.001   0.001
## grapes                          0.002                    0.001   0.003
## cat food                        0.001                    0.001   0.002
## chewing gum                     0.002                    0.001   0.000
## soda                            0.001                    0.000   0.001
## detergent                       0.001                    0.001   0.002
## red/blush wine                  0.001                    0.001   0.001
## white wine                      0.001                    0.001   0.001
## turkey                          0.001                    0.001   0.001
## dishes                          0.001                    0.000   0.001
## bottled water                   0.001                    0.001   0.001
## flour                           0.002                    0.001   0.001
## semi-finished bread             0.001                    0.001   0.001
## baking powder                   0.001                    0.002   0.001
## pickled vegetables              0.001                    0.001   0.001
## herbs                           0.001                    0.001   0.001
## tropical herbs                  0.001                    0.001   0.001
## soft cheese                     0.000                    0.002   0.001
## tea                             0.000                    0.001   0.001
## processed cheese                0.001                    0.002   0.001
## sausage                         0.001                    0.000   0.001
## pasta                           0.001                    0.000   0.001
## citrus herbs                    0.001                    0.001   0.002
## potted plants                   0.001                    0.001   0.001
## canned fish                     0.001                    0.001   0.001
## seasonal products               0.001                    0.000   0.001
## cake bar                        0.001                    0.001   0.002
## carrots                         0.000                    0.000   0.002
## mustard                         0.001                    0.001   0.001
## packaged fruit/vegetables       0.000                    0.000   0.001
## spread cheese                   0.001                    0.001   0.001
## frozen dessert                  0.001                    0.001   0.000
## frozen fish                     0.001                    0.001   0.001
## cling film/bags                 0.000                    0.001   0.001
## salt                            0.001                    0.001   0.000
## liquor                          0.000                    0.000   0.001
## canned vegetables               0.001                    0.000   0.000
## bottled beer                    0.000                    0.000   0.000
## flower (seeds)                  0.000                    0.000   0.001
## cooking oil                     0.000                    0.000   0.000
## dish cleaner                    0.000                    0.001   0.001
## condensed milk                  0.001                    0.001   0.000
## roll products                   0.001                    0.000   0.001
## photo/film                      0.000                    0.000   0.000
## pet care                        0.000                    0.000   0.001
## chocolate marshmallow           0.000                    0.001   0.000
## herbs/vegetable juice           0.001                    0.000   0.001
## whole milk                      0.000                    0.000   0.000
## candles                         0.000                    0.001   0.000
## mayonnaise                      0.001                    0.001   0.001
## Instant food products           0.001                    0.000   0.000
## sweet spreads                   0.001                    0.001   0.000
## liquor (appetizer)              0.000                    0.000   0.000
## specialty cheese                0.001                    0.000   0.001
## frozen potato products          0.001                    0.001   0.001
## house keeping products          0.000                    0.001   0.001
## dog food                        0.001                    0.001   0.000
## soy                             0.000                    0.000   0.001
## instant coffee                  0.001                    0.000   0.000
## pip herbs                       0.000                    0.000   0.000
## zwieback                        0.000                    0.000   0.000
## finished products               0.001                    0.001   0.000
## popcorn                         0.002                    0.000   0.001
## vinegar                         0.000                    0.000   0.000
## soups                           0.000                    0.000   0.001
## female sanitary products        0.000                    0.001   0.000
## sparkling wine                  0.000                    0.000   0.000
## dental care                     0.001                    0.000   0.000
## cereals                         0.000                    0.001   0.001
## kitchen towels                  0.001                    0.000   0.000
## curd cheese                     0.000                    0.000   0.000
## other vegetables                0.000                    0.000   0.000
## rolls/buns                      0.000                    0.000   0.000
## softener                        0.000                    0.000   0.000
## cleaner                         0.000                    0.000   0.000
## spices                          0.000                    0.001   0.000
## jam                             0.000                    0.000   0.000
## sauces                          0.001                    0.000   0.000
## rum                             0.000                    0.001   0.000
## liver loaf                      0.000                    0.000   0.000
## male cosmetics                  0.000                    0.000   0.000
## meat spreads                    0.000                    0.000   0.000
## packaged herbs/vegetables       0.000                    0.000   0.001
## brandy                          0.000                    0.000   0.000
## ketchup                         0.000                    0.000   0.000
## abrasive cleaner                0.000                    0.000   0.001
## light bulbs                     0.000                    0.000   0.000
## artif. sweetener                0.000                    0.000   0.000
## nuts/prunes                     0.000                    0.000   0.000
## specialty fat                   0.000                    0.000   0.000
## skin care                       0.000                    0.000   0.000
## fish                            0.000                    0.000   0.000
## potato products                 0.000                    0.000   0.000
## root vegetables                 0.000                    0.000   0.000
## snack products                  0.000                    0.000   0.000
## nut snack                       0.001                    0.000   0.000
## soap                            0.000                    0.000   0.000
## syrup                           0.000                    0.000   0.000
## bathroom cleaner                0.000                    0.000   0.000
## canned fruit                    0.000                    0.000   0.000
## cookware                        0.000                    0.000   0.000
## cooking chocolate               0.000                    0.000   0.000
## tidbits                         0.000                    0.000   0.000
## cocoa drinks                    0.000                    0.000   0.000
## pudding powder                  0.000                    0.000   0.000
## ready soups                     0.000                    0.000   0.000
## organic marinated meat          0.000                    0.000   0.000
## flower soil/fertilizer          0.000                    0.000   0.000
## organic products                0.000                    0.000   0.000
## pot plants                      0.000                    0.000   0.000
## prosecco                        0.000                    0.000   0.000
## frankfurter                     0.000                    0.000   0.000
## decalcifier                     0.000                    0.000   0.000
## honey                           0.000                    0.000   0.000
## specialty vegetables            0.000                    0.000   0.000
## cream                           0.000                    0.000   0.000
## hair spray                      0.000                    0.000   0.000
## frozen fruits                   0.000                    0.000   0.000
## rubbing alcohol                 0.000                    0.000   0.000
## liqueur                         0.000                    0.000   0.000
## make up remover                 0.000                    0.000   0.000
## salad dressing                  0.000                    0.000   0.000
## frozen chicken                  0.000                    0.000   0.000
## whisky                          0.000                    0.000   0.000
## baby cosmetics                  0.000                    0.000   0.000
## toilet cleaner                  0.000                    0.000   0.000
## bags                            0.000                    0.000   0.000
## canned herbs                    0.000                    0.000   0.000
## kitchen utensil                 0.000                    0.000   0.000
## preservation products           0.000                    0.000   0.000
## baby food                       0.000                    0.000   0.000
## frozen herbss                   0.000                    0.000   0.000
## organic sausage                 0.000                    0.000   0.000
## sound storage medium            0.000                    0.000   0.000
##                           hamburger meat sugar hygiene articles UHT-milk onions
## rice                               0.015 0.015            0.013    0.004  0.012
## veggies                            0.012 0.009            0.008    0.007  0.012
## loaf                               0.008 0.006            0.005    0.006  0.006
## coke                               0.005 0.006            0.006    0.007  0.005
## yogurt                             0.007 0.007            0.007    0.007  0.007
## vegetables                         0.007 0.007            0.006    0.005  0.010
## mineral water                      0.003 0.004            0.005    0.006  0.005
## Plastic bags                       0.004 0.003            0.005    0.005  0.004
## tropical fruit                     0.004 0.004            0.006    0.004  0.005
## marinated meat                     0.005 0.003            0.004    0.003  0.003
## pies/pasties                       0.004 0.005            0.004    0.003  0.003
## newspapers                         0.003 0.003            0.003    0.004  0.003
## citrus                             0.003 0.004            0.005    0.004  0.005
## whipped/sour cream                 0.005 0.005            0.004    0.003  0.005
## heinken                            0.002 0.003            0.002    0.002  0.003
## green tea                          0.002 0.001            0.002    0.002  0.002
## pip fruit                          0.004 0.004            0.004    0.003  0.003
## brown bread                        0.003 0.004            0.003    0.004  0.003
## fruit/vegetable juice              0.003 0.004            0.003    0.003  0.003
## domestic eggs                      0.004 0.005            0.005    0.004  0.005
## coffee                             0.003 0.005            0.004    0.004  0.003
## margarine                          0.003 0.005            0.004    0.004  0.002
## beef                               0.004 0.003            0.003    0.002  0.003
## curd                               0.003 0.004            0.004    0.002  0.003
## butter                             0.005 0.003            0.004    0.002  0.004
## marinated meats                    0.003 0.003            0.003    0.003  0.003
## napkins                            0.003 0.003            0.007    0.002  0.003
## halal meat                         0.003 0.004            0.003    0.003  0.003
## chocolate                          0.002 0.002            0.002    0.001  0.002
## frozen vegetables                  0.003 0.003            0.003    0.003  0.003
## chicken                            0.004 0.003            0.002    0.002  0.003
## white bread                        0.003 0.003            0.002    0.001  0.002
## cream cheese                       0.002 0.003            0.002    0.003  0.002
## waffles                            0.002 0.002            0.002    0.002  0.001
## dessert                            0.002 0.002            0.002    0.003  0.002
## salty snack                        0.002 0.002            0.001    0.002  0.002
## long life bakery product           0.001 0.002            0.002    0.002  0.001
## berries                            0.002 0.003            0.003    0.002  0.002
## hamburger meat                     0.035 0.002            0.003    0.002  0.003
## sugar                              0.002 0.035            0.003    0.002  0.002
## hygiene articles                   0.003 0.003            0.034    0.002  0.002
## UHT-milk                           0.002 0.002            0.002    0.033  0.001
## onions                             0.003 0.002            0.002    0.001  0.033
## candy                              0.001 0.002            0.001    0.001  0.001
## specialty chocolate                0.001 0.001            0.001    0.001  0.001
## butter milk                        0.002 0.001            0.001    0.002  0.002
## oil                                0.002 0.002            0.003    0.001  0.002
## frozen meals                       0.002 0.001            0.002    0.001  0.001
## misc. beverages                    0.001 0.001            0.002    0.000  0.001
## specialty bar                      0.001 0.001            0.001    0.001  0.001
## ham                                0.001 0.002            0.002    0.001  0.002
## beverages                          0.001 0.001            0.001    0.001  0.001
## meat                               0.002 0.001            0.001    0.001  0.002
## ice cream                          0.001 0.001            0.001    0.001  0.001
## sliced cheese                      0.001 0.001            0.001    0.001  0.002
## hard cheese                        0.002 0.002            0.002    0.001  0.002
## noodles                            0.001 0.001            0.002    0.001  0.001
## grapes                             0.001 0.001            0.001    0.001  0.001
## cat food                           0.002 0.002            0.002    0.001  0.001
## chewing gum                        0.001 0.001            0.001    0.001  0.001
## soda                               0.001 0.001            0.001    0.001  0.001
## detergent                          0.001 0.001            0.001    0.001  0.001
## red/blush wine                     0.001 0.000            0.001    0.001  0.001
## white wine                         0.001 0.001            0.001    0.000  0.001
## turkey                             0.001 0.001            0.001    0.001  0.001
## dishes                             0.001 0.001            0.000    0.001  0.001
## bottled water                      0.001 0.001            0.001    0.001  0.001
## flour                              0.001 0.005            0.002    0.001  0.001
## semi-finished bread                0.001 0.001            0.001    0.001  0.001
## baking powder                      0.001 0.003            0.001    0.001  0.001
## pickled vegetables                 0.001 0.001            0.001    0.001  0.001
## herbs                              0.002 0.000            0.001    0.001  0.002
## tropical herbs                     0.001 0.001            0.001    0.000  0.001
## soft cheese                        0.001 0.001            0.001    0.000  0.002
## tea                                0.001 0.001            0.001    0.001  0.001
## processed cheese                   0.001 0.001            0.001    0.001  0.001
## sausage                            0.001 0.001            0.001    0.000  0.001
## pasta                              0.003 0.001            0.001    0.001  0.001
## citrus herbs                       0.001 0.002            0.001    0.001  0.001
## potted plants                      0.001 0.001            0.001    0.001  0.001
## canned fish                        0.001 0.001            0.001    0.001  0.001
## seasonal products                  0.000 0.000            0.001    0.001  0.001
## cake bar                           0.001 0.001            0.000    0.001  0.001
## carrots                            0.001 0.000            0.001    0.000  0.001
## mustard                            0.001 0.001            0.001    0.001  0.001
## packaged fruit/vegetables          0.001 0.001            0.000    0.001  0.001
## spread cheese                      0.001 0.001            0.001    0.001  0.001
## frozen dessert                     0.000 0.001            0.001    0.001  0.001
## frozen fish                        0.000 0.001            0.001    0.001  0.001
## cling film/bags                    0.001 0.001            0.001    0.001  0.001
## salt                               0.001 0.002            0.001    0.001  0.001
## liquor                             0.000 0.000            0.000    0.000  0.000
## canned vegetables                  0.002 0.001            0.001    0.001  0.001
## bottled beer                       0.000 0.000            0.000    0.000  0.001
## flower (seeds)                     0.001 0.000            0.000    0.000  0.000
## cooking oil                        0.000 0.000            0.000    0.000  0.001
## dish cleaner                       0.001 0.001            0.001    0.001  0.001
## condensed milk                     0.000 0.001            0.000    0.001  0.000
## roll products                      0.001 0.001            0.001    0.000  0.001
## photo/film                         0.000 0.000            0.001    0.000  0.000
## pet care                           0.000 0.000            0.000    0.001  0.001
## chocolate marshmallow              0.001 0.001            0.001    0.000  0.000
## herbs/vegetable juice              0.000 0.001            0.000    0.000  0.000
## whole milk                         0.001 0.000            0.001    0.000  0.001
## candles                            0.000 0.001            0.000    0.000  0.000
## mayonnaise                         0.001 0.001            0.001    0.001  0.001
## Instant food products              0.003 0.000            0.001    0.000  0.000
## sweet spreads                      0.001 0.000            0.001    0.001  0.000
## liquor (appetizer)                 0.000 0.000            0.001    0.001  0.001
## specialty cheese                   0.001 0.000            0.001    0.001  0.001
## frozen potato products             0.001 0.000            0.001    0.000  0.000
## house keeping products             0.000 0.001            0.001    0.001  0.001
## dog food                           0.000 0.000            0.000    0.000  0.000
## soy                                0.000 0.001            0.000    0.000  0.000
## instant coffee                     0.000 0.000            0.001    0.000  0.001
## pip herbs                          0.001 0.001            0.001    0.000  0.000
## zwieback                           0.000 0.000            0.000    0.001  0.000
## finished products                  0.000 0.000            0.000    0.000  0.001
## popcorn                            0.001 0.000            0.000    0.000  0.001
## vinegar                            0.000 0.001            0.000    0.000  0.001
## soups                              0.001 0.001            0.001    0.000  0.001
## female sanitary products           0.000 0.000            0.001    0.000  0.000
## sparkling wine                     0.000 0.000            0.000    0.000  0.000
## dental care                        0.001 0.000            0.001    0.000  0.001
## cereals                            0.001 0.001            0.000    0.000  0.000
## kitchen towels                     0.001 0.001            0.000    0.000  0.000
## curd cheese                        0.000 0.000            0.001    0.000  0.000
## other vegetables                   0.001 0.000            0.000    0.000  0.001
## rolls/buns                         0.000 0.000            0.000    0.000  0.000
## softener                           0.001 0.000            0.001    0.000  0.000
## cleaner                            0.000 0.000            0.000    0.000  0.000
## spices                             0.001 0.000            0.000    0.000  0.001
## jam                                0.000 0.001            0.001    0.000  0.001
## sauces                             0.001 0.001            0.000    0.000  0.000
## rum                                0.000 0.000            0.000    0.000  0.000
## liver loaf                         0.000 0.000            0.000    0.000  0.000
## male cosmetics                     0.000 0.000            0.000    0.000  0.000
## meat spreads                       0.001 0.000            0.000    0.000  0.000
## packaged herbs/vegetables          0.000 0.000            0.000    0.000  0.001
## brandy                             0.000 0.000            0.000    0.000  0.000
## ketchup                            0.000 0.000            0.001    0.000  0.000
## abrasive cleaner                   0.000 0.000            0.000    0.000  0.000
## light bulbs                        0.000 0.000            0.000    0.000  0.000
## artif. sweetener                   0.000 0.000            0.000    0.001  0.000
## nuts/prunes                        0.000 0.000            0.000    0.000  0.000
## specialty fat                      0.000 0.000            0.000    0.000  0.000
## skin care                          0.000 0.001            0.001    0.000  0.000
## fish                               0.000 0.000            0.000    0.000  0.000
## potato products                    0.001 0.000            0.000    0.000  0.000
## root vegetables                    0.000 0.000            0.000    0.000  0.000
## snack products                     0.000 0.000            0.000    0.000  0.000
## nut snack                          0.000 0.000            0.000    0.000  0.000
## soap                               0.000 0.000            0.000    0.000  0.000
## syrup                              0.000 0.000            0.000    0.000  0.000
## bathroom cleaner                   0.000 0.000            0.000    0.000  0.000
## canned fruit                       0.000 0.000            0.001    0.000  0.000
## cookware                           0.000 0.000            0.000    0.000  0.000
## cooking chocolate                  0.000 0.000            0.000    0.000  0.000
## tidbits                            0.000 0.000            0.000    0.000  0.000
## cocoa drinks                       0.000 0.000            0.000    0.000  0.000
## pudding powder                     0.000 0.000            0.000    0.000  0.000
## ready soups                        0.000 0.000            0.000    0.000  0.000
## organic marinated meat             0.000 0.000            0.000    0.000  0.000
## flower soil/fertilizer             0.000 0.000            0.000    0.000  0.000
## organic products                   0.000 0.000            0.000    0.000  0.000
## pot plants                         0.000 0.000            0.000    0.000  0.000
## prosecco                           0.000 0.000            0.000    0.000  0.000
## frankfurter                        0.000 0.000            0.000    0.000  0.000
## decalcifier                        0.000 0.000            0.000    0.000  0.000
## honey                              0.000 0.000            0.000    0.000  0.000
## specialty vegetables               0.000 0.000            0.000    0.000  0.000
## cream                              0.000 0.000            0.000    0.000  0.000
## hair spray                         0.000 0.000            0.000    0.000  0.000
## frozen fruits                      0.000 0.000            0.000    0.000  0.000
## rubbing alcohol                    0.000 0.000            0.000    0.000  0.000
## liqueur                            0.000 0.000            0.000    0.000  0.000
## make up remover                    0.000 0.000            0.000    0.000  0.000
## salad dressing                     0.000 0.000            0.000    0.000  0.000
## frozen chicken                     0.000 0.000            0.000    0.000  0.000
## whisky                             0.000 0.000            0.000    0.000  0.000
## baby cosmetics                     0.000 0.000            0.000    0.000  0.000
## toilet cleaner                     0.000 0.000            0.000    0.000  0.000
## bags                               0.000 0.000            0.000    0.000  0.000
## canned herbs                       0.000 0.000            0.000    0.000  0.000
## kitchen utensil                    0.000 0.000            0.000    0.000  0.000
## preservation products              0.000 0.000            0.000    0.000  0.000
## baby food                          0.000 0.000            0.000    0.000  0.000
## frozen herbss                      0.000 0.000            0.000    0.000  0.000
## organic sausage                    0.000 0.000            0.000    0.000  0.000
## sound storage medium               0.000 0.000            0.000    0.000  0.000
##                           candy specialty chocolate butter milk   oil
## rice                      0.008               0.007       0.011 0.011
## veggies                   0.006               0.005       0.009 0.009
## loaf                      0.006               0.005       0.007 0.004
## coke                      0.008               0.006       0.004 0.004
## yogurt                    0.006               0.004       0.009 0.005
## vegetables                0.004               0.003       0.006 0.007
## mineral water             0.003               0.003       0.003 0.004
## Plastic bags              0.004               0.004       0.004 0.003
## tropical fruit            0.005               0.003       0.005 0.004
## marinated meat            0.003               0.002       0.003 0.004
## pies/pasties              0.003               0.003       0.003 0.003
## newspapers                0.002               0.002       0.002 0.004
## citrus                    0.003               0.002       0.004 0.004
## whipped/sour cream        0.004               0.003       0.004 0.004
## heinken                   0.001               0.002       0.001 0.003
## green tea                 0.002               0.001       0.000 0.001
## pip fruit                 0.002               0.002       0.004 0.003
## brown bread               0.002               0.002       0.004 0.002
## fruit/vegetable juice     0.003               0.002       0.004 0.003
## domestic eggs             0.003               0.002       0.002 0.004
## coffee                    0.003               0.002       0.003 0.004
## margarine                 0.003               0.001       0.002 0.004
## beef                      0.001               0.002       0.002 0.004
## curd                      0.003               0.002       0.004 0.003
## butter                    0.003               0.002       0.002 0.004
## marinated meats           0.002               0.002       0.003 0.002
## napkins                   0.002               0.002       0.002 0.003
## halal meat                0.002               0.001       0.002 0.003
## chocolate                 0.005               0.003       0.002 0.003
## frozen vegetables         0.002               0.002       0.002 0.002
## chicken                   0.002               0.002       0.002 0.003
## white bread               0.003               0.001       0.002 0.002
## cream cheese              0.002               0.001       0.003 0.002
## waffles                   0.003               0.002       0.002 0.002
## dessert                   0.001               0.001       0.003 0.002
## salty snack               0.002               0.002       0.002 0.002
## long life bakery product  0.002               0.002       0.002 0.001
## berries                   0.001               0.001       0.002 0.002
## hamburger meat            0.001               0.001       0.002 0.002
## sugar                     0.002               0.001       0.001 0.002
## hygiene articles          0.001               0.001       0.001 0.003
## UHT-milk                  0.001               0.001       0.002 0.001
## onions                    0.001               0.001       0.002 0.002
## candy                     0.029               0.002       0.001 0.001
## specialty chocolate       0.002               0.029       0.001 0.001
## butter milk               0.001               0.001       0.029 0.001
## oil                       0.001               0.001       0.001 0.029
## frozen meals              0.001               0.001       0.001 0.001
## misc. beverages           0.002               0.002       0.001 0.001
## specialty bar             0.001               0.002       0.001 0.001
## ham                       0.001               0.001       0.002 0.002
## beverages                 0.001               0.001       0.002 0.001
## meat                      0.001               0.001       0.001 0.002
## ice cream                 0.001               0.001       0.001 0.001
## sliced cheese             0.001               0.001       0.003 0.001
## hard cheese               0.002               0.001       0.001 0.001
## noodles                   0.001               0.000       0.001 0.001
## grapes                    0.001               0.001       0.001 0.002
## cat food                  0.001               0.001       0.001 0.001
## chewing gum               0.000               0.001       0.000 0.001
## soda                      0.001               0.000       0.001 0.001
## detergent                 0.000               0.001       0.001 0.002
## red/blush wine            0.001               0.001       0.000 0.000
## white wine                0.000               0.000       0.000 0.001
## turkey                    0.001               0.001       0.001 0.001
## dishes                    0.000               0.000       0.000 0.001
## bottled water             0.001               0.000       0.001 0.001
## flour                     0.001               0.001       0.001 0.002
## semi-finished bread       0.001               0.001       0.001 0.001
## baking powder             0.001               0.001       0.001 0.002
## pickled vegetables        0.001               0.001       0.001 0.002
## herbs                     0.001               0.001       0.001 0.002
## tropical herbs            0.001               0.000       0.001 0.000
## soft cheese               0.000               0.001       0.001 0.001
## tea                       0.000               0.000       0.001 0.001
## processed cheese          0.002               0.001       0.001 0.001
## sausage                   0.000               0.000       0.001 0.000
## pasta                     0.001               0.001       0.001 0.001
## citrus herbs              0.001               0.000       0.001 0.001
## potted plants             0.000               0.001       0.000 0.001
## canned fish               0.001               0.000       0.001 0.001
## seasonal products         0.001               0.001       0.000 0.001
## cake bar                  0.001               0.001       0.000 0.001
## carrots                   0.001               0.000       0.000 0.000
## mustard                   0.000               0.001       0.001 0.002
## packaged fruit/vegetables 0.001               0.000       0.000 0.001
## spread cheese             0.000               0.000       0.001 0.000
## frozen dessert            0.001               0.000       0.000 0.001
## frozen fish               0.001               0.000       0.000 0.001
## cling film/bags           0.001               0.000       0.000 0.001
## salt                      0.000               0.000       0.001 0.001
## liquor                    0.001               0.000       0.000 0.000
## canned vegetables         0.000               0.001       0.000 0.001
## bottled beer              0.000               0.000       0.000 0.000
## flower (seeds)            0.000               0.000       0.000 0.001
## cooking oil               0.000               0.000       0.000 0.000
## dish cleaner              0.001               0.001       0.001 0.001
## condensed milk            0.000               0.000       0.000 0.001
## roll products             0.000               0.001       0.001 0.001
## photo/film                0.000               0.000       0.001 0.000
## pet care                  0.000               0.000       0.000 0.000
## chocolate marshmallow     0.002               0.001       0.000 0.001
## herbs/vegetable juice     0.000               0.000       0.001 0.000
## whole milk                0.000               0.000       0.000 0.001
## candles                   0.000               0.000       0.000 0.001
## mayonnaise                0.001               0.000       0.001 0.001
## Instant food products     0.000               0.000       0.000 0.001
## sweet spreads             0.000               0.000       0.001 0.000
## liquor (appetizer)        0.001               0.000       0.000 0.000
## specialty cheese          0.000               0.000       0.001 0.000
## frozen potato products    0.001               0.000       0.000 0.001
## house keeping products    0.000               0.001       0.000 0.001
## dog food                  0.000               0.001       0.000 0.001
## soy                       0.000               0.000       0.000 0.000
## instant coffee            0.000               0.000       0.000 0.000
## pip herbs                 0.000               0.000       0.001 0.000
## zwieback                  0.000               0.000       0.000 0.000
## finished products         0.001               0.000       0.000 0.000
## popcorn                   0.001               0.000       0.001 0.000
## vinegar                   0.000               0.000       0.000 0.001
## soups                     0.000               0.000       0.000 0.001
## female sanitary products  0.000               0.000       0.000 0.000
## sparkling wine            0.000               0.001       0.000 0.000
## dental care               0.000               0.000       0.000 0.001
## cereals                   0.000               0.001       0.000 0.000
## kitchen towels            0.000               0.001       0.000 0.000
## curd cheese               0.000               0.000       0.001 0.000
## other vegetables          0.000               0.000       0.000 0.000
## rolls/buns                0.000               0.000       0.000 0.000
## softener                  0.000               0.000       0.000 0.000
## cleaner                   0.000               0.000       0.000 0.000
## spices                    0.000               0.000       0.000 0.000
## jam                       0.000               0.000       0.000 0.000
## sauces                    0.000               0.000       0.000 0.000
## rum                       0.000               0.000       0.000 0.000
## liver loaf                0.000               0.000       0.000 0.000
## male cosmetics            0.000               0.000       0.000 0.000
## meat spreads              0.000               0.000       0.000 0.000
## packaged herbs/vegetables 0.000               0.000       0.000 0.000
## brandy                    0.000               0.000       0.000 0.000
## ketchup                   0.000               0.000       0.000 0.001
## abrasive cleaner          0.000               0.000       0.000 0.000
## light bulbs               0.000               0.000       0.000 0.000
## artif. sweetener          0.000               0.000       0.000 0.000
## nuts/prunes               0.000               0.000       0.000 0.000
## specialty fat             0.000               0.000       0.000 0.000
## skin care                 0.000               0.000       0.000 0.000
## fish                      0.000               0.000       0.000 0.000
## potato products           0.000               0.000       0.000 0.000
## root vegetables           0.000               0.000       0.000 0.000
## snack products            0.000               0.000       0.000 0.000
## nut snack                 0.000               0.000       0.000 0.000
## soap                      0.000               0.000       0.000 0.000
## syrup                     0.000               0.000       0.000 0.000
## bathroom cleaner          0.000               0.000       0.000 0.000
## canned fruit              0.000               0.000       0.000 0.000
## cookware                  0.000               0.000       0.000 0.000
## cooking chocolate         0.000               0.000       0.000 0.000
## tidbits                   0.000               0.000       0.000 0.000
## cocoa drinks              0.000               0.000       0.000 0.000
## pudding powder            0.000               0.000       0.000 0.000
## ready soups               0.000               0.000       0.000 0.000
## organic marinated meat    0.000               0.000       0.000 0.000
## flower soil/fertilizer    0.000               0.000       0.000 0.000
## organic products          0.000               0.000       0.000 0.000
## pot plants                0.000               0.000       0.000 0.000
## prosecco                  0.000               0.000       0.000 0.000
## frankfurter               0.000               0.000       0.000 0.000
## decalcifier               0.000               0.000       0.000 0.000
## honey                     0.000               0.000       0.000 0.000
## specialty vegetables      0.000               0.000       0.000 0.000
## cream                     0.000               0.000       0.000 0.000
## hair spray                0.000               0.000       0.000 0.000
## frozen fruits             0.000               0.000       0.000 0.000
## rubbing alcohol           0.000               0.000       0.000 0.000
## liqueur                   0.000               0.000       0.000 0.000
## make up remover           0.000               0.000       0.000 0.000
## salad dressing            0.000               0.000       0.000 0.000
## frozen chicken            0.000               0.000       0.000 0.000
## whisky                    0.000               0.000       0.000 0.000
## baby cosmetics            0.000               0.000       0.000 0.000
## toilet cleaner            0.000               0.000       0.000 0.000
## bags                      0.000               0.000       0.000 0.000
## canned herbs              0.000               0.000       0.000 0.000
## kitchen utensil           0.000               0.000       0.000 0.000
## preservation products     0.000               0.000       0.000 0.000
## baby food                 0.000               0.000       0.000 0.000
## frozen herbss             0.000               0.000       0.000 0.000
## organic sausage           0.000               0.000       0.000 0.000
## sound storage medium      0.000               0.000       0.000 0.000
##                           frozen meals misc. beverages specialty bar   ham
## rice                             0.010           0.007         0.006 0.011
## veggies                          0.007           0.005         0.005 0.008
## loaf                             0.004           0.004         0.005 0.006
## coke                             0.005           0.006         0.006 0.004
## yogurt                           0.006           0.004         0.004 0.007
## vegetables                       0.004           0.003         0.002 0.004
## mineral water                    0.003           0.005         0.002 0.003
## Plastic bags                     0.005           0.004         0.003 0.004
## tropical fruit                   0.005           0.004         0.003 0.005
## marinated meat                   0.003           0.002         0.002 0.004
## pies/pasties                     0.003           0.002         0.004 0.004
## newspapers                       0.002           0.002         0.002 0.002
## citrus                           0.003           0.002         0.002 0.002
## whipped/sour cream               0.003           0.002         0.002 0.005
## heinken                          0.002           0.002         0.001 0.002
## green tea                        0.001           0.002         0.001 0.000
## pip fruit                        0.004           0.002         0.002 0.003
## brown bread                      0.003           0.002         0.001 0.003
## fruit/vegetable juice            0.003           0.003         0.002 0.003
## domestic eggs                    0.003           0.003         0.002 0.004
## coffee                           0.002           0.001         0.002 0.002
## margarine                        0.001           0.002         0.002 0.003
## beef                             0.002           0.001         0.001 0.003
## curd                             0.003           0.002         0.002 0.003
## butter                           0.003           0.003         0.001 0.003
## marinated meats                  0.003           0.001         0.002 0.002
## napkins                          0.002           0.002         0.002 0.002
## halal meat                       0.002           0.001         0.002 0.002
## chocolate                        0.002           0.002         0.003 0.003
## frozen vegetables                0.003           0.002         0.001 0.002
## chicken                          0.002           0.001         0.001 0.002
## white bread                      0.002           0.001         0.002 0.005
## cream cheese                     0.001           0.002         0.002 0.002
## waffles                          0.002           0.001         0.003 0.002
## dessert                          0.002           0.001         0.001 0.003
## salty snack                      0.002           0.001         0.002 0.001
## long life bakery product         0.002           0.001         0.002 0.002
## berries                          0.001           0.001         0.002 0.002
## hamburger meat                   0.002           0.001         0.001 0.001
## sugar                            0.001           0.001         0.001 0.002
## hygiene articles                 0.002           0.002         0.001 0.002
## UHT-milk                         0.001           0.000         0.001 0.001
## onions                           0.001           0.001         0.001 0.002
## candy                            0.001           0.002         0.001 0.001
## specialty chocolate              0.001           0.002         0.002 0.001
## butter milk                      0.001           0.001         0.001 0.002
## oil                              0.001           0.001         0.001 0.002
## frozen meals                     0.029           0.001         0.001 0.002
## misc. beverages                  0.001           0.028         0.001 0.001
## specialty bar                    0.001           0.001         0.028 0.001
## ham                              0.002           0.001         0.001 0.027
## beverages                        0.001           0.001         0.001 0.001
## meat                             0.002           0.001         0.001 0.001
## ice cream                        0.001           0.001         0.001 0.001
## sliced cheese                    0.002           0.001         0.001 0.003
## hard cheese                      0.002           0.002         0.001 0.003
## noodles                          0.000           0.001         0.001 0.001
## grapes                           0.001           0.001         0.001 0.001
## cat food                         0.001           0.001         0.001 0.001
## chewing gum                      0.000           0.001         0.001 0.001
## soda                             0.001           0.001         0.001 0.001
## detergent                        0.001           0.001         0.001 0.001
## red/blush wine                   0.001           0.001         0.000 0.001
## white wine                       0.000           0.001         0.000 0.001
## turkey                           0.001           0.000         0.001 0.001
## dishes                           0.000           0.000         0.001 0.000
## bottled water                    0.001           0.001         0.000 0.000
## flour                            0.000           0.001         0.000 0.000
## semi-finished bread              0.001           0.001         0.001 0.001
## baking powder                    0.001           0.001         0.000 0.001
## pickled vegetables               0.001           0.001         0.001 0.000
## herbs                            0.000           0.001         0.000 0.001
## tropical herbs                   0.001           0.001         0.000 0.001
## soft cheese                      0.001           0.001         0.001 0.002
## tea                              0.000           0.000         0.001 0.001
## processed cheese                 0.000           0.001         0.001 0.003
## sausage                          0.000           0.001         0.001 0.001
## pasta                            0.002           0.001         0.000 0.001
## citrus herbs                     0.000           0.001         0.000 0.001
## potted plants                    0.001           0.001         0.000 0.001
## canned fish                      0.001           0.001         0.000 0.001
## seasonal products                0.001           0.000         0.001 0.001
## cake bar                         0.001           0.001         0.001 0.001
## carrots                          0.000           0.000         0.000 0.000
## mustard                          0.000           0.001         0.001 0.001
## packaged fruit/vegetables        0.000           0.000         0.000 0.000
## spread cheese                    0.000           0.001         0.000 0.001
## frozen dessert                   0.002           0.000         0.000 0.000
## frozen fish                      0.001           0.000         0.000 0.001
## cling film/bags                  0.000           0.000         0.000 0.000
## salt                             0.000           0.000         0.000 0.000
## liquor                           0.000           0.000         0.000 0.000
## canned vegetables                0.000           0.001         0.000 0.001
## bottled beer                     0.000           0.000         0.000 0.000
## flower (seeds)                   0.000           0.000         0.000 0.000
## cooking oil                      0.000           0.000         0.000 0.000
## dish cleaner                     0.000           0.000         0.001 0.000
## condensed milk                   0.000           0.000         0.000 0.000
## roll products                    0.000           0.001         0.000 0.000
## photo/film                       0.000           0.000         0.000 0.000
## pet care                         0.000           0.000         0.000 0.000
## chocolate marshmallow            0.000           0.000         0.000 0.001
## herbs/vegetable juice            0.000           0.000         0.000 0.000
## whole milk                       0.001           0.000         0.000 0.001
## candles                          0.000           0.000         0.000 0.000
## mayonnaise                       0.000           0.000         0.000 0.001
## Instant food products            0.000           0.000         0.000 0.000
## sweet spreads                    0.001           0.000         0.001 0.001
## liquor (appetizer)               0.000           0.000         0.000 0.000
## specialty cheese                 0.000           0.000         0.000 0.000
## frozen potato products           0.001           0.000         0.001 0.001
## house keeping products           0.001           0.000         0.000 0.000
## dog food                         0.001           0.000         0.000 0.000
## soy                              0.000           0.000         0.000 0.000
## instant coffee                   0.001           0.001         0.000 0.000
## pip herbs                        0.001           0.000         0.000 0.001
## zwieback                         0.000           0.000         0.001 0.001
## finished products                0.000           0.000         0.000 0.000
## popcorn                          0.001           0.000         0.000 0.000
## vinegar                          0.000           0.000         0.000 0.000
## soups                            0.000           0.000         0.000 0.000
## female sanitary products         0.000           0.001         0.000 0.001
## sparkling wine                   0.000           0.001         0.000 0.000
## dental care                      0.000           0.000         0.000 0.000
## cereals                          0.001           0.000         0.000 0.000
## kitchen towels                   0.001           0.000         0.000 0.000
## curd cheese                      0.000           0.000         0.000 0.000
## other vegetables                 0.000           0.000         0.000 0.000
## rolls/buns                       0.000           0.000         0.000 0.000
## softener                         0.000           0.000         0.000 0.000
## cleaner                          0.000           0.000         0.000 0.000
## spices                           0.000           0.000         0.000 0.000
## jam                              0.000           0.000         0.000 0.000
## sauces                           0.000           0.000         0.000 0.000
## rum                              0.000           0.000         0.000 0.000
## liver loaf                       0.000           0.000         0.000 0.000
## male cosmetics                   0.000           0.000         0.000 0.000
## meat spreads                     0.000           0.000         0.000 0.000
## packaged herbs/vegetables        0.000           0.000         0.000 0.000
## brandy                           0.000           0.000         0.000 0.000
## ketchup                          0.000           0.000         0.000 0.000
## abrasive cleaner                 0.000           0.000         0.000 0.000
## light bulbs                      0.000           0.000         0.000 0.000
## artif. sweetener                 0.000           0.000         0.000 0.000
## nuts/prunes                      0.000           0.000         0.000 0.000
## specialty fat                    0.000           0.000         0.000 0.000
## skin care                        0.000           0.000         0.000 0.000
## fish                             0.000           0.000         0.000 0.000
## potato products                  0.000           0.000         0.000 0.000
## root vegetables                  0.000           0.000         0.000 0.000
## snack products                   0.000           0.000         0.000 0.000
## nut snack                        0.000           0.000         0.000 0.000
## soap                             0.000           0.000         0.000 0.000
## syrup                            0.000           0.000         0.000 0.000
## bathroom cleaner                 0.000           0.000         0.000 0.000
## canned fruit                     0.000           0.001         0.000 0.000
## cookware                         0.000           0.000         0.000 0.000
## cooking chocolate                0.000           0.000         0.000 0.000
## tidbits                          0.000           0.000         0.000 0.000
## cocoa drinks                     0.000           0.000         0.000 0.000
## pudding powder                   0.000           0.000         0.000 0.000
## ready soups                      0.000           0.000         0.000 0.000
## organic marinated meat           0.000           0.000         0.000 0.000
## flower soil/fertilizer           0.000           0.000         0.000 0.000
## organic products                 0.000           0.000         0.000 0.000
## pot plants                       0.000           0.000         0.000 0.000
## prosecco                         0.000           0.000         0.000 0.000
## frankfurter                      0.000           0.000         0.000 0.000
## decalcifier                      0.000           0.000         0.000 0.000
## honey                            0.000           0.000         0.000 0.000
## specialty vegetables             0.000           0.000         0.000 0.000
## cream                            0.000           0.000         0.000 0.000
## hair spray                       0.000           0.000         0.000 0.000
## frozen fruits                    0.000           0.000         0.000 0.000
## rubbing alcohol                  0.000           0.000         0.000 0.000
## liqueur                          0.000           0.000         0.000 0.000
## make up remover                  0.000           0.000         0.000 0.000
## salad dressing                   0.000           0.000         0.000 0.000
## frozen chicken                   0.000           0.000         0.000 0.000
## whisky                           0.000           0.000         0.000 0.000
## baby cosmetics                   0.000           0.000         0.000 0.000
## toilet cleaner                   0.000           0.000         0.000 0.000
## bags                             0.000           0.000         0.000 0.000
## canned herbs                     0.000           0.000         0.000 0.000
## kitchen utensil                  0.000           0.000         0.000 0.000
## preservation products            0.000           0.000         0.000 0.000
## baby food                        0.000           0.000         0.000 0.000
## frozen herbss                    0.000           0.000         0.000 0.000
## organic sausage                  0.000           0.000         0.000 0.000
## sound storage medium             0.000           0.000         0.000 0.000
##                           beverages  meat ice cream sliced cheese hard cheese
## rice                          0.007 0.010     0.006         0.011       0.010
## veggies                       0.005 0.009     0.004         0.008       0.008
## loaf                          0.005 0.006     0.003         0.007       0.005
## coke                          0.004 0.005     0.005         0.004       0.004
## yogurt                        0.006 0.005     0.004         0.008       0.006
## vegetables                    0.003 0.006     0.003         0.006       0.006
## mineral water                 0.003 0.003     0.002         0.003       0.003
## Plastic bags                  0.003 0.003     0.003         0.004       0.003
## tropical fruit                0.004 0.003     0.004         0.005       0.004
## marinated meat                0.002 0.005     0.002         0.006       0.005
## pies/pasties                  0.003 0.002     0.002         0.003       0.003
## newspapers                    0.003 0.003     0.003         0.003       0.002
## citrus                        0.002 0.003     0.001         0.003       0.003
## whipped/sour cream            0.002 0.004     0.003         0.004       0.005
## heinken                       0.001 0.002     0.002         0.002       0.002
## green tea                     0.000 0.001     0.001         0.001       0.001
## pip fruit                     0.002 0.002     0.002         0.004       0.003
## brown bread                   0.002 0.003     0.002         0.003       0.002
## fruit/vegetable juice         0.002 0.003     0.002         0.004       0.004
## domestic eggs                 0.002 0.003     0.001         0.003       0.004
## coffee                        0.001 0.002     0.002         0.003       0.002
## margarine                     0.001 0.002     0.001         0.003       0.002
## beef                          0.001 0.002     0.002         0.003       0.002
## curd                          0.002 0.002     0.002         0.003       0.002
## butter                        0.001 0.003     0.002         0.004       0.004
## marinated meats               0.001 0.003     0.001         0.002       0.002
## napkins                       0.001 0.002     0.002         0.003       0.003
## halal meat                    0.001 0.002     0.001         0.002       0.002
## chocolate                     0.002 0.001     0.001         0.002       0.002
## frozen vegetables             0.002 0.002     0.002         0.002       0.002
## chicken                       0.002 0.002     0.002         0.001       0.001
## white bread                   0.002 0.002     0.001         0.002       0.002
## cream cheese                  0.002 0.002     0.001         0.002       0.002
## waffles                       0.002 0.001     0.001         0.001       0.002
## dessert                       0.001 0.001     0.001         0.002       0.001
## salty snack                   0.000 0.001     0.002         0.001       0.001
## long life bakery product      0.001 0.002     0.002         0.002       0.002
## berries                       0.001 0.002     0.001         0.002       0.002
## hamburger meat                0.001 0.002     0.001         0.001       0.002
## sugar                         0.001 0.001     0.001         0.001       0.002
## hygiene articles              0.001 0.001     0.001         0.001       0.002
## UHT-milk                      0.001 0.001     0.001         0.001       0.001
## onions                        0.001 0.002     0.001         0.002       0.002
## candy                         0.001 0.001     0.001         0.001       0.002
## specialty chocolate           0.001 0.001     0.001         0.001       0.001
## butter milk                   0.002 0.001     0.001         0.003       0.001
## oil                           0.001 0.002     0.001         0.001       0.001
## frozen meals                  0.001 0.002     0.001         0.002       0.002
## misc. beverages               0.001 0.001     0.001         0.001       0.002
## specialty bar                 0.001 0.001     0.001         0.001       0.001
## ham                           0.001 0.001     0.001         0.003       0.003
## beverages                     0.027 0.001     0.000         0.001       0.002
## meat                          0.001 0.027     0.001         0.002       0.002
## ice cream                     0.000 0.001     0.026         0.001       0.001
## sliced cheese                 0.001 0.002     0.001         0.025       0.002
## hard cheese                   0.002 0.002     0.001         0.002       0.024
## noodles                       0.001 0.001     0.001         0.001       0.001
## grapes                        0.001 0.001     0.002         0.001       0.001
## cat food                      0.000 0.001     0.001         0.001       0.001
## chewing gum                   0.001 0.000     0.001         0.001       0.000
## soda                          0.001 0.001     0.001         0.001       0.001
## detergent                     0.001 0.001     0.001         0.001       0.001
## red/blush wine                0.000 0.000     0.001         0.001       0.000
## white wine                    0.000 0.000     0.000         0.000       0.000
## turkey                        0.001 0.001     0.001         0.000       0.001
## dishes                        0.000 0.001     0.001         0.001       0.000
## bottled water                 0.001 0.001     0.000         0.001       0.001
## flour                         0.001 0.001     0.000         0.000       0.001
## semi-finished bread           0.000 0.001     0.000         0.001       0.001
## baking powder                 0.000 0.001     0.001         0.001       0.001
## pickled vegetables            0.000 0.001     0.001         0.001       0.001
## herbs                         0.000 0.001     0.001         0.001       0.001
## tropical herbs                0.000 0.001     0.001         0.001       0.001
## soft cheese                   0.001 0.001     0.001         0.002       0.002
## tea                           0.001 0.001     0.000         0.001       0.001
## processed cheese              0.001 0.000     0.000         0.001       0.001
## sausage                       0.001 0.001     0.001         0.001       0.001
## pasta                         0.001 0.000     0.000         0.001       0.001
## citrus herbs                  0.001 0.001     0.000         0.000       0.000
## potted plants                 0.001 0.000     0.000         0.001       0.000
## canned fish                   0.000 0.001     0.001         0.001       0.001
## seasonal products             0.000 0.001     0.000         0.000       0.001
## cake bar                      0.001 0.001     0.000         0.000       0.000
## carrots                       0.001 0.001     0.000         0.001       0.001
## mustard                       0.000 0.000     0.000         0.001       0.001
## packaged fruit/vegetables     0.000 0.000     0.000         0.001       0.000
## spread cheese                 0.000 0.000     0.000         0.000       0.001
## frozen dessert                0.000 0.000     0.001         0.001       0.001
## frozen fish                   0.000 0.000     0.000         0.001       0.000
## cling film/bags               0.000 0.000     0.001         0.000       0.001
## salt                          0.000 0.000     0.000         0.001       0.001
## liquor                        0.000 0.000     0.000         0.000       0.000
## canned vegetables             0.000 0.000     0.000         0.001       0.001
## bottled beer                  0.000 0.000     0.000         0.000       0.000
## flower (seeds)                0.001 0.000     0.000         0.000       0.000
## cooking oil                   0.000 0.000     0.000         0.000       0.000
## dish cleaner                  0.000 0.001     0.001         0.000       0.001
## condensed milk                0.000 0.000     0.000         0.000       0.000
## roll products                 0.000 0.001     0.000         0.001       0.000
## photo/film                    0.000 0.000     0.000         0.000       0.000
## pet care                      0.000 0.000     0.000         0.000       0.001
## chocolate marshmallow         0.001 0.000     0.001         0.000       0.000
## herbs/vegetable juice         0.000 0.000     0.001         0.001       0.001
## whole milk                    0.000 0.000     0.000         0.001       0.000
## candles                       0.000 0.000     0.000         0.000       0.001
## mayonnaise                    0.000 0.000     0.000         0.001       0.001
## Instant food products         0.000 0.001     0.001         0.000       0.000
## sweet spreads                 0.001 0.000     0.000         0.001       0.001
## liquor (appetizer)            0.000 0.000     0.000         0.000       0.000
## specialty cheese              0.000 0.000     0.000         0.001       0.001
## frozen potato products        0.000 0.000     0.001         0.000       0.000
## house keeping products        0.000 0.000     0.000         0.001       0.000
## dog food                      0.000 0.000     0.000         0.000       0.001
## soy                           0.000 0.000     0.000         0.001       0.000
## instant coffee                0.000 0.000     0.000         0.000       0.000
## pip herbs                     0.000 0.000     0.000         0.001       0.001
## zwieback                      0.000 0.000     0.000         0.000       0.000
## finished products             0.000 0.000     0.000         0.000       0.000
## popcorn                       0.000 0.000     0.000         0.000       0.001
## vinegar                       0.000 0.000     0.000         0.000       0.000
## soups                         0.000 0.000     0.000         0.000       0.000
## female sanitary products      0.000 0.000     0.000         0.000       0.000
## sparkling wine                0.000 0.000     0.000         0.000       0.001
## dental care                   0.000 0.000     0.000         0.000       0.000
## cereals                       0.000 0.000     0.000         0.000       0.001
## kitchen towels                0.000 0.000     0.000         0.000       0.000
## curd cheese                   0.000 0.000     0.000         0.000       0.000
## other vegetables              0.000 0.000     0.000         0.000       0.000
## rolls/buns                    0.000 0.000     0.000         0.000       0.000
## softener                      0.000 0.000     0.000         0.000       0.000
## cleaner                       0.000 0.000     0.000         0.000       0.000
## spices                        0.000 0.000     0.000         0.000       0.000
## jam                           0.000 0.000     0.000         0.000       0.000
## sauces                        0.000 0.000     0.000         0.000       0.001
## rum                           0.000 0.000     0.000         0.001       0.000
## liver loaf                    0.000 0.000     0.000         0.000       0.000
## male cosmetics                0.000 0.000     0.000         0.000       0.000
## meat spreads                  0.000 0.000     0.000         0.000       0.000
## packaged herbs/vegetables     0.000 0.000     0.000         0.000       0.000
## brandy                        0.000 0.000     0.000         0.000       0.000
## ketchup                       0.000 0.000     0.000         0.000       0.000
## abrasive cleaner              0.000 0.000     0.000         0.000       0.000
## light bulbs                   0.000 0.000     0.000         0.000       0.000
## artif. sweetener              0.000 0.000     0.000         0.000       0.000
## nuts/prunes                   0.000 0.000     0.000         0.000       0.000
## specialty fat                 0.000 0.000     0.000         0.000       0.001
## skin care                     0.000 0.000     0.000         0.000       0.000
## fish                          0.000 0.000     0.000         0.000       0.000
## potato products               0.000 0.000     0.000         0.000       0.000
## root vegetables               0.000 0.000     0.000         0.000       0.000
## snack products                0.000 0.000     0.000         0.000       0.000
## nut snack                     0.000 0.000     0.000         0.000       0.000
## soap                          0.000 0.000     0.000         0.000       0.000
## syrup                         0.000 0.000     0.000         0.000       0.000
## bathroom cleaner              0.000 0.000     0.000         0.000       0.000
## canned fruit                  0.000 0.000     0.000         0.000       0.000
## cookware                      0.000 0.000     0.000         0.000       0.000
## cooking chocolate             0.000 0.000     0.000         0.000       0.000
## tidbits                       0.000 0.000     0.000         0.000       0.000
## cocoa drinks                  0.000 0.000     0.000         0.000       0.000
## pudding powder                0.000 0.000     0.000         0.000       0.000
## ready soups                   0.000 0.000     0.000         0.000       0.000
## organic marinated meat        0.000 0.000     0.000         0.000       0.000
## flower soil/fertilizer        0.000 0.000     0.000         0.000       0.000
## organic products              0.000 0.000     0.000         0.000       0.000
## pot plants                    0.000 0.000     0.000         0.000       0.000
## prosecco                      0.000 0.000     0.000         0.000       0.000
## frankfurter                   0.000 0.000     0.000         0.000       0.000
## decalcifier                   0.000 0.000     0.000         0.000       0.000
## honey                         0.000 0.000     0.000         0.000       0.000
## specialty vegetables          0.000 0.000     0.000         0.000       0.000
## cream                         0.000 0.000     0.000         0.000       0.000
## hair spray                    0.000 0.000     0.000         0.000       0.000
## frozen fruits                 0.000 0.000     0.000         0.000       0.000
## rubbing alcohol               0.000 0.000     0.000         0.000       0.000
## liqueur                       0.000 0.000     0.000         0.000       0.000
## make up remover               0.000 0.000     0.000         0.000       0.000
## salad dressing                0.000 0.000     0.000         0.000       0.000
## frozen chicken                0.000 0.000     0.000         0.000       0.000
## whisky                        0.000 0.000     0.000         0.000       0.000
## baby cosmetics                0.000 0.000     0.000         0.000       0.000
## toilet cleaner                0.000 0.000     0.000         0.000       0.000
## bags                          0.000 0.000     0.000         0.000       0.000
## canned herbs                  0.000 0.000     0.000         0.000       0.000
## kitchen utensil               0.000 0.000     0.000         0.000       0.000
## preservation products         0.000 0.000     0.000         0.000       0.000
## baby food                     0.000 0.000     0.000         0.000       0.000
## frozen herbss                 0.000 0.000     0.000         0.000       0.000
## organic sausage               0.000 0.000     0.000         0.000       0.000
## sound storage medium          0.000 0.000     0.000         0.000       0.000
##                           noodles grapes cat food chewing gum  soda detergent
## rice                        0.008  0.007    0.008       0.005 0.005     0.009
## veggies                     0.000  0.008    0.006       0.004 0.000     0.006
## loaf                        0.000  0.004    0.003       0.003 0.000     0.003
## coke                        0.000  0.004    0.004       0.005 0.000     0.003
## yogurt                      0.003  0.005    0.006       0.002 0.003     0.004
## vegetables                  0.006  0.005    0.004       0.002 0.004     0.004
## mineral water               0.000  0.004    0.004       0.002 0.000     0.002
## Plastic bags                0.002  0.002    0.004       0.003 0.003     0.003
## tropical fruit              0.000  0.005    0.004       0.002 0.000     0.003
## marinated meat              0.000  0.003    0.003       0.002 0.000     0.002
## pies/pasties                0.000  0.003    0.003       0.002 0.001     0.002
## newspapers                  0.003  0.002    0.003       0.002 0.002     0.002
## citrus                      0.000  0.003    0.003       0.002 0.000     0.002
## whipped/sour cream          0.002  0.003    0.003       0.002 0.002     0.002
## heinken                     0.000  0.001    0.002       0.001 0.000     0.001
## green tea                   0.000  0.001    0.001       0.001 0.000     0.001
## pip fruit                   0.000  0.003    0.002       0.002 0.000     0.002
## brown bread                 0.001  0.002    0.002       0.000 0.001     0.001
## fruit/vegetable juice       0.000  0.003    0.002       0.002 0.000     0.001
## domestic eggs               0.002  0.002    0.002       0.001 0.002     0.001
## coffee                      0.002  0.002    0.003       0.001 0.001     0.002
## margarine                   0.002  0.002    0.003       0.001 0.001     0.002
## beef                        0.003  0.003    0.003       0.001 0.001     0.002
## curd                        0.002  0.002    0.002       0.001 0.001     0.002
## butter                      0.002  0.002    0.002       0.001 0.001     0.002
## marinated meats             0.000  0.002    0.001       0.002 0.000     0.002
## napkins                     0.001  0.002    0.003       0.002 0.001     0.002
## halal meat                  0.000  0.002    0.002       0.001 0.000     0.002
## chocolate                   0.001  0.002    0.003       0.001 0.001     0.001
## frozen vegetables           0.001  0.002    0.001       0.001 0.001     0.003
## chicken                     0.001  0.002    0.001       0.001 0.001     0.001
## white bread                 0.000  0.001    0.001       0.001 0.001     0.002
## cream cheese                0.001  0.001    0.002       0.001 0.001     0.001
## waffles                     0.001  0.002    0.002       0.001 0.001     0.001
## dessert                     0.001  0.001    0.002       0.001 0.001     0.001
## salty snack                 0.001  0.002    0.001       0.002 0.001     0.001
## long life bakery product    0.001  0.001    0.001       0.001 0.000     0.001
## berries                     0.001  0.003    0.002       0.000 0.001     0.002
## hamburger meat              0.001  0.001    0.002       0.001 0.001     0.001
## sugar                       0.001  0.001    0.002       0.001 0.001     0.001
## hygiene articles            0.002  0.001    0.002       0.001 0.001     0.001
## UHT-milk                    0.001  0.001    0.001       0.001 0.001     0.001
## onions                      0.001  0.001    0.001       0.001 0.001     0.001
## candy                       0.001  0.001    0.001       0.000 0.001     0.000
## specialty chocolate         0.000  0.001    0.001       0.001 0.000     0.001
## butter milk                 0.001  0.001    0.001       0.000 0.001     0.001
## oil                         0.001  0.002    0.001       0.001 0.001     0.002
## frozen meals                0.000  0.001    0.001       0.000 0.001     0.001
## misc. beverages             0.001  0.001    0.001       0.001 0.001     0.001
## specialty bar               0.001  0.001    0.001       0.001 0.001     0.001
## ham                         0.001  0.001    0.001       0.001 0.001     0.001
## beverages                   0.001  0.001    0.000       0.001 0.001     0.001
## meat                        0.001  0.001    0.001       0.000 0.001     0.001
## ice cream                   0.001  0.002    0.001       0.001 0.001     0.001
## sliced cheese               0.001  0.001    0.001       0.001 0.001     0.001
## hard cheese                 0.001  0.001    0.001       0.000 0.001     0.001
## noodles                     0.023  0.001    0.000       0.000 0.005     0.001
## grapes                      0.001  0.023    0.001       0.001 0.001     0.001
## cat food                    0.000  0.001    0.022       0.001 0.000     0.001
## chewing gum                 0.000  0.001    0.001       0.021 0.001     0.000
## soda                        0.005  0.001    0.000       0.001 0.021     0.000
## detergent                   0.001  0.001    0.001       0.000 0.000     0.020
## red/blush wine              0.001  0.001    0.000       0.000 0.000     0.000
## white wine                  0.000  0.001    0.001       0.000 0.000     0.001
## turkey                      0.002  0.002    0.001       0.000 0.002     0.000
## dishes                      0.000  0.001    0.001       0.001 0.001     0.001
## bottled water               0.004  0.001    0.000       0.000 0.003     0.000
## flour                       0.000  0.001    0.001       0.000 0.000     0.000
## semi-finished bread         0.001  0.001    0.001       0.000 0.000     0.001
## baking powder               0.001  0.001    0.001       0.001 0.000     0.001
## pickled vegetables          0.000  0.001    0.001       0.000 0.000     0.001
## herbs                       0.000  0.000    0.001       0.000 0.000     0.000
## tropical herbs              0.003  0.001    0.000       0.000 0.003     0.000
## soft cheese                 0.000  0.001    0.001       0.000 0.000     0.001
## tea                         0.005  0.001    0.000       0.000 0.002     0.000
## processed cheese            0.000  0.001    0.001       0.000 0.000     0.001
## sausage                     0.004  0.001    0.000       0.000 0.004     0.000
## pasta                       0.000  0.000    0.001       0.000 0.000     0.001
## citrus herbs                0.004  0.001    0.000       0.000 0.002     0.001
## potted plants               0.000  0.001    0.000       0.000 0.000     0.001
## canned fish                 0.000  0.000    0.001       0.000 0.000     0.000
## seasonal products           0.000  0.001    0.000       0.000 0.000     0.001
## cake bar                    0.000  0.000    0.001       0.000 0.001     0.001
## carrots                     0.004  0.001    0.000       0.000 0.002     0.001
## mustard                     0.000  0.001    0.001       0.000 0.000     0.000
## packaged fruit/vegetables   0.000  0.000    0.001       0.000 0.000     0.000
## spread cheese               0.001  0.000    0.000       0.000 0.000     0.000
## frozen dessert              0.000  0.001    0.000       0.000 0.000     0.000
## frozen fish                 0.000  0.000    0.000       0.000 0.000     0.000
## cling film/bags             0.000  0.001    0.000       0.000 0.000     0.000
## salt                        0.000  0.000    0.000       0.000 0.000     0.000
## liquor                      0.000  0.000    0.000       0.000 0.000     0.000
## canned vegetables           0.000  0.000    0.000       0.000 0.000     0.000
## bottled beer                0.002  0.000    0.000       0.000 0.002     0.000
## flower (seeds)              0.000  0.000    0.000       0.000 0.000     0.001
## cooking oil                 0.002  0.000    0.000       0.000 0.002     0.000
## dish cleaner                0.000  0.001    0.001       0.000 0.000     0.001
## condensed milk              0.000  0.000    0.000       0.000 0.000     0.000
## roll products               0.000  0.000    0.001       0.000 0.000     0.001
## photo/film                  0.000  0.000    0.000       0.000 0.000     0.000
## pet care                    0.000  0.000    0.001       0.000 0.000     0.000
## chocolate marshmallow       0.000  0.000    0.000       0.001 0.000     0.000
## herbs/vegetable juice       0.002  0.000    0.000       0.000 0.002     0.000
## whole milk                  0.000  0.000    0.000       0.000 0.001     0.000
## candles                     0.000  0.000    0.000       0.000 0.000     0.001
## mayonnaise                  0.000  0.001    0.000       0.000 0.000     0.000
## Instant food products       0.000  0.000    0.000       0.000 0.000     0.000
## sweet spreads               0.000  0.000    0.000       0.000 0.000     0.000
## liquor (appetizer)          0.000  0.000    0.000       0.000 0.000     0.000
## specialty cheese            0.000  0.000    0.001       0.000 0.000     0.000
## frozen potato products      0.000  0.001    0.000       0.000 0.000     0.000
## house keeping products      0.000  0.000    0.000       0.000 0.000     0.001
## dog food                    0.000  0.001    0.000       0.000 0.000     0.000
## soy                         0.002  0.001    0.000       0.000 0.002     0.000
## instant coffee              0.000  0.000    0.000       0.000 0.000     0.000
## pip herbs                   0.001  0.000    0.000       0.000 0.001     0.000
## zwieback                    0.000  0.000    0.000       0.000 0.000     0.000
## finished products           0.000  0.000    0.000       0.000 0.000     0.000
## popcorn                     0.000  0.000    0.000       0.000 0.000     0.000
## vinegar                     0.000  0.000    0.001       0.000 0.000     0.001
## soups                       0.000  0.000    0.000       0.000 0.000     0.000
## female sanitary products    0.000  0.000    0.001       0.000 0.000     0.000
## sparkling wine              0.000  0.000    0.000       0.000 0.000     0.000
## dental care                 0.000  0.000    0.000       0.000 0.000     0.000
## cereals                     0.000  0.000    0.000       0.000 0.000     0.000
## kitchen towels              0.000  0.000    0.001       0.000 0.000     0.000
## curd cheese                 0.000  0.000    0.001       0.000 0.000     0.000
## other vegetables            0.000  0.000    0.000       0.000 0.001     0.000
## rolls/buns                  0.000  0.000    0.000       0.000 0.001     0.000
## softener                    0.000  0.000    0.000       0.000 0.000     0.001
## cleaner                     0.000  0.000    0.000       0.000 0.000     0.001
## spices                      0.000  0.000    0.000       0.000 0.000     0.000
## jam                         0.000  0.000    0.000       0.000 0.000     0.000
## sauces                      0.000  0.000    0.000       0.000 0.000     0.000
## rum                         0.000  0.000    0.000       0.000 0.000     0.000
## liver loaf                  0.000  0.000    0.000       0.000 0.000     0.000
## male cosmetics              0.000  0.000    0.000       0.000 0.000     0.000
## meat spreads                0.000  0.000    0.000       0.000 0.000     0.000
## packaged herbs/vegetables   0.001  0.000    0.000       0.000 0.001     0.000
## brandy                      0.000  0.000    0.000       0.000 0.000     0.000
## ketchup                     0.000  0.000    0.000       0.000 0.000     0.000
## abrasive cleaner            0.000  0.000    0.000       0.000 0.000     0.000
## light bulbs                 0.000  0.000    0.000       0.000 0.000     0.000
## artif. sweetener            0.000  0.000    0.000       0.000 0.000     0.000
## nuts/prunes                 0.000  0.000    0.000       0.000 0.000     0.000
## specialty fat               0.000  0.000    0.000       0.000 0.000     0.000
## skin care                   0.000  0.000    0.000       0.000 0.000     0.000
## fish                        0.000  0.000    0.000       0.000 0.000     0.000
## potato products             0.000  0.000    0.000       0.000 0.000     0.000
## root vegetables             0.000  0.000    0.000       0.000 0.000     0.000
## snack products              0.000  0.000    0.000       0.000 0.000     0.000
## nut snack                   0.000  0.000    0.000       0.000 0.000     0.000
## soap                        0.000  0.000    0.000       0.000 0.000     0.000
## syrup                       0.000  0.000    0.000       0.000 0.000     0.000
## bathroom cleaner            0.000  0.000    0.000       0.000 0.000     0.000
## canned fruit                0.000  0.000    0.000       0.000 0.000     0.000
## cookware                    0.000  0.000    0.000       0.000 0.000     0.000
## cooking chocolate           0.000  0.000    0.000       0.000 0.000     0.000
## tidbits                     0.000  0.000    0.000       0.000 0.000     0.000
## cocoa drinks                0.000  0.000    0.000       0.000 0.000     0.000
## pudding powder              0.000  0.000    0.000       0.000 0.000     0.000
## ready soups                 0.000  0.000    0.000       0.000 0.000     0.000
## organic marinated meat      0.000  0.000    0.000       0.000 0.000     0.000
## flower soil/fertilizer      0.000  0.000    0.000       0.000 0.000     0.000
## organic products            0.000  0.000    0.000       0.000 0.000     0.000
## pot plants                  0.000  0.000    0.000       0.000 0.000     0.000
## prosecco                    0.000  0.000    0.000       0.000 0.000     0.000
## frankfurter                 0.000  0.000    0.000       0.000 0.000     0.000
## decalcifier                 0.000  0.000    0.000       0.000 0.000     0.000
## honey                       0.000  0.000    0.000       0.000 0.000     0.000
## specialty vegetables        0.000  0.000    0.000       0.000 0.000     0.000
## cream                       0.000  0.000    0.000       0.000 0.000     0.000
## hair spray                  0.000  0.000    0.000       0.000 0.000     0.000
## frozen fruits               0.000  0.000    0.000       0.000 0.000     0.000
## rubbing alcohol             0.000  0.000    0.000       0.000 0.000     0.000
## liqueur                     0.000  0.000    0.000       0.000 0.000     0.000
## make up remover             0.000  0.000    0.000       0.000 0.000     0.000
## salad dressing              0.000  0.000    0.000       0.000 0.000     0.000
## frozen chicken              0.000  0.000    0.000       0.000 0.000     0.000
## whisky                      0.000  0.000    0.000       0.000 0.000     0.000
## baby cosmetics              0.000  0.000    0.000       0.000 0.000     0.000
## toilet cleaner              0.000  0.000    0.000       0.000 0.000     0.000
## bags                        0.000  0.000    0.000       0.000 0.000     0.000
## canned herbs                0.000  0.000    0.000       0.000 0.000     0.000
## kitchen utensil             0.000  0.000    0.000       0.000 0.000     0.000
## preservation products       0.000  0.000    0.000       0.000 0.000     0.000
## baby food                   0.000  0.000    0.000       0.000 0.000     0.000
## frozen herbss               0.000  0.000    0.000       0.000 0.000     0.000
## organic sausage             0.000  0.000    0.000       0.000 0.000     0.000
## sound storage medium        0.000  0.000    0.000       0.000 0.000     0.000
##                           red/blush wine white wine turkey dishes bottled water
## rice                               0.005      0.003  0.007  0.006         0.004
## veggies                            0.004      0.002  0.003  0.005         0.000
## loaf                               0.003      0.002  0.002  0.003         0.000
## coke                               0.004      0.003  0.001  0.002         0.000
## yogurt                             0.002      0.002  0.004  0.004         0.004
## vegetables                         0.003      0.002  0.005  0.003         0.004
## mineral water                      0.003      0.003  0.001  0.002         0.000
## Plastic bags                       0.003      0.003  0.002  0.002         0.001
## tropical fruit                     0.002      0.001  0.002  0.002         0.000
## marinated meat                     0.002      0.002  0.001  0.001         0.000
## pies/pasties                       0.002      0.001  0.002  0.002         0.000
## newspapers                         0.002      0.002  0.001  0.001         0.002
## citrus                             0.002      0.001  0.002  0.002         0.000
## whipped/sour cream                 0.001      0.001  0.003  0.002         0.002
## heinken                            0.004      0.002  0.001  0.001         0.000
## green tea                          0.002      0.002  0.000  0.000         0.000
## pip fruit                          0.001      0.001  0.001  0.001         0.000
## brown bread                        0.002      0.001  0.002  0.001         0.001
## fruit/vegetable juice              0.002      0.001  0.001  0.001         0.000
## domestic eggs                      0.001      0.001  0.002  0.002         0.001
## coffee                             0.002      0.001  0.001  0.002         0.001
## margarine                          0.001      0.001  0.002  0.001         0.001
## beef                               0.001      0.001  0.003  0.002         0.001
## curd                               0.000      0.000  0.002  0.001         0.002
## butter                             0.001      0.001  0.002  0.002         0.002
## marinated meats                    0.001      0.001  0.001  0.001         0.000
## napkins                            0.001      0.001  0.001  0.002         0.001
## halal meat                         0.001      0.001  0.000  0.002         0.000
## chocolate                          0.001      0.001  0.001  0.001         0.001
## frozen vegetables                  0.001      0.001  0.002  0.001         0.001
## chicken                            0.002      0.001  0.002  0.001         0.001
## white bread                        0.001      0.001  0.001  0.000         0.001
## cream cheese                       0.000      0.000  0.001  0.002         0.001
## waffles                            0.001      0.000  0.001  0.001         0.001
## dessert                            0.001      0.001  0.001  0.001         0.001
## salty snack                        0.001      0.001  0.001  0.001         0.001
## long life bakery product           0.001      0.001  0.001  0.000         0.001
## berries                            0.001      0.001  0.001  0.001         0.001
## hamburger meat                     0.001      0.001  0.001  0.001         0.001
## sugar                              0.000      0.001  0.001  0.001         0.001
## hygiene articles                   0.001      0.001  0.001  0.000         0.001
## UHT-milk                           0.001      0.000  0.001  0.001         0.001
## onions                             0.001      0.001  0.001  0.001         0.001
## candy                              0.001      0.000  0.001  0.000         0.001
## specialty chocolate                0.001      0.000  0.001  0.000         0.000
## butter milk                        0.000      0.000  0.001  0.000         0.001
## oil                                0.000      0.001  0.001  0.001         0.001
## frozen meals                       0.001      0.000  0.001  0.000         0.001
## misc. beverages                    0.001      0.001  0.000  0.000         0.001
## specialty bar                      0.000      0.000  0.001  0.001         0.000
## ham                                0.001      0.001  0.001  0.000         0.000
## beverages                          0.000      0.000  0.001  0.000         0.001
## meat                               0.000      0.000  0.001  0.001         0.001
## ice cream                          0.001      0.000  0.001  0.001         0.000
## sliced cheese                      0.001      0.000  0.000  0.001         0.001
## hard cheese                        0.000      0.000  0.001  0.000         0.001
## noodles                            0.001      0.000  0.002  0.000         0.004
## grapes                             0.001      0.001  0.002  0.001         0.001
## cat food                           0.000      0.001  0.001  0.001         0.000
## chewing gum                        0.000      0.000  0.000  0.001         0.000
## soda                               0.000      0.000  0.002  0.001         0.003
## detergent                          0.000      0.001  0.000  0.001         0.000
## red/blush wine                     0.019      0.001  0.000  0.000         0.001
## white wine                         0.001      0.019  0.000  0.000         0.000
## turkey                             0.000      0.000  0.018  0.001         0.002
## dishes                             0.000      0.000  0.001  0.018         0.000
## bottled water                      0.001      0.000  0.002  0.000         0.018
## flour                              0.000      0.000  0.001  0.001         0.000
## semi-finished bread                0.000      0.000  0.001  0.000         0.000
## baking powder                      0.000      0.000  0.001  0.000         0.000
## pickled vegetables                 0.000      0.000  0.001  0.000         0.000
## herbs                              0.000      0.000  0.001  0.000         0.001
## tropical herbs                     0.000      0.000  0.001  0.000         0.003
## soft cheese                        0.000      0.000  0.000  0.000         0.000
## tea                                0.000      0.000  0.001  0.000         0.001
## processed cheese                   0.001      0.000  0.001  0.000         0.000
## sausage                            0.000      0.000  0.001  0.001         0.002
## pasta                              0.000      0.000  0.000  0.001         0.000
## citrus herbs                       0.000      0.000  0.002  0.000         0.002
## potted plants                      0.000      0.000  0.000  0.000         0.000
## canned fish                        0.000      0.000  0.000  0.000         0.000
## seasonal products                  0.000      0.000  0.000  0.000         0.000
## cake bar                           0.000      0.000  0.000  0.000         0.000
## carrots                            0.000      0.000  0.002  0.000         0.002
## mustard                            0.000      0.000  0.000  0.000         0.000
## packaged fruit/vegetables          0.000      0.000  0.000  0.000         0.000
## spread cheese                      0.000      0.001  0.000  0.000         0.000
## frozen dessert                     0.000      0.000  0.000  0.000         0.000
## frozen fish                        0.000      0.000  0.000  0.000         0.000
## cling film/bags                    0.000      0.000  0.000  0.000         0.000
## salt                               0.000      0.000  0.000  0.000         0.001
## liquor                             0.002      0.000  0.000  0.001         0.000
## canned vegetables                  0.000      0.000  0.000  0.000         0.000
## bottled beer                       0.000      0.000  0.001  0.000         0.002
## flower (seeds)                     0.000      0.000  0.000  0.000         0.000
## cooking oil                        0.000      0.000  0.001  0.000         0.001
## dish cleaner                       0.000      0.000  0.000  0.001         0.000
## condensed milk                     0.000      0.000  0.000  0.000         0.000
## roll products                      0.000      0.000  0.000  0.000         0.000
## photo/film                         0.000      0.000  0.000  0.000         0.000
## pet care                           0.000      0.000  0.000  0.000         0.000
## chocolate marshmallow              0.000      0.000  0.000  0.000         0.000
## herbs/vegetable juice              0.000      0.000  0.001  0.000         0.002
## whole milk                         0.000      0.000  0.001  0.000         0.001
## candles                            0.000      0.000  0.000  0.000         0.000
## mayonnaise                         0.000      0.000  0.000  0.000         0.000
## Instant food products              0.000      0.000  0.000  0.000         0.000
## sweet spreads                      0.000      0.000  0.000  0.000         0.000
## liquor (appetizer)                 0.000      0.000  0.000  0.001         0.000
## specialty cheese                   0.000      0.000  0.000  0.000         0.000
## frozen potato products             0.000      0.000  0.001  0.000         0.000
## house keeping products             0.000      0.000  0.000  0.000         0.000
## dog food                           0.000      0.000  0.000  0.000         0.000
## soy                                0.000      0.000  0.001  0.000         0.001
## instant coffee                     0.000      0.000  0.000  0.000         0.000
## pip herbs                          0.000      0.000  0.001  0.000         0.001
## zwieback                           0.000      0.000  0.000  0.001         0.000
## finished products                  0.000      0.000  0.000  0.000         0.000
## popcorn                            0.000      0.000  0.000  0.000         0.000
## vinegar                            0.000      0.000  0.000  0.000         0.000
## soups                              0.000      0.000  0.000  0.000         0.000
## female sanitary products           0.000      0.000  0.000  0.000         0.000
## sparkling wine                     0.000      0.000  0.000  0.000         0.000
## dental care                        0.000      0.000  0.000  0.000         0.000
## cereals                            0.000      0.000  0.000  0.000         0.000
## kitchen towels                     0.000      0.000  0.000  0.000         0.000
## curd cheese                        0.000      0.000  0.000  0.000         0.000
## other vegetables                   0.000      0.000  0.000  0.000         0.001
## rolls/buns                         0.000      0.000  0.000  0.000         0.001
## softener                           0.000      0.000  0.000  0.000         0.000
## cleaner                            0.000      0.000  0.000  0.000         0.000
## spices                             0.000      0.000  0.000  0.000         0.000
## jam                                0.000      0.000  0.000  0.000         0.000
## sauces                             0.000      0.000  0.000  0.000         0.000
## rum                                0.000      0.000  0.000  0.000         0.000
## liver loaf                         0.000      0.000  0.000  0.000         0.000
## male cosmetics                     0.000      0.000  0.000  0.000         0.000
## meat spreads                       0.000      0.000  0.000  0.000         0.000
## packaged herbs/vegetables          0.000      0.000  0.000  0.000         0.001
## brandy                             0.000      0.000  0.000  0.000         0.000
## ketchup                            0.000      0.000  0.000  0.000         0.000
## abrasive cleaner                   0.000      0.000  0.000  0.000         0.000
## light bulbs                        0.000      0.000  0.000  0.000         0.000
## artif. sweetener                   0.000      0.000  0.000  0.000         0.000
## nuts/prunes                        0.000      0.000  0.000  0.000         0.000
## specialty fat                      0.000      0.000  0.000  0.000         0.000
## skin care                          0.000      0.000  0.000  0.000         0.000
## fish                               0.000      0.000  0.000  0.000         0.000
## potato products                    0.000      0.000  0.000  0.000         0.000
## root vegetables                    0.000      0.000  0.000  0.000         0.000
## snack products                     0.000      0.000  0.000  0.000         0.000
## nut snack                          0.000      0.000  0.000  0.000         0.000
## soap                               0.000      0.000  0.000  0.000         0.000
## syrup                              0.000      0.000  0.000  0.000         0.000
## bathroom cleaner                   0.000      0.000  0.000  0.000         0.000
## canned fruit                       0.000      0.000  0.000  0.000         0.000
## cookware                           0.000      0.000  0.000  0.000         0.000
## cooking chocolate                  0.000      0.000  0.000  0.000         0.000
## tidbits                            0.000      0.000  0.000  0.000         0.000
## cocoa drinks                       0.000      0.000  0.000  0.000         0.000
## pudding powder                     0.000      0.000  0.000  0.000         0.000
## ready soups                        0.000      0.000  0.000  0.000         0.000
## organic marinated meat             0.000      0.000  0.000  0.000         0.000
## flower soil/fertilizer             0.000      0.000  0.000  0.000         0.000
## organic products                   0.000      0.000  0.000  0.000         0.000
## pot plants                         0.000      0.000  0.000  0.000         0.000
## prosecco                           0.000      0.000  0.000  0.000         0.000
## frankfurter                        0.000      0.000  0.000  0.000         0.000
## decalcifier                        0.000      0.000  0.000  0.000         0.000
## honey                              0.000      0.000  0.000  0.000         0.000
## specialty vegetables               0.000      0.000  0.000  0.000         0.000
## cream                              0.000      0.000  0.000  0.000         0.000
## hair spray                         0.000      0.000  0.000  0.000         0.000
## frozen fruits                      0.000      0.000  0.000  0.000         0.000
## rubbing alcohol                    0.000      0.000  0.000  0.000         0.000
## liqueur                            0.000      0.000  0.000  0.000         0.000
## make up remover                    0.000      0.000  0.000  0.000         0.000
## salad dressing                     0.000      0.000  0.000  0.000         0.000
## frozen chicken                     0.000      0.000  0.000  0.000         0.000
## whisky                             0.000      0.000  0.000  0.000         0.000
## baby cosmetics                     0.000      0.000  0.000  0.000         0.000
## toilet cleaner                     0.000      0.000  0.000  0.000         0.000
## bags                               0.000      0.000  0.000  0.000         0.000
## canned herbs                       0.000      0.000  0.000  0.000         0.000
## kitchen utensil                    0.000      0.000  0.000  0.000         0.000
## preservation products              0.000      0.000  0.000  0.000         0.000
## baby food                          0.000      0.000  0.000  0.000         0.000
## frozen herbss                      0.000      0.000  0.000  0.000         0.000
## organic sausage                    0.000      0.000  0.000  0.000         0.000
## sound storage medium               0.000      0.000  0.000  0.000         0.000
##                           flour semi-finished bread baking powder
## rice                      0.009               0.007         0.009
## veggies                   0.006               0.005         0.006
## loaf                      0.003               0.003         0.003
## coke                      0.002               0.004         0.002
## yogurt                    0.005               0.003         0.004
## vegetables                0.005               0.002         0.004
## mineral water             0.002               0.002         0.002
## Plastic bags              0.002               0.003         0.002
## tropical fruit            0.003               0.004         0.003
## marinated meat            0.002               0.002         0.002
## pies/pasties              0.002               0.003         0.001
## newspapers                0.002               0.003         0.002
## citrus                    0.003               0.002         0.003
## whipped/sour cream        0.004               0.002         0.005
## heinken                   0.001               0.001         0.001
## green tea                 0.001               0.001         0.001
## pip fruit                 0.002               0.002         0.002
## brown bread               0.001               0.002         0.001
## fruit/vegetable juice     0.002               0.002         0.002
## domestic eggs             0.003               0.002         0.003
## coffee                    0.002               0.001         0.001
## margarine                 0.004               0.002         0.003
## beef                      0.003               0.002         0.002
## curd                      0.004               0.002         0.002
## butter                    0.002               0.001         0.003
## marinated meats           0.002               0.002         0.001
## napkins                   0.002               0.001         0.002
## halal meat                0.002               0.002         0.002
## chocolate                 0.002               0.001         0.002
## frozen vegetables         0.001               0.002         0.002
## chicken                   0.002               0.001         0.001
## white bread               0.001               0.001         0.002
## cream cheese              0.001               0.001         0.002
## waffles                   0.001               0.001         0.001
## dessert                   0.001               0.001         0.001
## salty snack               0.002               0.001         0.001
## long life bakery product  0.001               0.001         0.002
## berries                   0.001               0.001         0.001
## hamburger meat            0.001               0.001         0.001
## sugar                     0.005               0.001         0.003
## hygiene articles          0.002               0.001         0.001
## UHT-milk                  0.001               0.001         0.001
## onions                    0.001               0.001         0.001
## candy                     0.001               0.001         0.001
## specialty chocolate       0.001               0.001         0.001
## butter milk               0.001               0.001         0.001
## oil                       0.002               0.001         0.002
## frozen meals              0.000               0.001         0.001
## misc. beverages           0.001               0.001         0.001
## specialty bar             0.000               0.001         0.000
## ham                       0.000               0.001         0.001
## beverages                 0.001               0.000         0.000
## meat                      0.001               0.001         0.001
## ice cream                 0.000               0.000         0.001
## sliced cheese             0.000               0.001         0.001
## hard cheese               0.001               0.001         0.001
## noodles                   0.000               0.001         0.001
## grapes                    0.001               0.001         0.001
## cat food                  0.001               0.001         0.001
## chewing gum               0.000               0.000         0.001
## soda                      0.000               0.000         0.000
## detergent                 0.000               0.001         0.001
## red/blush wine            0.000               0.000         0.000
## white wine                0.000               0.000         0.000
## turkey                    0.001               0.001         0.001
## dishes                    0.001               0.000         0.000
## bottled water             0.000               0.000         0.000
## flour                     0.018               0.001         0.002
## semi-finished bread       0.001               0.017         0.001
## baking powder             0.002               0.001         0.017
## pickled vegetables        0.001               0.001         0.001
## herbs                     0.001               0.000         0.001
## tropical herbs            0.001               0.001         0.001
## soft cheese               0.000               0.001         0.001
## tea                       0.000               0.000         0.001
## processed cheese          0.000               0.001         0.000
## sausage                   0.000               0.000         0.000
## pasta                     0.001               0.000         0.001
## citrus herbs              0.001               0.000         0.001
## potted plants             0.000               0.001         0.000
## canned fish               0.001               0.000         0.000
## seasonal products         0.000               0.001         0.001
## cake bar                  0.000               0.001         0.000
## carrots                   0.001               0.000         0.000
## mustard                   0.001               0.000         0.000
## packaged fruit/vegetables 0.000               0.000         0.000
## spread cheese             0.000               0.000         0.000
## frozen dessert            0.001               0.001         0.001
## frozen fish               0.001               0.000         0.001
## cling film/bags           0.000               0.000         0.001
## salt                      0.001               0.000         0.000
## liquor                    0.000               0.000         0.000
## canned vegetables         0.000               0.000         0.000
## bottled beer              0.000               0.000         0.000
## flower (seeds)            0.000               0.000         0.001
## cooking oil               0.000               0.000         0.000
## dish cleaner              0.000               0.000         0.000
## condensed milk            0.000               0.000         0.000
## roll products             0.001               0.000         0.000
## photo/film                0.000               0.000         0.000
## pet care                  0.000               0.000         0.000
## chocolate marshmallow     0.001               0.001         0.000
## herbs/vegetable juice     0.000               0.000         0.000
## whole milk                0.000               0.000         0.000
## candles                   0.000               0.000         0.000
## mayonnaise                0.000               0.000         0.000
## Instant food products     0.000               0.000         0.000
## sweet spreads             0.000               0.000         0.000
## liquor (appetizer)        0.000               0.000         0.000
## specialty cheese          0.000               0.000         0.000
## frozen potato products    0.000               0.000         0.000
## house keeping products    0.000               0.000         0.001
## dog food                  0.000               0.000         0.001
## soy                       0.000               0.000         0.000
## instant coffee            0.000               0.000         0.000
## pip herbs                 0.000               0.000         0.000
## zwieback                  0.000               0.001         0.000
## finished products         0.000               0.000         0.000
## popcorn                   0.000               0.000         0.000
## vinegar                   0.000               0.001         0.001
## soups                     0.000               0.000         0.000
## female sanitary products  0.000               0.000         0.000
## sparkling wine            0.000               0.000         0.000
## dental care               0.000               0.000         0.000
## cereals                   0.000               0.000         0.000
## kitchen towels            0.000               0.000         0.000
## curd cheese               0.000               0.000         0.000
## other vegetables          0.000               0.000         0.000
## rolls/buns                0.000               0.000         0.000
## softener                  0.000               0.000         0.000
## cleaner                   0.000               0.000         0.000
## spices                    0.000               0.000         0.000
## jam                       0.000               0.000         0.000
## sauces                    0.000               0.000         0.000
## rum                       0.000               0.000         0.000
## liver loaf                0.000               0.000         0.000
## male cosmetics            0.000               0.000         0.000
## meat spreads              0.000               0.000         0.000
## packaged herbs/vegetables 0.000               0.000         0.000
## brandy                    0.000               0.000         0.000
## ketchup                   0.000               0.000         0.000
## abrasive cleaner          0.000               0.000         0.000
## light bulbs               0.000               0.000         0.000
## artif. sweetener          0.001               0.000         0.000
## nuts/prunes               0.000               0.000         0.000
## specialty fat             0.000               0.000         0.000
## skin care                 0.000               0.000         0.000
## fish                      0.000               0.000         0.000
## potato products           0.000               0.000         0.000
## root vegetables           0.000               0.000         0.000
## snack products            0.000               0.000         0.000
## nut snack                 0.000               0.000         0.000
## soap                      0.000               0.000         0.000
## syrup                     0.000               0.000         0.000
## bathroom cleaner          0.000               0.000         0.000
## canned fruit              0.000               0.000         0.000
## cookware                  0.000               0.000         0.000
## cooking chocolate         0.000               0.000         0.001
## tidbits                   0.000               0.000         0.000
## cocoa drinks              0.000               0.000         0.000
## pudding powder            0.000               0.000         0.000
## ready soups               0.000               0.001         0.000
## organic marinated meat    0.000               0.000         0.000
## flower soil/fertilizer    0.000               0.000         0.000
## organic products          0.000               0.000         0.000
## pot plants                0.000               0.000         0.000
## prosecco                  0.000               0.000         0.000
## frankfurter               0.000               0.000         0.000
## decalcifier               0.000               0.000         0.000
## honey                     0.000               0.000         0.000
## specialty vegetables      0.000               0.000         0.000
## cream                     0.000               0.000         0.000
## hair spray                0.000               0.000         0.000
## frozen fruits             0.000               0.000         0.000
## rubbing alcohol           0.000               0.000         0.000
## liqueur                   0.000               0.000         0.000
## make up remover           0.000               0.000         0.000
## salad dressing            0.000               0.000         0.000
## frozen chicken            0.000               0.000         0.000
## whisky                    0.000               0.000         0.000
## baby cosmetics            0.000               0.000         0.000
## toilet cleaner            0.000               0.000         0.000
## bags                      0.000               0.000         0.000
## canned herbs              0.000               0.000         0.000
## kitchen utensil           0.000               0.000         0.000
## preservation products     0.000               0.000         0.000
## baby food                 0.000               0.000         0.000
## frozen herbss             0.000               0.000         0.000
## organic sausage           0.000               0.000         0.000
## sound storage medium      0.000               0.000         0.000
##                           pickled vegetables herbs tropical herbs soft cheese
## rice                                   0.007 0.008          0.005       0.007
## veggies                                0.006 0.007          0.000       0.006
## loaf                                   0.004 0.003          0.000       0.005
## coke                                   0.004 0.002          0.000       0.002
## yogurt                                 0.004 0.004          0.004       0.006
## vegetables                             0.004 0.007          0.004       0.004
## mineral water                          0.003 0.003          0.000       0.002
## Plastic bags                           0.002 0.002          0.002       0.003
## tropical fruit                         0.003 0.002          0.000       0.003
## marinated meat                         0.003 0.001          0.000       0.003
## pies/pasties                           0.002 0.001          0.001       0.002
## newspapers                             0.002 0.001          0.001       0.001
## citrus                                 0.003 0.003          0.000       0.002
## whipped/sour cream                     0.002 0.003          0.002       0.003
## heinken                                0.002 0.002          0.000       0.001
## green tea                              0.001 0.000          0.000       0.001
## pip fruit                              0.002 0.002          0.000       0.003
## brown bread                            0.002 0.001          0.001       0.002
## fruit/vegetable juice                  0.002 0.001          0.000       0.002
## domestic eggs                          0.002 0.002          0.002       0.003
## coffee                                 0.002 0.001          0.001       0.002
## margarine                              0.002 0.002          0.001       0.002
## beef                                   0.002 0.003          0.002       0.002
## curd                                   0.001 0.002          0.002       0.002
## butter                                 0.002 0.002          0.002       0.003
## marinated meats                        0.002 0.001          0.000       0.002
## napkins                                0.001 0.001          0.001       0.001
## halal meat                             0.002 0.002          0.000       0.001
## chocolate                              0.001 0.000          0.001       0.002
## frozen vegetables                      0.002 0.003          0.001       0.002
## chicken                                0.002 0.002          0.001       0.002
## white bread                            0.001 0.000          0.001       0.002
## cream cheese                           0.001 0.001          0.001       0.002
## waffles                                0.001 0.001          0.001       0.001
## dessert                                0.002 0.001          0.001       0.002
## salty snack                            0.001 0.001          0.001       0.000
## long life bakery product               0.001 0.001          0.001       0.002
## berries                                0.001 0.001          0.001       0.001
## hamburger meat                         0.001 0.002          0.001       0.001
## sugar                                  0.001 0.000          0.001       0.001
## hygiene articles                       0.001 0.001          0.001       0.001
## UHT-milk                               0.001 0.001          0.000       0.000
## onions                                 0.001 0.002          0.001       0.002
## candy                                  0.001 0.001          0.001       0.000
## specialty chocolate                    0.001 0.001          0.000       0.001
## butter milk                            0.001 0.001          0.001       0.001
## oil                                    0.002 0.002          0.000       0.001
## frozen meals                           0.001 0.000          0.001       0.001
## misc. beverages                        0.001 0.001          0.001       0.001
## specialty bar                          0.001 0.000          0.000       0.001
## ham                                    0.000 0.001          0.001       0.002
## beverages                              0.000 0.000          0.000       0.001
## meat                                   0.001 0.001          0.001       0.001
## ice cream                              0.001 0.001          0.001       0.001
## sliced cheese                          0.001 0.001          0.001       0.002
## hard cheese                            0.001 0.001          0.001       0.002
## noodles                                0.000 0.000          0.003       0.000
## grapes                                 0.001 0.000          0.001       0.001
## cat food                               0.001 0.001          0.000       0.001
## chewing gum                            0.000 0.000          0.000       0.000
## soda                                   0.000 0.000          0.003       0.000
## detergent                              0.001 0.000          0.000       0.001
## red/blush wine                         0.000 0.000          0.000       0.000
## white wine                             0.000 0.000          0.000       0.000
## turkey                                 0.001 0.001          0.001       0.000
## dishes                                 0.000 0.000          0.000       0.000
## bottled water                          0.000 0.001          0.003       0.000
## flour                                  0.001 0.001          0.001       0.000
## semi-finished bread                    0.001 0.000          0.001       0.001
## baking powder                          0.001 0.001          0.001       0.001
## pickled vegetables                     0.017 0.000          0.000       0.001
## herbs                                  0.000 0.017          0.001       0.000
## tropical herbs                         0.000 0.001          0.017       0.000
## soft cheese                            0.001 0.000          0.000       0.016
## tea                                    0.001 0.000          0.002       0.000
## processed cheese                       0.001 0.001          0.001       0.001
## sausage                                0.000 0.000          0.002       0.000
## pasta                                  0.001 0.000          0.000       0.001
## citrus herbs                           0.000 0.000          0.003       0.000
## potted plants                          0.000 0.001          0.000       0.000
## canned fish                            0.001 0.001          0.000       0.001
## seasonal products                      0.001 0.000          0.000       0.000
## cake bar                               0.000 0.000          0.000       0.000
## carrots                                0.000 0.001          0.003       0.000
## mustard                                0.001 0.000          0.000       0.001
## packaged fruit/vegetables              0.000 0.001          0.000       0.000
## spread cheese                          0.000 0.000          0.000       0.000
## frozen dessert                         0.000 0.000          0.000       0.000
## frozen fish                            0.001 0.000          0.000       0.001
## cling film/bags                        0.000 0.000          0.000       0.000
## salt                                   0.000 0.000          0.000       0.001
## liquor                                 0.001 0.000          0.000       0.000
## canned vegetables                      0.000 0.000          0.000       0.000
## bottled beer                           0.000 0.000          0.001       0.000
## flower (seeds)                         0.000 0.000          0.000       0.000
## cooking oil                            0.000 0.000          0.001       0.000
## dish cleaner                           0.000 0.001          0.000       0.001
## condensed milk                         0.000 0.000          0.000       0.000
## roll products                          0.000 0.001          0.000       0.001
## photo/film                             0.000 0.000          0.000       0.000
## pet care                               0.000 0.000          0.000       0.000
## chocolate marshmallow                  0.000 0.000          0.000       0.000
## herbs/vegetable juice                  0.000 0.000          0.002       0.000
## whole milk                             0.000 0.000          0.001       0.000
## candles                                0.000 0.000          0.000       0.001
## mayonnaise                             0.001 0.000          0.000       0.000
## Instant food products                  0.000 0.000          0.000       0.000
## sweet spreads                          0.000 0.000          0.000       0.000
## liquor (appetizer)                     0.000 0.000          0.000       0.000
## specialty cheese                       0.000 0.000          0.000       0.000
## frozen potato products                 0.000 0.000          0.000       0.000
## house keeping products                 0.000 0.000          0.000       0.000
## dog food                               0.000 0.000          0.000       0.000
## soy                                    0.000 0.000          0.001       0.000
## instant coffee                         0.000 0.000          0.000       0.000
## pip herbs                              0.000 0.000          0.002       0.000
## zwieback                               0.000 0.000          0.000       0.000
## finished products                      0.000 0.000          0.000       0.000
## popcorn                                0.000 0.000          0.000       0.000
## vinegar                                0.000 0.000          0.000       0.000
## soups                                  0.000 0.000          0.000       0.000
## female sanitary products               0.000 0.000          0.000       0.000
## sparkling wine                         0.000 0.000          0.000       0.000
## dental care                            0.000 0.000          0.000       0.000
## cereals                                0.000 0.000          0.000       0.000
## kitchen towels                         0.000 0.000          0.000       0.000
## curd cheese                            0.000 0.000          0.000       0.001
## other vegetables                       0.000 0.000          0.001       0.000
## rolls/buns                             0.000 0.000          0.001       0.000
## softener                               0.000 0.000          0.000       0.000
## cleaner                                0.000 0.000          0.000       0.000
## spices                                 0.000 0.000          0.000       0.000
## jam                                    0.000 0.000          0.000       0.000
## sauces                                 0.000 0.000          0.000       0.000
## rum                                    0.000 0.000          0.000       0.000
## liver loaf                             0.000 0.000          0.000       0.000
## male cosmetics                         0.000 0.000          0.000       0.000
## meat spreads                           0.000 0.000          0.000       0.000
## packaged herbs/vegetables              0.000 0.000          0.001       0.000
## brandy                                 0.000 0.000          0.000       0.000
## ketchup                                0.000 0.000          0.000       0.000
## abrasive cleaner                       0.000 0.000          0.000       0.000
## light bulbs                            0.000 0.000          0.000       0.000
## artif. sweetener                       0.000 0.000          0.000       0.000
## nuts/prunes                            0.000 0.000          0.000       0.000
## specialty fat                          0.000 0.000          0.000       0.000
## skin care                              0.000 0.000          0.000       0.000
## fish                                   0.000 0.000          0.000       0.000
## potato products                        0.000 0.000          0.000       0.000
## root vegetables                        0.000 0.000          0.000       0.000
## snack products                         0.000 0.000          0.000       0.000
## nut snack                              0.000 0.000          0.000       0.000
## soap                                   0.000 0.000          0.000       0.000
## syrup                                  0.000 0.000          0.000       0.000
## bathroom cleaner                       0.000 0.000          0.000       0.000
## canned fruit                           0.000 0.000          0.000       0.000
## cookware                               0.000 0.000          0.000       0.000
## cooking chocolate                      0.000 0.000          0.000       0.000
## tidbits                                0.000 0.000          0.000       0.000
## cocoa drinks                           0.000 0.000          0.000       0.000
## pudding powder                         0.000 0.000          0.000       0.000
## ready soups                            0.000 0.000          0.000       0.000
## organic marinated meat                 0.000 0.000          0.000       0.000
## flower soil/fertilizer                 0.000 0.000          0.000       0.000
## organic products                       0.000 0.000          0.000       0.000
## pot plants                             0.000 0.000          0.000       0.000
## prosecco                               0.000 0.000          0.000       0.000
## frankfurter                            0.000 0.000          0.001       0.000
## decalcifier                            0.000 0.000          0.000       0.000
## honey                                  0.000 0.000          0.000       0.000
## specialty vegetables                   0.000 0.000          0.000       0.000
## cream                                  0.000 0.000          0.000       0.000
## hair spray                             0.000 0.000          0.000       0.000
## frozen fruits                          0.000 0.000          0.000       0.000
## rubbing alcohol                        0.000 0.000          0.000       0.000
## liqueur                                0.000 0.000          0.000       0.000
## make up remover                        0.000 0.000          0.000       0.000
## salad dressing                         0.000 0.000          0.000       0.000
## frozen chicken                         0.000 0.000          0.000       0.000
## whisky                                 0.000 0.000          0.000       0.000
## baby cosmetics                         0.000 0.000          0.000       0.000
## toilet cleaner                         0.000 0.000          0.000       0.000
## bags                                   0.000 0.000          0.000       0.000
## canned herbs                           0.000 0.000          0.000       0.000
## kitchen utensil                        0.000 0.000          0.000       0.000
## preservation products                  0.000 0.000          0.000       0.000
## baby food                              0.000 0.000          0.000       0.000
## frozen herbss                          0.000 0.000          0.000       0.000
## organic sausage                        0.000 0.000          0.000       0.000
## sound storage medium                   0.000 0.000          0.000       0.000
##                             tea processed cheese sausage pasta citrus herbs
## rice                      0.006            0.007   0.004 0.006        0.006
## veggies                   0.001            0.005   0.000 0.004        0.000
## loaf                      0.001            0.004   0.000 0.002        0.000
## coke                      0.000            0.005   0.000 0.004        0.000
## yogurt                    0.002            0.002   0.003 0.003        0.003
## vegetables                0.003            0.003   0.003 0.004        0.003
## mineral water             0.001            0.002   0.000 0.002        0.000
## Plastic bags              0.001            0.002   0.002 0.002        0.001
## tropical fruit            0.001            0.004   0.000 0.002        0.000
## marinated meat            0.000            0.003   0.000 0.002        0.000
## pies/pasties              0.000            0.003   0.001 0.002        0.000
## newspapers                0.001            0.001   0.002 0.001        0.001
## citrus                    0.001            0.002   0.000 0.002        0.000
## whipped/sour cream        0.002            0.002   0.001 0.002        0.002
## heinken                   0.001            0.001   0.000 0.001        0.000
## green tea                 0.000            0.000   0.000 0.001        0.000
## pip fruit                 0.001            0.002   0.000 0.002        0.000
## brown bread               0.001            0.002   0.001 0.001        0.001
## fruit/vegetable juice     0.001            0.003   0.000 0.002        0.000
## domestic eggs             0.002            0.002   0.001 0.002        0.001
## coffee                    0.001            0.001   0.001 0.001        0.001
## margarine                 0.002            0.002   0.001 0.002        0.001
## beef                      0.002            0.001   0.002 0.002        0.002
## curd                      0.002            0.001   0.001 0.002        0.002
## butter                    0.002            0.003   0.001 0.003        0.001
## marinated meats           0.000            0.002   0.000 0.001        0.000
## napkins                   0.001            0.001   0.001 0.001        0.001
## halal meat                0.000            0.001   0.000 0.001        0.000
## chocolate                 0.001            0.001   0.001 0.001        0.001
## frozen vegetables         0.001            0.002   0.001 0.001        0.001
## chicken                   0.001            0.001   0.001 0.002        0.001
## white bread               0.001            0.004   0.001 0.001        0.001
## cream cheese              0.002            0.001   0.001 0.001        0.001
## waffles                   0.000            0.001   0.000 0.002        0.000
## dessert                   0.001            0.001   0.001 0.001        0.001
## salty snack               0.000            0.001   0.001 0.001        0.001
## long life bakery product  0.001            0.002   0.000 0.000        0.001
## berries                   0.001            0.001   0.001 0.001        0.002
## hamburger meat            0.001            0.001   0.001 0.003        0.001
## sugar                     0.001            0.001   0.001 0.001        0.002
## hygiene articles          0.001            0.001   0.001 0.001        0.001
## UHT-milk                  0.001            0.001   0.000 0.001        0.001
## onions                    0.001            0.001   0.001 0.001        0.001
## candy                     0.000            0.002   0.000 0.001        0.001
## specialty chocolate       0.000            0.001   0.000 0.001        0.000
## butter milk               0.001            0.001   0.001 0.001        0.001
## oil                       0.001            0.001   0.000 0.001        0.001
## frozen meals              0.000            0.000   0.000 0.002        0.000
## misc. beverages           0.000            0.001   0.001 0.001        0.001
## specialty bar             0.001            0.001   0.001 0.000        0.000
## ham                       0.001            0.003   0.001 0.001        0.001
## beverages                 0.001            0.001   0.001 0.001        0.001
## meat                      0.001            0.000   0.001 0.000        0.001
## ice cream                 0.000            0.000   0.001 0.000        0.000
## sliced cheese             0.001            0.001   0.001 0.001        0.000
## hard cheese               0.001            0.001   0.001 0.001        0.000
## noodles                   0.005            0.000   0.004 0.000        0.004
## grapes                    0.001            0.001   0.001 0.000        0.001
## cat food                  0.000            0.001   0.000 0.001        0.000
## chewing gum               0.000            0.000   0.000 0.000        0.000
## soda                      0.002            0.000   0.004 0.000        0.002
## detergent                 0.000            0.001   0.000 0.001        0.001
## red/blush wine            0.000            0.001   0.000 0.000        0.000
## white wine                0.000            0.000   0.000 0.000        0.000
## turkey                    0.001            0.001   0.001 0.000        0.002
## dishes                    0.000            0.000   0.001 0.001        0.000
## bottled water             0.001            0.000   0.002 0.000        0.002
## flour                     0.000            0.000   0.000 0.001        0.001
## semi-finished bread       0.000            0.001   0.000 0.000        0.000
## baking powder             0.001            0.000   0.000 0.001        0.001
## pickled vegetables        0.001            0.001   0.000 0.001        0.000
## herbs                     0.000            0.001   0.000 0.000        0.000
## tropical herbs            0.002            0.001   0.002 0.000        0.003
## soft cheese               0.000            0.001   0.000 0.001        0.000
## tea                       0.016            0.000   0.002 0.000        0.002
## processed cheese          0.000            0.016   0.000 0.000        0.000
## sausage                   0.002            0.000   0.016 0.000        0.002
## pasta                     0.000            0.000   0.000 0.015        0.000
## citrus herbs              0.002            0.000   0.002 0.000        0.015
## potted plants             0.000            0.000   0.000 0.000        0.000
## canned fish               0.001            0.000   0.000 0.001        0.000
## seasonal products         0.000            0.000   0.000 0.000        0.000
## cake bar                  0.000            0.000   0.001 0.001        0.000
## carrots                   0.002            0.000   0.002 0.000        0.002
## mustard                   0.001            0.000   0.000 0.000        0.000
## packaged fruit/vegetables 0.000            0.000   0.000 0.000        0.000
## spread cheese             0.000            0.000   0.000 0.000        0.000
## frozen dessert            0.000            0.000   0.000 0.000        0.000
## frozen fish               0.000            0.000   0.000 0.000        0.000
## cling film/bags           0.001            0.000   0.000 0.000        0.000
## salt                      0.000            0.000   0.000 0.001        0.000
## liquor                    0.000            0.000   0.000 0.000        0.000
## canned vegetables         0.000            0.000   0.000 0.001        0.000
## bottled beer              0.001            0.000   0.001 0.000        0.001
## flower (seeds)            0.000            0.000   0.000 0.000        0.000
## cooking oil               0.001            0.000   0.001 0.000        0.001
## dish cleaner              0.000            0.000   0.000 0.000        0.000
## condensed milk            0.000            0.000   0.000 0.000        0.000
## roll products             0.000            0.000   0.000 0.001        0.000
## photo/film                0.000            0.000   0.000 0.000        0.000
## pet care                  0.000            0.000   0.000 0.000        0.000
## chocolate marshmallow     0.000            0.000   0.000 0.000        0.000
## herbs/vegetable juice     0.001            0.000   0.001 0.000        0.001
## whole milk                0.000            0.000   0.001 0.000        0.001
## candles                   0.000            0.000   0.000 0.000        0.000
## mayonnaise                0.000            0.001   0.000 0.000        0.000
## Instant food products     0.000            0.000   0.000 0.001        0.000
## sweet spreads             0.000            0.000   0.000 0.001        0.000
## liquor (appetizer)        0.000            0.000   0.000 0.000        0.000
## specialty cheese          0.000            0.000   0.000 0.000        0.000
## frozen potato products    0.000            0.000   0.000 0.000        0.000
## house keeping products    0.000            0.000   0.000 0.000        0.000
## dog food                  0.000            0.000   0.000 0.001        0.000
## soy                       0.001            0.000   0.001 0.000        0.001
## instant coffee            0.000            0.000   0.000 0.000        0.000
## pip herbs                 0.001            0.000   0.001 0.000        0.001
## zwieback                  0.000            0.000   0.000 0.000        0.000
## finished products         0.000            0.000   0.000 0.001        0.000
## popcorn                   0.000            0.000   0.000 0.000        0.000
## vinegar                   0.000            0.000   0.000 0.000        0.000
## soups                     0.000            0.000   0.000 0.001        0.000
## female sanitary products  0.000            0.000   0.000 0.000        0.000
## sparkling wine            0.000            0.000   0.000 0.000        0.000
## dental care               0.000            0.000   0.000 0.000        0.000
## cereals                   0.000            0.000   0.000 0.000        0.000
## kitchen towels            0.000            0.000   0.000 0.000        0.000
## curd cheese               0.000            0.000   0.000 0.000        0.000
## other vegetables          0.000            0.000   0.000 0.000        0.001
## rolls/buns                0.000            0.000   0.001 0.000        0.000
## softener                  0.000            0.000   0.000 0.000        0.000
## cleaner                   0.000            0.000   0.000 0.000        0.000
## spices                    0.000            0.000   0.000 0.000        0.000
## jam                       0.000            0.000   0.000 0.000        0.000
## sauces                    0.000            0.000   0.000 0.000        0.000
## rum                       0.000            0.000   0.000 0.000        0.000
## liver loaf                0.000            0.000   0.000 0.000        0.000
## male cosmetics            0.000            0.000   0.000 0.000        0.000
## meat spreads              0.000            0.000   0.000 0.000        0.000
## packaged herbs/vegetables 0.001            0.000   0.001 0.000        0.001
## brandy                    0.000            0.000   0.000 0.000        0.000
## ketchup                   0.000            0.000   0.000 0.000        0.000
## abrasive cleaner          0.000            0.000   0.000 0.000        0.000
## light bulbs               0.000            0.000   0.000 0.000        0.000
## artif. sweetener          0.000            0.000   0.000 0.000        0.000
## nuts/prunes               0.000            0.000   0.000 0.000        0.000
## specialty fat             0.000            0.000   0.000 0.000        0.000
## skin care                 0.000            0.000   0.000 0.000        0.000
## fish                      0.000            0.000   0.000 0.000        0.000
## potato products           0.000            0.001   0.000 0.000        0.000
## root vegetables           0.000            0.000   0.001 0.000        0.001
## snack products            0.000            0.000   0.000 0.000        0.000
## nut snack                 0.000            0.000   0.000 0.000        0.000
## soap                      0.000            0.000   0.000 0.000        0.000
## syrup                     0.000            0.000   0.000 0.000        0.000
## bathroom cleaner          0.000            0.000   0.000 0.000        0.000
## canned fruit              0.000            0.000   0.000 0.000        0.000
## cookware                  0.000            0.000   0.000 0.000        0.000
## cooking chocolate         0.000            0.000   0.000 0.000        0.000
## tidbits                   0.000            0.000   0.000 0.000        0.000
## cocoa drinks              0.000            0.000   0.000 0.000        0.000
## pudding powder            0.000            0.000   0.000 0.000        0.000
## ready soups               0.000            0.000   0.000 0.000        0.000
## organic marinated meat    0.000            0.000   0.000 0.000        0.000
## flower soil/fertilizer    0.000            0.000   0.000 0.000        0.000
## organic products          0.000            0.000   0.000 0.000        0.000
## pot plants                0.000            0.000   0.000 0.000        0.001
## prosecco                  0.000            0.000   0.000 0.000        0.000
## frankfurter               0.000            0.000   0.000 0.000        0.000
## decalcifier               0.000            0.000   0.000 0.000        0.000
## honey                     0.000            0.000   0.000 0.000        0.000
## specialty vegetables      0.000            0.000   0.000 0.000        0.000
## cream                     0.000            0.000   0.000 0.000        0.000
## hair spray                0.000            0.000   0.000 0.000        0.000
## frozen fruits             0.000            0.000   0.000 0.000        0.000
## rubbing alcohol           0.000            0.000   0.000 0.000        0.000
## liqueur                   0.000            0.000   0.000 0.000        0.000
## make up remover           0.000            0.000   0.000 0.000        0.000
## salad dressing            0.000            0.000   0.000 0.000        0.000
## frozen chicken            0.000            0.000   0.000 0.000        0.000
## whisky                    0.000            0.000   0.000 0.000        0.000
## baby cosmetics            0.000            0.000   0.000 0.000        0.000
## toilet cleaner            0.000            0.000   0.000 0.000        0.000
## bags                      0.000            0.000   0.000 0.000        0.000
## canned herbs              0.000            0.000   0.000 0.000        0.000
## kitchen utensil           0.000            0.000   0.000 0.000        0.000
## preservation products     0.000            0.000   0.000 0.000        0.000
## baby food                 0.000            0.000   0.000 0.000        0.000
## frozen herbss             0.000            0.000   0.000 0.000        0.000
## organic sausage           0.000            0.000   0.000 0.000        0.000
## sound storage medium      0.000            0.000   0.000 0.000        0.000
##                           potted plants canned fish seasonal products cake bar
## rice                              0.006       0.005             0.004    0.005
## veggies                           0.004       0.004             0.003    0.003
## loaf                              0.002       0.004             0.002    0.003
## coke                              0.002       0.003             0.002    0.004
## yogurt                            0.003       0.003             0.003    0.002
## vegetables                        0.002       0.003             0.002    0.002
## mineral water                     0.002       0.001             0.001    0.002
## Plastic bags                      0.002       0.003             0.002    0.003
## tropical fruit                    0.003       0.002             0.002    0.002
## marinated meat                    0.001       0.002             0.002    0.002
## pies/pasties                      0.002       0.002             0.002    0.002
## newspapers                        0.001       0.002             0.001    0.001
## citrus                            0.002       0.001             0.002    0.001
## whipped/sour cream                0.002       0.002             0.001    0.001
## heinken                           0.001       0.002             0.001    0.001
## green tea                         0.000       0.001             0.000    0.000
## pip fruit                         0.002       0.001             0.001    0.002
## brown bread                       0.001       0.002             0.001    0.001
## fruit/vegetable juice             0.002       0.001             0.001    0.001
## domestic eggs                     0.001       0.002             0.001    0.001
## coffee                            0.001       0.002             0.002    0.001
## margarine                         0.001       0.002             0.001    0.001
## beef                              0.002       0.001             0.001    0.001
## curd                              0.001       0.001             0.001    0.002
## butter                            0.001       0.001             0.001    0.001
## marinated meats                   0.001       0.002             0.001    0.001
## napkins                           0.001       0.002             0.001    0.001
## halal meat                        0.001       0.001             0.001    0.001
## chocolate                         0.001       0.001             0.001    0.002
## frozen vegetables                 0.001       0.002             0.002    0.001
## chicken                           0.001       0.001             0.001    0.001
## white bread                       0.001       0.001             0.000    0.001
## cream cheese                      0.001       0.002             0.001    0.001
## waffles                           0.000       0.001             0.001    0.001
## dessert                           0.000       0.001             0.001    0.002
## salty snack                       0.001       0.001             0.001    0.001
## long life bakery product          0.001       0.001             0.000    0.001
## berries                           0.001       0.001             0.001    0.002
## hamburger meat                    0.001       0.001             0.000    0.001
## sugar                             0.001       0.001             0.000    0.001
## hygiene articles                  0.001       0.001             0.001    0.000
## UHT-milk                          0.001       0.001             0.001    0.001
## onions                            0.001       0.001             0.001    0.001
## candy                             0.000       0.001             0.001    0.001
## specialty chocolate               0.001       0.000             0.001    0.001
## butter milk                       0.000       0.001             0.000    0.000
## oil                               0.001       0.001             0.001    0.001
## frozen meals                      0.001       0.001             0.001    0.001
## misc. beverages                   0.001       0.001             0.000    0.001
## specialty bar                     0.000       0.000             0.001    0.001
## ham                               0.001       0.001             0.001    0.001
## beverages                         0.001       0.000             0.000    0.001
## meat                              0.000       0.001             0.001    0.001
## ice cream                         0.000       0.001             0.000    0.000
## sliced cheese                     0.001       0.001             0.000    0.000
## hard cheese                       0.000       0.001             0.001    0.000
## noodles                           0.000       0.000             0.000    0.000
## grapes                            0.001       0.000             0.001    0.000
## cat food                          0.000       0.001             0.000    0.001
## chewing gum                       0.000       0.000             0.000    0.000
## soda                              0.000       0.000             0.000    0.001
## detergent                         0.001       0.000             0.001    0.001
## red/blush wine                    0.000       0.000             0.000    0.000
## white wine                        0.000       0.000             0.000    0.000
## turkey                            0.000       0.000             0.000    0.000
## dishes                            0.000       0.000             0.000    0.000
## bottled water                     0.000       0.000             0.000    0.000
## flour                             0.000       0.001             0.000    0.000
## semi-finished bread               0.001       0.000             0.001    0.001
## baking powder                     0.000       0.000             0.001    0.000
## pickled vegetables                0.000       0.001             0.001    0.000
## herbs                             0.001       0.001             0.000    0.000
## tropical herbs                    0.000       0.000             0.000    0.000
## soft cheese                       0.000       0.001             0.000    0.000
## tea                               0.000       0.001             0.000    0.000
## processed cheese                  0.000       0.000             0.000    0.000
## sausage                           0.000       0.000             0.000    0.001
## pasta                             0.000       0.001             0.000    0.001
## citrus herbs                      0.000       0.000             0.000    0.000
## potted plants                     0.015       0.000             0.001    0.000
## canned fish                       0.000       0.014             0.001    0.000
## seasonal products                 0.001       0.001             0.014    0.001
## cake bar                          0.000       0.000             0.001    0.013
## carrots                           0.000       0.000             0.000    0.000
## mustard                           0.000       0.001             0.000    0.000
## packaged fruit/vegetables         0.000       0.000             0.000    0.000
## spread cheese                     0.000       0.000             0.000    0.000
## frozen dessert                    0.000       0.000             0.000    0.000
## frozen fish                       0.000       0.001             0.000    0.000
## cling film/bags                   0.000       0.001             0.000    0.000
## salt                              0.000       0.001             0.000    0.000
## liquor                            0.000       0.000             0.000    0.000
## canned vegetables                 0.000       0.000             0.000    0.001
## bottled beer                      0.000       0.000             0.000    0.000
## flower (seeds)                    0.000       0.000             0.000    0.000
## cooking oil                       0.000       0.000             0.000    0.000
## dish cleaner                      0.000       0.000             0.000    0.000
## condensed milk                    0.000       0.000             0.000    0.000
## roll products                     0.000       0.000             0.000    0.000
## photo/film                        0.000       0.000             0.000    0.000
## pet care                          0.000       0.000             0.000    0.000
## chocolate marshmallow             0.000       0.000             0.000    0.000
## herbs/vegetable juice             0.000       0.000             0.000    0.000
## whole milk                        0.000       0.000             0.000    0.000
## candles                           0.000       0.001             0.000    0.000
## mayonnaise                        0.000       0.001             0.000    0.000
## Instant food products             0.000       0.001             0.000    0.000
## sweet spreads                     0.000       0.000             0.000    0.000
## liquor (appetizer)                0.000       0.000             0.000    0.000
## specialty cheese                  0.000       0.001             0.000    0.000
## frozen potato products            0.000       0.000             0.000    0.000
## house keeping products            0.000       0.000             0.000    0.001
## dog food                          0.001       0.000             0.000    0.000
## soy                               0.000       0.000             0.000    0.000
## instant coffee                    0.000       0.000             0.000    0.000
## pip herbs                         0.000       0.000             0.000    0.000
## zwieback                          0.000       0.000             0.000    0.000
## finished products                 0.001       0.000             0.000    0.000
## popcorn                           0.000       0.000             0.000    0.000
## vinegar                           0.000       0.000             0.000    0.000
## soups                             0.000       0.001             0.000    0.000
## female sanitary products          0.000       0.000             0.000    0.000
## sparkling wine                    0.000       0.000             0.000    0.000
## dental care                       0.000       0.000             0.000    0.000
## cereals                           0.000       0.000             0.000    0.000
## kitchen towels                    0.000       0.000             0.000    0.000
## curd cheese                       0.000       0.000             0.000    0.000
## other vegetables                  0.000       0.000             0.000    0.000
## rolls/buns                        0.000       0.000             0.000    0.000
## softener                          0.000       0.000             0.000    0.000
## cleaner                           0.000       0.000             0.000    0.000
## spices                            0.000       0.000             0.000    0.000
## jam                               0.000       0.000             0.000    0.000
## sauces                            0.000       0.000             0.000    0.000
## rum                               0.000       0.000             0.000    0.000
## liver loaf                        0.000       0.000             0.000    0.000
## male cosmetics                    0.000       0.000             0.000    0.000
## meat spreads                      0.000       0.001             0.000    0.000
## packaged herbs/vegetables         0.000       0.000             0.000    0.000
## brandy                            0.000       0.000             0.000    0.000
## ketchup                           0.000       0.001             0.000    0.000
## abrasive cleaner                  0.000       0.000             0.000    0.000
## light bulbs                       0.000       0.000             0.000    0.000
## artif. sweetener                  0.000       0.000             0.000    0.000
## nuts/prunes                       0.000       0.000             0.000    0.000
## specialty fat                     0.000       0.000             0.000    0.000
## skin care                         0.000       0.000             0.000    0.000
## fish                              0.000       0.000             0.000    0.000
## potato products                   0.000       0.000             0.000    0.000
## root vegetables                   0.000       0.000             0.000    0.000
## snack products                    0.000       0.000             0.000    0.000
## nut snack                         0.000       0.000             0.000    0.000
## soap                              0.000       0.000             0.000    0.000
## syrup                             0.000       0.000             0.000    0.000
## bathroom cleaner                  0.000       0.000             0.000    0.000
## canned fruit                      0.000       0.000             0.000    0.000
## cookware                          0.000       0.000             0.000    0.000
## cooking chocolate                 0.000       0.000             0.000    0.000
## tidbits                           0.000       0.000             0.000    0.000
## cocoa drinks                      0.000       0.000             0.000    0.000
## pudding powder                    0.000       0.000             0.000    0.000
## ready soups                       0.000       0.000             0.000    0.000
## organic marinated meat            0.000       0.000             0.000    0.000
## flower soil/fertilizer            0.000       0.000             0.000    0.000
## organic products                  0.000       0.000             0.000    0.000
## pot plants                        0.000       0.000             0.000    0.000
## prosecco                          0.000       0.000             0.000    0.000
## frankfurter                       0.000       0.000             0.000    0.000
## decalcifier                       0.000       0.000             0.000    0.000
## honey                             0.000       0.000             0.000    0.000
## specialty vegetables              0.000       0.000             0.000    0.000
## cream                             0.000       0.000             0.000    0.000
## hair spray                        0.000       0.000             0.000    0.000
## frozen fruits                     0.000       0.000             0.000    0.000
## rubbing alcohol                   0.000       0.000             0.000    0.000
## liqueur                           0.000       0.000             0.000    0.000
## make up remover                   0.000       0.000             0.000    0.000
## salad dressing                    0.000       0.000             0.000    0.000
## frozen chicken                    0.000       0.000             0.000    0.000
## whisky                            0.000       0.000             0.000    0.000
## baby cosmetics                    0.000       0.000             0.000    0.000
## toilet cleaner                    0.000       0.000             0.000    0.000
## bags                              0.000       0.000             0.000    0.000
## canned herbs                      0.000       0.000             0.000    0.000
## kitchen utensil                   0.000       0.000             0.000    0.000
## preservation products             0.000       0.000             0.000    0.000
## baby food                         0.000       0.000             0.000    0.000
## frozen herbss                     0.000       0.000             0.000    0.000
## organic sausage                   0.000       0.000             0.000    0.000
## sound storage medium              0.000       0.000             0.000    0.000
##                           carrots mustard packaged fruit/vegetables
## rice                        0.006   0.005                     0.004
## veggies                     0.000   0.003                     0.003
## loaf                        0.000   0.004                     0.002
## coke                        0.000   0.002                     0.002
## yogurt                      0.003   0.002                     0.002
## vegetables                  0.005   0.003                     0.003
## mineral water               0.000   0.002                     0.002
## Plastic bags                0.001   0.002                     0.001
## tropical fruit              0.000   0.002                     0.002
## marinated meat              0.000   0.002                     0.002
## pies/pasties                0.000   0.001                     0.002
## newspapers                  0.000   0.002                     0.001
## citrus                      0.000   0.002                     0.002
## whipped/sour cream          0.002   0.001                     0.001
## heinken                     0.000   0.001                     0.001
## green tea                   0.000   0.001                     0.001
## pip fruit                   0.000   0.001                     0.001
## brown bread                 0.001   0.001                     0.001
## fruit/vegetable juice       0.000   0.002                     0.001
## domestic eggs               0.002   0.002                     0.001
## coffee                      0.002   0.002                     0.001
## margarine                   0.001   0.001                     0.001
## beef                        0.002   0.002                     0.001
## curd                        0.001   0.001                     0.001
## butter                      0.002   0.001                     0.001
## marinated meats             0.000   0.002                     0.001
## napkins                     0.001   0.001                     0.001
## halal meat                  0.000   0.001                     0.001
## chocolate                   0.000   0.002                     0.000
## frozen vegetables           0.001   0.001                     0.002
## chicken                     0.001   0.001                     0.001
## white bread                 0.001   0.001                     0.001
## cream cheese                0.001   0.001                     0.000
## waffles                     0.000   0.001                     0.000
## dessert                     0.001   0.001                     0.001
## salty snack                 0.000   0.001                     0.000
## long life bakery product    0.000   0.001                     0.000
## berries                     0.002   0.001                     0.001
## hamburger meat              0.001   0.001                     0.001
## sugar                       0.000   0.001                     0.001
## hygiene articles            0.001   0.001                     0.000
## UHT-milk                    0.000   0.001                     0.001
## onions                      0.001   0.001                     0.001
## candy                       0.001   0.000                     0.001
## specialty chocolate         0.000   0.001                     0.000
## butter milk                 0.000   0.001                     0.000
## oil                         0.000   0.002                     0.001
## frozen meals                0.000   0.000                     0.000
## misc. beverages             0.000   0.001                     0.000
## specialty bar               0.000   0.001                     0.000
## ham                         0.000   0.001                     0.000
## beverages                   0.001   0.000                     0.000
## meat                        0.001   0.000                     0.000
## ice cream                   0.000   0.000                     0.000
## sliced cheese               0.001   0.001                     0.001
## hard cheese                 0.001   0.001                     0.000
## noodles                     0.004   0.000                     0.000
## grapes                      0.001   0.001                     0.000
## cat food                    0.000   0.001                     0.001
## chewing gum                 0.000   0.000                     0.000
## soda                        0.002   0.000                     0.000
## detergent                   0.001   0.000                     0.000
## red/blush wine              0.000   0.000                     0.000
## white wine                  0.000   0.000                     0.000
## turkey                      0.002   0.000                     0.000
## dishes                      0.000   0.000                     0.000
## bottled water               0.002   0.000                     0.000
## flour                       0.001   0.001                     0.000
## semi-finished bread         0.000   0.000                     0.000
## baking powder               0.000   0.000                     0.000
## pickled vegetables          0.000   0.001                     0.000
## herbs                       0.001   0.000                     0.001
## tropical herbs              0.003   0.000                     0.000
## soft cheese                 0.000   0.001                     0.000
## tea                         0.002   0.001                     0.000
## processed cheese            0.000   0.000                     0.000
## sausage                     0.002   0.000                     0.000
## pasta                       0.000   0.000                     0.000
## citrus herbs                0.002   0.000                     0.000
## potted plants               0.000   0.000                     0.000
## canned fish                 0.000   0.001                     0.000
## seasonal products           0.000   0.000                     0.000
## cake bar                    0.000   0.000                     0.000
## carrots                     0.013   0.000                     0.000
## mustard                     0.000   0.012                     0.000
## packaged fruit/vegetables   0.000   0.000                     0.011
## spread cheese               0.000   0.000                     0.000
## frozen dessert              0.000   0.000                     0.000
## frozen fish                 0.000   0.000                     0.000
## cling film/bags             0.000   0.000                     0.000
## salt                        0.000   0.000                     0.000
## liquor                      0.000   0.000                     0.000
## canned vegetables           0.000   0.000                     0.000
## bottled beer                0.001   0.000                     0.000
## flower (seeds)              0.000   0.000                     0.000
## cooking oil                 0.001   0.000                     0.000
## dish cleaner                0.000   0.001                     0.000
## condensed milk              0.000   0.000                     0.000
## roll products               0.000   0.000                     0.000
## photo/film                  0.000   0.000                     0.000
## pet care                    0.000   0.000                     0.000
## chocolate marshmallow       0.000   0.001                     0.000
## herbs/vegetable juice       0.001   0.000                     0.000
## whole milk                  0.000   0.000                     0.000
## candles                     0.000   0.000                     0.000
## mayonnaise                  0.000   0.001                     0.000
## Instant food products       0.000   0.000                     0.000
## sweet spreads               0.000   0.000                     0.000
## liquor (appetizer)          0.000   0.000                     0.000
## specialty cheese            0.000   0.000                     0.000
## frozen potato products      0.000   0.000                     0.000
## house keeping products      0.000   0.000                     0.000
## dog food                    0.000   0.000                     0.000
## soy                         0.001   0.000                     0.000
## instant coffee              0.000   0.000                     0.000
## pip herbs                   0.001   0.000                     0.000
## zwieback                    0.000   0.000                     0.000
## finished products           0.000   0.000                     0.000
## popcorn                     0.000   0.000                     0.000
## vinegar                     0.000   0.000                     0.000
## soups                       0.000   0.000                     0.000
## female sanitary products    0.000   0.000                     0.000
## sparkling wine              0.000   0.000                     0.000
## dental care                 0.000   0.000                     0.000
## cereals                     0.000   0.000                     0.000
## kitchen towels              0.000   0.000                     0.000
## curd cheese                 0.000   0.000                     0.000
## other vegetables            0.000   0.000                     0.000
## rolls/buns                  0.000   0.000                     0.000
## softener                    0.000   0.000                     0.000
## cleaner                     0.000   0.000                     0.000
## spices                      0.000   0.000                     0.000
## jam                         0.000   0.000                     0.000
## sauces                      0.000   0.000                     0.000
## rum                         0.000   0.000                     0.000
## liver loaf                  0.000   0.000                     0.000
## male cosmetics              0.000   0.000                     0.000
## meat spreads                0.000   0.000                     0.000
## packaged herbs/vegetables   0.001   0.000                     0.000
## brandy                      0.000   0.000                     0.000
## ketchup                     0.000   0.001                     0.000
## abrasive cleaner            0.000   0.000                     0.000
## light bulbs                 0.000   0.000                     0.000
## artif. sweetener            0.000   0.000                     0.000
## nuts/prunes                 0.000   0.000                     0.000
## specialty fat               0.000   0.000                     0.000
## skin care                   0.000   0.000                     0.000
## fish                        0.000   0.000                     0.000
## potato products             0.000   0.000                     0.000
## root vegetables             0.000   0.000                     0.000
## snack products              0.000   0.000                     0.000
## nut snack                   0.000   0.000                     0.000
## soap                        0.000   0.000                     0.000
## syrup                       0.000   0.000                     0.000
## bathroom cleaner            0.000   0.000                     0.000
## canned fruit                0.000   0.000                     0.000
## cookware                    0.000   0.000                     0.000
## cooking chocolate           0.000   0.000                     0.000
## tidbits                     0.000   0.000                     0.000
## cocoa drinks                0.000   0.000                     0.000
## pudding powder              0.000   0.000                     0.000
## ready soups                 0.000   0.000                     0.000
## organic marinated meat      0.000   0.000                     0.000
## flower soil/fertilizer      0.000   0.000                     0.000
## organic products            0.000   0.000                     0.000
## pot plants                  0.000   0.000                     0.000
## prosecco                    0.000   0.000                     0.000
## frankfurter                 0.000   0.000                     0.000
## decalcifier                 0.000   0.000                     0.000
## honey                       0.000   0.000                     0.000
## specialty vegetables        0.000   0.000                     0.000
## cream                       0.000   0.000                     0.000
## hair spray                  0.000   0.000                     0.000
## frozen fruits               0.000   0.000                     0.000
## rubbing alcohol             0.000   0.000                     0.000
## liqueur                     0.000   0.000                     0.000
## make up remover             0.000   0.000                     0.000
## salad dressing              0.000   0.000                     0.000
## frozen chicken              0.000   0.000                     0.000
## whisky                      0.000   0.000                     0.000
## baby cosmetics              0.000   0.000                     0.000
## toilet cleaner              0.000   0.000                     0.000
## bags                        0.000   0.000                     0.000
## canned herbs                0.000   0.000                     0.000
## kitchen utensil             0.000   0.000                     0.000
## preservation products       0.000   0.000                     0.000
## baby food                   0.000   0.000                     0.000
## frozen herbss               0.000   0.000                     0.000
## organic sausage             0.000   0.000                     0.000
## sound storage medium        0.000   0.000                     0.000
##                           spread cheese frozen dessert frozen fish
## rice                              0.003          0.004       0.005
## veggies                           0.003          0.003       0.004
## loaf                              0.004          0.003       0.002
## coke                              0.003          0.002       0.001
## yogurt                            0.004          0.002       0.003
## vegetables                        0.002          0.003       0.003
## mineral water                     0.002          0.001       0.001
## Plastic bags                      0.002          0.001       0.001
## tropical fruit                    0.002          0.002       0.002
## marinated meat                    0.002          0.001       0.001
## pies/pasties                      0.002          0.002       0.001
## newspapers                        0.002          0.001       0.001
## citrus                            0.001          0.001       0.001
## whipped/sour cream                0.000          0.002       0.001
## heinken                           0.001          0.001       0.001
## green tea                         0.001          0.000       0.001
## pip fruit                         0.001          0.001       0.002
## brown bread                       0.002          0.001       0.001
## fruit/vegetable juice             0.001          0.001       0.001
## domestic eggs                     0.001          0.002       0.001
## coffee                            0.001          0.001       0.000
## margarine                         0.001          0.001       0.002
## beef                              0.001          0.001       0.001
## curd                              0.001          0.001       0.001
## butter                            0.001          0.001       0.001
## marinated meats                   0.001          0.001       0.002
## napkins                           0.001          0.001       0.001
## halal meat                        0.001          0.001       0.002
## chocolate                         0.001          0.001       0.001
## frozen vegetables                 0.001          0.002       0.002
## chicken                           0.001          0.001       0.001
## white bread                       0.001          0.001       0.001
## cream cheese                      0.001          0.001       0.001
## waffles                           0.001          0.001       0.001
## dessert                           0.001          0.001       0.000
## salty snack                       0.001          0.001       0.001
## long life bakery product          0.001          0.001       0.001
## berries                           0.001          0.000       0.001
## hamburger meat                    0.001          0.000       0.000
## sugar                             0.001          0.001       0.001
## hygiene articles                  0.001          0.001       0.001
## UHT-milk                          0.001          0.001       0.001
## onions                            0.001          0.001       0.001
## candy                             0.000          0.001       0.001
## specialty chocolate               0.000          0.000       0.000
## butter milk                       0.001          0.000       0.000
## oil                               0.000          0.001       0.001
## frozen meals                      0.000          0.002       0.001
## misc. beverages                   0.001          0.000       0.000
## specialty bar                     0.000          0.000       0.000
## ham                               0.001          0.000       0.001
## beverages                         0.000          0.000       0.000
## meat                              0.000          0.000       0.000
## ice cream                         0.000          0.001       0.000
## sliced cheese                     0.000          0.001       0.001
## hard cheese                       0.001          0.001       0.000
## noodles                           0.001          0.000       0.000
## grapes                            0.000          0.001       0.000
## cat food                          0.000          0.000       0.000
## chewing gum                       0.000          0.000       0.000
## soda                              0.000          0.000       0.000
## detergent                         0.000          0.000       0.000
## red/blush wine                    0.000          0.000       0.000
## white wine                        0.001          0.000       0.000
## turkey                            0.000          0.000       0.000
## dishes                            0.000          0.000       0.000
## bottled water                     0.000          0.000       0.000
## flour                             0.000          0.001       0.001
## semi-finished bread               0.000          0.001       0.000
## baking powder                     0.000          0.001       0.001
## pickled vegetables                0.000          0.000       0.001
## herbs                             0.000          0.000       0.000
## tropical herbs                    0.000          0.000       0.000
## soft cheese                       0.000          0.000       0.001
## tea                               0.000          0.000       0.000
## processed cheese                  0.000          0.000       0.000
## sausage                           0.000          0.000       0.000
## pasta                             0.000          0.000       0.000
## citrus herbs                      0.000          0.000       0.000
## potted plants                     0.000          0.000       0.000
## canned fish                       0.000          0.000       0.001
## seasonal products                 0.000          0.000       0.000
## cake bar                          0.000          0.000       0.000
## carrots                           0.000          0.000       0.000
## mustard                           0.000          0.000       0.000
## packaged fruit/vegetables         0.000          0.000       0.000
## spread cheese                     0.011          0.000       0.000
## frozen dessert                    0.000          0.011       0.000
## frozen fish                       0.000          0.000       0.011
## cling film/bags                   0.000          0.000       0.000
## salt                              0.000          0.000       0.000
## liquor                            0.000          0.000       0.000
## canned vegetables                 0.000          0.000       0.000
## bottled beer                      0.000          0.000       0.000
## flower (seeds)                    0.000          0.000       0.000
## cooking oil                       0.000          0.000       0.000
## dish cleaner                      0.000          0.000       0.000
## condensed milk                    0.000          0.000       0.000
## roll products                     0.000          0.000       0.000
## photo/film                        0.000          0.000       0.000
## pet care                          0.000          0.000       0.000
## chocolate marshmallow             0.000          0.000       0.000
## herbs/vegetable juice             0.000          0.000       0.000
## whole milk                        0.000          0.000       0.000
## candles                           0.000          0.000       0.000
## mayonnaise                        0.000          0.000       0.000
## Instant food products             0.000          0.000       0.000
## sweet spreads                     0.000          0.001       0.000
## liquor (appetizer)                0.000          0.000       0.000
## specialty cheese                  0.000          0.000       0.000
## frozen potato products            0.000          0.000       0.000
## house keeping products            0.000          0.000       0.000
## dog food                          0.000          0.000       0.000
## soy                               0.000          0.000       0.000
## instant coffee                    0.000          0.000       0.000
## pip herbs                         0.000          0.000       0.000
## zwieback                          0.000          0.000       0.000
## finished products                 0.000          0.000       0.000
## popcorn                           0.000          0.000       0.000
## vinegar                           0.000          0.000       0.000
## soups                             0.000          0.000       0.000
## female sanitary products          0.000          0.000       0.000
## sparkling wine                    0.000          0.000       0.000
## dental care                       0.000          0.000       0.000
## cereals                           0.000          0.000       0.000
## kitchen towels                    0.000          0.000       0.000
## curd cheese                       0.000          0.000       0.000
## other vegetables                  0.000          0.000       0.000
## rolls/buns                        0.000          0.000       0.000
## softener                          0.000          0.000       0.000
## cleaner                           0.000          0.000       0.000
## spices                            0.000          0.000       0.000
## jam                               0.000          0.000       0.000
## sauces                            0.000          0.000       0.000
## rum                               0.000          0.000       0.000
## liver loaf                        0.000          0.000       0.000
## male cosmetics                    0.000          0.000       0.000
## meat spreads                      0.000          0.000       0.000
## packaged herbs/vegetables         0.000          0.000       0.000
## brandy                            0.000          0.000       0.000
## ketchup                           0.000          0.000       0.000
## abrasive cleaner                  0.000          0.000       0.000
## light bulbs                       0.000          0.000       0.000
## artif. sweetener                  0.000          0.000       0.000
## nuts/prunes                       0.000          0.000       0.000
## specialty fat                     0.000          0.000       0.000
## skin care                         0.000          0.000       0.000
## fish                              0.000          0.000       0.000
## potato products                   0.000          0.000       0.000
## root vegetables                   0.000          0.000       0.000
## snack products                    0.000          0.000       0.000
## nut snack                         0.000          0.000       0.000
## soap                              0.000          0.000       0.000
## syrup                             0.000          0.000       0.000
## bathroom cleaner                  0.000          0.000       0.000
## canned fruit                      0.000          0.000       0.000
## cookware                          0.000          0.000       0.000
## cooking chocolate                 0.000          0.000       0.000
## tidbits                           0.000          0.000       0.000
## cocoa drinks                      0.000          0.000       0.000
## pudding powder                    0.000          0.000       0.000
## ready soups                       0.000          0.000       0.000
## organic marinated meat            0.000          0.000       0.000
## flower soil/fertilizer            0.000          0.000       0.000
## organic products                  0.000          0.000       0.000
## pot plants                        0.000          0.000       0.000
## prosecco                          0.000          0.000       0.000
## frankfurter                       0.000          0.000       0.000
## decalcifier                       0.000          0.000       0.000
## honey                             0.000          0.000       0.000
## specialty vegetables              0.000          0.000       0.000
## cream                             0.000          0.000       0.000
## hair spray                        0.000          0.000       0.000
## frozen fruits                     0.000          0.000       0.000
## rubbing alcohol                   0.000          0.000       0.000
## liqueur                           0.000          0.000       0.000
## make up remover                   0.000          0.000       0.000
## salad dressing                    0.000          0.000       0.000
## frozen chicken                    0.000          0.000       0.000
## whisky                            0.000          0.000       0.000
## baby cosmetics                    0.000          0.000       0.000
## toilet cleaner                    0.000          0.000       0.000
## bags                              0.000          0.000       0.000
## canned herbs                      0.000          0.000       0.000
## kitchen utensil                   0.000          0.000       0.000
## preservation products             0.000          0.000       0.000
## baby food                         0.000          0.000       0.000
## frozen herbss                     0.000          0.000       0.000
## organic sausage                   0.000          0.000       0.000
## sound storage medium              0.000          0.000       0.000
##                           cling film/bags  salt liquor canned vegetables
## rice                                0.004 0.004  0.001             0.004
## veggies                             0.003 0.003  0.001             0.004
## loaf                                0.002 0.002  0.001             0.002
## coke                                0.002 0.001  0.002             0.003
## yogurt                              0.003 0.002  0.001             0.003
## vegetables                          0.002 0.003  0.001             0.002
## mineral water                       0.002 0.001  0.001             0.001
## Plastic bags                        0.001 0.001  0.002             0.001
## tropical fruit                      0.002 0.001  0.000             0.002
## marinated meat                      0.001 0.002  0.001             0.001
## pies/pasties                        0.001 0.001  0.000             0.001
## newspapers                          0.001 0.001  0.001             0.001
## citrus                              0.001 0.001  0.000             0.002
## whipped/sour cream                  0.002 0.002  0.000             0.002
## heinken                             0.001 0.002  0.004             0.000
## green tea                           0.001 0.000  0.001             0.001
## pip fruit                           0.001 0.001  0.000             0.002
## brown bread                         0.001 0.001  0.001             0.001
## fruit/vegetable juice               0.001 0.001  0.000             0.001
## domestic eggs                       0.001 0.002  0.000             0.002
## coffee                              0.002 0.001  0.000             0.001
## margarine                           0.001 0.001  0.000             0.001
## beef                                0.001 0.001  0.000             0.001
## curd                                0.001 0.001  0.000             0.001
## butter                              0.001 0.002  0.001             0.001
## marinated meats                     0.001 0.001  0.000             0.001
## napkins                             0.002 0.001  0.001             0.001
## halal meat                          0.000 0.001  0.001             0.001
## chocolate                           0.001 0.001  0.000             0.001
## frozen vegetables                   0.002 0.001  0.000             0.001
## chicken                             0.001 0.001  0.000             0.001
## white bread                         0.001 0.001  0.000             0.001
## cream cheese                        0.001 0.001  0.000             0.001
## waffles                             0.000 0.001  0.000             0.001
## dessert                             0.001 0.001  0.000             0.001
## salty snack                         0.000 0.001  0.000             0.001
## long life bakery product            0.001 0.001  0.000             0.000
## berries                             0.001 0.000  0.001             0.000
## hamburger meat                      0.001 0.001  0.000             0.002
## sugar                               0.001 0.002  0.000             0.001
## hygiene articles                    0.001 0.001  0.000             0.001
## UHT-milk                            0.001 0.001  0.000             0.001
## onions                              0.001 0.001  0.000             0.001
## candy                               0.001 0.000  0.001             0.000
## specialty chocolate                 0.000 0.000  0.000             0.001
## butter milk                         0.000 0.001  0.000             0.000
## oil                                 0.001 0.001  0.000             0.001
## frozen meals                        0.000 0.000  0.000             0.000
## misc. beverages                     0.000 0.000  0.000             0.001
## specialty bar                       0.000 0.000  0.000             0.000
## ham                                 0.000 0.000  0.000             0.001
## beverages                           0.000 0.000  0.000             0.000
## meat                                0.000 0.000  0.000             0.000
## ice cream                           0.001 0.000  0.000             0.000
## sliced cheese                       0.000 0.001  0.000             0.001
## hard cheese                         0.001 0.001  0.000             0.001
## noodles                             0.000 0.000  0.000             0.000
## grapes                              0.001 0.000  0.000             0.000
## cat food                            0.000 0.000  0.000             0.000
## chewing gum                         0.000 0.000  0.000             0.000
## soda                                0.000 0.000  0.000             0.000
## detergent                           0.000 0.000  0.000             0.000
## red/blush wine                      0.000 0.000  0.002             0.000
## white wine                          0.000 0.000  0.000             0.000
## turkey                              0.000 0.000  0.000             0.000
## dishes                              0.000 0.000  0.001             0.000
## bottled water                       0.000 0.001  0.000             0.000
## flour                               0.000 0.001  0.000             0.000
## semi-finished bread                 0.000 0.000  0.000             0.000
## baking powder                       0.001 0.000  0.000             0.000
## pickled vegetables                  0.000 0.000  0.001             0.000
## herbs                               0.000 0.000  0.000             0.000
## tropical herbs                      0.000 0.000  0.000             0.000
## soft cheese                         0.000 0.001  0.000             0.000
## tea                                 0.001 0.000  0.000             0.000
## processed cheese                    0.000 0.000  0.000             0.000
## sausage                             0.000 0.000  0.000             0.000
## pasta                               0.000 0.001  0.000             0.001
## citrus herbs                        0.000 0.000  0.000             0.000
## potted plants                       0.000 0.000  0.000             0.000
## canned fish                         0.001 0.001  0.000             0.000
## seasonal products                   0.000 0.000  0.000             0.000
## cake bar                            0.000 0.000  0.000             0.001
## carrots                             0.000 0.000  0.000             0.000
## mustard                             0.000 0.000  0.000             0.000
## packaged fruit/vegetables           0.000 0.000  0.000             0.000
## spread cheese                       0.000 0.000  0.000             0.000
## frozen dessert                      0.000 0.000  0.000             0.000
## frozen fish                         0.000 0.000  0.000             0.000
## cling film/bags                     0.011 0.000  0.000             0.000
## salt                                0.000 0.011  0.000             0.001
## liquor                              0.000 0.000  0.011             0.000
## canned vegetables                   0.000 0.001  0.000             0.010
## bottled beer                        0.000 0.000  0.000             0.000
## flower (seeds)                      0.000 0.000  0.000             0.000
## cooking oil                         0.000 0.000  0.000             0.000
## dish cleaner                        0.001 0.000  0.000             0.000
## condensed milk                      0.001 0.000  0.000             0.000
## roll products                       0.000 0.000  0.000             0.000
## photo/film                          0.000 0.000  0.000             0.000
## pet care                            0.000 0.000  0.000             0.000
## chocolate marshmallow               0.000 0.000  0.000             0.000
## herbs/vegetable juice               0.000 0.000  0.000             0.000
## whole milk                          0.000 0.000  0.000             0.000
## candles                             0.000 0.000  0.000             0.000
## mayonnaise                          0.000 0.000  0.000             0.000
## Instant food products               0.000 0.000  0.000             0.000
## sweet spreads                       0.000 0.000  0.000             0.000
## liquor (appetizer)                  0.000 0.000  0.000             0.000
## specialty cheese                    0.000 0.000  0.000             0.001
## frozen potato products              0.000 0.000  0.000             0.000
## house keeping products              0.001 0.000  0.000             0.000
## dog food                            0.000 0.000  0.000             0.000
## soy                                 0.000 0.000  0.000             0.000
## instant coffee                      0.000 0.000  0.000             0.000
## pip herbs                           0.000 0.000  0.000             0.000
## zwieback                            0.000 0.000  0.000             0.000
## finished products                   0.000 0.000  0.000             0.000
## popcorn                             0.000 0.000  0.000             0.000
## vinegar                             0.000 0.000  0.000             0.000
## soups                               0.000 0.000  0.000             0.000
## female sanitary products            0.000 0.000  0.000             0.000
## sparkling wine                      0.000 0.000  0.000             0.000
## dental care                         0.000 0.000  0.000             0.000
## cereals                             0.000 0.000  0.000             0.000
## kitchen towels                      0.000 0.000  0.000             0.000
## curd cheese                         0.000 0.000  0.000             0.000
## other vegetables                    0.000 0.000  0.000             0.000
## rolls/buns                          0.000 0.000  0.000             0.000
## softener                            0.000 0.000  0.000             0.000
## cleaner                             0.000 0.000  0.000             0.000
## spices                              0.000 0.000  0.000             0.000
## jam                                 0.000 0.001  0.000             0.000
## sauces                              0.000 0.000  0.000             0.000
## rum                                 0.001 0.000  0.000             0.000
## liver loaf                          0.000 0.000  0.000             0.000
## male cosmetics                      0.000 0.000  0.000             0.000
## meat spreads                        0.000 0.000  0.000             0.000
## packaged herbs/vegetables           0.000 0.000  0.000             0.000
## brandy                              0.000 0.000  0.000             0.000
## ketchup                             0.000 0.000  0.000             0.000
## abrasive cleaner                    0.000 0.000  0.000             0.000
## light bulbs                         0.000 0.000  0.000             0.000
## artif. sweetener                    0.000 0.000  0.000             0.000
## nuts/prunes                         0.000 0.000  0.000             0.000
## specialty fat                       0.000 0.000  0.000             0.000
## skin care                           0.000 0.000  0.000             0.000
## fish                                0.000 0.000  0.000             0.000
## potato products                     0.000 0.000  0.000             0.000
## root vegetables                     0.000 0.000  0.000             0.000
## snack products                      0.000 0.000  0.000             0.000
## nut snack                           0.000 0.000  0.000             0.000
## soap                                0.000 0.000  0.000             0.000
## syrup                               0.000 0.000  0.000             0.000
## bathroom cleaner                    0.000 0.000  0.000             0.000
## canned fruit                        0.000 0.000  0.000             0.000
## cookware                            0.000 0.000  0.000             0.000
## cooking chocolate                   0.000 0.000  0.000             0.000
## tidbits                             0.000 0.000  0.000             0.000
## cocoa drinks                        0.000 0.000  0.000             0.000
## pudding powder                      0.000 0.000  0.000             0.000
## ready soups                         0.000 0.000  0.000             0.000
## organic marinated meat              0.000 0.000  0.000             0.000
## flower soil/fertilizer              0.000 0.000  0.000             0.000
## organic products                    0.000 0.000  0.000             0.000
## pot plants                          0.000 0.000  0.000             0.000
## prosecco                            0.000 0.000  0.000             0.000
## frankfurter                         0.000 0.000  0.000             0.000
## decalcifier                         0.000 0.000  0.000             0.000
## honey                               0.000 0.000  0.000             0.000
## specialty vegetables                0.000 0.000  0.000             0.000
## cream                               0.000 0.000  0.000             0.000
## hair spray                          0.000 0.000  0.000             0.000
## frozen fruits                       0.000 0.000  0.000             0.000
## rubbing alcohol                     0.000 0.000  0.000             0.000
## liqueur                             0.000 0.000  0.000             0.000
## make up remover                     0.000 0.000  0.000             0.000
## salad dressing                      0.000 0.000  0.000             0.000
## frozen chicken                      0.000 0.000  0.000             0.000
## whisky                              0.000 0.000  0.000             0.000
## baby cosmetics                      0.000 0.000  0.000             0.000
## toilet cleaner                      0.000 0.000  0.000             0.000
## bags                                0.000 0.000  0.000             0.000
## canned herbs                        0.000 0.000  0.000             0.000
## kitchen utensil                     0.000 0.000  0.000             0.000
## preservation products               0.000 0.000  0.000             0.000
## baby food                           0.000 0.000  0.000             0.000
## frozen herbss                       0.000 0.000  0.000             0.000
## organic sausage                     0.000 0.000  0.000             0.000
## sound storage medium                0.000 0.000  0.000             0.000
##                           bottled beer flower (seeds) cooking oil dish cleaner
## rice                             0.003          0.004       0.001        0.003
## veggies                          0.000          0.003       0.000        0.002
## loaf                             0.000          0.002       0.000        0.002
## coke                             0.000          0.001       0.000        0.002
## yogurt                           0.001          0.001       0.001        0.002
## vegetables                       0.002          0.002       0.001        0.002
## mineral water                    0.000          0.001       0.000        0.001
## Plastic bags                     0.001          0.001       0.001        0.001
## tropical fruit                   0.000          0.001       0.000        0.001
## marinated meat                   0.000          0.001       0.000        0.001
## pies/pasties                     0.000          0.001       0.000        0.001
## newspapers                       0.001          0.001       0.001        0.000
## citrus                           0.000          0.001       0.000        0.001
## whipped/sour cream               0.000          0.002       0.001        0.002
## heinken                          0.000          0.001       0.000        0.000
## green tea                        0.000          0.001       0.000        0.001
## pip fruit                        0.000          0.001       0.000        0.001
## brown bread                      0.001          0.001       0.000        0.001
## fruit/vegetable juice            0.000          0.000       0.000        0.000
## domestic eggs                    0.000          0.001       0.000        0.001
## coffee                           0.001          0.001       0.001        0.001
## margarine                        0.000          0.001       0.000        0.001
## beef                             0.001          0.001       0.000        0.001
## curd                             0.001          0.000       0.001        0.001
## butter                           0.000          0.002       0.000        0.001
## marinated meats                  0.000          0.001       0.000        0.001
## napkins                          0.001          0.001       0.001        0.002
## halal meat                       0.000          0.001       0.000        0.001
## chocolate                        0.000          0.001       0.000        0.001
## frozen vegetables                0.001          0.001       0.000        0.001
## chicken                          0.000          0.001       0.001        0.001
## white bread                      0.000          0.000       0.000        0.001
## cream cheese                     0.000          0.000       0.000        0.000
## waffles                          0.000          0.000       0.000        0.001
## dessert                          0.000          0.001       0.000        0.000
## salty snack                      0.000          0.000       0.000        0.000
## long life bakery product         0.000          0.000       0.000        0.001
## berries                          0.000          0.001       0.000        0.001
## hamburger meat                   0.000          0.001       0.000        0.001
## sugar                            0.000          0.000       0.000        0.001
## hygiene articles                 0.000          0.000       0.000        0.001
## UHT-milk                         0.000          0.000       0.000        0.001
## onions                           0.001          0.000       0.001        0.001
## candy                            0.000          0.000       0.000        0.001
## specialty chocolate              0.000          0.000       0.000        0.001
## butter milk                      0.000          0.000       0.000        0.001
## oil                              0.000          0.001       0.000        0.001
## frozen meals                     0.000          0.000       0.000        0.000
## misc. beverages                  0.000          0.000       0.000        0.000
## specialty bar                    0.000          0.000       0.000        0.001
## ham                              0.000          0.000       0.000        0.000
## beverages                        0.000          0.001       0.000        0.000
## meat                             0.000          0.000       0.000        0.001
## ice cream                        0.000          0.000       0.000        0.001
## sliced cheese                    0.000          0.000       0.000        0.000
## hard cheese                      0.000          0.000       0.000        0.001
## noodles                          0.002          0.000       0.002        0.000
## grapes                           0.000          0.000       0.000        0.001
## cat food                         0.000          0.000       0.000        0.001
## chewing gum                      0.000          0.000       0.000        0.000
## soda                             0.002          0.000       0.002        0.000
## detergent                        0.000          0.001       0.000        0.001
## red/blush wine                   0.000          0.000       0.000        0.000
## white wine                       0.000          0.000       0.000        0.000
## turkey                           0.001          0.000       0.001        0.000
## dishes                           0.000          0.000       0.000        0.001
## bottled water                    0.002          0.000       0.001        0.000
## flour                            0.000          0.000       0.000        0.000
## semi-finished bread              0.000          0.000       0.000        0.000
## baking powder                    0.000          0.001       0.000        0.000
## pickled vegetables               0.000          0.000       0.000        0.000
## herbs                            0.000          0.000       0.000        0.001
## tropical herbs                   0.001          0.000       0.001        0.000
## soft cheese                      0.000          0.000       0.000        0.001
## tea                              0.001          0.000       0.001        0.000
## processed cheese                 0.000          0.000       0.000        0.000
## sausage                          0.001          0.000       0.001        0.000
## pasta                            0.000          0.000       0.000        0.000
## citrus herbs                     0.001          0.000       0.001        0.000
## potted plants                    0.000          0.000       0.000        0.000
## canned fish                      0.000          0.000       0.000        0.000
## seasonal products                0.000          0.000       0.000        0.000
## cake bar                         0.000          0.000       0.000        0.000
## carrots                          0.001          0.000       0.001        0.000
## mustard                          0.000          0.000       0.000        0.001
## packaged fruit/vegetables        0.000          0.000       0.000        0.000
## spread cheese                    0.000          0.000       0.000        0.000
## frozen dessert                   0.000          0.000       0.000        0.000
## frozen fish                      0.000          0.000       0.000        0.000
## cling film/bags                  0.000          0.000       0.000        0.001
## salt                             0.000          0.000       0.000        0.000
## liquor                           0.000          0.000       0.000        0.000
## canned vegetables                0.000          0.000       0.000        0.000
## bottled beer                     0.010          0.000       0.001        0.000
## flower (seeds)                   0.000          0.010       0.000        0.000
## cooking oil                      0.001          0.000       0.010        0.000
## dish cleaner                     0.000          0.000       0.000        0.010
## condensed milk                   0.000          0.000       0.000        0.000
## roll products                    0.000          0.000       0.000        0.000
## photo/film                       0.000          0.000       0.000        0.000
## pet care                         0.000          0.000       0.000        0.000
## chocolate marshmallow            0.000          0.000       0.000        0.000
## herbs/vegetable juice            0.001          0.000       0.001        0.000
## whole milk                       0.001          0.000       0.000        0.000
## candles                          0.000          0.000       0.000        0.000
## mayonnaise                       0.000          0.000       0.000        0.001
## Instant food products            0.000          0.000       0.000        0.000
## sweet spreads                    0.000          0.000       0.000        0.000
## liquor (appetizer)               0.001          0.000       0.000        0.000
## specialty cheese                 0.000          0.000       0.000        0.000
## frozen potato products           0.000          0.000       0.000        0.000
## house keeping products           0.000          0.000       0.000        0.000
## dog food                         0.000          0.000       0.000        0.000
## soy                              0.000          0.000       0.000        0.000
## instant coffee                   0.000          0.000       0.000        0.000
## pip herbs                        0.000          0.000       0.000        0.000
## zwieback                         0.000          0.000       0.000        0.000
## finished products                0.000          0.000       0.000        0.000
## popcorn                          0.000          0.000       0.000        0.000
## vinegar                          0.000          0.000       0.000        0.000
## soups                            0.000          0.000       0.000        0.000
## female sanitary products         0.000          0.000       0.000        0.000
## sparkling wine                   0.000          0.000       0.000        0.000
## dental care                      0.000          0.000       0.000        0.000
## cereals                          0.000          0.000       0.000        0.000
## kitchen towels                   0.000          0.000       0.000        0.000
## curd cheese                      0.000          0.000       0.000        0.000
## other vegetables                 0.000          0.000       0.000        0.000
## rolls/buns                       0.001          0.000       0.000        0.000
## softener                         0.000          0.000       0.000        0.000
## cleaner                          0.000          0.000       0.000        0.000
## spices                           0.000          0.000       0.000        0.000
## jam                              0.000          0.000       0.000        0.000
## sauces                           0.000          0.000       0.000        0.000
## rum                              0.000          0.000       0.000        0.000
## liver loaf                       0.000          0.000       0.000        0.000
## male cosmetics                   0.000          0.000       0.000        0.000
## meat spreads                     0.000          0.000       0.000        0.000
## packaged herbs/vegetables        0.000          0.000       0.000        0.000
## brandy                           0.000          0.000       0.000        0.000
## ketchup                          0.000          0.000       0.000        0.000
## abrasive cleaner                 0.000          0.000       0.000        0.000
## light bulbs                      0.000          0.000       0.000        0.000
## artif. sweetener                 0.000          0.000       0.000        0.000
## nuts/prunes                      0.000          0.000       0.000        0.000
## specialty fat                    0.000          0.000       0.000        0.000
## skin care                        0.000          0.000       0.000        0.000
## fish                             0.000          0.000       0.000        0.000
## potato products                  0.000          0.000       0.000        0.000
## root vegetables                  0.000          0.000       0.000        0.000
## snack products                   0.000          0.000       0.000        0.000
## nut snack                        0.000          0.000       0.000        0.000
## soap                             0.000          0.000       0.000        0.000
## syrup                            0.000          0.000       0.000        0.000
## bathroom cleaner                 0.000          0.000       0.000        0.000
## canned fruit                     0.000          0.000       0.000        0.000
## cookware                         0.000          0.000       0.000        0.000
## cooking chocolate                0.000          0.000       0.000        0.000
## tidbits                          0.000          0.000       0.000        0.000
## cocoa drinks                     0.000          0.000       0.000        0.000
## pudding powder                   0.000          0.000       0.000        0.000
## ready soups                      0.000          0.000       0.000        0.000
## organic marinated meat           0.000          0.000       0.000        0.000
## flower soil/fertilizer           0.000          0.000       0.000        0.000
## organic products                 0.000          0.000       0.000        0.000
## pot plants                       0.000          0.000       0.000        0.000
## prosecco                         0.000          0.000       0.000        0.000
## frankfurter                      0.000          0.000       0.000        0.000
## decalcifier                      0.000          0.000       0.000        0.000
## honey                            0.000          0.000       0.000        0.000
## specialty vegetables             0.000          0.000       0.000        0.000
## cream                            0.000          0.000       0.000        0.000
## hair spray                       0.000          0.000       0.000        0.000
## frozen fruits                    0.000          0.000       0.000        0.000
## rubbing alcohol                  0.000          0.000       0.000        0.000
## liqueur                          0.000          0.000       0.000        0.000
## make up remover                  0.000          0.000       0.000        0.000
## salad dressing                   0.000          0.000       0.000        0.000
## frozen chicken                   0.000          0.000       0.000        0.000
## whisky                           0.000          0.000       0.000        0.000
## baby cosmetics                   0.000          0.000       0.000        0.000
## toilet cleaner                   0.000          0.000       0.000        0.000
## bags                             0.000          0.000       0.000        0.000
## canned herbs                     0.000          0.000       0.000        0.000
## kitchen utensil                  0.000          0.000       0.000        0.000
## preservation products            0.000          0.000       0.000        0.000
## baby food                        0.000          0.000       0.000        0.000
## frozen herbss                    0.000          0.000       0.000        0.000
## organic sausage                  0.000          0.000       0.000        0.000
## sound storage medium             0.000          0.000       0.000        0.000
##                           condensed milk roll products photo/film pet care
## rice                               0.002         0.004      0.002    0.002
## veggies                            0.002         0.004      0.001    0.002
## loaf                               0.002         0.002      0.001    0.001
## coke                               0.002         0.001      0.001    0.002
## yogurt                             0.002         0.002      0.001    0.001
## vegetables                         0.002         0.003      0.001    0.001
## mineral water                      0.001         0.001      0.000    0.001
## Plastic bags                       0.002         0.001      0.000    0.001
## tropical fruit                     0.001         0.002      0.000    0.001
## marinated meat                     0.001         0.002      0.000    0.001
## pies/pasties                       0.001         0.001      0.000    0.000
## newspapers                         0.001         0.001      0.001    0.001
## citrus                             0.001         0.001      0.000    0.001
## whipped/sour cream                 0.001         0.002      0.001    0.001
## heinken                            0.001         0.002      0.000    0.001
## green tea                          0.000         0.001      0.000    0.000
## pip fruit                          0.001         0.001      0.001    0.001
## brown bread                        0.001         0.001      0.000    0.001
## fruit/vegetable juice              0.001         0.001      0.000    0.001
## domestic eggs                      0.001         0.002      0.001    0.000
## coffee                             0.003         0.001      0.001    0.001
## margarine                          0.000         0.002      0.000    0.000
## beef                               0.001         0.001      0.001    0.000
## curd                               0.001         0.002      0.001    0.000
## butter                             0.001         0.001      0.000    0.000
## marinated meats                    0.001         0.001      0.000    0.000
## napkins                            0.001         0.001      0.001    0.001
## halal meat                         0.000         0.001      0.000    0.001
## chocolate                          0.000         0.001      0.000    0.001
## frozen vegetables                  0.001         0.001      0.001    0.000
## chicken                            0.001         0.001      0.000    0.000
## white bread                        0.001         0.001      0.000    0.001
## cream cheese                       0.000         0.001      0.000    0.001
## waffles                            0.001         0.001      0.000    0.001
## dessert                            0.000         0.000      0.000    0.000
## salty snack                        0.001         0.001      0.000    0.000
## long life bakery product           0.001         0.000      0.000    0.000
## berries                            0.000         0.001      0.000    0.001
## hamburger meat                     0.000         0.001      0.000    0.000
## sugar                              0.001         0.001      0.000    0.000
## hygiene articles                   0.000         0.001      0.001    0.000
## UHT-milk                           0.001         0.000      0.000    0.001
## onions                             0.000         0.001      0.000    0.001
## candy                              0.000         0.000      0.000    0.000
## specialty chocolate                0.000         0.001      0.000    0.000
## butter milk                        0.000         0.001      0.001    0.000
## oil                                0.001         0.001      0.000    0.000
## frozen meals                       0.000         0.000      0.000    0.000
## misc. beverages                    0.000         0.001      0.000    0.000
## specialty bar                      0.000         0.000      0.000    0.000
## ham                                0.000         0.000      0.000    0.000
## beverages                          0.000         0.000      0.000    0.000
## meat                               0.000         0.001      0.000    0.000
## ice cream                          0.000         0.000      0.000    0.000
## sliced cheese                      0.000         0.001      0.000    0.000
## hard cheese                        0.000         0.000      0.000    0.001
## noodles                            0.000         0.000      0.000    0.000
## grapes                             0.000         0.000      0.000    0.000
## cat food                           0.000         0.001      0.000    0.001
## chewing gum                        0.000         0.000      0.000    0.000
## soda                               0.000         0.000      0.000    0.000
## detergent                          0.000         0.001      0.000    0.000
## red/blush wine                     0.000         0.000      0.000    0.000
## white wine                         0.000         0.000      0.000    0.000
## turkey                             0.000         0.000      0.000    0.000
## dishes                             0.000         0.000      0.000    0.000
## bottled water                      0.000         0.000      0.000    0.000
## flour                              0.000         0.001      0.000    0.000
## semi-finished bread                0.000         0.000      0.000    0.000
## baking powder                      0.000         0.000      0.000    0.000
## pickled vegetables                 0.000         0.000      0.000    0.000
## herbs                              0.000         0.001      0.000    0.000
## tropical herbs                     0.000         0.000      0.000    0.000
## soft cheese                        0.000         0.001      0.000    0.000
## tea                                0.000         0.000      0.000    0.000
## processed cheese                   0.000         0.000      0.000    0.000
## sausage                            0.000         0.000      0.000    0.000
## pasta                              0.000         0.001      0.000    0.000
## citrus herbs                       0.000         0.000      0.000    0.000
## potted plants                      0.000         0.000      0.000    0.000
## canned fish                        0.000         0.000      0.000    0.000
## seasonal products                  0.000         0.000      0.000    0.000
## cake bar                           0.000         0.000      0.000    0.000
## carrots                            0.000         0.000      0.000    0.000
## mustard                            0.000         0.000      0.000    0.000
## packaged fruit/vegetables          0.000         0.000      0.000    0.000
## spread cheese                      0.000         0.000      0.000    0.000
## frozen dessert                     0.000         0.000      0.000    0.000
## frozen fish                        0.000         0.000      0.000    0.000
## cling film/bags                    0.001         0.000      0.000    0.000
## salt                               0.000         0.000      0.000    0.000
## liquor                             0.000         0.000      0.000    0.000
## canned vegetables                  0.000         0.000      0.000    0.000
## bottled beer                       0.000         0.000      0.000    0.000
## flower (seeds)                     0.000         0.000      0.000    0.000
## cooking oil                        0.000         0.000      0.000    0.000
## dish cleaner                       0.000         0.000      0.000    0.000
## condensed milk                     0.010         0.000      0.000    0.000
## roll products                      0.000         0.010      0.000    0.000
## photo/film                         0.000         0.000      0.010    0.000
## pet care                           0.000         0.000      0.000    0.010
## chocolate marshmallow              0.000         0.000      0.000    0.000
## herbs/vegetable juice              0.000         0.000      0.000    0.000
## whole milk                         0.000         0.000      0.000    0.000
## candles                            0.000         0.000      0.000    0.000
## mayonnaise                         0.000         0.000      0.000    0.000
## Instant food products              0.000         0.000      0.000    0.000
## sweet spreads                      0.000         0.000      0.000    0.000
## liquor (appetizer)                 0.000         0.000      0.000    0.000
## specialty cheese                   0.000         0.000      0.000    0.000
## frozen potato products             0.000         0.000      0.000    0.000
## house keeping products             0.000         0.000      0.000    0.000
## dog food                           0.000         0.000      0.000    0.000
## soy                                0.000         0.000      0.000    0.000
## instant coffee                     0.000         0.000      0.000    0.000
## pip herbs                          0.000         0.000      0.000    0.000
## zwieback                           0.000         0.000      0.000    0.000
## finished products                  0.000         0.000      0.000    0.000
## popcorn                            0.000         0.000      0.000    0.000
## vinegar                            0.000         0.000      0.000    0.000
## soups                              0.000         0.000      0.000    0.000
## female sanitary products           0.000         0.000      0.000    0.000
## sparkling wine                     0.000         0.000      0.000    0.000
## dental care                        0.000         0.000      0.000    0.000
## cereals                            0.000         0.000      0.000    0.000
## kitchen towels                     0.000         0.000      0.000    0.000
## curd cheese                        0.000         0.000      0.000    0.000
## other vegetables                   0.000         0.000      0.000    0.000
## rolls/buns                         0.000         0.000      0.000    0.000
## softener                           0.000         0.000      0.000    0.000
## cleaner                            0.000         0.000      0.000    0.000
## spices                             0.000         0.000      0.000    0.000
## jam                                0.000         0.000      0.000    0.000
## sauces                             0.000         0.000      0.000    0.000
## rum                                0.000         0.000      0.000    0.000
## liver loaf                         0.000         0.000      0.000    0.000
## male cosmetics                     0.000         0.000      0.000    0.000
## meat spreads                       0.000         0.000      0.000    0.000
## packaged herbs/vegetables          0.000         0.000      0.000    0.000
## brandy                             0.000         0.000      0.000    0.000
## ketchup                            0.000         0.000      0.000    0.000
## abrasive cleaner                   0.000         0.000      0.000    0.000
## light bulbs                        0.000         0.000      0.000    0.000
## artif. sweetener                   0.000         0.000      0.000    0.000
## nuts/prunes                        0.000         0.000      0.000    0.000
## specialty fat                      0.000         0.000      0.000    0.000
## skin care                          0.000         0.000      0.000    0.000
## fish                               0.000         0.000      0.000    0.000
## potato products                    0.000         0.000      0.000    0.000
## root vegetables                    0.000         0.000      0.000    0.000
## snack products                     0.000         0.000      0.000    0.000
## nut snack                          0.000         0.000      0.000    0.000
## soap                               0.000         0.000      0.000    0.000
## syrup                              0.000         0.000      0.000    0.000
## bathroom cleaner                   0.000         0.000      0.000    0.000
## canned fruit                       0.000         0.000      0.000    0.000
## cookware                           0.000         0.000      0.000    0.000
## cooking chocolate                  0.000         0.000      0.000    0.000
## tidbits                            0.000         0.000      0.000    0.000
## cocoa drinks                       0.000         0.000      0.000    0.000
## pudding powder                     0.000         0.000      0.000    0.000
## ready soups                        0.000         0.000      0.000    0.000
## organic marinated meat             0.000         0.000      0.000    0.000
## flower soil/fertilizer             0.000         0.000      0.000    0.000
## organic products                   0.000         0.000      0.000    0.000
## pot plants                         0.000         0.000      0.000    0.000
## prosecco                           0.000         0.000      0.000    0.000
## frankfurter                        0.000         0.000      0.000    0.000
## decalcifier                        0.000         0.000      0.000    0.000
## honey                              0.000         0.000      0.000    0.000
## specialty vegetables               0.000         0.000      0.000    0.000
## cream                              0.000         0.000      0.000    0.000
## hair spray                         0.000         0.000      0.000    0.000
## frozen fruits                      0.000         0.000      0.000    0.000
## rubbing alcohol                    0.000         0.000      0.000    0.000
## liqueur                            0.000         0.000      0.000    0.000
## make up remover                    0.000         0.000      0.000    0.000
## salad dressing                     0.000         0.000      0.000    0.000
## frozen chicken                     0.000         0.000      0.000    0.000
## whisky                             0.000         0.000      0.000    0.000
## baby cosmetics                     0.000         0.000      0.000    0.000
## toilet cleaner                     0.000         0.000      0.000    0.000
## bags                               0.000         0.000      0.000    0.000
## canned herbs                       0.000         0.000      0.000    0.000
## kitchen utensil                    0.000         0.000      0.000    0.000
## preservation products              0.000         0.000      0.000    0.000
## baby food                          0.000         0.000      0.000    0.000
## frozen herbss                      0.000         0.000      0.000    0.000
## organic sausage                    0.000         0.000      0.000    0.000
## sound storage medium               0.000         0.000      0.000    0.000
##                           chocolate marshmallow herbs/vegetable juice
## rice                                      0.003                 0.003
## veggies                                   0.002                 0.000
## loaf                                      0.002                 0.000
## coke                                      0.002                 0.000
## yogurt                                    0.001                 0.002
## vegetables                                0.001                 0.002
## mineral water                             0.001                 0.000
## Plastic bags                              0.000                 0.001
## tropical fruit                            0.002                 0.000
## marinated meat                            0.001                 0.000
## pies/pasties                              0.001                 0.000
## newspapers                                0.001                 0.001
## citrus                                    0.001                 0.000
## whipped/sour cream                        0.001                 0.001
## heinken                                   0.001                 0.000
## green tea                                 0.000                 0.000
## pip fruit                                 0.001                 0.000
## brown bread                               0.000                 0.001
## fruit/vegetable juice                     0.000                 0.000
## domestic eggs                             0.002                 0.001
## coffee                                    0.001                 0.001
## margarine                                 0.001                 0.001
## beef                                      0.001                 0.001
## curd                                      0.001                 0.001
## butter                                    0.001                 0.001
## marinated meats                           0.001                 0.000
## napkins                                   0.001                 0.000
## halal meat                                0.001                 0.000
## chocolate                                 0.002                 0.000
## frozen vegetables                         0.001                 0.001
## chicken                                   0.001                 0.001
## white bread                               0.000                 0.001
## cream cheese                              0.001                 0.001
## waffles                                   0.001                 0.001
## dessert                                   0.001                 0.000
## salty snack                               0.000                 0.001
## long life bakery product                  0.001                 0.000
## berries                                   0.000                 0.001
## hamburger meat                            0.001                 0.000
## sugar                                     0.001                 0.001
## hygiene articles                          0.001                 0.000
## UHT-milk                                  0.000                 0.000
## onions                                    0.000                 0.000
## candy                                     0.002                 0.000
## specialty chocolate                       0.001                 0.000
## butter milk                               0.000                 0.001
## oil                                       0.001                 0.000
## frozen meals                              0.000                 0.000
## misc. beverages                           0.000                 0.000
## specialty bar                             0.000                 0.000
## ham                                       0.001                 0.000
## beverages                                 0.001                 0.000
## meat                                      0.000                 0.000
## ice cream                                 0.001                 0.001
## sliced cheese                             0.000                 0.001
## hard cheese                               0.000                 0.001
## noodles                                   0.000                 0.002
## grapes                                    0.000                 0.000
## cat food                                  0.000                 0.000
## chewing gum                               0.001                 0.000
## soda                                      0.000                 0.002
## detergent                                 0.000                 0.000
## red/blush wine                            0.000                 0.000
## white wine                                0.000                 0.000
## turkey                                    0.000                 0.001
## dishes                                    0.000                 0.000
## bottled water                             0.000                 0.002
## flour                                     0.001                 0.000
## semi-finished bread                       0.001                 0.000
## baking powder                             0.000                 0.000
## pickled vegetables                        0.000                 0.000
## herbs                                     0.000                 0.000
## tropical herbs                            0.000                 0.002
## soft cheese                               0.000                 0.000
## tea                                       0.000                 0.001
## processed cheese                          0.000                 0.000
## sausage                                   0.000                 0.001
## pasta                                     0.000                 0.000
## citrus herbs                              0.000                 0.001
## potted plants                             0.000                 0.000
## canned fish                               0.000                 0.000
## seasonal products                         0.000                 0.000
## cake bar                                  0.000                 0.000
## carrots                                   0.000                 0.001
## mustard                                   0.001                 0.000
## packaged fruit/vegetables                 0.000                 0.000
## spread cheese                             0.000                 0.000
## frozen dessert                            0.000                 0.000
## frozen fish                               0.000                 0.000
## cling film/bags                           0.000                 0.000
## salt                                      0.000                 0.000
## liquor                                    0.000                 0.000
## canned vegetables                         0.000                 0.000
## bottled beer                              0.000                 0.001
## flower (seeds)                            0.000                 0.000
## cooking oil                               0.000                 0.001
## dish cleaner                              0.000                 0.000
## condensed milk                            0.000                 0.000
## roll products                             0.000                 0.000
## photo/film                                0.000                 0.000
## pet care                                  0.000                 0.000
## chocolate marshmallow                     0.009                 0.000
## herbs/vegetable juice                     0.000                 0.009
## whole milk                                0.000                 0.001
## candles                                   0.000                 0.000
## mayonnaise                                0.000                 0.000
## Instant food products                     0.000                 0.000
## sweet spreads                             0.000                 0.000
## liquor (appetizer)                        0.000                 0.000
## specialty cheese                          0.000                 0.000
## frozen potato products                    0.000                 0.000
## house keeping products                    0.000                 0.000
## dog food                                  0.000                 0.000
## soy                                       0.000                 0.001
## instant coffee                            0.000                 0.000
## pip herbs                                 0.000                 0.001
## zwieback                                  0.000                 0.000
## finished products                         0.000                 0.000
## popcorn                                   0.000                 0.000
## vinegar                                   0.000                 0.000
## soups                                     0.000                 0.000
## female sanitary products                  0.000                 0.000
## sparkling wine                            0.000                 0.000
## dental care                               0.000                 0.000
## cereals                                   0.000                 0.000
## kitchen towels                            0.000                 0.000
## curd cheese                               0.000                 0.000
## other vegetables                          0.000                 0.000
## rolls/buns                                0.000                 0.001
## softener                                  0.000                 0.000
## cleaner                                   0.000                 0.000
## spices                                    0.000                 0.000
## jam                                       0.000                 0.000
## sauces                                    0.000                 0.000
## rum                                       0.000                 0.000
## liver loaf                                0.000                 0.000
## male cosmetics                            0.000                 0.000
## meat spreads                              0.000                 0.000
## packaged herbs/vegetables                 0.000                 0.000
## brandy                                    0.000                 0.000
## ketchup                                   0.000                 0.000
## abrasive cleaner                          0.000                 0.000
## light bulbs                               0.000                 0.000
## artif. sweetener                          0.000                 0.000
## nuts/prunes                               0.000                 0.000
## specialty fat                             0.000                 0.000
## skin care                                 0.000                 0.000
## fish                                      0.000                 0.000
## potato products                           0.000                 0.000
## root vegetables                           0.000                 0.000
## snack products                            0.000                 0.000
## nut snack                                 0.000                 0.000
## soap                                      0.000                 0.000
## syrup                                     0.000                 0.000
## bathroom cleaner                          0.000                 0.000
## canned fruit                              0.000                 0.000
## cookware                                  0.000                 0.000
## cooking chocolate                         0.000                 0.000
## tidbits                                   0.000                 0.000
## cocoa drinks                              0.000                 0.000
## pudding powder                            0.000                 0.000
## ready soups                               0.000                 0.000
## organic marinated meat                    0.000                 0.000
## flower soil/fertilizer                    0.000                 0.000
## organic products                          0.000                 0.000
## pot plants                                0.000                 0.000
## prosecco                                  0.000                 0.000
## frankfurter                               0.000                 0.000
## decalcifier                               0.000                 0.000
## honey                                     0.000                 0.000
## specialty vegetables                      0.000                 0.000
## cream                                     0.000                 0.000
## hair spray                                0.000                 0.000
## frozen fruits                             0.000                 0.000
## rubbing alcohol                           0.000                 0.000
## liqueur                                   0.000                 0.000
## make up remover                           0.000                 0.000
## salad dressing                            0.000                 0.000
## frozen chicken                            0.000                 0.000
## whisky                                    0.000                 0.000
## baby cosmetics                            0.000                 0.000
## toilet cleaner                            0.000                 0.000
## bags                                      0.000                 0.000
## canned herbs                              0.000                 0.000
## kitchen utensil                           0.000                 0.000
## preservation products                     0.000                 0.000
## baby food                                 0.000                 0.000
## frozen herbss                             0.000                 0.000
## organic sausage                           0.000                 0.000
## sound storage medium                      0.000                 0.000
##                           whole milk candles mayonnaise Instant food products
## rice                           0.000   0.003      0.003                 0.003
## veggies                        0.000   0.002      0.003                 0.002
## loaf                           0.000   0.001      0.002                 0.002
## coke                           0.000   0.001      0.002                 0.002
## yogurt                         0.001   0.001      0.003                 0.001
## vegetables                     0.000   0.002      0.002                 0.002
## mineral water                  0.000   0.001      0.001                 0.001
## Plastic bags                   0.001   0.000      0.002                 0.001
## tropical fruit                 0.000   0.001      0.001                 0.001
## marinated meat                 0.000   0.001      0.002                 0.001
## pies/pasties                   0.001   0.002      0.001                 0.001
## newspapers                     0.001   0.001      0.001                 0.001
## citrus                         0.000   0.001      0.001                 0.001
## whipped/sour cream             0.001   0.001      0.001                 0.001
## heinken                        0.000   0.001      0.000                 0.001
## green tea                      0.000   0.001      0.000                 0.000
## pip fruit                      0.000   0.001      0.001                 0.001
## brown bread                    0.001   0.000      0.001                 0.001
## fruit/vegetable juice          0.000   0.001      0.001                 0.001
## domestic eggs                  0.000   0.001      0.001                 0.001
## coffee                         0.001   0.001      0.001                 0.001
## margarine                      0.000   0.002      0.002                 0.001
## beef                           0.001   0.001      0.001                 0.001
## curd                           0.001   0.001      0.001                 0.001
## butter                         0.001   0.001      0.001                 0.001
## marinated meats                0.000   0.000      0.001                 0.001
## napkins                        0.001   0.000      0.001                 0.001
## halal meat                     0.000   0.001      0.001                 0.001
## chocolate                      0.001   0.001      0.002                 0.000
## frozen vegetables              0.000   0.001      0.001                 0.001
## chicken                        0.001   0.001      0.001                 0.000
## white bread                    0.001   0.000      0.001                 0.001
## cream cheese                   0.001   0.000      0.001                 0.000
## waffles                        0.001   0.000      0.001                 0.000
## dessert                        0.001   0.001      0.001                 0.000
## salty snack                    0.000   0.000      0.001                 0.001
## long life bakery product       0.000   0.001      0.001                 0.000
## berries                        0.000   0.000      0.001                 0.000
## hamburger meat                 0.001   0.000      0.001                 0.003
## sugar                          0.000   0.001      0.001                 0.000
## hygiene articles               0.001   0.000      0.001                 0.001
## UHT-milk                       0.000   0.000      0.001                 0.000
## onions                         0.001   0.000      0.001                 0.000
## candy                          0.000   0.000      0.001                 0.000
## specialty chocolate            0.000   0.000      0.000                 0.000
## butter milk                    0.000   0.000      0.001                 0.000
## oil                            0.001   0.001      0.001                 0.001
## frozen meals                   0.001   0.000      0.000                 0.000
## misc. beverages                0.000   0.000      0.000                 0.000
## specialty bar                  0.000   0.000      0.000                 0.000
## ham                            0.001   0.000      0.001                 0.000
## beverages                      0.000   0.000      0.000                 0.000
## meat                           0.000   0.000      0.000                 0.001
## ice cream                      0.000   0.000      0.000                 0.001
## sliced cheese                  0.001   0.000      0.001                 0.000
## hard cheese                    0.000   0.001      0.001                 0.000
## noodles                        0.000   0.000      0.000                 0.000
## grapes                         0.000   0.000      0.001                 0.000
## cat food                       0.000   0.000      0.000                 0.000
## chewing gum                    0.000   0.000      0.000                 0.000
## soda                           0.001   0.000      0.000                 0.000
## detergent                      0.000   0.001      0.000                 0.000
## red/blush wine                 0.000   0.000      0.000                 0.000
## white wine                     0.000   0.000      0.000                 0.000
## turkey                         0.001   0.000      0.000                 0.000
## dishes                         0.000   0.000      0.000                 0.000
## bottled water                  0.001   0.000      0.000                 0.000
## flour                          0.000   0.000      0.000                 0.000
## semi-finished bread            0.000   0.000      0.000                 0.000
## baking powder                  0.000   0.000      0.000                 0.000
## pickled vegetables             0.000   0.000      0.001                 0.000
## herbs                          0.000   0.000      0.000                 0.000
## tropical herbs                 0.001   0.000      0.000                 0.000
## soft cheese                    0.000   0.001      0.000                 0.000
## tea                            0.000   0.000      0.000                 0.000
## processed cheese               0.000   0.000      0.001                 0.000
## sausage                        0.001   0.000      0.000                 0.000
## pasta                          0.000   0.000      0.000                 0.001
## citrus herbs                   0.001   0.000      0.000                 0.000
## potted plants                  0.000   0.000      0.000                 0.000
## canned fish                    0.000   0.001      0.001                 0.001
## seasonal products              0.000   0.000      0.000                 0.000
## cake bar                       0.000   0.000      0.000                 0.000
## carrots                        0.000   0.000      0.000                 0.000
## mustard                        0.000   0.000      0.001                 0.000
## packaged fruit/vegetables      0.000   0.000      0.000                 0.000
## spread cheese                  0.000   0.000      0.000                 0.000
## frozen dessert                 0.000   0.000      0.000                 0.000
## frozen fish                    0.000   0.000      0.000                 0.000
## cling film/bags                0.000   0.000      0.000                 0.000
## salt                           0.000   0.000      0.000                 0.000
## liquor                         0.000   0.000      0.000                 0.000
## canned vegetables              0.000   0.000      0.000                 0.000
## bottled beer                   0.001   0.000      0.000                 0.000
## flower (seeds)                 0.000   0.000      0.000                 0.000
## cooking oil                    0.000   0.000      0.000                 0.000
## dish cleaner                   0.000   0.000      0.001                 0.000
## condensed milk                 0.000   0.000      0.000                 0.000
## roll products                  0.000   0.000      0.000                 0.000
## photo/film                     0.000   0.000      0.000                 0.000
## pet care                       0.000   0.000      0.000                 0.000
## chocolate marshmallow          0.000   0.000      0.000                 0.000
## herbs/vegetable juice          0.001   0.000      0.000                 0.000
## whole milk                     0.009   0.000      0.000                 0.000
## candles                        0.000   0.009      0.000                 0.000
## mayonnaise                     0.000   0.000      0.009                 0.000
## Instant food products          0.000   0.000      0.000                 0.008
## sweet spreads                  0.000   0.000      0.000                 0.000
## liquor (appetizer)             0.000   0.000      0.000                 0.000
## specialty cheese               0.000   0.000      0.000                 0.000
## frozen potato products         0.000   0.000      0.000                 0.000
## house keeping products         0.000   0.000      0.000                 0.000
## dog food                       0.000   0.000      0.000                 0.000
## soy                            0.000   0.000      0.000                 0.000
## instant coffee                 0.000   0.000      0.000                 0.000
## pip herbs                      0.001   0.000      0.000                 0.000
## zwieback                       0.000   0.000      0.000                 0.000
## finished products              0.000   0.000      0.000                 0.000
## popcorn                        0.000   0.000      0.000                 0.000
## vinegar                        0.000   0.000      0.000                 0.000
## soups                          0.000   0.000      0.000                 0.000
## female sanitary products       0.000   0.000      0.000                 0.000
## sparkling wine                 0.000   0.000      0.000                 0.000
## dental care                    0.000   0.000      0.000                 0.000
## cereals                        0.000   0.000      0.000                 0.000
## kitchen towels                 0.000   0.000      0.000                 0.000
## curd cheese                    0.000   0.000      0.000                 0.000
## other vegetables               0.002   0.000      0.000                 0.000
## rolls/buns                     0.002   0.000      0.000                 0.000
## softener                       0.000   0.000      0.000                 0.000
## cleaner                        0.000   0.000      0.000                 0.000
## spices                         0.000   0.000      0.000                 0.000
## jam                            0.000   0.000      0.000                 0.000
## sauces                         0.000   0.000      0.000                 0.000
## rum                            0.000   0.000      0.000                 0.000
## liver loaf                     0.000   0.000      0.000                 0.000
## male cosmetics                 0.000   0.000      0.000                 0.000
## meat spreads                   0.000   0.000      0.000                 0.000
## packaged herbs/vegetables      0.000   0.000      0.000                 0.000
## brandy                         0.000   0.000      0.000                 0.000
## ketchup                        0.000   0.000      0.000                 0.000
## abrasive cleaner               0.000   0.000      0.000                 0.000
## light bulbs                    0.000   0.000      0.000                 0.000
## artif. sweetener               0.000   0.000      0.000                 0.000
## nuts/prunes                    0.000   0.000      0.000                 0.000
## specialty fat                  0.000   0.000      0.000                 0.000
## skin care                      0.000   0.000      0.000                 0.000
## fish                           0.000   0.000      0.000                 0.000
## potato products                0.000   0.000      0.000                 0.000
## root vegetables                0.001   0.000      0.000                 0.000
## snack products                 0.000   0.000      0.000                 0.000
## nut snack                      0.000   0.000      0.000                 0.000
## soap                           0.000   0.000      0.000                 0.000
## syrup                          0.000   0.000      0.000                 0.000
## bathroom cleaner               0.000   0.000      0.000                 0.000
## canned fruit                   0.000   0.000      0.000                 0.000
## cookware                       0.000   0.000      0.000                 0.000
## cooking chocolate              0.000   0.000      0.000                 0.000
## tidbits                        0.000   0.000      0.000                 0.000
## cocoa drinks                   0.000   0.000      0.000                 0.000
## pudding powder                 0.000   0.000      0.000                 0.000
## ready soups                    0.000   0.000      0.000                 0.000
## organic marinated meat         0.000   0.000      0.000                 0.000
## flower soil/fertilizer         0.000   0.000      0.000                 0.000
## organic products               0.000   0.000      0.000                 0.000
## pot plants                     0.000   0.000      0.000                 0.000
## prosecco                       0.000   0.000      0.000                 0.000
## frankfurter                    0.001   0.000      0.000                 0.000
## decalcifier                    0.000   0.000      0.000                 0.000
## honey                          0.000   0.000      0.000                 0.000
## specialty vegetables           0.000   0.000      0.000                 0.000
## cream                          0.000   0.000      0.000                 0.000
## hair spray                     0.000   0.000      0.000                 0.000
## frozen fruits                  0.000   0.000      0.000                 0.000
## rubbing alcohol                0.000   0.000      0.000                 0.000
## liqueur                        0.000   0.000      0.000                 0.000
## make up remover                0.000   0.000      0.000                 0.000
## salad dressing                 0.000   0.000      0.000                 0.000
## frozen chicken                 0.000   0.000      0.000                 0.000
## whisky                         0.000   0.000      0.000                 0.000
## baby cosmetics                 0.000   0.000      0.000                 0.000
## toilet cleaner                 0.000   0.000      0.000                 0.000
## bags                           0.000   0.000      0.000                 0.000
## canned herbs                   0.000   0.000      0.000                 0.000
## kitchen utensil                0.000   0.000      0.000                 0.000
## preservation products          0.000   0.000      0.000                 0.000
## baby food                      0.000   0.000      0.000                 0.000
## frozen herbss                  0.000   0.000      0.000                 0.000
## organic sausage                0.000   0.000      0.000                 0.000
## sound storage medium           0.000   0.000      0.000                 0.000
##                           sweet spreads liquor (appetizer) specialty cheese
## rice                              0.003              0.002            0.003
## veggies                           0.002              0.001            0.004
## loaf                              0.001              0.001            0.001
## coke                              0.002              0.002            0.001
## yogurt                            0.002              0.001            0.003
## vegetables                        0.002              0.001            0.002
## mineral water                     0.000              0.001            0.002
## Plastic bags                      0.002              0.002            0.001
## tropical fruit                    0.001              0.001            0.001
## marinated meat                    0.001              0.001            0.001
## pies/pasties                      0.001              0.000            0.001
## newspapers                        0.001              0.002            0.000
## citrus                            0.001              0.000            0.001
## whipped/sour cream                0.001              0.001            0.001
## heinken                           0.000              0.002            0.000
## green tea                         0.000              0.002            0.000
## pip fruit                         0.001              0.000            0.001
## brown bread                       0.001              0.000            0.000
## fruit/vegetable juice             0.001              0.000            0.001
## domestic eggs                     0.001              0.000            0.001
## coffee                            0.001              0.001            0.001
## margarine                         0.001              0.000            0.001
## beef                              0.001              0.000            0.001
## curd                              0.001              0.001            0.001
## butter                            0.001              0.000            0.001
## marinated meats                   0.001              0.000            0.001
## napkins                           0.001              0.001            0.000
## halal meat                        0.001              0.001            0.000
## chocolate                         0.001              0.000            0.000
## frozen vegetables                 0.001              0.001            0.001
## chicken                           0.000              0.001            0.000
## white bread                       0.001              0.000            0.001
## cream cheese                      0.001              0.000            0.001
## waffles                           0.001              0.001            0.000
## dessert                           0.000              0.000            0.000
## salty snack                       0.001              0.000            0.001
## long life bakery product          0.001              0.000            0.000
## berries                           0.000              0.000            0.001
## hamburger meat                    0.001              0.000            0.001
## sugar                             0.000              0.000            0.000
## hygiene articles                  0.001              0.001            0.001
## UHT-milk                          0.001              0.001            0.001
## onions                            0.000              0.001            0.001
## candy                             0.000              0.001            0.000
## specialty chocolate               0.000              0.000            0.000
## butter milk                       0.001              0.000            0.001
## oil                               0.000              0.000            0.000
## frozen meals                      0.001              0.000            0.000
## misc. beverages                   0.000              0.000            0.000
## specialty bar                     0.001              0.000            0.000
## ham                               0.001              0.000            0.000
## beverages                         0.001              0.000            0.000
## meat                              0.000              0.000            0.000
## ice cream                         0.000              0.000            0.000
## sliced cheese                     0.001              0.000            0.001
## hard cheese                       0.001              0.000            0.001
## noodles                           0.000              0.000            0.000
## grapes                            0.000              0.000            0.000
## cat food                          0.000              0.000            0.001
## chewing gum                       0.000              0.000            0.000
## soda                              0.000              0.000            0.000
## detergent                         0.000              0.000            0.000
## red/blush wine                    0.000              0.000            0.000
## white wine                        0.000              0.000            0.000
## turkey                            0.000              0.000            0.000
## dishes                            0.000              0.001            0.000
## bottled water                     0.000              0.000            0.000
## flour                             0.000              0.000            0.000
## semi-finished bread               0.000              0.000            0.000
## baking powder                     0.000              0.000            0.000
## pickled vegetables                0.000              0.000            0.000
## herbs                             0.000              0.000            0.000
## tropical herbs                    0.000              0.000            0.000
## soft cheese                       0.000              0.000            0.000
## tea                               0.000              0.000            0.000
## processed cheese                  0.000              0.000            0.000
## sausage                           0.000              0.000            0.000
## pasta                             0.001              0.000            0.000
## citrus herbs                      0.000              0.000            0.000
## potted plants                     0.000              0.000            0.000
## canned fish                       0.000              0.000            0.001
## seasonal products                 0.000              0.000            0.000
## cake bar                          0.000              0.000            0.000
## carrots                           0.000              0.000            0.000
## mustard                           0.000              0.000            0.000
## packaged fruit/vegetables         0.000              0.000            0.000
## spread cheese                     0.000              0.000            0.000
## frozen dessert                    0.001              0.000            0.000
## frozen fish                       0.000              0.000            0.000
## cling film/bags                   0.000              0.000            0.000
## salt                              0.000              0.000            0.000
## liquor                            0.000              0.000            0.000
## canned vegetables                 0.000              0.000            0.001
## bottled beer                      0.000              0.001            0.000
## flower (seeds)                    0.000              0.000            0.000
## cooking oil                       0.000              0.000            0.000
## dish cleaner                      0.000              0.000            0.000
## condensed milk                    0.000              0.000            0.000
## roll products                     0.000              0.000            0.000
## photo/film                        0.000              0.000            0.000
## pet care                          0.000              0.000            0.000
## chocolate marshmallow             0.000              0.000            0.000
## herbs/vegetable juice             0.000              0.000            0.000
## whole milk                        0.000              0.000            0.000
## candles                           0.000              0.000            0.000
## mayonnaise                        0.000              0.000            0.000
## Instant food products             0.000              0.000            0.000
## sweet spreads                     0.008              0.000            0.000
## liquor (appetizer)                0.000              0.008            0.000
## specialty cheese                  0.000              0.000            0.008
## frozen potato products            0.000              0.000            0.000
## house keeping products            0.000              0.000            0.000
## dog food                          0.000              0.000            0.000
## soy                               0.000              0.000            0.000
## instant coffee                    0.000              0.000            0.000
## pip herbs                         0.000              0.000            0.000
## zwieback                          0.000              0.000            0.000
## finished products                 0.000              0.000            0.000
## popcorn                           0.000              0.000            0.000
## vinegar                           0.000              0.000            0.000
## soups                             0.000              0.000            0.000
## female sanitary products          0.000              0.000            0.000
## sparkling wine                    0.000              0.000            0.000
## dental care                       0.000              0.000            0.000
## cereals                           0.000              0.000            0.000
## kitchen towels                    0.000              0.000            0.000
## curd cheese                       0.000              0.000            0.000
## other vegetables                  0.000              0.000            0.000
## rolls/buns                        0.000              0.000            0.000
## softener                          0.000              0.000            0.000
## cleaner                           0.000              0.000            0.000
## spices                            0.000              0.000            0.000
## jam                               0.000              0.000            0.000
## sauces                            0.000              0.000            0.000
## rum                               0.000              0.000            0.000
## liver loaf                        0.000              0.000            0.000
## male cosmetics                    0.000              0.000            0.000
## meat spreads                      0.000              0.000            0.000
## packaged herbs/vegetables         0.000              0.000            0.000
## brandy                            0.000              0.000            0.000
## ketchup                           0.000              0.000            0.000
## abrasive cleaner                  0.000              0.000            0.000
## light bulbs                       0.000              0.000            0.000
## artif. sweetener                  0.000              0.000            0.000
## nuts/prunes                       0.000              0.000            0.000
## specialty fat                     0.000              0.000            0.000
## skin care                         0.000              0.000            0.000
## fish                              0.000              0.000            0.000
## potato products                   0.000              0.000            0.000
## root vegetables                   0.000              0.000            0.000
## snack products                    0.000              0.000            0.000
## nut snack                         0.000              0.000            0.000
## soap                              0.000              0.000            0.000
## syrup                             0.000              0.000            0.000
## bathroom cleaner                  0.000              0.000            0.000
## canned fruit                      0.000              0.000            0.000
## cookware                          0.000              0.000            0.000
## cooking chocolate                 0.000              0.000            0.000
## tidbits                           0.000              0.000            0.000
## cocoa drinks                      0.000              0.000            0.000
## pudding powder                    0.000              0.000            0.000
## ready soups                       0.000              0.000            0.000
## organic marinated meat            0.000              0.000            0.000
## flower soil/fertilizer            0.000              0.000            0.000
## organic products                  0.000              0.000            0.000
## pot plants                        0.000              0.000            0.000
## prosecco                          0.000              0.000            0.000
## frankfurter                       0.000              0.000            0.000
## decalcifier                       0.000              0.000            0.000
## honey                             0.000              0.000            0.000
## specialty vegetables              0.000              0.000            0.000
## cream                             0.000              0.000            0.000
## hair spray                        0.000              0.000            0.000
## frozen fruits                     0.000              0.000            0.000
## rubbing alcohol                   0.000              0.000            0.000
## liqueur                           0.000              0.000            0.000
## make up remover                   0.000              0.000            0.000
## salad dressing                    0.000              0.000            0.000
## frozen chicken                    0.000              0.000            0.000
## whisky                            0.000              0.000            0.000
## baby cosmetics                    0.000              0.000            0.000
## toilet cleaner                    0.000              0.000            0.000
## bags                              0.000              0.000            0.000
## canned herbs                      0.000              0.000            0.000
## kitchen utensil                   0.000              0.000            0.000
## preservation products             0.000              0.000            0.000
## baby food                         0.000              0.000            0.000
## frozen herbss                     0.000              0.000            0.000
## organic sausage                   0.000              0.000            0.000
## sound storage medium              0.000              0.000            0.000
##                           frozen potato products house keeping products
## rice                                       0.004                  0.003
## veggies                                    0.002                  0.002
## loaf                                       0.002                  0.002
## coke                                       0.002                  0.002
## yogurt                                     0.002                  0.002
## vegetables                                 0.002                  0.002
## mineral water                              0.001                  0.001
## Plastic bags                               0.001                  0.002
## tropical fruit                             0.001                  0.001
## marinated meat                             0.001                  0.001
## pies/pasties                               0.001                  0.001
## newspapers                                 0.000                  0.001
## citrus                                     0.001                  0.001
## whipped/sour cream                         0.001                  0.001
## heinken                                    0.001                  0.001
## green tea                                  0.000                  0.000
## pip fruit                                  0.001                  0.001
## brown bread                                0.001                  0.001
## fruit/vegetable juice                      0.001                  0.001
## domestic eggs                              0.000                  0.001
## coffee                                     0.001                  0.001
## margarine                                  0.001                  0.001
## beef                                       0.001                  0.001
## curd                                       0.001                  0.001
## butter                                     0.001                  0.001
## marinated meats                            0.001                  0.001
## napkins                                    0.001                  0.001
## halal meat                                 0.001                  0.001
## chocolate                                  0.001                  0.001
## frozen vegetables                          0.001                  0.001
## chicken                                    0.001                  0.001
## white bread                                0.001                  0.001
## cream cheese                               0.000                  0.000
## waffles                                    0.000                  0.000
## dessert                                    0.001                  0.000
## salty snack                                0.001                  0.000
## long life bakery product                   0.001                  0.001
## berries                                    0.001                  0.001
## hamburger meat                             0.001                  0.000
## sugar                                      0.000                  0.001
## hygiene articles                           0.001                  0.001
## UHT-milk                                   0.000                  0.001
## onions                                     0.000                  0.001
## candy                                      0.001                  0.000
## specialty chocolate                        0.000                  0.001
## butter milk                                0.000                  0.000
## oil                                        0.001                  0.001
## frozen meals                               0.001                  0.001
## misc. beverages                            0.000                  0.000
## specialty bar                              0.001                  0.000
## ham                                        0.001                  0.000
## beverages                                  0.000                  0.000
## meat                                       0.000                  0.000
## ice cream                                  0.001                  0.000
## sliced cheese                              0.000                  0.001
## hard cheese                                0.000                  0.000
## noodles                                    0.000                  0.000
## grapes                                     0.001                  0.000
## cat food                                   0.000                  0.000
## chewing gum                                0.000                  0.000
## soda                                       0.000                  0.000
## detergent                                  0.000                  0.001
## red/blush wine                             0.000                  0.000
## white wine                                 0.000                  0.000
## turkey                                     0.001                  0.000
## dishes                                     0.000                  0.000
## bottled water                              0.000                  0.000
## flour                                      0.000                  0.000
## semi-finished bread                        0.000                  0.000
## baking powder                              0.000                  0.001
## pickled vegetables                         0.000                  0.000
## herbs                                      0.000                  0.000
## tropical herbs                             0.000                  0.000
## soft cheese                                0.000                  0.000
## tea                                        0.000                  0.000
## processed cheese                           0.000                  0.000
## sausage                                    0.000                  0.000
## pasta                                      0.000                  0.000
## citrus herbs                               0.000                  0.000
## potted plants                              0.000                  0.000
## canned fish                                0.000                  0.000
## seasonal products                          0.000                  0.000
## cake bar                                   0.000                  0.001
## carrots                                    0.000                  0.000
## mustard                                    0.000                  0.000
## packaged fruit/vegetables                  0.000                  0.000
## spread cheese                              0.000                  0.000
## frozen dessert                             0.000                  0.000
## frozen fish                                0.000                  0.000
## cling film/bags                            0.000                  0.001
## salt                                       0.000                  0.000
## liquor                                     0.000                  0.000
## canned vegetables                          0.000                  0.000
## bottled beer                               0.000                  0.000
## flower (seeds)                             0.000                  0.000
## cooking oil                                0.000                  0.000
## dish cleaner                               0.000                  0.000
## condensed milk                             0.000                  0.000
## roll products                              0.000                  0.000
## photo/film                                 0.000                  0.000
## pet care                                   0.000                  0.000
## chocolate marshmallow                      0.000                  0.000
## herbs/vegetable juice                      0.000                  0.000
## whole milk                                 0.000                  0.000
## candles                                    0.000                  0.000
## mayonnaise                                 0.000                  0.000
## Instant food products                      0.000                  0.000
## sweet spreads                              0.000                  0.000
## liquor (appetizer)                         0.000                  0.000
## specialty cheese                           0.000                  0.000
## frozen potato products                     0.008                  0.000
## house keeping products                     0.000                  0.008
## dog food                                   0.000                  0.000
## soy                                        0.000                  0.000
## instant coffee                             0.000                  0.000
## pip herbs                                  0.000                  0.000
## zwieback                                   0.000                  0.000
## finished products                          0.000                  0.000
## popcorn                                    0.000                  0.000
## vinegar                                    0.000                  0.000
## soups                                      0.000                  0.000
## female sanitary products                   0.000                  0.000
## sparkling wine                             0.000                  0.000
## dental care                                0.000                  0.000
## cereals                                    0.000                  0.000
## kitchen towels                             0.000                  0.000
## curd cheese                                0.000                  0.000
## other vegetables                           0.000                  0.000
## rolls/buns                                 0.000                  0.000
## softener                                   0.000                  0.000
## cleaner                                    0.000                  0.000
## spices                                     0.000                  0.000
## jam                                        0.000                  0.000
## sauces                                     0.000                  0.000
## rum                                        0.000                  0.000
## liver loaf                                 0.000                  0.000
## male cosmetics                             0.000                  0.000
## meat spreads                               0.000                  0.000
## packaged herbs/vegetables                  0.000                  0.000
## brandy                                     0.000                  0.000
## ketchup                                    0.000                  0.000
## abrasive cleaner                           0.000                  0.000
## light bulbs                                0.000                  0.000
## artif. sweetener                           0.000                  0.000
## nuts/prunes                                0.000                  0.000
## specialty fat                              0.000                  0.000
## skin care                                  0.000                  0.000
## fish                                       0.000                  0.000
## potato products                            0.000                  0.000
## root vegetables                            0.000                  0.000
## snack products                             0.000                  0.000
## nut snack                                  0.000                  0.000
## soap                                       0.000                  0.000
## syrup                                      0.000                  0.000
## bathroom cleaner                           0.000                  0.000
## canned fruit                               0.000                  0.000
## cookware                                   0.000                  0.000
## cooking chocolate                          0.000                  0.000
## tidbits                                    0.000                  0.000
## cocoa drinks                               0.000                  0.000
## pudding powder                             0.000                  0.000
## ready soups                                0.000                  0.000
## organic marinated meat                     0.000                  0.000
## flower soil/fertilizer                     0.000                  0.000
## organic products                           0.000                  0.000
## pot plants                                 0.000                  0.000
## prosecco                                   0.000                  0.000
## frankfurter                                0.000                  0.000
## decalcifier                                0.000                  0.000
## honey                                      0.000                  0.000
## specialty vegetables                       0.000                  0.000
## cream                                      0.000                  0.000
## hair spray                                 0.000                  0.000
## frozen fruits                              0.000                  0.000
## rubbing alcohol                            0.000                  0.000
## liqueur                                    0.000                  0.000
## make up remover                            0.000                  0.000
## salad dressing                             0.000                  0.000
## frozen chicken                             0.000                  0.000
## whisky                                     0.000                  0.000
## baby cosmetics                             0.000                  0.000
## toilet cleaner                             0.000                  0.000
## bags                                       0.000                  0.000
## canned herbs                               0.000                  0.000
## kitchen utensil                            0.000                  0.000
## preservation products                      0.000                  0.000
## baby food                                  0.000                  0.000
## frozen herbss                              0.000                  0.000
## organic sausage                            0.000                  0.000
## sound storage medium                       0.000                  0.000
##                           dog food   soy instant coffee pip herbs zwieback
## rice                         0.003 0.003          0.002     0.002    0.002
## veggies                      0.002 0.000          0.002     0.000    0.002
## loaf                         0.001 0.000          0.002     0.000    0.001
## coke                         0.002 0.000          0.002     0.000    0.001
## yogurt                       0.002 0.002          0.002     0.001    0.001
## vegetables                   0.001 0.002          0.001     0.002    0.001
## mineral water                0.001 0.000          0.001     0.000    0.001
## Plastic bags                 0.002 0.001          0.001     0.001    0.001
## tropical fruit               0.001 0.000          0.001     0.000    0.001
## marinated meat               0.001 0.000          0.001     0.000    0.000
## pies/pasties                 0.001 0.000          0.001     0.000    0.000
## newspapers                   0.001 0.001          0.001     0.000    0.001
## citrus                       0.001 0.000          0.001     0.000    0.001
## whipped/sour cream           0.001 0.001          0.001     0.001    0.001
## heinken                      0.000 0.000          0.001     0.000    0.000
## green tea                    0.001 0.000          0.000     0.000    0.000
## pip fruit                    0.001 0.000          0.001     0.000    0.001
## brown bread                  0.001 0.001          0.000     0.000    0.000
## fruit/vegetable juice        0.001 0.000          0.001     0.000    0.001
## domestic eggs                0.001 0.001          0.001     0.001    0.001
## coffee                       0.001 0.001          0.001     0.001    0.000
## margarine                    0.000 0.001          0.000     0.001    0.001
## beef                         0.001 0.001          0.001     0.001    0.000
## curd                         0.001 0.001          0.001     0.001    0.001
## butter                       0.000 0.000          0.001     0.001    0.001
## marinated meats              0.000 0.000          0.001     0.000    0.001
## napkins                      0.001 0.000          0.001     0.000    0.001
## halal meat                   0.001 0.000          0.000     0.000    0.000
## chocolate                    0.001 0.000          0.000     0.000    0.000
## frozen vegetables            0.001 0.000          0.001     0.000    0.001
## chicken                      0.001 0.000          0.000     0.001    0.000
## white bread                  0.001 0.000          0.001     0.001    0.000
## cream cheese                 0.001 0.000          0.000     0.001    0.000
## waffles                      0.000 0.000          0.001     0.001    0.001
## dessert                      0.000 0.000          0.000     0.000    0.000
## salty snack                  0.001 0.000          0.001     0.000    0.000
## long life bakery product     0.001 0.000          0.000     0.000    0.000
## berries                      0.000 0.001          0.000     0.000    0.000
## hamburger meat               0.000 0.000          0.000     0.001    0.000
## sugar                        0.000 0.001          0.000     0.001    0.000
## hygiene articles             0.000 0.000          0.001     0.001    0.000
## UHT-milk                     0.000 0.000          0.000     0.000    0.001
## onions                       0.000 0.000          0.001     0.000    0.000
## candy                        0.000 0.000          0.000     0.000    0.000
## specialty chocolate          0.001 0.000          0.000     0.000    0.000
## butter milk                  0.000 0.000          0.000     0.001    0.000
## oil                          0.001 0.000          0.000     0.000    0.000
## frozen meals                 0.001 0.000          0.001     0.001    0.000
## misc. beverages              0.000 0.000          0.001     0.000    0.000
## specialty bar                0.000 0.000          0.000     0.000    0.001
## ham                          0.000 0.000          0.000     0.001    0.001
## beverages                    0.000 0.000          0.000     0.000    0.000
## meat                         0.000 0.000          0.000     0.000    0.000
## ice cream                    0.000 0.000          0.000     0.000    0.000
## sliced cheese                0.000 0.001          0.000     0.001    0.000
## hard cheese                  0.001 0.000          0.000     0.001    0.000
## noodles                      0.000 0.002          0.000     0.001    0.000
## grapes                       0.001 0.001          0.000     0.000    0.000
## cat food                     0.000 0.000          0.000     0.000    0.000
## chewing gum                  0.000 0.000          0.000     0.000    0.000
## soda                         0.000 0.002          0.000     0.001    0.000
## detergent                    0.000 0.000          0.000     0.000    0.000
## red/blush wine               0.000 0.000          0.000     0.000    0.000
## white wine                   0.000 0.000          0.000     0.000    0.000
## turkey                       0.000 0.001          0.000     0.001    0.000
## dishes                       0.000 0.000          0.000     0.000    0.001
## bottled water                0.000 0.001          0.000     0.001    0.000
## flour                        0.000 0.000          0.000     0.000    0.000
## semi-finished bread          0.000 0.000          0.000     0.000    0.001
## baking powder                0.001 0.000          0.000     0.000    0.000
## pickled vegetables           0.000 0.000          0.000     0.000    0.000
## herbs                        0.000 0.000          0.000     0.000    0.000
## tropical herbs               0.000 0.001          0.000     0.002    0.000
## soft cheese                  0.000 0.000          0.000     0.000    0.000
## tea                          0.000 0.001          0.000     0.001    0.000
## processed cheese             0.000 0.000          0.000     0.000    0.000
## sausage                      0.000 0.001          0.000     0.001    0.000
## pasta                        0.001 0.000          0.000     0.000    0.000
## citrus herbs                 0.000 0.001          0.000     0.001    0.000
## potted plants                0.001 0.000          0.000     0.000    0.000
## canned fish                  0.000 0.000          0.000     0.000    0.000
## seasonal products            0.000 0.000          0.000     0.000    0.000
## cake bar                     0.000 0.000          0.000     0.000    0.000
## carrots                      0.000 0.001          0.000     0.001    0.000
## mustard                      0.000 0.000          0.000     0.000    0.000
## packaged fruit/vegetables    0.000 0.000          0.000     0.000    0.000
## spread cheese                0.000 0.000          0.000     0.000    0.000
## frozen dessert               0.000 0.000          0.000     0.000    0.000
## frozen fish                  0.000 0.000          0.000     0.000    0.000
## cling film/bags              0.000 0.000          0.000     0.000    0.000
## salt                         0.000 0.000          0.000     0.000    0.000
## liquor                       0.000 0.000          0.000     0.000    0.000
## canned vegetables            0.000 0.000          0.000     0.000    0.000
## bottled beer                 0.000 0.000          0.000     0.000    0.000
## flower (seeds)               0.000 0.000          0.000     0.000    0.000
## cooking oil                  0.000 0.000          0.000     0.000    0.000
## dish cleaner                 0.000 0.000          0.000     0.000    0.000
## condensed milk               0.000 0.000          0.000     0.000    0.000
## roll products                0.000 0.000          0.000     0.000    0.000
## photo/film                   0.000 0.000          0.000     0.000    0.000
## pet care                     0.000 0.000          0.000     0.000    0.000
## chocolate marshmallow        0.000 0.000          0.000     0.000    0.000
## herbs/vegetable juice        0.000 0.001          0.000     0.001    0.000
## whole milk                   0.000 0.000          0.000     0.001    0.000
## candles                      0.000 0.000          0.000     0.000    0.000
## mayonnaise                   0.000 0.000          0.000     0.000    0.000
## Instant food products        0.000 0.000          0.000     0.000    0.000
## sweet spreads                0.000 0.000          0.000     0.000    0.000
## liquor (appetizer)           0.000 0.000          0.000     0.000    0.000
## specialty cheese             0.000 0.000          0.000     0.000    0.000
## frozen potato products       0.000 0.000          0.000     0.000    0.000
## house keeping products       0.000 0.000          0.000     0.000    0.000
## dog food                     0.008 0.000          0.000     0.000    0.000
## soy                          0.000 0.008          0.000     0.000    0.000
## instant coffee               0.000 0.000          0.007     0.000    0.000
## pip herbs                    0.000 0.000          0.000     0.007    0.000
## zwieback                     0.000 0.000          0.000     0.000    0.007
## finished products            0.000 0.000          0.000     0.000    0.000
## popcorn                      0.000 0.000          0.000     0.000    0.000
## vinegar                      0.000 0.000          0.000     0.000    0.000
## soups                        0.000 0.000          0.000     0.000    0.000
## female sanitary products     0.000 0.000          0.000     0.000    0.000
## sparkling wine               0.000 0.000          0.000     0.000    0.000
## dental care                  0.000 0.000          0.000     0.000    0.000
## cereals                      0.000 0.000          0.000     0.000    0.000
## kitchen towels               0.000 0.000          0.000     0.000    0.000
## curd cheese                  0.000 0.000          0.000     0.000    0.000
## other vegetables             0.000 0.000          0.000     0.001    0.000
## rolls/buns                   0.000 0.000          0.000     0.000    0.000
## softener                     0.000 0.000          0.000     0.000    0.000
## cleaner                      0.000 0.000          0.000     0.000    0.000
## spices                       0.000 0.000          0.000     0.000    0.000
## jam                          0.000 0.000          0.000     0.000    0.000
## sauces                       0.000 0.000          0.000     0.000    0.000
## rum                          0.000 0.000          0.000     0.000    0.000
## liver loaf                   0.000 0.000          0.000     0.000    0.000
## male cosmetics               0.000 0.000          0.000     0.000    0.000
## meat spreads                 0.000 0.000          0.000     0.000    0.000
## packaged herbs/vegetables    0.000 0.000          0.000     0.000    0.000
## brandy                       0.000 0.000          0.000     0.000    0.000
## ketchup                      0.000 0.000          0.000     0.000    0.000
## abrasive cleaner             0.000 0.000          0.000     0.000    0.000
## light bulbs                  0.000 0.000          0.000     0.000    0.000
## artif. sweetener             0.000 0.000          0.000     0.000    0.000
## nuts/prunes                  0.000 0.000          0.000     0.000    0.000
## specialty fat                0.000 0.000          0.000     0.000    0.000
## skin care                    0.000 0.000          0.000     0.000    0.000
## fish                         0.000 0.000          0.000     0.000    0.000
## potato products              0.000 0.000          0.000     0.000    0.000
## root vegetables              0.000 0.000          0.000     0.000    0.000
## snack products               0.000 0.000          0.000     0.000    0.000
## nut snack                    0.000 0.000          0.000     0.000    0.000
## soap                         0.000 0.000          0.000     0.000    0.000
## syrup                        0.000 0.000          0.000     0.000    0.000
## bathroom cleaner             0.000 0.000          0.000     0.000    0.000
## canned fruit                 0.000 0.000          0.000     0.000    0.000
## cookware                     0.000 0.000          0.000     0.000    0.000
## cooking chocolate            0.000 0.000          0.000     0.000    0.000
## tidbits                      0.000 0.000          0.000     0.000    0.000
## cocoa drinks                 0.000 0.000          0.000     0.000    0.000
## pudding powder               0.000 0.000          0.000     0.000    0.000
## ready soups                  0.000 0.000          0.000     0.000    0.000
## organic marinated meat       0.000 0.000          0.000     0.000    0.000
## flower soil/fertilizer       0.000 0.000          0.000     0.000    0.000
## organic products             0.000 0.000          0.000     0.000    0.000
## pot plants                   0.000 0.000          0.000     0.000    0.000
## prosecco                     0.000 0.000          0.000     0.000    0.000
## frankfurter                  0.000 0.000          0.000     0.000    0.000
## decalcifier                  0.000 0.000          0.000     0.000    0.000
## honey                        0.000 0.000          0.000     0.000    0.000
## specialty vegetables         0.000 0.000          0.000     0.000    0.000
## cream                        0.000 0.000          0.000     0.000    0.000
## hair spray                   0.000 0.000          0.000     0.000    0.000
## frozen fruits                0.000 0.000          0.000     0.000    0.000
## rubbing alcohol              0.000 0.000          0.000     0.000    0.000
## liqueur                      0.000 0.000          0.000     0.000    0.000
## make up remover              0.000 0.000          0.000     0.000    0.000
## salad dressing               0.000 0.000          0.000     0.000    0.000
## frozen chicken               0.000 0.000          0.000     0.000    0.000
## whisky                       0.000 0.000          0.000     0.000    0.000
## baby cosmetics               0.000 0.000          0.000     0.000    0.000
## toilet cleaner               0.000 0.000          0.000     0.000    0.000
## bags                         0.000 0.000          0.000     0.000    0.000
## canned herbs                 0.000 0.000          0.000     0.000    0.000
## kitchen utensil              0.000 0.000          0.000     0.000    0.000
## preservation products        0.000 0.000          0.000     0.000    0.000
## baby food                    0.000 0.000          0.000     0.000    0.000
## frozen herbss                0.000 0.000          0.000     0.000    0.000
## organic sausage              0.000 0.000          0.000     0.000    0.000
## sound storage medium         0.000 0.000          0.000     0.000    0.000
##                           finished products popcorn vinegar soups
## rice                                  0.001   0.003   0.003 0.003
## veggies                               0.002   0.001   0.002 0.003
## loaf                                  0.001   0.001   0.001 0.001
## coke                                  0.002   0.002   0.001 0.001
## yogurt                                0.001   0.001   0.002 0.001
## vegetables                            0.001   0.002   0.002 0.002
## mineral water                         0.001   0.001   0.001 0.001
## Plastic bags                          0.001   0.001   0.001 0.001
## tropical fruit                        0.001   0.001   0.001 0.001
## marinated meat                        0.001   0.001   0.001 0.001
## pies/pasties                          0.001   0.001   0.001 0.001
## newspapers                            0.000   0.000   0.001 0.001
## citrus                                0.001   0.001   0.001 0.001
## whipped/sour cream                    0.001   0.001   0.001 0.002
## heinken                               0.000   0.001   0.001 0.001
## green tea                             0.000   0.000   0.000 0.000
## pip fruit                             0.001   0.001   0.001 0.001
## brown bread                           0.001   0.001   0.001 0.001
## fruit/vegetable juice                 0.001   0.001   0.001 0.000
## domestic eggs                         0.001   0.001   0.001 0.001
## coffee                                0.000   0.000   0.001 0.001
## margarine                             0.000   0.000   0.001 0.001
## beef                                  0.001   0.000   0.001 0.001
## curd                                  0.000   0.001   0.001 0.001
## butter                                0.001   0.000   0.001 0.001
## marinated meats                       0.000   0.000   0.001 0.001
## napkins                               0.000   0.000   0.001 0.001
## halal meat                            0.000   0.000   0.000 0.000
## chocolate                             0.001   0.001   0.000 0.001
## frozen vegetables                     0.001   0.001   0.001 0.001
## chicken                               0.000   0.000   0.001 0.001
## white bread                           0.001   0.001   0.000 0.000
## cream cheese                          0.000   0.000   0.001 0.001
## waffles                               0.001   0.000   0.000 0.000
## dessert                               0.000   0.001   0.000 0.000
## salty snack                           0.001   0.002   0.000 0.000
## long life bakery product              0.001   0.000   0.000 0.000
## berries                               0.000   0.001   0.000 0.001
## hamburger meat                        0.000   0.001   0.000 0.001
## sugar                                 0.000   0.000   0.001 0.001
## hygiene articles                      0.000   0.000   0.000 0.001
## UHT-milk                              0.000   0.000   0.000 0.000
## onions                                0.001   0.001   0.001 0.001
## candy                                 0.001   0.001   0.000 0.000
## specialty chocolate                   0.000   0.000   0.000 0.000
## butter milk                           0.000   0.001   0.000 0.000
## oil                                   0.000   0.000   0.001 0.001
## frozen meals                          0.000   0.001   0.000 0.000
## misc. beverages                       0.000   0.000   0.000 0.000
## specialty bar                         0.000   0.000   0.000 0.000
## ham                                   0.000   0.000   0.000 0.000
## beverages                             0.000   0.000   0.000 0.000
## meat                                  0.000   0.000   0.000 0.000
## ice cream                             0.000   0.000   0.000 0.000
## sliced cheese                         0.000   0.000   0.000 0.000
## hard cheese                           0.000   0.001   0.000 0.000
## noodles                               0.000   0.000   0.000 0.000
## grapes                                0.000   0.000   0.000 0.000
## cat food                              0.000   0.000   0.001 0.000
## chewing gum                           0.000   0.000   0.000 0.000
## soda                                  0.000   0.000   0.000 0.000
## detergent                             0.000   0.000   0.001 0.000
## red/blush wine                        0.000   0.000   0.000 0.000
## white wine                            0.000   0.000   0.000 0.000
## turkey                                0.000   0.000   0.000 0.000
## dishes                                0.000   0.000   0.000 0.000
## bottled water                         0.000   0.000   0.000 0.000
## flour                                 0.000   0.000   0.000 0.000
## semi-finished bread                   0.000   0.000   0.001 0.000
## baking powder                         0.000   0.000   0.001 0.000
## pickled vegetables                    0.000   0.000   0.000 0.000
## herbs                                 0.000   0.000   0.000 0.000
## tropical herbs                        0.000   0.000   0.000 0.000
## soft cheese                           0.000   0.000   0.000 0.000
## tea                                   0.000   0.000   0.000 0.000
## processed cheese                      0.000   0.000   0.000 0.000
## sausage                               0.000   0.000   0.000 0.000
## pasta                                 0.001   0.000   0.000 0.001
## citrus herbs                          0.000   0.000   0.000 0.000
## potted plants                         0.001   0.000   0.000 0.000
## canned fish                           0.000   0.000   0.000 0.001
## seasonal products                     0.000   0.000   0.000 0.000
## cake bar                              0.000   0.000   0.000 0.000
## carrots                               0.000   0.000   0.000 0.000
## mustard                               0.000   0.000   0.000 0.000
## packaged fruit/vegetables             0.000   0.000   0.000 0.000
## spread cheese                         0.000   0.000   0.000 0.000
## frozen dessert                        0.000   0.000   0.000 0.000
## frozen fish                           0.000   0.000   0.000 0.000
## cling film/bags                       0.000   0.000   0.000 0.000
## salt                                  0.000   0.000   0.000 0.000
## liquor                                0.000   0.000   0.000 0.000
## canned vegetables                     0.000   0.000   0.000 0.000
## bottled beer                          0.000   0.000   0.000 0.000
## flower (seeds)                        0.000   0.000   0.000 0.000
## cooking oil                           0.000   0.000   0.000 0.000
## dish cleaner                          0.000   0.000   0.000 0.000
## condensed milk                        0.000   0.000   0.000 0.000
## roll products                         0.000   0.000   0.000 0.000
## photo/film                            0.000   0.000   0.000 0.000
## pet care                              0.000   0.000   0.000 0.000
## chocolate marshmallow                 0.000   0.000   0.000 0.000
## herbs/vegetable juice                 0.000   0.000   0.000 0.000
## whole milk                            0.000   0.000   0.000 0.000
## candles                               0.000   0.000   0.000 0.000
## mayonnaise                            0.000   0.000   0.000 0.000
## Instant food products                 0.000   0.000   0.000 0.000
## sweet spreads                         0.000   0.000   0.000 0.000
## liquor (appetizer)                    0.000   0.000   0.000 0.000
## specialty cheese                      0.000   0.000   0.000 0.000
## frozen potato products                0.000   0.000   0.000 0.000
## house keeping products                0.000   0.000   0.000 0.000
## dog food                              0.000   0.000   0.000 0.000
## soy                                   0.000   0.000   0.000 0.000
## instant coffee                        0.000   0.000   0.000 0.000
## pip herbs                             0.000   0.000   0.000 0.000
## zwieback                              0.000   0.000   0.000 0.000
## finished products                     0.007   0.000   0.000 0.000
## popcorn                               0.000   0.007   0.000 0.000
## vinegar                               0.000   0.000   0.007 0.000
## soups                                 0.000   0.000   0.000 0.007
## female sanitary products              0.000   0.000   0.000 0.000
## sparkling wine                        0.000   0.000   0.000 0.000
## dental care                           0.000   0.000   0.000 0.000
## cereals                               0.000   0.000   0.000 0.000
## kitchen towels                        0.000   0.000   0.000 0.000
## curd cheese                           0.000   0.000   0.000 0.000
## other vegetables                      0.000   0.000   0.000 0.000
## rolls/buns                            0.000   0.000   0.000 0.000
## softener                              0.000   0.000   0.000 0.000
## cleaner                               0.000   0.000   0.000 0.000
## spices                                0.000   0.000   0.000 0.000
## jam                                   0.000   0.000   0.000 0.000
## sauces                                0.000   0.000   0.000 0.000
## rum                                   0.000   0.000   0.000 0.000
## liver loaf                            0.000   0.000   0.000 0.000
## male cosmetics                        0.000   0.000   0.000 0.000
## meat spreads                          0.000   0.000   0.000 0.000
## packaged herbs/vegetables             0.000   0.000   0.000 0.000
## brandy                                0.000   0.000   0.000 0.000
## ketchup                               0.000   0.000   0.000 0.000
## abrasive cleaner                      0.000   0.000   0.000 0.000
## light bulbs                           0.000   0.000   0.000 0.000
## artif. sweetener                      0.000   0.000   0.000 0.000
## nuts/prunes                           0.000   0.000   0.000 0.000
## specialty fat                         0.000   0.000   0.000 0.000
## skin care                             0.000   0.000   0.000 0.000
## fish                                  0.000   0.000   0.000 0.000
## potato products                       0.000   0.000   0.000 0.000
## root vegetables                       0.000   0.000   0.000 0.000
## snack products                        0.000   0.000   0.000 0.000
## nut snack                             0.000   0.000   0.000 0.000
## soap                                  0.000   0.000   0.000 0.000
## syrup                                 0.000   0.000   0.000 0.000
## bathroom cleaner                      0.000   0.000   0.000 0.000
## canned fruit                          0.000   0.000   0.000 0.000
## cookware                              0.000   0.000   0.000 0.000
## cooking chocolate                     0.000   0.000   0.000 0.000
## tidbits                               0.000   0.000   0.000 0.000
## cocoa drinks                          0.000   0.000   0.000 0.000
## pudding powder                        0.000   0.000   0.000 0.000
## ready soups                           0.000   0.000   0.000 0.000
## organic marinated meat                0.000   0.000   0.000 0.000
## flower soil/fertilizer                0.000   0.000   0.000 0.000
## organic products                      0.000   0.000   0.000 0.000
## pot plants                            0.000   0.000   0.000 0.000
## prosecco                              0.000   0.000   0.000 0.000
## frankfurter                           0.000   0.000   0.000 0.000
## decalcifier                           0.000   0.000   0.000 0.000
## honey                                 0.000   0.000   0.000 0.000
## specialty vegetables                  0.000   0.000   0.000 0.000
## cream                                 0.000   0.000   0.000 0.000
## hair spray                            0.000   0.000   0.000 0.000
## frozen fruits                         0.000   0.000   0.000 0.000
## rubbing alcohol                       0.000   0.000   0.000 0.000
## liqueur                               0.000   0.000   0.000 0.000
## make up remover                       0.000   0.000   0.000 0.000
## salad dressing                        0.000   0.000   0.000 0.000
## frozen chicken                        0.000   0.000   0.000 0.000
## whisky                                0.000   0.000   0.000 0.000
## baby cosmetics                        0.000   0.000   0.000 0.000
## toilet cleaner                        0.000   0.000   0.000 0.000
## bags                                  0.000   0.000   0.000 0.000
## canned herbs                          0.000   0.000   0.000 0.000
## kitchen utensil                       0.000   0.000   0.000 0.000
## preservation products                 0.000   0.000   0.000 0.000
## baby food                             0.000   0.000   0.000 0.000
## frozen herbss                         0.000   0.000   0.000 0.000
## organic sausage                       0.000   0.000   0.000 0.000
## sound storage medium                  0.000   0.000   0.000 0.000
##                           female sanitary products sparkling wine dental care
## rice                                         0.002          0.001       0.002
## veggies                                      0.001          0.001       0.002
## loaf                                         0.001          0.001       0.001
## coke                                         0.001          0.001       0.001
## yogurt                                       0.002          0.001       0.001
## vegetables                                   0.001          0.001       0.001
## mineral water                                0.001          0.000       0.001
## Plastic bags                                 0.001          0.001       0.001
## tropical fruit                               0.001          0.000       0.001
## marinated meat                               0.000          0.000       0.001
## pies/pasties                                 0.001          0.000       0.001
## newspapers                                   0.000          0.001       0.001
## citrus                                       0.001          0.000       0.001
## whipped/sour cream                           0.001          0.001       0.000
## heinken                                      0.000          0.001       0.001
## green tea                                    0.000          0.000       0.000
## pip fruit                                    0.000          0.000       0.001
## brown bread                                  0.000          0.000       0.001
## fruit/vegetable juice                        0.000          0.001       0.001
## domestic eggs                                0.001          0.001       0.001
## coffee                                       0.001          0.001       0.001
## margarine                                    0.001          0.000       0.001
## beef                                         0.000          0.000       0.001
## curd                                         0.000          0.000       0.001
## butter                                       0.000          0.001       0.001
## marinated meats                              0.000          0.000       0.000
## napkins                                      0.001          0.000       0.001
## halal meat                                   0.001          0.000       0.001
## chocolate                                    0.001          0.000       0.001
## frozen vegetables                            0.000          0.000       0.001
## chicken                                      0.000          0.000       0.000
## white bread                                  0.000          0.001       0.001
## cream cheese                                 0.000          0.000       0.000
## waffles                                      0.000          0.000       0.000
## dessert                                      0.000          0.000       0.001
## salty snack                                  0.000          0.000       0.001
## long life bakery product                     0.001          0.000       0.000
## berries                                      0.000          0.000       0.000
## hamburger meat                               0.000          0.000       0.001
## sugar                                        0.000          0.000       0.000
## hygiene articles                             0.001          0.000       0.001
## UHT-milk                                     0.000          0.000       0.000
## onions                                       0.000          0.000       0.001
## candy                                        0.000          0.000       0.000
## specialty chocolate                          0.000          0.001       0.000
## butter milk                                  0.000          0.000       0.000
## oil                                          0.000          0.000       0.001
## frozen meals                                 0.000          0.000       0.000
## misc. beverages                              0.001          0.001       0.000
## specialty bar                                0.000          0.000       0.000
## ham                                          0.001          0.000       0.000
## beverages                                    0.000          0.000       0.000
## meat                                         0.000          0.000       0.000
## ice cream                                    0.000          0.000       0.000
## sliced cheese                                0.000          0.000       0.000
## hard cheese                                  0.000          0.001       0.000
## noodles                                      0.000          0.000       0.000
## grapes                                       0.000          0.000       0.000
## cat food                                     0.001          0.000       0.000
## chewing gum                                  0.000          0.000       0.000
## soda                                         0.000          0.000       0.000
## detergent                                    0.000          0.000       0.000
## red/blush wine                               0.000          0.000       0.000
## white wine                                   0.000          0.000       0.000
## turkey                                       0.000          0.000       0.000
## dishes                                       0.000          0.000       0.000
## bottled water                                0.000          0.000       0.000
## flour                                        0.000          0.000       0.000
## semi-finished bread                          0.000          0.000       0.000
## baking powder                                0.000          0.000       0.000
## pickled vegetables                           0.000          0.000       0.000
## herbs                                        0.000          0.000       0.000
## tropical herbs                               0.000          0.000       0.000
## soft cheese                                  0.000          0.000       0.000
## tea                                          0.000          0.000       0.000
## processed cheese                             0.000          0.000       0.000
## sausage                                      0.000          0.000       0.000
## pasta                                        0.000          0.000       0.000
## citrus herbs                                 0.000          0.000       0.000
## potted plants                                0.000          0.000       0.000
## canned fish                                  0.000          0.000       0.000
## seasonal products                            0.000          0.000       0.000
## cake bar                                     0.000          0.000       0.000
## carrots                                      0.000          0.000       0.000
## mustard                                      0.000          0.000       0.000
## packaged fruit/vegetables                    0.000          0.000       0.000
## spread cheese                                0.000          0.000       0.000
## frozen dessert                               0.000          0.000       0.000
## frozen fish                                  0.000          0.000       0.000
## cling film/bags                              0.000          0.000       0.000
## salt                                         0.000          0.000       0.000
## liquor                                       0.000          0.000       0.000
## canned vegetables                            0.000          0.000       0.000
## bottled beer                                 0.000          0.000       0.000
## flower (seeds)                               0.000          0.000       0.000
## cooking oil                                  0.000          0.000       0.000
## dish cleaner                                 0.000          0.000       0.000
## condensed milk                               0.000          0.000       0.000
## roll products                                0.000          0.000       0.000
## photo/film                                   0.000          0.000       0.000
## pet care                                     0.000          0.000       0.000
## chocolate marshmallow                        0.000          0.000       0.000
## herbs/vegetable juice                        0.000          0.000       0.000
## whole milk                                   0.000          0.000       0.000
## candles                                      0.000          0.000       0.000
## mayonnaise                                   0.000          0.000       0.000
## Instant food products                        0.000          0.000       0.000
## sweet spreads                                0.000          0.000       0.000
## liquor (appetizer)                           0.000          0.000       0.000
## specialty cheese                             0.000          0.000       0.000
## frozen potato products                       0.000          0.000       0.000
## house keeping products                       0.000          0.000       0.000
## dog food                                     0.000          0.000       0.000
## soy                                          0.000          0.000       0.000
## instant coffee                               0.000          0.000       0.000
## pip herbs                                    0.000          0.000       0.000
## zwieback                                     0.000          0.000       0.000
## finished products                            0.000          0.000       0.000
## popcorn                                      0.000          0.000       0.000
## vinegar                                      0.000          0.000       0.000
## soups                                        0.000          0.000       0.000
## female sanitary products                     0.006          0.000       0.000
## sparkling wine                               0.000          0.006       0.000
## dental care                                  0.000          0.000       0.006
## cereals                                      0.000          0.000       0.000
## kitchen towels                               0.000          0.000       0.000
## curd cheese                                  0.000          0.000       0.000
## other vegetables                             0.000          0.000       0.000
## rolls/buns                                   0.000          0.000       0.000
## softener                                     0.000          0.000       0.000
## cleaner                                      0.001          0.000       0.000
## spices                                       0.000          0.000       0.000
## jam                                          0.000          0.000       0.000
## sauces                                       0.000          0.000       0.000
## rum                                          0.000          0.000       0.000
## liver loaf                                   0.000          0.000       0.000
## male cosmetics                               0.000          0.000       0.000
## meat spreads                                 0.000          0.000       0.000
## packaged herbs/vegetables                    0.000          0.000       0.000
## brandy                                       0.000          0.000       0.000
## ketchup                                      0.000          0.000       0.000
## abrasive cleaner                             0.000          0.000       0.000
## light bulbs                                  0.000          0.000       0.000
## artif. sweetener                             0.000          0.000       0.000
## nuts/prunes                                  0.000          0.000       0.000
## specialty fat                                0.000          0.000       0.000
## skin care                                    0.000          0.000       0.000
## fish                                         0.000          0.000       0.000
## potato products                              0.000          0.000       0.000
## root vegetables                              0.000          0.000       0.000
## snack products                               0.000          0.000       0.000
## nut snack                                    0.000          0.000       0.000
## soap                                         0.000          0.000       0.000
## syrup                                        0.000          0.000       0.000
## bathroom cleaner                             0.000          0.000       0.000
## canned fruit                                 0.000          0.000       0.000
## cookware                                     0.000          0.000       0.000
## cooking chocolate                            0.000          0.000       0.000
## tidbits                                      0.000          0.000       0.000
## cocoa drinks                                 0.000          0.000       0.000
## pudding powder                               0.000          0.000       0.000
## ready soups                                  0.000          0.000       0.000
## organic marinated meat                       0.000          0.000       0.000
## flower soil/fertilizer                       0.000          0.000       0.000
## organic products                             0.000          0.000       0.000
## pot plants                                   0.000          0.000       0.000
## prosecco                                     0.000          0.000       0.000
## frankfurter                                  0.000          0.000       0.000
## decalcifier                                  0.000          0.000       0.000
## honey                                        0.000          0.000       0.000
## specialty vegetables                         0.000          0.000       0.000
## cream                                        0.000          0.000       0.000
## hair spray                                   0.000          0.000       0.000
## frozen fruits                                0.000          0.000       0.000
## rubbing alcohol                              0.000          0.000       0.000
## liqueur                                      0.000          0.000       0.000
## make up remover                              0.000          0.000       0.000
## salad dressing                               0.000          0.000       0.000
## frozen chicken                               0.000          0.000       0.000
## whisky                                       0.000          0.000       0.000
## baby cosmetics                               0.000          0.000       0.000
## toilet cleaner                               0.000          0.000       0.000
## bags                                         0.000          0.000       0.000
## canned herbs                                 0.000          0.000       0.000
## kitchen utensil                              0.000          0.000       0.000
## preservation products                        0.000          0.000       0.000
## baby food                                    0.000          0.000       0.000
## frozen herbss                                0.000          0.000       0.000
## organic sausage                              0.000          0.000       0.000
## sound storage medium                         0.000          0.000       0.000
##                           cereals kitchen towels curd cheese other vegetables
## rice                        0.004          0.002       0.002            0.000
## veggies                     0.002          0.002       0.002            0.000
## loaf                        0.001          0.001       0.001            0.000
## coke                        0.001          0.001       0.000            0.000
## yogurt                      0.002          0.001       0.001            0.001
## vegetables                  0.001          0.001       0.001            0.000
## mineral water               0.000          0.000       0.001            0.000
## Plastic bags                0.001          0.001       0.000            0.001
## tropical fruit              0.001          0.001       0.001            0.000
## marinated meat              0.001          0.001       0.001            0.000
## pies/pasties                0.001          0.001       0.000            0.001
## newspapers                  0.000          0.001       0.000            0.001
## citrus                      0.000          0.000       0.001            0.000
## whipped/sour cream          0.001          0.001       0.001            0.001
## heinken                     0.001          0.000       0.001            0.000
## green tea                   0.000          0.000       0.000            0.000
## pip fruit                   0.001          0.001       0.001            0.000
## brown bread                 0.001          0.001       0.000            0.001
## fruit/vegetable juice       0.001          0.001       0.001            0.000
## domestic eggs               0.001          0.001       0.001            0.001
## coffee                      0.000          0.001       0.001            0.000
## margarine                   0.001          0.001       0.001            0.000
## beef                        0.000          0.000       0.000            0.001
## curd                        0.001          0.000       0.001            0.001
## butter                      0.001          0.001       0.000            0.001
## marinated meats             0.000          0.001       0.000            0.000
## napkins                     0.001          0.001       0.000            0.001
## halal meat                  0.000          0.001       0.001            0.000
## chocolate                   0.000          0.000       0.000            0.000
## frozen vegetables           0.000          0.001       0.001            0.001
## chicken                     0.000          0.000       0.000            0.001
## white bread                 0.000          0.000       0.000            0.001
## cream cheese                0.001          0.001       0.000            0.000
## waffles                     0.001          0.000       0.000            0.000
## dessert                     0.000          0.000       0.000            0.000
## salty snack                 0.000          0.001       0.000            0.000
## long life bakery product    0.001          0.000       0.000            0.000
## berries                     0.001          0.000       0.000            0.000
## hamburger meat              0.001          0.001       0.000            0.001
## sugar                       0.001          0.001       0.000            0.000
## hygiene articles            0.000          0.000       0.001            0.000
## UHT-milk                    0.000          0.000       0.000            0.000
## onions                      0.000          0.000       0.000            0.001
## candy                       0.000          0.000       0.000            0.000
## specialty chocolate         0.001          0.001       0.000            0.000
## butter milk                 0.000          0.000       0.001            0.000
## oil                         0.000          0.000       0.000            0.000
## frozen meals                0.001          0.001       0.000            0.000
## misc. beverages             0.000          0.000       0.000            0.000
## specialty bar               0.000          0.000       0.000            0.000
## ham                         0.000          0.000       0.000            0.000
## beverages                   0.000          0.000       0.000            0.000
## meat                        0.000          0.000       0.000            0.000
## ice cream                   0.000          0.000       0.000            0.000
## sliced cheese               0.000          0.000       0.000            0.000
## hard cheese                 0.001          0.000       0.000            0.000
## noodles                     0.000          0.000       0.000            0.000
## grapes                      0.000          0.000       0.000            0.000
## cat food                    0.000          0.001       0.001            0.000
## chewing gum                 0.000          0.000       0.000            0.000
## soda                        0.000          0.000       0.000            0.001
## detergent                   0.000          0.000       0.000            0.000
## red/blush wine              0.000          0.000       0.000            0.000
## white wine                  0.000          0.000       0.000            0.000
## turkey                      0.000          0.000       0.000            0.000
## dishes                      0.000          0.000       0.000            0.000
## bottled water               0.000          0.000       0.000            0.001
## flour                       0.000          0.000       0.000            0.000
## semi-finished bread         0.000          0.000       0.000            0.000
## baking powder               0.000          0.000       0.000            0.000
## pickled vegetables          0.000          0.000       0.000            0.000
## herbs                       0.000          0.000       0.000            0.000
## tropical herbs              0.000          0.000       0.000            0.001
## soft cheese                 0.000          0.000       0.001            0.000
## tea                         0.000          0.000       0.000            0.000
## processed cheese            0.000          0.000       0.000            0.000
## sausage                     0.000          0.000       0.000            0.000
## pasta                       0.000          0.000       0.000            0.000
## citrus herbs                0.000          0.000       0.000            0.001
## potted plants               0.000          0.000       0.000            0.000
## canned fish                 0.000          0.000       0.000            0.000
## seasonal products           0.000          0.000       0.000            0.000
## cake bar                    0.000          0.000       0.000            0.000
## carrots                     0.000          0.000       0.000            0.000
## mustard                     0.000          0.000       0.000            0.000
## packaged fruit/vegetables   0.000          0.000       0.000            0.000
## spread cheese               0.000          0.000       0.000            0.000
## frozen dessert              0.000          0.000       0.000            0.000
## frozen fish                 0.000          0.000       0.000            0.000
## cling film/bags             0.000          0.000       0.000            0.000
## salt                        0.000          0.000       0.000            0.000
## liquor                      0.000          0.000       0.000            0.000
## canned vegetables           0.000          0.000       0.000            0.000
## bottled beer                0.000          0.000       0.000            0.000
## flower (seeds)              0.000          0.000       0.000            0.000
## cooking oil                 0.000          0.000       0.000            0.000
## dish cleaner                0.000          0.000       0.000            0.000
## condensed milk              0.000          0.000       0.000            0.000
## roll products               0.000          0.000       0.000            0.000
## photo/film                  0.000          0.000       0.000            0.000
## pet care                    0.000          0.000       0.000            0.000
## chocolate marshmallow       0.000          0.000       0.000            0.000
## herbs/vegetable juice       0.000          0.000       0.000            0.000
## whole milk                  0.000          0.000       0.000            0.002
## candles                     0.000          0.000       0.000            0.000
## mayonnaise                  0.000          0.000       0.000            0.000
## Instant food products       0.000          0.000       0.000            0.000
## sweet spreads               0.000          0.000       0.000            0.000
## liquor (appetizer)          0.000          0.000       0.000            0.000
## specialty cheese            0.000          0.000       0.000            0.000
## frozen potato products      0.000          0.000       0.000            0.000
## house keeping products      0.000          0.000       0.000            0.000
## dog food                    0.000          0.000       0.000            0.000
## soy                         0.000          0.000       0.000            0.000
## instant coffee              0.000          0.000       0.000            0.000
## pip herbs                   0.000          0.000       0.000            0.001
## zwieback                    0.000          0.000       0.000            0.000
## finished products           0.000          0.000       0.000            0.000
## popcorn                     0.000          0.000       0.000            0.000
## vinegar                     0.000          0.000       0.000            0.000
## soups                       0.000          0.000       0.000            0.000
## female sanitary products    0.000          0.000       0.000            0.000
## sparkling wine              0.000          0.000       0.000            0.000
## dental care                 0.000          0.000       0.000            0.000
## cereals                     0.006          0.000       0.000            0.000
## kitchen towels              0.000          0.006       0.000            0.000
## curd cheese                 0.000          0.000       0.006            0.000
## other vegetables            0.000          0.000       0.000            0.006
## rolls/buns                  0.000          0.000       0.000            0.001
## softener                    0.000          0.000       0.000            0.000
## cleaner                     0.000          0.000       0.000            0.000
## spices                      0.000          0.000       0.000            0.000
## jam                         0.000          0.000       0.000            0.000
## sauces                      0.000          0.000       0.000            0.000
## rum                         0.000          0.000       0.000            0.000
## liver loaf                  0.000          0.000       0.000            0.000
## male cosmetics              0.000          0.000       0.000            0.000
## meat spreads                0.000          0.000       0.000            0.000
## packaged herbs/vegetables   0.000          0.000       0.000            0.000
## brandy                      0.000          0.000       0.000            0.000
## ketchup                     0.000          0.000       0.000            0.000
## abrasive cleaner            0.000          0.000       0.000            0.000
## light bulbs                 0.000          0.000       0.000            0.000
## artif. sweetener            0.000          0.000       0.000            0.000
## nuts/prunes                 0.000          0.000       0.000            0.000
## specialty fat               0.000          0.000       0.000            0.000
## skin care                   0.000          0.000       0.000            0.000
## fish                        0.000          0.000       0.000            0.000
## potato products             0.000          0.000       0.000            0.000
## root vegetables             0.000          0.000       0.000            0.001
## snack products              0.000          0.000       0.000            0.000
## nut snack                   0.000          0.000       0.000            0.000
## soap                        0.000          0.000       0.000            0.000
## syrup                       0.000          0.000       0.000            0.000
## bathroom cleaner            0.000          0.000       0.000            0.000
## canned fruit                0.000          0.000       0.000            0.000
## cookware                    0.000          0.000       0.000            0.000
## cooking chocolate           0.000          0.000       0.000            0.000
## tidbits                     0.000          0.000       0.000            0.000
## cocoa drinks                0.000          0.000       0.000            0.000
## pudding powder              0.000          0.000       0.000            0.000
## ready soups                 0.000          0.000       0.000            0.000
## organic marinated meat      0.000          0.000       0.000            0.000
## flower soil/fertilizer      0.000          0.000       0.000            0.000
## organic products            0.000          0.000       0.000            0.000
## pot plants                  0.000          0.000       0.000            0.000
## prosecco                    0.000          0.000       0.000            0.000
## frankfurter                 0.000          0.000       0.000            0.001
## decalcifier                 0.000          0.000       0.000            0.000
## honey                       0.000          0.000       0.000            0.000
## specialty vegetables        0.000          0.000       0.000            0.000
## cream                       0.000          0.000       0.000            0.000
## hair spray                  0.000          0.000       0.000            0.000
## frozen fruits               0.000          0.000       0.000            0.000
## rubbing alcohol             0.000          0.000       0.000            0.000
## liqueur                     0.000          0.000       0.000            0.000
## make up remover             0.000          0.000       0.000            0.000
## salad dressing              0.000          0.000       0.000            0.000
## frozen chicken              0.000          0.000       0.000            0.000
## whisky                      0.000          0.000       0.000            0.000
## baby cosmetics              0.000          0.000       0.000            0.000
## toilet cleaner              0.000          0.000       0.000            0.000
## bags                        0.000          0.000       0.000            0.000
## canned herbs                0.000          0.000       0.000            0.000
## kitchen utensil             0.000          0.000       0.000            0.000
## preservation products       0.000          0.000       0.000            0.000
## baby food                   0.000          0.000       0.000            0.000
## frozen herbss               0.000          0.000       0.000            0.000
## organic sausage             0.000          0.000       0.000            0.000
## sound storage medium        0.000          0.000       0.000            0.000
##                           rolls/buns softener cleaner spices   jam sauces   rum
## rice                           0.000    0.002   0.002  0.001 0.003  0.002 0.002
## veggies                        0.000    0.001   0.001  0.002 0.002  0.001 0.001
## loaf                           0.000    0.001   0.001  0.001 0.001  0.001 0.001
## coke                           0.000    0.001   0.001  0.001 0.001  0.001 0.001
## yogurt                         0.001    0.001   0.002  0.001 0.001  0.001 0.001
## vegetables                     0.000    0.001   0.001  0.001 0.002  0.001 0.001
## mineral water                  0.000    0.001   0.001  0.001 0.001  0.001 0.001
## Plastic bags                   0.000    0.001   0.001  0.001 0.001  0.001 0.000
## tropical fruit                 0.000    0.001   0.000  0.001 0.001  0.001 0.001
## marinated meat                 0.000    0.001   0.001  0.001 0.001  0.001 0.000
## pies/pasties                   0.001    0.000   0.001  0.000 0.001  0.001 0.000
## newspapers                     0.001    0.001   0.001  0.000 0.000  0.001 0.000
## citrus                         0.000    0.001   0.001  0.001 0.001  0.000 0.000
## whipped/sour cream             0.000    0.001   0.001  0.001 0.001  0.000 0.000
## heinken                        0.000    0.001   0.000  0.001 0.000  0.000 0.001
## green tea                      0.000    0.001   0.000  0.000 0.000  0.000 0.000
## pip fruit                      0.000    0.001   0.000  0.001 0.001  0.001 0.000
## brown bread                    0.000    0.000   0.000  0.000 0.001  0.001 0.000
## fruit/vegetable juice          0.000    0.000   0.001  0.000 0.001  0.001 0.000
## domestic eggs                  0.000    0.001   0.001  0.001 0.001  0.000 0.001
## coffee                         0.001    0.000   0.001  0.000 0.001  0.000 0.000
## margarine                      0.000    0.001   0.000  0.000 0.001  0.000 0.001
## beef                           0.000    0.000   0.000  0.001 0.001  0.000 0.000
## curd                           0.000    0.000   0.001  0.001 0.001  0.000 0.001
## butter                         0.001    0.001   0.000  0.001 0.001  0.000 0.001
## marinated meats                0.000    0.000   0.000  0.000 0.001  0.000 0.000
## napkins                        0.000    0.001   0.001  0.000 0.001  0.001 0.000
## halal meat                     0.000    0.000   0.000  0.000 0.000  0.000 0.000
## chocolate                      0.000    0.000   0.000  0.001 0.000  0.000 0.000
## frozen vegetables              0.000    0.000   0.001  0.001 0.001  0.000 0.000
## chicken                        0.000    0.001   0.001  0.001 0.000  0.000 0.000
## white bread                    0.000    0.001   0.000  0.000 0.000  0.000 0.000
## cream cheese                   0.000    0.000   0.000  0.000 0.001  0.000 0.000
## waffles                        0.001    0.000   0.001  0.000 0.001  0.001 0.000
## dessert                        0.000    0.000   0.001  0.001 0.000  0.000 0.000
## salty snack                    0.000    0.000   0.000  0.000 0.000  0.001 0.000
## long life bakery product       0.000    0.000   0.000  0.001 0.000  0.000 0.001
## berries                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## hamburger meat                 0.000    0.001   0.000  0.001 0.000  0.001 0.000
## sugar                          0.000    0.000   0.000  0.000 0.001  0.001 0.000
## hygiene articles               0.000    0.001   0.000  0.000 0.001  0.000 0.000
## UHT-milk                       0.000    0.000   0.000  0.000 0.000  0.000 0.000
## onions                         0.000    0.000   0.000  0.001 0.001  0.000 0.000
## candy                          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## specialty chocolate            0.000    0.000   0.000  0.000 0.000  0.000 0.000
## butter milk                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## oil                            0.000    0.000   0.000  0.000 0.000  0.000 0.000
## frozen meals                   0.000    0.000   0.000  0.000 0.000  0.000 0.000
## misc. beverages                0.000    0.000   0.000  0.000 0.000  0.000 0.000
## specialty bar                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## ham                            0.000    0.000   0.000  0.000 0.000  0.000 0.000
## beverages                      0.000    0.000   0.000  0.000 0.000  0.000 0.000
## meat                           0.000    0.000   0.000  0.000 0.000  0.000 0.000
## ice cream                      0.000    0.000   0.000  0.000 0.000  0.000 0.000
## sliced cheese                  0.000    0.000   0.000  0.000 0.000  0.000 0.001
## hard cheese                    0.000    0.000   0.000  0.000 0.000  0.001 0.000
## noodles                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## grapes                         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cat food                       0.000    0.000   0.000  0.000 0.000  0.000 0.000
## chewing gum                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## soda                           0.001    0.000   0.000  0.000 0.000  0.000 0.000
## detergent                      0.000    0.001   0.001  0.000 0.000  0.000 0.000
## red/blush wine                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## white wine                     0.000    0.000   0.000  0.000 0.000  0.000 0.000
## turkey                         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## dishes                         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## bottled water                  0.001    0.000   0.000  0.000 0.000  0.000 0.000
## flour                          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## semi-finished bread            0.000    0.000   0.000  0.000 0.000  0.000 0.000
## baking powder                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## pickled vegetables             0.000    0.000   0.000  0.000 0.000  0.000 0.000
## herbs                          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## tropical herbs                 0.001    0.000   0.000  0.000 0.000  0.000 0.000
## soft cheese                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## tea                            0.000    0.000   0.000  0.000 0.000  0.000 0.000
## processed cheese               0.000    0.000   0.000  0.000 0.000  0.000 0.000
## sausage                        0.001    0.000   0.000  0.000 0.000  0.000 0.000
## pasta                          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## citrus herbs                   0.000    0.000   0.000  0.000 0.000  0.000 0.000
## potted plants                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## canned fish                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## seasonal products              0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cake bar                       0.000    0.000   0.000  0.000 0.000  0.000 0.000
## carrots                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## mustard                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## packaged fruit/vegetables      0.000    0.000   0.000  0.000 0.000  0.000 0.000
## spread cheese                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## frozen dessert                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## frozen fish                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cling film/bags                0.000    0.000   0.000  0.000 0.000  0.000 0.001
## salt                           0.000    0.000   0.000  0.000 0.001  0.000 0.000
## liquor                         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## canned vegetables              0.000    0.000   0.000  0.000 0.000  0.000 0.000
## bottled beer                   0.001    0.000   0.000  0.000 0.000  0.000 0.000
## flower (seeds)                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cooking oil                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## dish cleaner                   0.000    0.000   0.000  0.000 0.000  0.000 0.000
## condensed milk                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## roll products                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## photo/film                     0.000    0.000   0.000  0.000 0.000  0.000 0.000
## pet care                       0.000    0.000   0.000  0.000 0.000  0.000 0.000
## chocolate marshmallow          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## herbs/vegetable juice          0.001    0.000   0.000  0.000 0.000  0.000 0.000
## whole milk                     0.002    0.000   0.000  0.000 0.000  0.000 0.000
## candles                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## mayonnaise                     0.000    0.000   0.000  0.000 0.000  0.000 0.000
## Instant food products          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## sweet spreads                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## liquor (appetizer)             0.000    0.000   0.000  0.000 0.000  0.000 0.000
## specialty cheese               0.000    0.000   0.000  0.000 0.000  0.000 0.000
## frozen potato products         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## house keeping products         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## dog food                       0.000    0.000   0.000  0.000 0.000  0.000 0.000
## soy                            0.000    0.000   0.000  0.000 0.000  0.000 0.000
## instant coffee                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## pip herbs                      0.000    0.000   0.000  0.000 0.000  0.000 0.000
## zwieback                       0.000    0.000   0.000  0.000 0.000  0.000 0.000
## finished products              0.000    0.000   0.000  0.000 0.000  0.000 0.000
## popcorn                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## vinegar                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## soups                          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## female sanitary products       0.000    0.000   0.001  0.000 0.000  0.000 0.000
## sparkling wine                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## dental care                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cereals                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## kitchen towels                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## curd cheese                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## other vegetables               0.001    0.000   0.000  0.000 0.000  0.000 0.000
## rolls/buns                     0.006    0.000   0.000  0.000 0.000  0.000 0.000
## softener                       0.000    0.005   0.000  0.000 0.000  0.000 0.000
## cleaner                        0.000    0.000   0.005  0.000 0.000  0.000 0.000
## spices                         0.000    0.000   0.000  0.005 0.000  0.000 0.000
## jam                            0.000    0.000   0.000  0.000 0.005  0.000 0.000
## sauces                         0.000    0.000   0.000  0.000 0.000  0.005 0.000
## rum                            0.000    0.000   0.000  0.000 0.000  0.000 0.005
## liver loaf                     0.000    0.000   0.000  0.000 0.000  0.000 0.000
## male cosmetics                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## meat spreads                   0.000    0.000   0.000  0.000 0.000  0.000 0.000
## packaged herbs/vegetables      0.000    0.000   0.000  0.000 0.000  0.000 0.000
## brandy                         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## ketchup                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## abrasive cleaner               0.000    0.000   0.001  0.000 0.000  0.000 0.000
## light bulbs                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## artif. sweetener               0.000    0.000   0.000  0.000 0.000  0.000 0.000
## nuts/prunes                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## specialty fat                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## skin care                      0.000    0.000   0.000  0.000 0.000  0.000 0.000
## fish                           0.000    0.000   0.000  0.000 0.000  0.000 0.000
## potato products                0.000    0.000   0.000  0.000 0.000  0.000 0.000
## root vegetables                0.001    0.000   0.000  0.000 0.000  0.000 0.000
## snack products                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## nut snack                      0.000    0.000   0.000  0.000 0.000  0.000 0.000
## soap                           0.000    0.000   0.000  0.000 0.000  0.000 0.000
## syrup                          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## bathroom cleaner               0.000    0.000   0.000  0.000 0.000  0.000 0.000
## canned fruit                   0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cookware                       0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cooking chocolate              0.000    0.000   0.000  0.000 0.000  0.000 0.000
## tidbits                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cocoa drinks                   0.000    0.000   0.000  0.000 0.000  0.000 0.000
## pudding powder                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## ready soups                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## organic marinated meat         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## flower soil/fertilizer         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## organic products               0.000    0.000   0.000  0.000 0.000  0.000 0.000
## pot plants                     0.000    0.000   0.000  0.000 0.000  0.000 0.000
## prosecco                       0.000    0.000   0.000  0.000 0.000  0.000 0.000
## frankfurter                    0.001    0.000   0.000  0.000 0.000  0.000 0.000
## decalcifier                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## honey                          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## specialty vegetables           0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cream                          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## hair spray                     0.000    0.000   0.000  0.000 0.000  0.000 0.000
## frozen fruits                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## rubbing alcohol                0.000    0.000   0.000  0.000 0.000  0.000 0.000
## liqueur                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## make up remover                0.000    0.000   0.000  0.000 0.000  0.000 0.000
## salad dressing                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## frozen chicken                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## whisky                         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## baby cosmetics                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## toilet cleaner                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## bags                           0.000    0.000   0.000  0.000 0.000  0.000 0.000
## canned herbs                   0.000    0.000   0.000  0.000 0.000  0.000 0.000
## kitchen utensil                0.000    0.000   0.000  0.000 0.000  0.000 0.000
## preservation products          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## baby food                      0.000    0.000   0.000  0.000 0.000  0.000 0.000
## frozen herbss                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## organic sausage                0.000    0.000   0.000  0.000 0.000  0.000 0.000
## sound storage medium           0.000    0.000   0.000  0.000 0.000  0.000 0.000
##                           liver loaf male cosmetics meat spreads
## rice                           0.002          0.001        0.001
## veggies                        0.001          0.001        0.001
## loaf                           0.001          0.001        0.001
## coke                           0.001          0.001        0.001
## yogurt                         0.001          0.001        0.002
## vegetables                     0.001          0.001        0.001
## mineral water                  0.000          0.001        0.001
## Plastic bags                   0.001          0.001        0.001
## tropical fruit                 0.001          0.000        0.001
## marinated meat                 0.001          0.001        0.001
## pies/pasties                   0.001          0.001        0.000
## newspapers                     0.000          0.001        0.000
## citrus                         0.000          0.001        0.000
## whipped/sour cream             0.000          0.000        0.000
## heinken                        0.000          0.000        0.000
## green tea                      0.000          0.001        0.000
## pip fruit                      0.001          0.000        0.000
## brown bread                    0.000          0.000        0.001
## fruit/vegetable juice          0.001          0.000        0.001
## domestic eggs                  0.000          0.000        0.001
## coffee                         0.000          0.000        0.000
## margarine                      0.001          0.000        0.000
## beef                           0.000          0.000        0.000
## curd                           0.001          0.000        0.000
## butter                         0.000          0.000        0.000
## marinated meats                0.001          0.000        0.000
## napkins                        0.000          0.000        0.000
## halal meat                     0.000          0.000        0.000
## chocolate                      0.000          0.000        0.001
## frozen vegetables              0.001          0.000        0.000
## chicken                        0.000          0.000        0.000
## white bread                    0.000          0.000        0.000
## cream cheese                   0.001          0.000        0.001
## waffles                        0.000          0.000        0.000
## dessert                        0.000          0.000        0.000
## salty snack                    0.000          0.000        0.000
## long life bakery product       0.000          0.000        0.000
## berries                        0.000          0.000        0.000
## hamburger meat                 0.000          0.000        0.001
## sugar                          0.000          0.000        0.000
## hygiene articles               0.000          0.000        0.000
## UHT-milk                       0.000          0.000        0.000
## onions                         0.000          0.000        0.000
## candy                          0.000          0.000        0.000
## specialty chocolate            0.000          0.000        0.000
## butter milk                    0.000          0.000        0.000
## oil                            0.000          0.000        0.000
## frozen meals                   0.000          0.000        0.000
## misc. beverages                0.000          0.000        0.000
## specialty bar                  0.000          0.000        0.000
## ham                            0.000          0.000        0.000
## beverages                      0.000          0.000        0.000
## meat                           0.000          0.000        0.000
## ice cream                      0.000          0.000        0.000
## sliced cheese                  0.000          0.000        0.000
## hard cheese                    0.000          0.000        0.000
## noodles                        0.000          0.000        0.000
## grapes                         0.000          0.000        0.000
## cat food                       0.000          0.000        0.000
## chewing gum                    0.000          0.000        0.000
## soda                           0.000          0.000        0.000
## detergent                      0.000          0.000        0.000
## red/blush wine                 0.000          0.000        0.000
## white wine                     0.000          0.000        0.000
## turkey                         0.000          0.000        0.000
## dishes                         0.000          0.000        0.000
## bottled water                  0.000          0.000        0.000
## flour                          0.000          0.000        0.000
## semi-finished bread            0.000          0.000        0.000
## baking powder                  0.000          0.000        0.000
## pickled vegetables             0.000          0.000        0.000
## herbs                          0.000          0.000        0.000
## tropical herbs                 0.000          0.000        0.000
## soft cheese                    0.000          0.000        0.000
## tea                            0.000          0.000        0.000
## processed cheese               0.000          0.000        0.000
## sausage                        0.000          0.000        0.000
## pasta                          0.000          0.000        0.000
## citrus herbs                   0.000          0.000        0.000
## potted plants                  0.000          0.000        0.000
## canned fish                    0.000          0.000        0.001
## seasonal products              0.000          0.000        0.000
## cake bar                       0.000          0.000        0.000
## carrots                        0.000          0.000        0.000
## mustard                        0.000          0.000        0.000
## packaged fruit/vegetables      0.000          0.000        0.000
## spread cheese                  0.000          0.000        0.000
## frozen dessert                 0.000          0.000        0.000
## frozen fish                    0.000          0.000        0.000
## cling film/bags                0.000          0.000        0.000
## salt                           0.000          0.000        0.000
## liquor                         0.000          0.000        0.000
## canned vegetables              0.000          0.000        0.000
## bottled beer                   0.000          0.000        0.000
## flower (seeds)                 0.000          0.000        0.000
## cooking oil                    0.000          0.000        0.000
## dish cleaner                   0.000          0.000        0.000
## condensed milk                 0.000          0.000        0.000
## roll products                  0.000          0.000        0.000
## photo/film                     0.000          0.000        0.000
## pet care                       0.000          0.000        0.000
## chocolate marshmallow          0.000          0.000        0.000
## herbs/vegetable juice          0.000          0.000        0.000
## whole milk                     0.000          0.000        0.000
## candles                        0.000          0.000        0.000
## mayonnaise                     0.000          0.000        0.000
## Instant food products          0.000          0.000        0.000
## sweet spreads                  0.000          0.000        0.000
## liquor (appetizer)             0.000          0.000        0.000
## specialty cheese               0.000          0.000        0.000
## frozen potato products         0.000          0.000        0.000
## house keeping products         0.000          0.000        0.000
## dog food                       0.000          0.000        0.000
## soy                            0.000          0.000        0.000
## instant coffee                 0.000          0.000        0.000
## pip herbs                      0.000          0.000        0.000
## zwieback                       0.000          0.000        0.000
## finished products              0.000          0.000        0.000
## popcorn                        0.000          0.000        0.000
## vinegar                        0.000          0.000        0.000
## soups                          0.000          0.000        0.000
## female sanitary products       0.000          0.000        0.000
## sparkling wine                 0.000          0.000        0.000
## dental care                    0.000          0.000        0.000
## cereals                        0.000          0.000        0.000
## kitchen towels                 0.000          0.000        0.000
## curd cheese                    0.000          0.000        0.000
## other vegetables               0.000          0.000        0.000
## rolls/buns                     0.000          0.000        0.000
## softener                       0.000          0.000        0.000
## cleaner                        0.000          0.000        0.000
## spices                         0.000          0.000        0.000
## jam                            0.000          0.000        0.000
## sauces                         0.000          0.000        0.000
## rum                            0.000          0.000        0.000
## liver loaf                     0.005          0.000        0.000
## male cosmetics                 0.000          0.004        0.000
## meat spreads                   0.000          0.000        0.004
## packaged herbs/vegetables      0.000          0.000        0.000
## brandy                         0.000          0.000        0.000
## ketchup                        0.000          0.000        0.000
## abrasive cleaner               0.000          0.000        0.000
## light bulbs                    0.000          0.000        0.000
## artif. sweetener               0.000          0.000        0.000
## nuts/prunes                    0.000          0.000        0.000
## specialty fat                  0.000          0.000        0.000
## skin care                      0.000          0.000        0.000
## fish                           0.000          0.000        0.000
## potato products                0.000          0.000        0.000
## root vegetables                0.000          0.000        0.000
## snack products                 0.000          0.000        0.000
## nut snack                      0.000          0.000        0.000
## soap                           0.000          0.000        0.000
## syrup                          0.000          0.000        0.000
## bathroom cleaner               0.000          0.000        0.000
## canned fruit                   0.000          0.000        0.000
## cookware                       0.000          0.000        0.000
## cooking chocolate              0.000          0.000        0.000
## tidbits                        0.000          0.000        0.000
## cocoa drinks                   0.000          0.000        0.000
## pudding powder                 0.000          0.000        0.000
## ready soups                    0.000          0.000        0.000
## organic marinated meat         0.000          0.000        0.000
## flower soil/fertilizer         0.000          0.000        0.000
## organic products               0.000          0.000        0.000
## pot plants                     0.000          0.000        0.000
## prosecco                       0.000          0.000        0.000
## frankfurter                    0.000          0.000        0.000
## decalcifier                    0.000          0.000        0.000
## honey                          0.000          0.000        0.000
## specialty vegetables           0.000          0.000        0.000
## cream                          0.000          0.000        0.000
## hair spray                     0.000          0.000        0.000
## frozen fruits                  0.000          0.000        0.000
## rubbing alcohol                0.000          0.000        0.000
## liqueur                        0.000          0.000        0.000
## make up remover                0.000          0.000        0.000
## salad dressing                 0.000          0.000        0.000
## frozen chicken                 0.000          0.000        0.000
## whisky                         0.000          0.000        0.000
## baby cosmetics                 0.000          0.000        0.000
## toilet cleaner                 0.000          0.000        0.000
## bags                           0.000          0.000        0.000
## canned herbs                   0.000          0.000        0.000
## kitchen utensil                0.000          0.000        0.000
## preservation products          0.000          0.000        0.000
## baby food                      0.000          0.000        0.000
## frozen herbss                  0.000          0.000        0.000
## organic sausage                0.000          0.000        0.000
## sound storage medium           0.000          0.000        0.000
##                           packaged herbs/vegetables brandy ketchup
## rice                                          0.002  0.001   0.001
## veggies                                       0.000  0.001   0.001
## loaf                                          0.000  0.001   0.000
## coke                                          0.000  0.001   0.001
## yogurt                                        0.001  0.001   0.001
## vegetables                                    0.001  0.001   0.001
## mineral water                                 0.000  0.000   0.000
## Plastic bags                                  0.000  0.001   0.000
## tropical fruit                                0.000  0.000   0.001
## marinated meat                                0.000  0.000   0.001
## pies/pasties                                  0.000  0.000   0.000
## newspapers                                    0.000  0.000   0.001
## citrus                                        0.000  0.000   0.000
## whipped/sour cream                            0.001  0.000   0.001
## heinken                                       0.000  0.001   0.000
## green tea                                     0.000  0.001   0.000
## pip fruit                                     0.000  0.000   0.001
## brown bread                                   0.000  0.000   0.001
## fruit/vegetable juice                         0.000  0.000   0.000
## domestic eggs                                 0.000  0.000   0.001
## coffee                                        0.000  0.001   0.000
## margarine                                     0.000  0.000   0.001
## beef                                          0.001  0.000   0.000
## curd                                          0.000  0.000   0.000
## butter                                        0.000  0.000   0.000
## marinated meats                               0.000  0.000   0.001
## napkins                                       0.000  0.000   0.001
## halal meat                                    0.000  0.000   0.001
## chocolate                                     0.000  0.000   0.001
## frozen vegetables                             0.001  0.000   0.000
## chicken                                       0.000  0.000   0.000
## white bread                                   0.000  0.000   0.000
## cream cheese                                  0.000  0.000   0.000
## waffles                                       0.000  0.000   0.000
## dessert                                       0.000  0.000   0.000
## salty snack                                   0.000  0.000   0.000
## long life bakery product                      0.000  0.000   0.000
## berries                                       0.001  0.000   0.000
## hamburger meat                                0.000  0.000   0.000
## sugar                                         0.000  0.000   0.000
## hygiene articles                              0.000  0.000   0.001
## UHT-milk                                      0.000  0.000   0.000
## onions                                        0.001  0.000   0.000
## candy                                         0.000  0.000   0.000
## specialty chocolate                           0.000  0.000   0.000
## butter milk                                   0.000  0.000   0.000
## oil                                           0.000  0.000   0.001
## frozen meals                                  0.000  0.000   0.000
## misc. beverages                               0.000  0.000   0.000
## specialty bar                                 0.000  0.000   0.000
## ham                                           0.000  0.000   0.000
## beverages                                     0.000  0.000   0.000
## meat                                          0.000  0.000   0.000
## ice cream                                     0.000  0.000   0.000
## sliced cheese                                 0.000  0.000   0.000
## hard cheese                                   0.000  0.000   0.000
## noodles                                       0.001  0.000   0.000
## grapes                                        0.000  0.000   0.000
## cat food                                      0.000  0.000   0.000
## chewing gum                                   0.000  0.000   0.000
## soda                                          0.001  0.000   0.000
## detergent                                     0.000  0.000   0.000
## red/blush wine                                0.000  0.000   0.000
## white wine                                    0.000  0.000   0.000
## turkey                                        0.000  0.000   0.000
## dishes                                        0.000  0.000   0.000
## bottled water                                 0.001  0.000   0.000
## flour                                         0.000  0.000   0.000
## semi-finished bread                           0.000  0.000   0.000
## baking powder                                 0.000  0.000   0.000
## pickled vegetables                            0.000  0.000   0.000
## herbs                                         0.000  0.000   0.000
## tropical herbs                                0.001  0.000   0.000
## soft cheese                                   0.000  0.000   0.000
## tea                                           0.001  0.000   0.000
## processed cheese                              0.000  0.000   0.000
## sausage                                       0.001  0.000   0.000
## pasta                                         0.000  0.000   0.000
## citrus herbs                                  0.001  0.000   0.000
## potted plants                                 0.000  0.000   0.000
## canned fish                                   0.000  0.000   0.001
## seasonal products                             0.000  0.000   0.000
## cake bar                                      0.000  0.000   0.000
## carrots                                       0.001  0.000   0.000
## mustard                                       0.000  0.000   0.001
## packaged fruit/vegetables                     0.000  0.000   0.000
## spread cheese                                 0.000  0.000   0.000
## frozen dessert                                0.000  0.000   0.000
## frozen fish                                   0.000  0.000   0.000
## cling film/bags                               0.000  0.000   0.000
## salt                                          0.000  0.000   0.000
## liquor                                        0.000  0.000   0.000
## canned vegetables                             0.000  0.000   0.000
## bottled beer                                  0.000  0.000   0.000
## flower (seeds)                                0.000  0.000   0.000
## cooking oil                                   0.000  0.000   0.000
## dish cleaner                                  0.000  0.000   0.000
## condensed milk                                0.000  0.000   0.000
## roll products                                 0.000  0.000   0.000
## photo/film                                    0.000  0.000   0.000
## pet care                                      0.000  0.000   0.000
## chocolate marshmallow                         0.000  0.000   0.000
## herbs/vegetable juice                         0.000  0.000   0.000
## whole milk                                    0.000  0.000   0.000
## candles                                       0.000  0.000   0.000
## mayonnaise                                    0.000  0.000   0.000
## Instant food products                         0.000  0.000   0.000
## sweet spreads                                 0.000  0.000   0.000
## liquor (appetizer)                            0.000  0.000   0.000
## specialty cheese                              0.000  0.000   0.000
## frozen potato products                        0.000  0.000   0.000
## house keeping products                        0.000  0.000   0.000
## dog food                                      0.000  0.000   0.000
## soy                                           0.000  0.000   0.000
## instant coffee                                0.000  0.000   0.000
## pip herbs                                     0.000  0.000   0.000
## zwieback                                      0.000  0.000   0.000
## finished products                             0.000  0.000   0.000
## popcorn                                       0.000  0.000   0.000
## vinegar                                       0.000  0.000   0.000
## soups                                         0.000  0.000   0.000
## female sanitary products                      0.000  0.000   0.000
## sparkling wine                                0.000  0.000   0.000
## dental care                                   0.000  0.000   0.000
## cereals                                       0.000  0.000   0.000
## kitchen towels                                0.000  0.000   0.000
## curd cheese                                   0.000  0.000   0.000
## other vegetables                              0.000  0.000   0.000
## rolls/buns                                    0.000  0.000   0.000
## softener                                      0.000  0.000   0.000
## cleaner                                       0.000  0.000   0.000
## spices                                        0.000  0.000   0.000
## jam                                           0.000  0.000   0.000
## sauces                                        0.000  0.000   0.000
## rum                                           0.000  0.000   0.000
## liver loaf                                    0.000  0.000   0.000
## male cosmetics                                0.000  0.000   0.000
## meat spreads                                  0.000  0.000   0.000
## packaged herbs/vegetables                     0.004  0.000   0.000
## brandy                                        0.000  0.004   0.000
## ketchup                                       0.000  0.000   0.004
## abrasive cleaner                              0.000  0.000   0.000
## light bulbs                                   0.000  0.000   0.000
## artif. sweetener                              0.000  0.000   0.000
## nuts/prunes                                   0.000  0.000   0.000
## specialty fat                                 0.000  0.000   0.000
## skin care                                     0.000  0.000   0.000
## fish                                          0.000  0.000   0.000
## potato products                               0.000  0.000   0.000
## root vegetables                               0.000  0.000   0.000
## snack products                                0.000  0.000   0.000
## nut snack                                     0.000  0.000   0.000
## soap                                          0.000  0.000   0.000
## syrup                                         0.000  0.000   0.000
## bathroom cleaner                              0.000  0.000   0.000
## canned fruit                                  0.000  0.000   0.000
## cookware                                      0.000  0.000   0.000
## cooking chocolate                             0.000  0.000   0.000
## tidbits                                       0.000  0.000   0.000
## cocoa drinks                                  0.000  0.000   0.000
## pudding powder                                0.000  0.000   0.000
## ready soups                                   0.000  0.000   0.000
## organic marinated meat                        0.000  0.000   0.000
## flower soil/fertilizer                        0.000  0.000   0.000
## organic products                              0.000  0.000   0.000
## pot plants                                    0.000  0.000   0.000
## prosecco                                      0.000  0.000   0.000
## frankfurter                                   0.000  0.000   0.000
## decalcifier                                   0.000  0.000   0.000
## honey                                         0.000  0.000   0.000
## specialty vegetables                          0.000  0.000   0.000
## cream                                         0.000  0.000   0.000
## hair spray                                    0.000  0.000   0.000
## frozen fruits                                 0.000  0.000   0.000
## rubbing alcohol                               0.000  0.000   0.000
## liqueur                                       0.000  0.000   0.000
## make up remover                               0.000  0.000   0.000
## salad dressing                                0.000  0.000   0.000
## frozen chicken                                0.000  0.000   0.000
## whisky                                        0.000  0.000   0.000
## baby cosmetics                                0.000  0.000   0.000
## toilet cleaner                                0.000  0.000   0.000
## bags                                          0.000  0.000   0.000
## canned herbs                                  0.000  0.000   0.000
## kitchen utensil                               0.000  0.000   0.000
## preservation products                         0.000  0.000   0.000
## baby food                                     0.000  0.000   0.000
## frozen herbss                                 0.000  0.000   0.000
## organic sausage                               0.000  0.000   0.000
## sound storage medium                          0.000  0.000   0.000
##                           abrasive cleaner light bulbs artif. sweetener
## rice                                 0.002       0.001            0.001
## veggies                              0.001       0.001            0.001
## loaf                                 0.000       0.001            0.001
## coke                                 0.001       0.001            0.001
## yogurt                               0.001       0.001            0.001
## vegetables                           0.001       0.001            0.001
## mineral water                        0.000       0.000            0.001
## Plastic bags                         0.000       0.000            0.001
## tropical fruit                       0.001       0.000            0.000
## marinated meat                       0.001       0.000            0.000
## pies/pasties                         0.000       0.001            0.001
## newspapers                           0.001       0.001            0.001
## citrus                               0.001       0.000            0.000
## whipped/sour cream                   0.001       0.000            0.000
## heinken                              0.001       0.000            0.000
## green tea                            0.000       0.000            0.000
## pip fruit                            0.000       0.001            0.000
## brown bread                          0.001       0.000            0.000
## fruit/vegetable juice                0.000       0.000            0.000
## domestic eggs                        0.000       0.000            0.000
## coffee                               0.000       0.001            0.001
## margarine                            0.000       0.000            0.001
## beef                                 0.001       0.000            0.000
## curd                                 0.000       0.000            0.000
## butter                               0.001       0.000            0.000
## marinated meats                      0.000       0.000            0.001
## napkins                              0.000       0.001            0.000
## halal meat                           0.000       0.000            0.001
## chocolate                            0.000       0.000            0.000
## frozen vegetables                    0.000       0.000            0.000
## chicken                              0.001       0.000            0.000
## white bread                          0.000       0.000            0.000
## cream cheese                         0.000       0.000            0.000
## waffles                              0.000       0.000            0.000
## dessert                              0.000       0.000            0.000
## salty snack                          0.000       0.000            0.000
## long life bakery product             0.000       0.000            0.000
## berries                              0.001       0.000            0.000
## hamburger meat                       0.000       0.000            0.000
## sugar                                0.000       0.000            0.000
## hygiene articles                     0.000       0.000            0.000
## UHT-milk                             0.000       0.000            0.001
## onions                               0.000       0.000            0.000
## candy                                0.000       0.000            0.000
## specialty chocolate                  0.000       0.000            0.000
## butter milk                          0.000       0.000            0.000
## oil                                  0.000       0.000            0.000
## frozen meals                         0.000       0.000            0.000
## misc. beverages                      0.000       0.000            0.000
## specialty bar                        0.000       0.000            0.000
## ham                                  0.000       0.000            0.000
## beverages                            0.000       0.000            0.000
## meat                                 0.000       0.000            0.000
## ice cream                            0.000       0.000            0.000
## sliced cheese                        0.000       0.000            0.000
## hard cheese                          0.000       0.000            0.000
## noodles                              0.000       0.000            0.000
## grapes                               0.000       0.000            0.000
## cat food                             0.000       0.000            0.000
## chewing gum                          0.000       0.000            0.000
## soda                                 0.000       0.000            0.000
## detergent                            0.000       0.000            0.000
## red/blush wine                       0.000       0.000            0.000
## white wine                           0.000       0.000            0.000
## turkey                               0.000       0.000            0.000
## dishes                               0.000       0.000            0.000
## bottled water                        0.000       0.000            0.000
## flour                                0.000       0.000            0.001
## semi-finished bread                  0.000       0.000            0.000
## baking powder                        0.000       0.000            0.000
## pickled vegetables                   0.000       0.000            0.000
## herbs                                0.000       0.000            0.000
## tropical herbs                       0.000       0.000            0.000
## soft cheese                          0.000       0.000            0.000
## tea                                  0.000       0.000            0.000
## processed cheese                     0.000       0.000            0.000
## sausage                              0.000       0.000            0.000
## pasta                                0.000       0.000            0.000
## citrus herbs                         0.000       0.000            0.000
## potted plants                        0.000       0.000            0.000
## canned fish                          0.000       0.000            0.000
## seasonal products                    0.000       0.000            0.000
## cake bar                             0.000       0.000            0.000
## carrots                              0.000       0.000            0.000
## mustard                              0.000       0.000            0.000
## packaged fruit/vegetables            0.000       0.000            0.000
## spread cheese                        0.000       0.000            0.000
## frozen dessert                       0.000       0.000            0.000
## frozen fish                          0.000       0.000            0.000
## cling film/bags                      0.000       0.000            0.000
## salt                                 0.000       0.000            0.000
## liquor                               0.000       0.000            0.000
## canned vegetables                    0.000       0.000            0.000
## bottled beer                         0.000       0.000            0.000
## flower (seeds)                       0.000       0.000            0.000
## cooking oil                          0.000       0.000            0.000
## dish cleaner                         0.000       0.000            0.000
## condensed milk                       0.000       0.000            0.000
## roll products                        0.000       0.000            0.000
## photo/film                           0.000       0.000            0.000
## pet care                             0.000       0.000            0.000
## chocolate marshmallow                0.000       0.000            0.000
## herbs/vegetable juice                0.000       0.000            0.000
## whole milk                           0.000       0.000            0.000
## candles                              0.000       0.000            0.000
## mayonnaise                           0.000       0.000            0.000
## Instant food products                0.000       0.000            0.000
## sweet spreads                        0.000       0.000            0.000
## liquor (appetizer)                   0.000       0.000            0.000
## specialty cheese                     0.000       0.000            0.000
## frozen potato products               0.000       0.000            0.000
## house keeping products               0.000       0.000            0.000
## dog food                             0.000       0.000            0.000
## soy                                  0.000       0.000            0.000
## instant coffee                       0.000       0.000            0.000
## pip herbs                            0.000       0.000            0.000
## zwieback                             0.000       0.000            0.000
## finished products                    0.000       0.000            0.000
## popcorn                              0.000       0.000            0.000
## vinegar                              0.000       0.000            0.000
## soups                                0.000       0.000            0.000
## female sanitary products             0.000       0.000            0.000
## sparkling wine                       0.000       0.000            0.000
## dental care                          0.000       0.000            0.000
## cereals                              0.000       0.000            0.000
## kitchen towels                       0.000       0.000            0.000
## curd cheese                          0.000       0.000            0.000
## other vegetables                     0.000       0.000            0.000
## rolls/buns                           0.000       0.000            0.000
## softener                             0.000       0.000            0.000
## cleaner                              0.001       0.000            0.000
## spices                               0.000       0.000            0.000
## jam                                  0.000       0.000            0.000
## sauces                               0.000       0.000            0.000
## rum                                  0.000       0.000            0.000
## liver loaf                           0.000       0.000            0.000
## male cosmetics                       0.000       0.000            0.000
## meat spreads                         0.000       0.000            0.000
## packaged herbs/vegetables            0.000       0.000            0.000
## brandy                               0.000       0.000            0.000
## ketchup                              0.000       0.000            0.000
## abrasive cleaner                     0.004       0.000            0.000
## light bulbs                          0.000       0.004            0.000
## artif. sweetener                     0.000       0.000            0.004
## nuts/prunes                          0.000       0.000            0.000
## specialty fat                        0.000       0.000            0.000
## skin care                            0.000       0.000            0.000
## fish                                 0.000       0.000            0.000
## potato products                      0.000       0.000            0.000
## root vegetables                      0.000       0.000            0.000
## snack products                       0.000       0.000            0.000
## nut snack                            0.000       0.000            0.000
## soap                                 0.000       0.000            0.000
## syrup                                0.000       0.000            0.000
## bathroom cleaner                     0.000       0.000            0.000
## canned fruit                         0.000       0.000            0.000
## cookware                             0.000       0.000            0.000
## cooking chocolate                    0.000       0.000            0.000
## tidbits                              0.000       0.000            0.000
## cocoa drinks                         0.000       0.000            0.000
## pudding powder                       0.000       0.000            0.000
## ready soups                          0.000       0.000            0.000
## organic marinated meat               0.000       0.000            0.000
## flower soil/fertilizer               0.000       0.000            0.000
## organic products                     0.000       0.000            0.000
## pot plants                           0.000       0.000            0.000
## prosecco                             0.000       0.000            0.000
## frankfurter                          0.000       0.000            0.000
## decalcifier                          0.000       0.000            0.000
## honey                                0.000       0.000            0.000
## specialty vegetables                 0.000       0.000            0.000
## cream                                0.000       0.000            0.000
## hair spray                           0.000       0.000            0.000
## frozen fruits                        0.000       0.000            0.000
## rubbing alcohol                      0.000       0.000            0.000
## liqueur                              0.000       0.000            0.000
## make up remover                      0.000       0.000            0.000
## salad dressing                       0.000       0.000            0.000
## frozen chicken                       0.000       0.000            0.000
## whisky                               0.000       0.000            0.000
## baby cosmetics                       0.000       0.000            0.000
## toilet cleaner                       0.000       0.000            0.000
## bags                                 0.000       0.000            0.000
## canned herbs                         0.000       0.000            0.000
## kitchen utensil                      0.000       0.000            0.000
## preservation products                0.000       0.000            0.000
## baby food                            0.000       0.000            0.000
## frozen herbss                        0.000       0.000            0.000
## organic sausage                      0.000       0.000            0.000
## sound storage medium                 0.000       0.000            0.000
##                           nuts/prunes specialty fat skin care  fish
## rice                            0.001         0.001     0.002 0.001
## veggies                         0.001         0.001     0.001 0.001
## loaf                            0.001         0.001     0.001 0.000
## coke                            0.001         0.000     0.001 0.000
## yogurt                          0.000         0.001     0.001 0.001
## vegetables                      0.001         0.001     0.001 0.001
## mineral water                   0.000         0.000     0.001 0.000
## Plastic bags                    0.001         0.000     0.001 0.000
## tropical fruit                  0.001         0.000     0.001 0.000
## marinated meat                  0.000         0.000     0.001 0.000
## pies/pasties                    0.000         0.000     0.000 0.000
## newspapers                      0.001         0.000     0.000 0.000
## citrus                          0.000         0.001     0.001 0.000
## whipped/sour cream              0.000         0.001     0.001 0.000
## heinken                         0.000         0.000     0.000 0.000
## green tea                       0.000         0.000     0.000 0.000
## pip fruit                       0.001         0.000     0.000 0.000
## brown bread                     0.000         0.000     0.000 0.000
## fruit/vegetable juice           0.000         0.000     0.000 0.000
## domestic eggs                   0.000         0.001     0.001 0.000
## coffee                          0.000         0.000     0.000 0.001
## margarine                       0.000         0.001     0.001 0.000
## beef                            0.000         0.000     0.001 0.000
## curd                            0.000         0.000     0.000 0.000
## butter                          0.000         0.001     0.000 0.000
## marinated meats                 0.000         0.001     0.000 0.000
## napkins                         0.000         0.001     0.001 0.000
## halal meat                      0.000         0.001     0.000 0.000
## chocolate                       0.001         0.000     0.000 0.000
## frozen vegetables               0.000         0.001     0.001 0.000
## chicken                         0.000         0.001     0.001 0.000
## white bread                     0.000         0.001     0.000 0.000
## cream cheese                    0.000         0.000     0.000 0.000
## waffles                         0.000         0.000     0.000 0.000
## dessert                         0.000         0.000     0.000 0.000
## salty snack                     0.000         0.000     0.000 0.000
## long life bakery product        0.000         0.000     0.000 0.000
## berries                         0.000         0.000     0.000 0.000
## hamburger meat                  0.000         0.000     0.000 0.000
## sugar                           0.000         0.000     0.001 0.000
## hygiene articles                0.000         0.000     0.001 0.000
## UHT-milk                        0.000         0.000     0.000 0.000
## onions                          0.000         0.000     0.000 0.000
## candy                           0.000         0.000     0.000 0.000
## specialty chocolate             0.000         0.000     0.000 0.000
## butter milk                     0.000         0.000     0.000 0.000
## oil                             0.000         0.000     0.000 0.000
## frozen meals                    0.000         0.000     0.000 0.000
## misc. beverages                 0.000         0.000     0.000 0.000
## specialty bar                   0.000         0.000     0.000 0.000
## ham                             0.000         0.000     0.000 0.000
## beverages                       0.000         0.000     0.000 0.000
## meat                            0.000         0.000     0.000 0.000
## ice cream                       0.000         0.000     0.000 0.000
## sliced cheese                   0.000         0.000     0.000 0.000
## hard cheese                     0.000         0.001     0.000 0.000
## noodles                         0.000         0.000     0.000 0.000
## grapes                          0.000         0.000     0.000 0.000
## cat food                        0.000         0.000     0.000 0.000
## chewing gum                     0.000         0.000     0.000 0.000
## soda                            0.000         0.000     0.000 0.000
## detergent                       0.000         0.000     0.000 0.000
## red/blush wine                  0.000         0.000     0.000 0.000
## white wine                      0.000         0.000     0.000 0.000
## turkey                          0.000         0.000     0.000 0.000
## dishes                          0.000         0.000     0.000 0.000
## bottled water                   0.000         0.000     0.000 0.000
## flour                           0.000         0.000     0.000 0.000
## semi-finished bread             0.000         0.000     0.000 0.000
## baking powder                   0.000         0.000     0.000 0.000
## pickled vegetables              0.000         0.000     0.000 0.000
## herbs                           0.000         0.000     0.000 0.000
## tropical herbs                  0.000         0.000     0.000 0.000
## soft cheese                     0.000         0.000     0.000 0.000
## tea                             0.000         0.000     0.000 0.000
## processed cheese                0.000         0.000     0.000 0.000
## sausage                         0.000         0.000     0.000 0.000
## pasta                           0.000         0.000     0.000 0.000
## citrus herbs                    0.000         0.000     0.000 0.000
## potted plants                   0.000         0.000     0.000 0.000
## canned fish                     0.000         0.000     0.000 0.000
## seasonal products               0.000         0.000     0.000 0.000
## cake bar                        0.000         0.000     0.000 0.000
## carrots                         0.000         0.000     0.000 0.000
## mustard                         0.000         0.000     0.000 0.000
## packaged fruit/vegetables       0.000         0.000     0.000 0.000
## spread cheese                   0.000         0.000     0.000 0.000
## frozen dessert                  0.000         0.000     0.000 0.000
## frozen fish                     0.000         0.000     0.000 0.000
## cling film/bags                 0.000         0.000     0.000 0.000
## salt                            0.000         0.000     0.000 0.000
## liquor                          0.000         0.000     0.000 0.000
## canned vegetables               0.000         0.000     0.000 0.000
## bottled beer                    0.000         0.000     0.000 0.000
## flower (seeds)                  0.000         0.000     0.000 0.000
## cooking oil                     0.000         0.000     0.000 0.000
## dish cleaner                    0.000         0.000     0.000 0.000
## condensed milk                  0.000         0.000     0.000 0.000
## roll products                   0.000         0.000     0.000 0.000
## photo/film                      0.000         0.000     0.000 0.000
## pet care                        0.000         0.000     0.000 0.000
## chocolate marshmallow           0.000         0.000     0.000 0.000
## herbs/vegetable juice           0.000         0.000     0.000 0.000
## whole milk                      0.000         0.000     0.000 0.000
## candles                         0.000         0.000     0.000 0.000
## mayonnaise                      0.000         0.000     0.000 0.000
## Instant food products           0.000         0.000     0.000 0.000
## sweet spreads                   0.000         0.000     0.000 0.000
## liquor (appetizer)              0.000         0.000     0.000 0.000
## specialty cheese                0.000         0.000     0.000 0.000
## frozen potato products          0.000         0.000     0.000 0.000
## house keeping products          0.000         0.000     0.000 0.000
## dog food                        0.000         0.000     0.000 0.000
## soy                             0.000         0.000     0.000 0.000
## instant coffee                  0.000         0.000     0.000 0.000
## pip herbs                       0.000         0.000     0.000 0.000
## zwieback                        0.000         0.000     0.000 0.000
## finished products               0.000         0.000     0.000 0.000
## popcorn                         0.000         0.000     0.000 0.000
## vinegar                         0.000         0.000     0.000 0.000
## soups                           0.000         0.000     0.000 0.000
## female sanitary products        0.000         0.000     0.000 0.000
## sparkling wine                  0.000         0.000     0.000 0.000
## dental care                     0.000         0.000     0.000 0.000
## cereals                         0.000         0.000     0.000 0.000
## kitchen towels                  0.000         0.000     0.000 0.000
## curd cheese                     0.000         0.000     0.000 0.000
## other vegetables                0.000         0.000     0.000 0.000
## rolls/buns                      0.000         0.000     0.000 0.000
## softener                        0.000         0.000     0.000 0.000
## cleaner                         0.000         0.000     0.000 0.000
## spices                          0.000         0.000     0.000 0.000
## jam                             0.000         0.000     0.000 0.000
## sauces                          0.000         0.000     0.000 0.000
## rum                             0.000         0.000     0.000 0.000
## liver loaf                      0.000         0.000     0.000 0.000
## male cosmetics                  0.000         0.000     0.000 0.000
## meat spreads                    0.000         0.000     0.000 0.000
## packaged herbs/vegetables       0.000         0.000     0.000 0.000
## brandy                          0.000         0.000     0.000 0.000
## ketchup                         0.000         0.000     0.000 0.000
## abrasive cleaner                0.000         0.000     0.000 0.000
## light bulbs                     0.000         0.000     0.000 0.000
## artif. sweetener                0.000         0.000     0.000 0.000
## nuts/prunes                     0.004         0.000     0.000 0.000
## specialty fat                   0.000         0.004     0.000 0.000
## skin care                       0.000         0.000     0.003 0.000
## fish                            0.000         0.000     0.000 0.003
## potato products                 0.000         0.000     0.000 0.000
## root vegetables                 0.000         0.000     0.000 0.000
## snack products                  0.000         0.000     0.000 0.000
## nut snack                       0.000         0.000     0.000 0.000
## soap                            0.000         0.000     0.000 0.000
## syrup                           0.000         0.000     0.000 0.000
## bathroom cleaner                0.000         0.000     0.000 0.000
## canned fruit                    0.000         0.000     0.000 0.000
## cookware                        0.000         0.000     0.000 0.000
## cooking chocolate               0.000         0.000     0.000 0.000
## tidbits                         0.000         0.000     0.000 0.000
## cocoa drinks                    0.000         0.000     0.000 0.000
## pudding powder                  0.000         0.000     0.000 0.000
## ready soups                     0.000         0.000     0.000 0.000
## organic marinated meat          0.000         0.000     0.000 0.000
## flower soil/fertilizer          0.000         0.000     0.000 0.000
## organic products                0.000         0.000     0.000 0.000
## pot plants                      0.000         0.000     0.000 0.000
## prosecco                        0.000         0.000     0.000 0.000
## frankfurter                     0.000         0.000     0.000 0.000
## decalcifier                     0.000         0.000     0.000 0.000
## honey                           0.000         0.000     0.000 0.000
## specialty vegetables            0.000         0.000     0.000 0.000
## cream                           0.000         0.000     0.000 0.000
## hair spray                      0.000         0.000     0.000 0.000
## frozen fruits                   0.000         0.000     0.000 0.000
## rubbing alcohol                 0.000         0.000     0.000 0.000
## liqueur                         0.000         0.000     0.000 0.000
## make up remover                 0.000         0.000     0.000 0.000
## salad dressing                  0.000         0.000     0.000 0.000
## frozen chicken                  0.000         0.000     0.000 0.000
## whisky                          0.000         0.000     0.000 0.000
## baby cosmetics                  0.000         0.000     0.000 0.000
## toilet cleaner                  0.000         0.000     0.000 0.000
## bags                            0.000         0.000     0.000 0.000
## canned herbs                    0.000         0.000     0.000 0.000
## kitchen utensil                 0.000         0.000     0.000 0.000
## preservation products           0.000         0.000     0.000 0.000
## baby food                       0.000         0.000     0.000 0.000
## frozen herbss                   0.000         0.000     0.000 0.000
## organic sausage                 0.000         0.000     0.000 0.000
## sound storage medium            0.000         0.000     0.000 0.000
##                           potato products root vegetables snack products
## rice                                0.001           0.000          0.001
## veggies                             0.001           0.000          0.001
## loaf                                0.001           0.000          0.001
## coke                                0.001           0.000          0.001
## yogurt                              0.001           0.000          0.000
## vegetables                          0.001           0.000          0.000
## mineral water                       0.000           0.000          0.000
## Plastic bags                        0.001           0.000          0.001
## tropical fruit                      0.000           0.000          0.000
## marinated meat                      0.000           0.000          0.000
## pies/pasties                        0.001           0.000          0.000
## newspapers                          0.000           0.000          0.000
## citrus                              0.000           0.000          0.000
## whipped/sour cream                  0.000           0.001          0.000
## heinken                             0.001           0.000          0.000
## green tea                           0.000           0.000          0.000
## pip fruit                           0.000           0.000          0.000
## brown bread                         0.000           0.000          0.000
## fruit/vegetable juice               0.001           0.000          0.000
## domestic eggs                       0.000           0.000          0.000
## coffee                              0.001           0.000          0.000
## margarine                           0.000           0.000          0.000
## beef                                0.000           0.000          0.000
## curd                                0.000           0.000          0.000
## butter                              0.000           0.000          0.000
## marinated meats                     0.001           0.000          0.000
## napkins                             0.000           0.000          0.000
## halal meat                          0.000           0.000          0.000
## chocolate                           0.000           0.000          0.000
## frozen vegetables                   0.000           0.000          0.000
## chicken                             0.000           0.001          0.000
## white bread                         0.000           0.000          0.000
## cream cheese                        0.000           0.000          0.000
## waffles                             0.000           0.000          0.000
## dessert                             0.000           0.000          0.000
## salty snack                         0.000           0.000          0.000
## long life bakery product            0.000           0.000          0.000
## berries                             0.000           0.000          0.000
## hamburger meat                      0.001           0.000          0.000
## sugar                               0.000           0.000          0.000
## hygiene articles                    0.000           0.000          0.000
## UHT-milk                            0.000           0.000          0.000
## onions                              0.000           0.000          0.000
## candy                               0.000           0.000          0.000
## specialty chocolate                 0.000           0.000          0.000
## butter milk                         0.000           0.000          0.000
## oil                                 0.000           0.000          0.000
## frozen meals                        0.000           0.000          0.000
## misc. beverages                     0.000           0.000          0.000
## specialty bar                       0.000           0.000          0.000
## ham                                 0.000           0.000          0.000
## beverages                           0.000           0.000          0.000
## meat                                0.000           0.000          0.000
## ice cream                           0.000           0.000          0.000
## sliced cheese                       0.000           0.000          0.000
## hard cheese                         0.000           0.000          0.000
## noodles                             0.000           0.000          0.000
## grapes                              0.000           0.000          0.000
## cat food                            0.000           0.000          0.000
## chewing gum                         0.000           0.000          0.000
## soda                                0.000           0.000          0.000
## detergent                           0.000           0.000          0.000
## red/blush wine                      0.000           0.000          0.000
## white wine                          0.000           0.000          0.000
## turkey                              0.000           0.000          0.000
## dishes                              0.000           0.000          0.000
## bottled water                       0.000           0.000          0.000
## flour                               0.000           0.000          0.000
## semi-finished bread                 0.000           0.000          0.000
## baking powder                       0.000           0.000          0.000
## pickled vegetables                  0.000           0.000          0.000
## herbs                               0.000           0.000          0.000
## tropical herbs                      0.000           0.000          0.000
## soft cheese                         0.000           0.000          0.000
## tea                                 0.000           0.000          0.000
## processed cheese                    0.001           0.000          0.000
## sausage                             0.000           0.001          0.000
## pasta                               0.000           0.000          0.000
## citrus herbs                        0.000           0.001          0.000
## potted plants                       0.000           0.000          0.000
## canned fish                         0.000           0.000          0.000
## seasonal products                   0.000           0.000          0.000
## cake bar                            0.000           0.000          0.000
## carrots                             0.000           0.000          0.000
## mustard                             0.000           0.000          0.000
## packaged fruit/vegetables           0.000           0.000          0.000
## spread cheese                       0.000           0.000          0.000
## frozen dessert                      0.000           0.000          0.000
## frozen fish                         0.000           0.000          0.000
## cling film/bags                     0.000           0.000          0.000
## salt                                0.000           0.000          0.000
## liquor                              0.000           0.000          0.000
## canned vegetables                   0.000           0.000          0.000
## bottled beer                        0.000           0.000          0.000
## flower (seeds)                      0.000           0.000          0.000
## cooking oil                         0.000           0.000          0.000
## dish cleaner                        0.000           0.000          0.000
## condensed milk                      0.000           0.000          0.000
## roll products                       0.000           0.000          0.000
## photo/film                          0.000           0.000          0.000
## pet care                            0.000           0.000          0.000
## chocolate marshmallow               0.000           0.000          0.000
## herbs/vegetable juice               0.000           0.000          0.000
## whole milk                          0.000           0.001          0.000
## candles                             0.000           0.000          0.000
## mayonnaise                          0.000           0.000          0.000
## Instant food products               0.000           0.000          0.000
## sweet spreads                       0.000           0.000          0.000
## liquor (appetizer)                  0.000           0.000          0.000
## specialty cheese                    0.000           0.000          0.000
## frozen potato products              0.000           0.000          0.000
## house keeping products              0.000           0.000          0.000
## dog food                            0.000           0.000          0.000
## soy                                 0.000           0.000          0.000
## instant coffee                      0.000           0.000          0.000
## pip herbs                           0.000           0.000          0.000
## zwieback                            0.000           0.000          0.000
## finished products                   0.000           0.000          0.000
## popcorn                             0.000           0.000          0.000
## vinegar                             0.000           0.000          0.000
## soups                               0.000           0.000          0.000
## female sanitary products            0.000           0.000          0.000
## sparkling wine                      0.000           0.000          0.000
## dental care                         0.000           0.000          0.000
## cereals                             0.000           0.000          0.000
## kitchen towels                      0.000           0.000          0.000
## curd cheese                         0.000           0.000          0.000
## other vegetables                    0.000           0.001          0.000
## rolls/buns                          0.000           0.001          0.000
## softener                            0.000           0.000          0.000
## cleaner                             0.000           0.000          0.000
## spices                              0.000           0.000          0.000
## jam                                 0.000           0.000          0.000
## sauces                              0.000           0.000          0.000
## rum                                 0.000           0.000          0.000
## liver loaf                          0.000           0.000          0.000
## male cosmetics                      0.000           0.000          0.000
## meat spreads                        0.000           0.000          0.000
## packaged herbs/vegetables           0.000           0.000          0.000
## brandy                              0.000           0.000          0.000
## ketchup                             0.000           0.000          0.000
## abrasive cleaner                    0.000           0.000          0.000
## light bulbs                         0.000           0.000          0.000
## artif. sweetener                    0.000           0.000          0.000
## nuts/prunes                         0.000           0.000          0.000
## specialty fat                       0.000           0.000          0.000
## skin care                           0.000           0.000          0.000
## fish                                0.000           0.000          0.000
## potato products                     0.003           0.000          0.000
## root vegetables                     0.000           0.003          0.000
## snack products                      0.000           0.000          0.003
## nut snack                           0.000           0.000          0.000
## soap                                0.000           0.000          0.000
## syrup                               0.000           0.000          0.000
## bathroom cleaner                    0.000           0.000          0.000
## canned fruit                        0.000           0.000          0.000
## cookware                            0.000           0.000          0.000
## cooking chocolate                   0.000           0.000          0.000
## tidbits                             0.000           0.000          0.000
## cocoa drinks                        0.000           0.000          0.000
## pudding powder                      0.000           0.000          0.000
## ready soups                         0.000           0.000          0.000
## organic marinated meat              0.000           0.000          0.000
## flower soil/fertilizer              0.000           0.000          0.000
## organic products                    0.000           0.000          0.000
## pot plants                          0.000           0.000          0.000
## prosecco                            0.000           0.000          0.000
## frankfurter                         0.000           0.000          0.000
## decalcifier                         0.000           0.000          0.000
## honey                               0.000           0.000          0.000
## specialty vegetables                0.000           0.000          0.000
## cream                               0.000           0.000          0.000
## hair spray                          0.000           0.000          0.000
## frozen fruits                       0.000           0.000          0.000
## rubbing alcohol                     0.000           0.000          0.000
## liqueur                             0.000           0.000          0.000
## make up remover                     0.000           0.000          0.000
## salad dressing                      0.000           0.000          0.000
## frozen chicken                      0.000           0.000          0.000
## whisky                              0.000           0.000          0.000
## baby cosmetics                      0.000           0.000          0.000
## toilet cleaner                      0.000           0.000          0.000
## bags                                0.000           0.000          0.000
## canned herbs                        0.000           0.000          0.000
## kitchen utensil                     0.000           0.000          0.000
## preservation products               0.000           0.000          0.000
## baby food                           0.000           0.000          0.000
## frozen herbss                       0.000           0.000          0.000
## organic sausage                     0.000           0.000          0.000
## sound storage medium                0.000           0.000          0.000
##                           nut snack  soap syrup bathroom cleaner canned fruit
## rice                          0.000 0.001 0.001            0.001        0.001
## veggies                       0.001 0.000 0.001            0.001        0.001
## loaf                          0.001 0.001 0.001            0.001        0.001
## coke                          0.001 0.001 0.001            0.001        0.001
## yogurt                        0.001 0.000 0.001            0.001        0.000
## vegetables                    0.001 0.000 0.001            0.001        0.001
## mineral water                 0.000 0.000 0.000            0.000        0.000
## Plastic bags                  0.001 0.000 0.000            0.000        0.001
## tropical fruit                0.001 0.000 0.001            0.001        0.001
## marinated meat                0.001 0.000 0.000            0.000        0.000
## pies/pasties                  0.000 0.000 0.001            0.000        0.001
## newspapers                    0.000 0.000 0.000            0.001        0.000
## citrus                        0.000 0.000 0.000            0.000        0.001
## whipped/sour cream            0.000 0.000 0.000            0.000        0.000
## heinken                       0.001 0.000 0.000            0.000        0.000
## green tea                     0.000 0.000 0.000            0.000        0.000
## pip fruit                     0.000 0.000 0.000            0.000        0.000
## brown bread                   0.000 0.000 0.000            0.000        0.000
## fruit/vegetable juice         0.000 0.001 0.000            0.000        0.000
## domestic eggs                 0.000 0.000 0.000            0.000        0.001
## coffee                        0.000 0.000 0.000            0.000        0.000
## margarine                     0.000 0.000 0.000            0.000        0.000
## beef                          0.000 0.001 0.000            0.000        0.000
## curd                          0.000 0.000 0.000            0.000        0.000
## butter                        0.000 0.000 0.001            0.000        0.000
## marinated meats               0.001 0.000 0.000            0.000        0.000
## napkins                       0.000 0.000 0.000            0.001        0.000
## halal meat                    0.000 0.000 0.000            0.000        0.000
## chocolate                     0.000 0.000 0.000            0.000        0.000
## frozen vegetables             0.000 0.000 0.000            0.000        0.000
## chicken                       0.000 0.000 0.000            0.000        0.000
## white bread                   0.000 0.000 0.000            0.000        0.000
## cream cheese                  0.000 0.000 0.000            0.000        0.000
## waffles                       0.000 0.000 0.000            0.000        0.000
## dessert                       0.000 0.000 0.000            0.000        0.000
## salty snack                   0.001 0.000 0.000            0.000        0.000
## long life bakery product      0.000 0.000 0.000            0.000        0.000
## berries                       0.000 0.000 0.000            0.000        0.000
## hamburger meat                0.000 0.000 0.000            0.000        0.000
## sugar                         0.000 0.000 0.000            0.000        0.000
## hygiene articles              0.000 0.000 0.000            0.000        0.001
## UHT-milk                      0.000 0.000 0.000            0.000        0.000
## onions                        0.000 0.000 0.000            0.000        0.000
## candy                         0.000 0.000 0.000            0.000        0.000
## specialty chocolate           0.000 0.000 0.000            0.000        0.000
## butter milk                   0.000 0.000 0.000            0.000        0.000
## oil                           0.000 0.000 0.000            0.000        0.000
## frozen meals                  0.000 0.000 0.000            0.000        0.000
## misc. beverages               0.000 0.000 0.000            0.000        0.001
## specialty bar                 0.000 0.000 0.000            0.000        0.000
## ham                           0.000 0.000 0.000            0.000        0.000
## beverages                     0.000 0.000 0.000            0.000        0.000
## meat                          0.000 0.000 0.000            0.000        0.000
## ice cream                     0.000 0.000 0.000            0.000        0.000
## sliced cheese                 0.000 0.000 0.000            0.000        0.000
## hard cheese                   0.000 0.000 0.000            0.000        0.000
## noodles                       0.000 0.000 0.000            0.000        0.000
## grapes                        0.000 0.000 0.000            0.000        0.000
## cat food                      0.000 0.000 0.000            0.000        0.000
## chewing gum                   0.000 0.000 0.000            0.000        0.000
## soda                          0.000 0.000 0.000            0.000        0.000
## detergent                     0.000 0.000 0.000            0.000        0.000
## red/blush wine                0.000 0.000 0.000            0.000        0.000
## white wine                    0.000 0.000 0.000            0.000        0.000
## turkey                        0.000 0.000 0.000            0.000        0.000
## dishes                        0.000 0.000 0.000            0.000        0.000
## bottled water                 0.000 0.000 0.000            0.000        0.000
## flour                         0.000 0.000 0.000            0.000        0.000
## semi-finished bread           0.000 0.000 0.000            0.000        0.000
## baking powder                 0.000 0.000 0.000            0.000        0.000
## pickled vegetables            0.000 0.000 0.000            0.000        0.000
## herbs                         0.000 0.000 0.000            0.000        0.000
## tropical herbs                0.000 0.000 0.000            0.000        0.000
## soft cheese                   0.000 0.000 0.000            0.000        0.000
## tea                           0.000 0.000 0.000            0.000        0.000
## processed cheese              0.000 0.000 0.000            0.000        0.000
## sausage                       0.000 0.000 0.000            0.000        0.000
## pasta                         0.000 0.000 0.000            0.000        0.000
## citrus herbs                  0.000 0.000 0.000            0.000        0.000
## potted plants                 0.000 0.000 0.000            0.000        0.000
## canned fish                   0.000 0.000 0.000            0.000        0.000
## seasonal products             0.000 0.000 0.000            0.000        0.000
## cake bar                      0.000 0.000 0.000            0.000        0.000
## carrots                       0.000 0.000 0.000            0.000        0.000
## mustard                       0.000 0.000 0.000            0.000        0.000
## packaged fruit/vegetables     0.000 0.000 0.000            0.000        0.000
## spread cheese                 0.000 0.000 0.000            0.000        0.000
## frozen dessert                0.000 0.000 0.000            0.000        0.000
## frozen fish                   0.000 0.000 0.000            0.000        0.000
## cling film/bags               0.000 0.000 0.000            0.000        0.000
## salt                          0.000 0.000 0.000            0.000        0.000
## liquor                        0.000 0.000 0.000            0.000        0.000
## canned vegetables             0.000 0.000 0.000            0.000        0.000
## bottled beer                  0.000 0.000 0.000            0.000        0.000
## flower (seeds)                0.000 0.000 0.000            0.000        0.000
## cooking oil                   0.000 0.000 0.000            0.000        0.000
## dish cleaner                  0.000 0.000 0.000            0.000        0.000
## condensed milk                0.000 0.000 0.000            0.000        0.000
## roll products                 0.000 0.000 0.000            0.000        0.000
## photo/film                    0.000 0.000 0.000            0.000        0.000
## pet care                      0.000 0.000 0.000            0.000        0.000
## chocolate marshmallow         0.000 0.000 0.000            0.000        0.000
## herbs/vegetable juice         0.000 0.000 0.000            0.000        0.000
## whole milk                    0.000 0.000 0.000            0.000        0.000
## candles                       0.000 0.000 0.000            0.000        0.000
## mayonnaise                    0.000 0.000 0.000            0.000        0.000
## Instant food products         0.000 0.000 0.000            0.000        0.000
## sweet spreads                 0.000 0.000 0.000            0.000        0.000
## liquor (appetizer)            0.000 0.000 0.000            0.000        0.000
## specialty cheese              0.000 0.000 0.000            0.000        0.000
## frozen potato products        0.000 0.000 0.000            0.000        0.000
## house keeping products        0.000 0.000 0.000            0.000        0.000
## dog food                      0.000 0.000 0.000            0.000        0.000
## soy                           0.000 0.000 0.000            0.000        0.000
## instant coffee                0.000 0.000 0.000            0.000        0.000
## pip herbs                     0.000 0.000 0.000            0.000        0.000
## zwieback                      0.000 0.000 0.000            0.000        0.000
## finished products             0.000 0.000 0.000            0.000        0.000
## popcorn                       0.000 0.000 0.000            0.000        0.000
## vinegar                       0.000 0.000 0.000            0.000        0.000
## soups                         0.000 0.000 0.000            0.000        0.000
## female sanitary products      0.000 0.000 0.000            0.000        0.000
## sparkling wine                0.000 0.000 0.000            0.000        0.000
## dental care                   0.000 0.000 0.000            0.000        0.000
## cereals                       0.000 0.000 0.000            0.000        0.000
## kitchen towels                0.000 0.000 0.000            0.000        0.000
## curd cheese                   0.000 0.000 0.000            0.000        0.000
## other vegetables              0.000 0.000 0.000            0.000        0.000
## rolls/buns                    0.000 0.000 0.000            0.000        0.000
## softener                      0.000 0.000 0.000            0.000        0.000
## cleaner                       0.000 0.000 0.000            0.000        0.000
## spices                        0.000 0.000 0.000            0.000        0.000
## jam                           0.000 0.000 0.000            0.000        0.000
## sauces                        0.000 0.000 0.000            0.000        0.000
## rum                           0.000 0.000 0.000            0.000        0.000
## liver loaf                    0.000 0.000 0.000            0.000        0.000
## male cosmetics                0.000 0.000 0.000            0.000        0.000
## meat spreads                  0.000 0.000 0.000            0.000        0.000
## packaged herbs/vegetables     0.000 0.000 0.000            0.000        0.000
## brandy                        0.000 0.000 0.000            0.000        0.000
## ketchup                       0.000 0.000 0.000            0.000        0.000
## abrasive cleaner              0.000 0.000 0.000            0.000        0.000
## light bulbs                   0.000 0.000 0.000            0.000        0.000
## artif. sweetener              0.000 0.000 0.000            0.000        0.000
## nuts/prunes                   0.000 0.000 0.000            0.000        0.000
## specialty fat                 0.000 0.000 0.000            0.000        0.000
## skin care                     0.000 0.000 0.000            0.000        0.000
## fish                          0.000 0.000 0.000            0.000        0.000
## potato products               0.000 0.000 0.000            0.000        0.000
## root vegetables               0.000 0.000 0.000            0.000        0.000
## snack products                0.000 0.000 0.000            0.000        0.000
## nut snack                     0.003 0.000 0.000            0.000        0.000
## soap                          0.000 0.003 0.000            0.000        0.000
## syrup                         0.000 0.000 0.003            0.000        0.000
## bathroom cleaner              0.000 0.000 0.000            0.003        0.000
## canned fruit                  0.000 0.000 0.000            0.000        0.003
## cookware                      0.000 0.000 0.000            0.000        0.000
## cooking chocolate             0.000 0.000 0.000            0.000        0.000
## tidbits                       0.000 0.000 0.000            0.000        0.000
## cocoa drinks                  0.000 0.000 0.000            0.000        0.000
## pudding powder                0.000 0.000 0.000            0.000        0.000
## ready soups                   0.000 0.000 0.000            0.000        0.000
## organic marinated meat        0.000 0.000 0.000            0.000        0.000
## flower soil/fertilizer        0.000 0.000 0.000            0.000        0.000
## organic products              0.000 0.000 0.000            0.000        0.000
## pot plants                    0.000 0.000 0.000            0.000        0.000
## prosecco                      0.000 0.000 0.000            0.000        0.000
## frankfurter                   0.000 0.000 0.000            0.000        0.000
## decalcifier                   0.000 0.000 0.000            0.000        0.000
## honey                         0.000 0.000 0.000            0.000        0.000
## specialty vegetables          0.000 0.000 0.000            0.000        0.000
## cream                         0.000 0.000 0.000            0.000        0.000
## hair spray                    0.000 0.000 0.000            0.000        0.000
## frozen fruits                 0.000 0.000 0.000            0.000        0.000
## rubbing alcohol               0.000 0.000 0.000            0.000        0.000
## liqueur                       0.000 0.000 0.000            0.000        0.000
## make up remover               0.000 0.000 0.000            0.000        0.000
## salad dressing                0.000 0.000 0.000            0.000        0.000
## frozen chicken                0.000 0.000 0.000            0.000        0.000
## whisky                        0.000 0.000 0.000            0.000        0.000
## baby cosmetics                0.000 0.000 0.000            0.000        0.000
## toilet cleaner                0.000 0.000 0.000            0.000        0.000
## bags                          0.000 0.000 0.000            0.000        0.000
## canned herbs                  0.000 0.000 0.000            0.000        0.000
## kitchen utensil               0.000 0.000 0.000            0.000        0.000
## preservation products         0.000 0.000 0.000            0.000        0.000
## baby food                     0.000 0.000 0.000            0.000        0.000
## frozen herbss                 0.000 0.000 0.000            0.000        0.000
## organic sausage               0.000 0.000 0.000            0.000        0.000
## sound storage medium          0.000 0.000 0.000            0.000        0.000
##                           cookware cooking chocolate tidbits cocoa drinks
## rice                         0.000             0.001   0.001        0.001
## veggies                      0.000             0.001   0.000        0.000
## loaf                         0.001             0.001   0.001        0.000
## coke                         0.001             0.000   0.001        0.000
## yogurt                       0.000             0.000   0.001        0.000
## vegetables                   0.000             0.000   0.000        0.000
## mineral water                0.000             0.001   0.000        0.000
## Plastic bags                 0.000             0.000   0.000        0.000
## tropical fruit               0.000             0.000   0.000        0.000
## marinated meat               0.000             0.000   0.000        0.000
## pies/pasties                 0.000             0.000   0.000        0.000
## newspapers                   0.000             0.000   0.000        0.000
## citrus                       0.001             0.000   0.000        0.000
## whipped/sour cream           0.000             0.000   0.000        0.000
## heinken                      0.000             0.000   0.000        0.000
## green tea                    0.000             0.000   0.000        0.000
## pip fruit                    0.001             0.000   0.000        0.000
## brown bread                  0.000             0.000   0.000        0.000
## fruit/vegetable juice        0.000             0.000   0.000        0.000
## domestic eggs                0.000             0.001   0.000        0.000
## coffee                       0.000             0.000   0.000        0.000
## margarine                    0.000             0.000   0.000        0.001
## beef                         0.001             0.000   0.000        0.000
## curd                         0.000             0.001   0.000        0.001
## butter                       0.000             0.000   0.000        0.000
## marinated meats              0.000             0.000   0.000        0.000
## napkins                      0.000             0.000   0.000        0.000
## halal meat                   0.000             0.000   0.000        0.000
## chocolate                    0.000             0.000   0.000        0.001
## frozen vegetables            0.000             0.000   0.000        0.000
## chicken                      0.000             0.000   0.000        0.000
## white bread                  0.000             0.000   0.000        0.000
## cream cheese                 0.000             0.000   0.000        0.000
## waffles                      0.000             0.000   0.001        0.000
## dessert                      0.000             0.000   0.000        0.000
## salty snack                  0.000             0.000   0.000        0.000
## long life bakery product     0.000             0.000   0.000        0.000
## berries                      0.000             0.000   0.000        0.000
## hamburger meat               0.000             0.000   0.000        0.000
## sugar                        0.000             0.000   0.000        0.000
## hygiene articles             0.000             0.000   0.000        0.000
## UHT-milk                     0.000             0.000   0.000        0.000
## onions                       0.000             0.000   0.000        0.000
## candy                        0.000             0.000   0.000        0.000
## specialty chocolate          0.000             0.000   0.000        0.000
## butter milk                  0.000             0.000   0.000        0.000
## oil                          0.000             0.000   0.000        0.000
## frozen meals                 0.000             0.000   0.000        0.000
## misc. beverages              0.000             0.000   0.000        0.000
## specialty bar                0.000             0.000   0.000        0.000
## ham                          0.000             0.000   0.000        0.000
## beverages                    0.000             0.000   0.000        0.000
## meat                         0.000             0.000   0.000        0.000
## ice cream                    0.000             0.000   0.000        0.000
## sliced cheese                0.000             0.000   0.000        0.000
## hard cheese                  0.000             0.000   0.000        0.000
## noodles                      0.000             0.000   0.000        0.000
## grapes                       0.000             0.000   0.000        0.000
## cat food                     0.000             0.000   0.000        0.000
## chewing gum                  0.000             0.000   0.000        0.000
## soda                         0.000             0.000   0.000        0.000
## detergent                    0.000             0.000   0.000        0.000
## red/blush wine               0.000             0.000   0.000        0.000
## white wine                   0.000             0.000   0.000        0.000
## turkey                       0.000             0.000   0.000        0.000
## dishes                       0.000             0.000   0.000        0.000
## bottled water                0.000             0.000   0.000        0.000
## flour                        0.000             0.000   0.000        0.000
## semi-finished bread          0.000             0.000   0.000        0.000
## baking powder                0.000             0.001   0.000        0.000
## pickled vegetables           0.000             0.000   0.000        0.000
## herbs                        0.000             0.000   0.000        0.000
## tropical herbs               0.000             0.000   0.000        0.000
## soft cheese                  0.000             0.000   0.000        0.000
## tea                          0.000             0.000   0.000        0.000
## processed cheese             0.000             0.000   0.000        0.000
## sausage                      0.000             0.000   0.000        0.000
## pasta                        0.000             0.000   0.000        0.000
## citrus herbs                 0.000             0.000   0.000        0.000
## potted plants                0.000             0.000   0.000        0.000
## canned fish                  0.000             0.000   0.000        0.000
## seasonal products            0.000             0.000   0.000        0.000
## cake bar                     0.000             0.000   0.000        0.000
## carrots                      0.000             0.000   0.000        0.000
## mustard                      0.000             0.000   0.000        0.000
## packaged fruit/vegetables    0.000             0.000   0.000        0.000
## spread cheese                0.000             0.000   0.000        0.000
## frozen dessert               0.000             0.000   0.000        0.000
## frozen fish                  0.000             0.000   0.000        0.000
## cling film/bags              0.000             0.000   0.000        0.000
## salt                         0.000             0.000   0.000        0.000
## liquor                       0.000             0.000   0.000        0.000
## canned vegetables            0.000             0.000   0.000        0.000
## bottled beer                 0.000             0.000   0.000        0.000
## flower (seeds)               0.000             0.000   0.000        0.000
## cooking oil                  0.000             0.000   0.000        0.000
## dish cleaner                 0.000             0.000   0.000        0.000
## condensed milk               0.000             0.000   0.000        0.000
## roll products                0.000             0.000   0.000        0.000
## photo/film                   0.000             0.000   0.000        0.000
## pet care                     0.000             0.000   0.000        0.000
## chocolate marshmallow        0.000             0.000   0.000        0.000
## herbs/vegetable juice        0.000             0.000   0.000        0.000
## whole milk                   0.000             0.000   0.000        0.000
## candles                      0.000             0.000   0.000        0.000
## mayonnaise                   0.000             0.000   0.000        0.000
## Instant food products        0.000             0.000   0.000        0.000
## sweet spreads                0.000             0.000   0.000        0.000
## liquor (appetizer)           0.000             0.000   0.000        0.000
## specialty cheese             0.000             0.000   0.000        0.000
## frozen potato products       0.000             0.000   0.000        0.000
## house keeping products       0.000             0.000   0.000        0.000
## dog food                     0.000             0.000   0.000        0.000
## soy                          0.000             0.000   0.000        0.000
## instant coffee               0.000             0.000   0.000        0.000
## pip herbs                    0.000             0.000   0.000        0.000
## zwieback                     0.000             0.000   0.000        0.000
## finished products            0.000             0.000   0.000        0.000
## popcorn                      0.000             0.000   0.000        0.000
## vinegar                      0.000             0.000   0.000        0.000
## soups                        0.000             0.000   0.000        0.000
## female sanitary products     0.000             0.000   0.000        0.000
## sparkling wine               0.000             0.000   0.000        0.000
## dental care                  0.000             0.000   0.000        0.000
## cereals                      0.000             0.000   0.000        0.000
## kitchen towels               0.000             0.000   0.000        0.000
## curd cheese                  0.000             0.000   0.000        0.000
## other vegetables             0.000             0.000   0.000        0.000
## rolls/buns                   0.000             0.000   0.000        0.000
## softener                     0.000             0.000   0.000        0.000
## cleaner                      0.000             0.000   0.000        0.000
## spices                       0.000             0.000   0.000        0.000
## jam                          0.000             0.000   0.000        0.000
## sauces                       0.000             0.000   0.000        0.000
## rum                          0.000             0.000   0.000        0.000
## liver loaf                   0.000             0.000   0.000        0.000
## male cosmetics               0.000             0.000   0.000        0.000
## meat spreads                 0.000             0.000   0.000        0.000
## packaged herbs/vegetables    0.000             0.000   0.000        0.000
## brandy                       0.000             0.000   0.000        0.000
## ketchup                      0.000             0.000   0.000        0.000
## abrasive cleaner             0.000             0.000   0.000        0.000
## light bulbs                  0.000             0.000   0.000        0.000
## artif. sweetener             0.000             0.000   0.000        0.000
## nuts/prunes                  0.000             0.000   0.000        0.000
## specialty fat                0.000             0.000   0.000        0.000
## skin care                    0.000             0.000   0.000        0.000
## fish                         0.000             0.000   0.000        0.000
## potato products              0.000             0.000   0.000        0.000
## root vegetables              0.000             0.000   0.000        0.000
## snack products               0.000             0.000   0.000        0.000
## nut snack                    0.000             0.000   0.000        0.000
## soap                         0.000             0.000   0.000        0.000
## syrup                        0.000             0.000   0.000        0.000
## bathroom cleaner             0.000             0.000   0.000        0.000
## canned fruit                 0.000             0.000   0.000        0.000
## cookware                     0.003             0.000   0.000        0.000
## cooking chocolate            0.000             0.002   0.000        0.000
## tidbits                      0.000             0.000   0.002        0.000
## cocoa drinks                 0.000             0.000   0.000        0.002
## pudding powder               0.000             0.000   0.000        0.000
## ready soups                  0.000             0.000   0.000        0.000
## organic marinated meat       0.000             0.000   0.000        0.000
## flower soil/fertilizer       0.000             0.000   0.000        0.000
## organic products             0.000             0.000   0.000        0.000
## pot plants                   0.000             0.000   0.000        0.000
## prosecco                     0.000             0.000   0.000        0.000
## frankfurter                  0.000             0.000   0.000        0.000
## decalcifier                  0.000             0.000   0.000        0.000
## honey                        0.000             0.000   0.000        0.000
## specialty vegetables         0.000             0.000   0.000        0.000
## cream                        0.000             0.000   0.000        0.000
## hair spray                   0.000             0.000   0.000        0.000
## frozen fruits                0.000             0.000   0.000        0.000
## rubbing alcohol              0.000             0.000   0.000        0.000
## liqueur                      0.000             0.000   0.000        0.000
## make up remover              0.000             0.000   0.000        0.000
## salad dressing               0.000             0.000   0.000        0.000
## frozen chicken               0.000             0.000   0.000        0.000
## whisky                       0.000             0.000   0.000        0.000
## baby cosmetics               0.000             0.000   0.000        0.000
## toilet cleaner               0.000             0.000   0.000        0.000
## bags                         0.000             0.000   0.000        0.000
## canned herbs                 0.000             0.000   0.000        0.000
## kitchen utensil              0.000             0.000   0.000        0.000
## preservation products        0.000             0.000   0.000        0.000
## baby food                    0.000             0.000   0.000        0.000
## frozen herbss                0.000             0.000   0.000        0.000
## organic sausage              0.000             0.000   0.000        0.000
## sound storage medium         0.000             0.000   0.000        0.000
##                           pudding powder ready soups organic marinated meat
## rice                               0.001       0.001                  0.001
## veggies                            0.001       0.001                  0.000
## loaf                               0.000       0.001                  0.000
## coke                               0.000       0.001                  0.000
## yogurt                             0.001       0.000                  0.001
## vegetables                         0.001       0.001                  0.000
## mineral water                      0.000       0.001                  0.000
## Plastic bags                       0.000       0.001                  0.000
## tropical fruit                     0.000       0.000                  0.000
## marinated meat                     0.000       0.000                  0.000
## pies/pasties                       0.000       0.001                  0.000
## newspapers                         0.000       0.001                  0.000
## citrus                             0.000       0.000                  0.000
## whipped/sour cream                 0.001       0.000                  0.000
## heinken                            0.000       0.000                  0.000
## green tea                          0.000       0.000                  0.000
## pip fruit                          0.000       0.000                  0.000
## brown bread                        0.000       0.000                  0.000
## fruit/vegetable juice              0.000       0.000                  0.000
## domestic eggs                      0.000       0.000                  0.000
## coffee                             0.000       0.000                  0.000
## margarine                          0.000       0.001                  0.000
## beef                               0.000       0.000                  0.000
## curd                               0.001       0.000                  0.000
## butter                             0.000       0.000                  0.000
## marinated meats                    0.000       0.000                  0.000
## napkins                            0.000       0.000                  0.000
## halal meat                         0.000       0.000                  0.000
## chocolate                          0.000       0.000                  0.000
## frozen vegetables                  0.000       0.000                  0.000
## chicken                            0.000       0.000                  0.000
## white bread                        0.000       0.000                  0.000
## cream cheese                       0.000       0.000                  0.000
## waffles                            0.000       0.000                  0.000
## dessert                            0.000       0.000                  0.000
## salty snack                        0.000       0.000                  0.000
## long life bakery product           0.000       0.000                  0.000
## berries                            0.000       0.000                  0.000
## hamburger meat                     0.000       0.000                  0.000
## sugar                              0.000       0.000                  0.000
## hygiene articles                   0.000       0.000                  0.000
## UHT-milk                           0.000       0.000                  0.000
## onions                             0.000       0.000                  0.000
## candy                              0.000       0.000                  0.000
## specialty chocolate                0.000       0.000                  0.000
## butter milk                        0.000       0.000                  0.000
## oil                                0.000       0.000                  0.000
## frozen meals                       0.000       0.000                  0.000
## misc. beverages                    0.000       0.000                  0.000
## specialty bar                      0.000       0.000                  0.000
## ham                                0.000       0.000                  0.000
## beverages                          0.000       0.000                  0.000
## meat                               0.000       0.000                  0.000
## ice cream                          0.000       0.000                  0.000
## sliced cheese                      0.000       0.000                  0.000
## hard cheese                        0.000       0.000                  0.000
## noodles                            0.000       0.000                  0.000
## grapes                             0.000       0.000                  0.000
## cat food                           0.000       0.000                  0.000
## chewing gum                        0.000       0.000                  0.000
## soda                               0.000       0.000                  0.000
## detergent                          0.000       0.000                  0.000
## red/blush wine                     0.000       0.000                  0.000
## white wine                         0.000       0.000                  0.000
## turkey                             0.000       0.000                  0.000
## dishes                             0.000       0.000                  0.000
## bottled water                      0.000       0.000                  0.000
## flour                              0.000       0.000                  0.000
## semi-finished bread                0.000       0.001                  0.000
## baking powder                      0.000       0.000                  0.000
## pickled vegetables                 0.000       0.000                  0.000
## herbs                              0.000       0.000                  0.000
## tropical herbs                     0.000       0.000                  0.000
## soft cheese                        0.000       0.000                  0.000
## tea                                0.000       0.000                  0.000
## processed cheese                   0.000       0.000                  0.000
## sausage                            0.000       0.000                  0.000
## pasta                              0.000       0.000                  0.000
## citrus herbs                       0.000       0.000                  0.000
## potted plants                      0.000       0.000                  0.000
## canned fish                        0.000       0.000                  0.000
## seasonal products                  0.000       0.000                  0.000
## cake bar                           0.000       0.000                  0.000
## carrots                            0.000       0.000                  0.000
## mustard                            0.000       0.000                  0.000
## packaged fruit/vegetables          0.000       0.000                  0.000
## spread cheese                      0.000       0.000                  0.000
## frozen dessert                     0.000       0.000                  0.000
## frozen fish                        0.000       0.000                  0.000
## cling film/bags                    0.000       0.000                  0.000
## salt                               0.000       0.000                  0.000
## liquor                             0.000       0.000                  0.000
## canned vegetables                  0.000       0.000                  0.000
## bottled beer                       0.000       0.000                  0.000
## flower (seeds)                     0.000       0.000                  0.000
## cooking oil                        0.000       0.000                  0.000
## dish cleaner                       0.000       0.000                  0.000
## condensed milk                     0.000       0.000                  0.000
## roll products                      0.000       0.000                  0.000
## photo/film                         0.000       0.000                  0.000
## pet care                           0.000       0.000                  0.000
## chocolate marshmallow              0.000       0.000                  0.000
## herbs/vegetable juice              0.000       0.000                  0.000
## whole milk                         0.000       0.000                  0.000
## candles                            0.000       0.000                  0.000
## mayonnaise                         0.000       0.000                  0.000
## Instant food products              0.000       0.000                  0.000
## sweet spreads                      0.000       0.000                  0.000
## liquor (appetizer)                 0.000       0.000                  0.000
## specialty cheese                   0.000       0.000                  0.000
## frozen potato products             0.000       0.000                  0.000
## house keeping products             0.000       0.000                  0.000
## dog food                           0.000       0.000                  0.000
## soy                                0.000       0.000                  0.000
## instant coffee                     0.000       0.000                  0.000
## pip herbs                          0.000       0.000                  0.000
## zwieback                           0.000       0.000                  0.000
## finished products                  0.000       0.000                  0.000
## popcorn                            0.000       0.000                  0.000
## vinegar                            0.000       0.000                  0.000
## soups                              0.000       0.000                  0.000
## female sanitary products           0.000       0.000                  0.000
## sparkling wine                     0.000       0.000                  0.000
## dental care                        0.000       0.000                  0.000
## cereals                            0.000       0.000                  0.000
## kitchen towels                     0.000       0.000                  0.000
## curd cheese                        0.000       0.000                  0.000
## other vegetables                   0.000       0.000                  0.000
## rolls/buns                         0.000       0.000                  0.000
## softener                           0.000       0.000                  0.000
## cleaner                            0.000       0.000                  0.000
## spices                             0.000       0.000                  0.000
## jam                                0.000       0.000                  0.000
## sauces                             0.000       0.000                  0.000
## rum                                0.000       0.000                  0.000
## liver loaf                         0.000       0.000                  0.000
## male cosmetics                     0.000       0.000                  0.000
## meat spreads                       0.000       0.000                  0.000
## packaged herbs/vegetables          0.000       0.000                  0.000
## brandy                             0.000       0.000                  0.000
## ketchup                            0.000       0.000                  0.000
## abrasive cleaner                   0.000       0.000                  0.000
## light bulbs                        0.000       0.000                  0.000
## artif. sweetener                   0.000       0.000                  0.000
## nuts/prunes                        0.000       0.000                  0.000
## specialty fat                      0.000       0.000                  0.000
## skin care                          0.000       0.000                  0.000
## fish                               0.000       0.000                  0.000
## potato products                    0.000       0.000                  0.000
## root vegetables                    0.000       0.000                  0.000
## snack products                     0.000       0.000                  0.000
## nut snack                          0.000       0.000                  0.000
## soap                               0.000       0.000                  0.000
## syrup                              0.000       0.000                  0.000
## bathroom cleaner                   0.000       0.000                  0.000
## canned fruit                       0.000       0.000                  0.000
## cookware                           0.000       0.000                  0.000
## cooking chocolate                  0.000       0.000                  0.000
## tidbits                            0.000       0.000                  0.000
## cocoa drinks                       0.000       0.000                  0.000
## pudding powder                     0.002       0.000                  0.000
## ready soups                        0.000       0.002                  0.000
## organic marinated meat             0.000       0.000                  0.002
## flower soil/fertilizer             0.000       0.000                  0.000
## organic products                   0.000       0.000                  0.000
## pot plants                         0.000       0.000                  0.000
## prosecco                           0.000       0.000                  0.000
## frankfurter                        0.000       0.000                  0.000
## decalcifier                        0.000       0.000                  0.000
## honey                              0.000       0.000                  0.000
## specialty vegetables               0.000       0.000                  0.000
## cream                              0.000       0.000                  0.000
## hair spray                         0.000       0.000                  0.000
## frozen fruits                      0.000       0.000                  0.000
## rubbing alcohol                    0.000       0.000                  0.000
## liqueur                            0.000       0.000                  0.000
## make up remover                    0.000       0.000                  0.000
## salad dressing                     0.000       0.000                  0.000
## frozen chicken                     0.000       0.000                  0.000
## whisky                             0.000       0.000                  0.000
## baby cosmetics                     0.000       0.000                  0.000
## toilet cleaner                     0.000       0.000                  0.000
## bags                               0.000       0.000                  0.000
## canned herbs                       0.000       0.000                  0.000
## kitchen utensil                    0.000       0.000                  0.000
## preservation products              0.000       0.000                  0.000
## baby food                          0.000       0.000                  0.000
## frozen herbss                      0.000       0.000                  0.000
## organic sausage                    0.000       0.000                  0.000
## sound storage medium               0.000       0.000                  0.000
##                           flower soil/fertilizer organic products pot plants
## rice                                       0.000            0.001      0.001
## veggies                                    0.000            0.001      0.000
## loaf                                       0.000            0.000      0.000
## coke                                       0.000            0.000      0.000
## yogurt                                     0.000            0.000      0.000
## vegetables                                 0.000            0.001      0.000
## mineral water                              0.000            0.000      0.000
## Plastic bags                               0.000            0.000      0.000
## tropical fruit                             0.000            0.001      0.000
## marinated meat                             0.000            0.000      0.000
## pies/pasties                               0.000            0.000      0.000
## newspapers                                 0.000            0.000      0.000
## citrus                                     0.000            0.000      0.000
## whipped/sour cream                         0.000            0.000      0.000
## heinken                                    0.000            0.000      0.000
## green tea                                  0.000            0.000      0.000
## pip fruit                                  0.000            0.000      0.000
## brown bread                                0.000            0.000      0.000
## fruit/vegetable juice                      0.000            0.000      0.000
## domestic eggs                              0.000            0.000      0.000
## coffee                                     0.000            0.000      0.000
## margarine                                  0.000            0.001      0.000
## beef                                       0.000            0.000      0.000
## curd                                       0.000            0.000      0.000
## butter                                     0.000            0.000      0.000
## marinated meats                            0.000            0.000      0.000
## napkins                                    0.000            0.000      0.000
## halal meat                                 0.000            0.000      0.000
## chocolate                                  0.000            0.000      0.000
## frozen vegetables                          0.000            0.000      0.000
## chicken                                    0.000            0.000      0.000
## white bread                                0.000            0.000      0.000
## cream cheese                               0.000            0.000      0.000
## waffles                                    0.000            0.000      0.000
## dessert                                    0.000            0.000      0.000
## salty snack                                0.000            0.000      0.000
## long life bakery product                   0.000            0.000      0.000
## berries                                    0.000            0.000      0.000
## hamburger meat                             0.000            0.000      0.000
## sugar                                      0.000            0.000      0.000
## hygiene articles                           0.000            0.000      0.000
## UHT-milk                                   0.000            0.000      0.000
## onions                                     0.000            0.000      0.000
## candy                                      0.000            0.000      0.000
## specialty chocolate                        0.000            0.000      0.000
## butter milk                                0.000            0.000      0.000
## oil                                        0.000            0.000      0.000
## frozen meals                               0.000            0.000      0.000
## misc. beverages                            0.000            0.000      0.000
## specialty bar                              0.000            0.000      0.000
## ham                                        0.000            0.000      0.000
## beverages                                  0.000            0.000      0.000
## meat                                       0.000            0.000      0.000
## ice cream                                  0.000            0.000      0.000
## sliced cheese                              0.000            0.000      0.000
## hard cheese                                0.000            0.000      0.000
## noodles                                    0.000            0.000      0.000
## grapes                                     0.000            0.000      0.000
## cat food                                   0.000            0.000      0.000
## chewing gum                                0.000            0.000      0.000
## soda                                       0.000            0.000      0.000
## detergent                                  0.000            0.000      0.000
## red/blush wine                             0.000            0.000      0.000
## white wine                                 0.000            0.000      0.000
## turkey                                     0.000            0.000      0.000
## dishes                                     0.000            0.000      0.000
## bottled water                              0.000            0.000      0.000
## flour                                      0.000            0.000      0.000
## semi-finished bread                        0.000            0.000      0.000
## baking powder                              0.000            0.000      0.000
## pickled vegetables                         0.000            0.000      0.000
## herbs                                      0.000            0.000      0.000
## tropical herbs                             0.000            0.000      0.000
## soft cheese                                0.000            0.000      0.000
## tea                                        0.000            0.000      0.000
## processed cheese                           0.000            0.000      0.000
## sausage                                    0.000            0.000      0.000
## pasta                                      0.000            0.000      0.000
## citrus herbs                               0.000            0.000      0.001
## potted plants                              0.000            0.000      0.000
## canned fish                                0.000            0.000      0.000
## seasonal products                          0.000            0.000      0.000
## cake bar                                   0.000            0.000      0.000
## carrots                                    0.000            0.000      0.000
## mustard                                    0.000            0.000      0.000
## packaged fruit/vegetables                  0.000            0.000      0.000
## spread cheese                              0.000            0.000      0.000
## frozen dessert                             0.000            0.000      0.000
## frozen fish                                0.000            0.000      0.000
## cling film/bags                            0.000            0.000      0.000
## salt                                       0.000            0.000      0.000
## liquor                                     0.000            0.000      0.000
## canned vegetables                          0.000            0.000      0.000
## bottled beer                               0.000            0.000      0.000
## flower (seeds)                             0.000            0.000      0.000
## cooking oil                                0.000            0.000      0.000
## dish cleaner                               0.000            0.000      0.000
## condensed milk                             0.000            0.000      0.000
## roll products                              0.000            0.000      0.000
## photo/film                                 0.000            0.000      0.000
## pet care                                   0.000            0.000      0.000
## chocolate marshmallow                      0.000            0.000      0.000
## herbs/vegetable juice                      0.000            0.000      0.000
## whole milk                                 0.000            0.000      0.000
## candles                                    0.000            0.000      0.000
## mayonnaise                                 0.000            0.000      0.000
## Instant food products                      0.000            0.000      0.000
## sweet spreads                              0.000            0.000      0.000
## liquor (appetizer)                         0.000            0.000      0.000
## specialty cheese                           0.000            0.000      0.000
## frozen potato products                     0.000            0.000      0.000
## house keeping products                     0.000            0.000      0.000
## dog food                                   0.000            0.000      0.000
## soy                                        0.000            0.000      0.000
## instant coffee                             0.000            0.000      0.000
## pip herbs                                  0.000            0.000      0.000
## zwieback                                   0.000            0.000      0.000
## finished products                          0.000            0.000      0.000
## popcorn                                    0.000            0.000      0.000
## vinegar                                    0.000            0.000      0.000
## soups                                      0.000            0.000      0.000
## female sanitary products                   0.000            0.000      0.000
## sparkling wine                             0.000            0.000      0.000
## dental care                                0.000            0.000      0.000
## cereals                                    0.000            0.000      0.000
## kitchen towels                             0.000            0.000      0.000
## curd cheese                                0.000            0.000      0.000
## other vegetables                           0.000            0.000      0.000
## rolls/buns                                 0.000            0.000      0.000
## softener                                   0.000            0.000      0.000
## cleaner                                    0.000            0.000      0.000
## spices                                     0.000            0.000      0.000
## jam                                        0.000            0.000      0.000
## sauces                                     0.000            0.000      0.000
## rum                                        0.000            0.000      0.000
## liver loaf                                 0.000            0.000      0.000
## male cosmetics                             0.000            0.000      0.000
## meat spreads                               0.000            0.000      0.000
## packaged herbs/vegetables                  0.000            0.000      0.000
## brandy                                     0.000            0.000      0.000
## ketchup                                    0.000            0.000      0.000
## abrasive cleaner                           0.000            0.000      0.000
## light bulbs                                0.000            0.000      0.000
## artif. sweetener                           0.000            0.000      0.000
## nuts/prunes                                0.000            0.000      0.000
## specialty fat                              0.000            0.000      0.000
## skin care                                  0.000            0.000      0.000
## fish                                       0.000            0.000      0.000
## potato products                            0.000            0.000      0.000
## root vegetables                            0.000            0.000      0.000
## snack products                             0.000            0.000      0.000
## nut snack                                  0.000            0.000      0.000
## soap                                       0.000            0.000      0.000
## syrup                                      0.000            0.000      0.000
## bathroom cleaner                           0.000            0.000      0.000
## canned fruit                               0.000            0.000      0.000
## cookware                                   0.000            0.000      0.000
## cooking chocolate                          0.000            0.000      0.000
## tidbits                                    0.000            0.000      0.000
## cocoa drinks                               0.000            0.000      0.000
## pudding powder                             0.000            0.000      0.000
## ready soups                                0.000            0.000      0.000
## organic marinated meat                     0.000            0.000      0.000
## flower soil/fertilizer                     0.002            0.000      0.000
## organic products                           0.000            0.002      0.000
## pot plants                                 0.000            0.000      0.002
## prosecco                                   0.000            0.000      0.000
## frankfurter                                0.000            0.000      0.000
## decalcifier                                0.000            0.000      0.000
## honey                                      0.000            0.000      0.000
## specialty vegetables                       0.000            0.000      0.000
## cream                                      0.000            0.000      0.000
## hair spray                                 0.000            0.000      0.000
## frozen fruits                              0.000            0.000      0.000
## rubbing alcohol                            0.000            0.000      0.000
## liqueur                                    0.000            0.000      0.000
## make up remover                            0.000            0.000      0.000
## salad dressing                             0.000            0.000      0.000
## frozen chicken                             0.000            0.000      0.000
## whisky                                     0.000            0.000      0.000
## baby cosmetics                             0.000            0.000      0.000
## toilet cleaner                             0.000            0.000      0.000
## bags                                       0.000            0.000      0.000
## canned herbs                               0.000            0.000      0.000
## kitchen utensil                            0.000            0.000      0.000
## preservation products                      0.000            0.000      0.000
## baby food                                  0.000            0.000      0.000
## frozen herbss                              0.000            0.000      0.000
## organic sausage                            0.000            0.000      0.000
## sound storage medium                       0.000            0.000      0.000
##                           prosecco frankfurter decalcifier honey
## rice                         0.000       0.000       0.001 0.001
## veggies                      0.000       0.000       0.000 0.000
## loaf                         0.000       0.000       0.000 0.000
## coke                         0.000       0.000       0.000 0.000
## yogurt                       0.000       0.000       0.000 0.000
## vegetables                   0.000       0.000       0.000 0.000
## mineral water                0.000       0.000       0.000 0.000
## Plastic bags                 0.000       0.000       0.000 0.000
## tropical fruit               0.000       0.000       0.000 0.000
## marinated meat               0.000       0.000       0.000 0.000
## pies/pasties                 0.000       0.000       0.000 0.000
## newspapers                   0.000       0.000       0.000 0.000
## citrus                       0.000       0.000       0.000 0.000
## whipped/sour cream           0.000       0.000       0.000 0.000
## heinken                      0.001       0.000       0.000 0.000
## green tea                    0.000       0.000       0.000 0.000
## pip fruit                    0.000       0.000       0.000 0.000
## brown bread                  0.000       0.000       0.000 0.000
## fruit/vegetable juice        0.000       0.000       0.000 0.000
## domestic eggs                0.000       0.000       0.000 0.000
## coffee                       0.000       0.000       0.000 0.000
## margarine                    0.000       0.000       0.000 0.000
## beef                         0.000       0.000       0.000 0.000
## curd                         0.000       0.000       0.000 0.000
## butter                       0.000       0.000       0.000 0.000
## marinated meats              0.000       0.000       0.000 0.000
## napkins                      0.000       0.000       0.000 0.000
## halal meat                   0.000       0.000       0.000 0.000
## chocolate                    0.000       0.000       0.000 0.000
## frozen vegetables            0.000       0.000       0.000 0.000
## chicken                      0.000       0.000       0.000 0.000
## white bread                  0.000       0.000       0.000 0.000
## cream cheese                 0.000       0.000       0.000 0.000
## waffles                      0.000       0.000       0.000 0.000
## dessert                      0.000       0.000       0.000 0.000
## salty snack                  0.000       0.000       0.000 0.000
## long life bakery product     0.000       0.000       0.000 0.000
## berries                      0.000       0.000       0.000 0.000
## hamburger meat               0.000       0.000       0.000 0.000
## sugar                        0.000       0.000       0.000 0.000
## hygiene articles             0.000       0.000       0.000 0.000
## UHT-milk                     0.000       0.000       0.000 0.000
## onions                       0.000       0.000       0.000 0.000
## candy                        0.000       0.000       0.000 0.000
## specialty chocolate          0.000       0.000       0.000 0.000
## butter milk                  0.000       0.000       0.000 0.000
## oil                          0.000       0.000       0.000 0.000
## frozen meals                 0.000       0.000       0.000 0.000
## misc. beverages              0.000       0.000       0.000 0.000
## specialty bar                0.000       0.000       0.000 0.000
## ham                          0.000       0.000       0.000 0.000
## beverages                    0.000       0.000       0.000 0.000
## meat                         0.000       0.000       0.000 0.000
## ice cream                    0.000       0.000       0.000 0.000
## sliced cheese                0.000       0.000       0.000 0.000
## hard cheese                  0.000       0.000       0.000 0.000
## noodles                      0.000       0.000       0.000 0.000
## grapes                       0.000       0.000       0.000 0.000
## cat food                     0.000       0.000       0.000 0.000
## chewing gum                  0.000       0.000       0.000 0.000
## soda                         0.000       0.000       0.000 0.000
## detergent                    0.000       0.000       0.000 0.000
## red/blush wine               0.000       0.000       0.000 0.000
## white wine                   0.000       0.000       0.000 0.000
## turkey                       0.000       0.000       0.000 0.000
## dishes                       0.000       0.000       0.000 0.000
## bottled water                0.000       0.000       0.000 0.000
## flour                        0.000       0.000       0.000 0.000
## semi-finished bread          0.000       0.000       0.000 0.000
## baking powder                0.000       0.000       0.000 0.000
## pickled vegetables           0.000       0.000       0.000 0.000
## herbs                        0.000       0.000       0.000 0.000
## tropical herbs               0.000       0.001       0.000 0.000
## soft cheese                  0.000       0.000       0.000 0.000
## tea                          0.000       0.000       0.000 0.000
## processed cheese             0.000       0.000       0.000 0.000
## sausage                      0.000       0.000       0.000 0.000
## pasta                        0.000       0.000       0.000 0.000
## citrus herbs                 0.000       0.000       0.000 0.000
## potted plants                0.000       0.000       0.000 0.000
## canned fish                  0.000       0.000       0.000 0.000
## seasonal products            0.000       0.000       0.000 0.000
## cake bar                     0.000       0.000       0.000 0.000
## carrots                      0.000       0.000       0.000 0.000
## mustard                      0.000       0.000       0.000 0.000
## packaged fruit/vegetables    0.000       0.000       0.000 0.000
## spread cheese                0.000       0.000       0.000 0.000
## frozen dessert               0.000       0.000       0.000 0.000
## frozen fish                  0.000       0.000       0.000 0.000
## cling film/bags              0.000       0.000       0.000 0.000
## salt                         0.000       0.000       0.000 0.000
## liquor                       0.000       0.000       0.000 0.000
## canned vegetables            0.000       0.000       0.000 0.000
## bottled beer                 0.000       0.000       0.000 0.000
## flower (seeds)               0.000       0.000       0.000 0.000
## cooking oil                  0.000       0.000       0.000 0.000
## dish cleaner                 0.000       0.000       0.000 0.000
## condensed milk               0.000       0.000       0.000 0.000
## roll products                0.000       0.000       0.000 0.000
## photo/film                   0.000       0.000       0.000 0.000
## pet care                     0.000       0.000       0.000 0.000
## chocolate marshmallow        0.000       0.000       0.000 0.000
## herbs/vegetable juice        0.000       0.000       0.000 0.000
## whole milk                   0.000       0.001       0.000 0.000
## candles                      0.000       0.000       0.000 0.000
## mayonnaise                   0.000       0.000       0.000 0.000
## Instant food products        0.000       0.000       0.000 0.000
## sweet spreads                0.000       0.000       0.000 0.000
## liquor (appetizer)           0.000       0.000       0.000 0.000
## specialty cheese             0.000       0.000       0.000 0.000
## frozen potato products       0.000       0.000       0.000 0.000
## house keeping products       0.000       0.000       0.000 0.000
## dog food                     0.000       0.000       0.000 0.000
## soy                          0.000       0.000       0.000 0.000
## instant coffee               0.000       0.000       0.000 0.000
## pip herbs                    0.000       0.000       0.000 0.000
## zwieback                     0.000       0.000       0.000 0.000
## finished products            0.000       0.000       0.000 0.000
## popcorn                      0.000       0.000       0.000 0.000
## vinegar                      0.000       0.000       0.000 0.000
## soups                        0.000       0.000       0.000 0.000
## female sanitary products     0.000       0.000       0.000 0.000
## sparkling wine               0.000       0.000       0.000 0.000
## dental care                  0.000       0.000       0.000 0.000
## cereals                      0.000       0.000       0.000 0.000
## kitchen towels               0.000       0.000       0.000 0.000
## curd cheese                  0.000       0.000       0.000 0.000
## other vegetables             0.000       0.001       0.000 0.000
## rolls/buns                   0.000       0.001       0.000 0.000
## softener                     0.000       0.000       0.000 0.000
## cleaner                      0.000       0.000       0.000 0.000
## spices                       0.000       0.000       0.000 0.000
## jam                          0.000       0.000       0.000 0.000
## sauces                       0.000       0.000       0.000 0.000
## rum                          0.000       0.000       0.000 0.000
## liver loaf                   0.000       0.000       0.000 0.000
## male cosmetics               0.000       0.000       0.000 0.000
## meat spreads                 0.000       0.000       0.000 0.000
## packaged herbs/vegetables    0.000       0.000       0.000 0.000
## brandy                       0.000       0.000       0.000 0.000
## ketchup                      0.000       0.000       0.000 0.000
## abrasive cleaner             0.000       0.000       0.000 0.000
## light bulbs                  0.000       0.000       0.000 0.000
## artif. sweetener             0.000       0.000       0.000 0.000
## nuts/prunes                  0.000       0.000       0.000 0.000
## specialty fat                0.000       0.000       0.000 0.000
## skin care                    0.000       0.000       0.000 0.000
## fish                         0.000       0.000       0.000 0.000
## potato products              0.000       0.000       0.000 0.000
## root vegetables              0.000       0.000       0.000 0.000
## snack products               0.000       0.000       0.000 0.000
## nut snack                    0.000       0.000       0.000 0.000
## soap                         0.000       0.000       0.000 0.000
## syrup                        0.000       0.000       0.000 0.000
## bathroom cleaner             0.000       0.000       0.000 0.000
## canned fruit                 0.000       0.000       0.000 0.000
## cookware                     0.000       0.000       0.000 0.000
## cooking chocolate            0.000       0.000       0.000 0.000
## tidbits                      0.000       0.000       0.000 0.000
## cocoa drinks                 0.000       0.000       0.000 0.000
## pudding powder               0.000       0.000       0.000 0.000
## ready soups                  0.000       0.000       0.000 0.000
## organic marinated meat       0.000       0.000       0.000 0.000
## flower soil/fertilizer       0.000       0.000       0.000 0.000
## organic products             0.000       0.000       0.000 0.000
## pot plants                   0.000       0.000       0.000 0.000
## prosecco                     0.002       0.000       0.000 0.000
## frankfurter                  0.000       0.002       0.000 0.000
## decalcifier                  0.000       0.000       0.002 0.000
## honey                        0.000       0.000       0.000 0.002
## specialty vegetables         0.000       0.000       0.000 0.000
## cream                        0.000       0.000       0.000 0.000
## hair spray                   0.000       0.000       0.000 0.000
## frozen fruits                0.000       0.000       0.000 0.000
## rubbing alcohol              0.000       0.000       0.000 0.000
## liqueur                      0.000       0.000       0.000 0.000
## make up remover              0.000       0.000       0.000 0.000
## salad dressing               0.000       0.000       0.000 0.000
## frozen chicken               0.000       0.000       0.000 0.000
## whisky                       0.000       0.000       0.000 0.000
## baby cosmetics               0.000       0.000       0.000 0.000
## toilet cleaner               0.000       0.000       0.000 0.000
## bags                         0.000       0.000       0.000 0.000
## canned herbs                 0.000       0.000       0.000 0.000
## kitchen utensil              0.000       0.000       0.000 0.000
## preservation products        0.000       0.000       0.000 0.000
## baby food                    0.000       0.000       0.000 0.000
## frozen herbss                0.000       0.000       0.000 0.000
## organic sausage              0.000       0.000       0.000 0.000
## sound storage medium         0.000       0.000       0.000 0.000
##                           specialty vegetables cream hair spray frozen fruits
## rice                                     0.000 0.000      0.000         0.000
## veggies                                  0.001 0.001      0.000         0.001
## loaf                                     0.000 0.000      0.000         0.000
## coke                                     0.001 0.000      0.000         0.000
## yogurt                                   0.000 0.000      0.000         0.000
## vegetables                               0.000 0.000      0.000         0.000
## mineral water                            0.000 0.000      0.000         0.000
## Plastic bags                             0.000 0.000      0.000         0.000
## tropical fruit                           0.001 0.000      0.000         0.000
## marinated meat                           0.000 0.001      0.000         0.000
## pies/pasties                             0.000 0.000      0.000         0.000
## newspapers                               0.000 0.000      0.000         0.000
## citrus                                   0.000 0.000      0.000         0.000
## whipped/sour cream                       0.000 0.000      0.000         0.001
## heinken                                  0.001 0.000      0.000         0.000
## green tea                                0.000 0.000      0.000         0.000
## pip fruit                                0.000 0.000      0.000         0.000
## brown bread                              0.000 0.000      0.000         0.000
## fruit/vegetable juice                    0.000 0.000      0.000         0.000
## domestic eggs                            0.000 0.000      0.000         0.000
## coffee                                   0.000 0.000      0.000         0.000
## margarine                                0.000 0.000      0.000         0.000
## beef                                     0.000 0.000      0.000         0.000
## curd                                     0.000 0.000      0.000         0.000
## butter                                   0.000 0.000      0.000         0.000
## marinated meats                          0.000 0.000      0.000         0.000
## napkins                                  0.000 0.000      0.000         0.000
## halal meat                               0.000 0.000      0.000         0.000
## chocolate                                0.000 0.000      0.000         0.000
## frozen vegetables                        0.000 0.000      0.000         0.000
## chicken                                  0.000 0.000      0.000         0.000
## white bread                              0.001 0.000      0.000         0.000
## cream cheese                             0.000 0.000      0.000         0.000
## waffles                                  0.000 0.000      0.000         0.000
## dessert                                  0.000 0.000      0.000         0.000
## salty snack                              0.000 0.000      0.000         0.000
## long life bakery product                 0.000 0.000      0.000         0.000
## berries                                  0.000 0.000      0.000         0.000
## hamburger meat                           0.000 0.000      0.000         0.000
## sugar                                    0.000 0.000      0.000         0.000
## hygiene articles                         0.000 0.000      0.000         0.000
## UHT-milk                                 0.000 0.000      0.000         0.000
## onions                                   0.000 0.000      0.000         0.000
## candy                                    0.000 0.000      0.000         0.000
## specialty chocolate                      0.000 0.000      0.000         0.000
## butter milk                              0.000 0.000      0.000         0.000
## oil                                      0.000 0.000      0.000         0.000
## frozen meals                             0.000 0.000      0.000         0.000
## misc. beverages                          0.000 0.000      0.000         0.000
## specialty bar                            0.000 0.000      0.000         0.000
## ham                                      0.000 0.000      0.000         0.000
## beverages                                0.000 0.000      0.000         0.000
## meat                                     0.000 0.000      0.000         0.000
## ice cream                                0.000 0.000      0.000         0.000
## sliced cheese                            0.000 0.000      0.000         0.000
## hard cheese                              0.000 0.000      0.000         0.000
## noodles                                  0.000 0.000      0.000         0.000
## grapes                                   0.000 0.000      0.000         0.000
## cat food                                 0.000 0.000      0.000         0.000
## chewing gum                              0.000 0.000      0.000         0.000
## soda                                     0.000 0.000      0.000         0.000
## detergent                                0.000 0.000      0.000         0.000
## red/blush wine                           0.000 0.000      0.000         0.000
## white wine                               0.000 0.000      0.000         0.000
## turkey                                   0.000 0.000      0.000         0.000
## dishes                                   0.000 0.000      0.000         0.000
## bottled water                            0.000 0.000      0.000         0.000
## flour                                    0.000 0.000      0.000         0.000
## semi-finished bread                      0.000 0.000      0.000         0.000
## baking powder                            0.000 0.000      0.000         0.000
## pickled vegetables                       0.000 0.000      0.000         0.000
## herbs                                    0.000 0.000      0.000         0.000
## tropical herbs                           0.000 0.000      0.000         0.000
## soft cheese                              0.000 0.000      0.000         0.000
## tea                                      0.000 0.000      0.000         0.000
## processed cheese                         0.000 0.000      0.000         0.000
## sausage                                  0.000 0.000      0.000         0.000
## pasta                                    0.000 0.000      0.000         0.000
## citrus herbs                             0.000 0.000      0.000         0.000
## potted plants                            0.000 0.000      0.000         0.000
## canned fish                              0.000 0.000      0.000         0.000
## seasonal products                        0.000 0.000      0.000         0.000
## cake bar                                 0.000 0.000      0.000         0.000
## carrots                                  0.000 0.000      0.000         0.000
## mustard                                  0.000 0.000      0.000         0.000
## packaged fruit/vegetables                0.000 0.000      0.000         0.000
## spread cheese                            0.000 0.000      0.000         0.000
## frozen dessert                           0.000 0.000      0.000         0.000
## frozen fish                              0.000 0.000      0.000         0.000
## cling film/bags                          0.000 0.000      0.000         0.000
## salt                                     0.000 0.000      0.000         0.000
## liquor                                   0.000 0.000      0.000         0.000
## canned vegetables                        0.000 0.000      0.000         0.000
## bottled beer                             0.000 0.000      0.000         0.000
## flower (seeds)                           0.000 0.000      0.000         0.000
## cooking oil                              0.000 0.000      0.000         0.000
## dish cleaner                             0.000 0.000      0.000         0.000
## condensed milk                           0.000 0.000      0.000         0.000
## roll products                            0.000 0.000      0.000         0.000
## photo/film                               0.000 0.000      0.000         0.000
## pet care                                 0.000 0.000      0.000         0.000
## chocolate marshmallow                    0.000 0.000      0.000         0.000
## herbs/vegetable juice                    0.000 0.000      0.000         0.000
## whole milk                               0.000 0.000      0.000         0.000
## candles                                  0.000 0.000      0.000         0.000
## mayonnaise                               0.000 0.000      0.000         0.000
## Instant food products                    0.000 0.000      0.000         0.000
## sweet spreads                            0.000 0.000      0.000         0.000
## liquor (appetizer)                       0.000 0.000      0.000         0.000
## specialty cheese                         0.000 0.000      0.000         0.000
## frozen potato products                   0.000 0.000      0.000         0.000
## house keeping products                   0.000 0.000      0.000         0.000
## dog food                                 0.000 0.000      0.000         0.000
## soy                                      0.000 0.000      0.000         0.000
## instant coffee                           0.000 0.000      0.000         0.000
## pip herbs                                0.000 0.000      0.000         0.000
## zwieback                                 0.000 0.000      0.000         0.000
## finished products                        0.000 0.000      0.000         0.000
## popcorn                                  0.000 0.000      0.000         0.000
## vinegar                                  0.000 0.000      0.000         0.000
## soups                                    0.000 0.000      0.000         0.000
## female sanitary products                 0.000 0.000      0.000         0.000
## sparkling wine                           0.000 0.000      0.000         0.000
## dental care                              0.000 0.000      0.000         0.000
## cereals                                  0.000 0.000      0.000         0.000
## kitchen towels                           0.000 0.000      0.000         0.000
## curd cheese                              0.000 0.000      0.000         0.000
## other vegetables                         0.000 0.000      0.000         0.000
## rolls/buns                               0.000 0.000      0.000         0.000
## softener                                 0.000 0.000      0.000         0.000
## cleaner                                  0.000 0.000      0.000         0.000
## spices                                   0.000 0.000      0.000         0.000
## jam                                      0.000 0.000      0.000         0.000
## sauces                                   0.000 0.000      0.000         0.000
## rum                                      0.000 0.000      0.000         0.000
## liver loaf                               0.000 0.000      0.000         0.000
## male cosmetics                           0.000 0.000      0.000         0.000
## meat spreads                             0.000 0.000      0.000         0.000
## packaged herbs/vegetables                0.000 0.000      0.000         0.000
## brandy                                   0.000 0.000      0.000         0.000
## ketchup                                  0.000 0.000      0.000         0.000
## abrasive cleaner                         0.000 0.000      0.000         0.000
## light bulbs                              0.000 0.000      0.000         0.000
## artif. sweetener                         0.000 0.000      0.000         0.000
## nuts/prunes                              0.000 0.000      0.000         0.000
## specialty fat                            0.000 0.000      0.000         0.000
## skin care                                0.000 0.000      0.000         0.000
## fish                                     0.000 0.000      0.000         0.000
## potato products                          0.000 0.000      0.000         0.000
## root vegetables                          0.000 0.000      0.000         0.000
## snack products                           0.000 0.000      0.000         0.000
## nut snack                                0.000 0.000      0.000         0.000
## soap                                     0.000 0.000      0.000         0.000
## syrup                                    0.000 0.000      0.000         0.000
## bathroom cleaner                         0.000 0.000      0.000         0.000
## canned fruit                             0.000 0.000      0.000         0.000
## cookware                                 0.000 0.000      0.000         0.000
## cooking chocolate                        0.000 0.000      0.000         0.000
## tidbits                                  0.000 0.000      0.000         0.000
## cocoa drinks                             0.000 0.000      0.000         0.000
## pudding powder                           0.000 0.000      0.000         0.000
## ready soups                              0.000 0.000      0.000         0.000
## organic marinated meat                   0.000 0.000      0.000         0.000
## flower soil/fertilizer                   0.000 0.000      0.000         0.000
## organic products                         0.000 0.000      0.000         0.000
## pot plants                               0.000 0.000      0.000         0.000
## prosecco                                 0.000 0.000      0.000         0.000
## frankfurter                              0.000 0.000      0.000         0.000
## decalcifier                              0.000 0.000      0.000         0.000
## honey                                    0.000 0.000      0.000         0.000
## specialty vegetables                     0.002 0.000      0.000         0.000
## cream                                    0.000 0.001      0.000         0.000
## hair spray                               0.000 0.000      0.001         0.000
## frozen fruits                            0.000 0.000      0.000         0.001
## rubbing alcohol                          0.000 0.000      0.000         0.000
## liqueur                                  0.000 0.000      0.000         0.000
## make up remover                          0.000 0.000      0.000         0.000
## salad dressing                           0.000 0.000      0.000         0.000
## frozen chicken                           0.000 0.000      0.000         0.000
## whisky                                   0.000 0.000      0.000         0.000
## baby cosmetics                           0.000 0.000      0.000         0.000
## toilet cleaner                           0.000 0.000      0.000         0.000
## bags                                     0.000 0.000      0.000         0.000
## canned herbs                             0.000 0.000      0.000         0.000
## kitchen utensil                          0.000 0.000      0.000         0.000
## preservation products                    0.000 0.000      0.000         0.000
## baby food                                0.000 0.000      0.000         0.000
## frozen herbss                            0.000 0.000      0.000         0.000
## organic sausage                          0.000 0.000      0.000         0.000
## sound storage medium                     0.000 0.000      0.000         0.000
##                           rubbing alcohol liqueur make up remover
## rice                                0.001   0.000           0.000
## veggies                             0.000   0.000           0.000
## loaf                                0.000   0.000           0.000
## coke                                0.000   0.000           0.000
## yogurt                              0.000   0.000           0.000
## vegetables                          0.000   0.000           0.000
## mineral water                       0.000   0.000           0.000
## Plastic bags                        0.000   0.000           0.000
## tropical fruit                      0.000   0.000           0.000
## marinated meat                      0.000   0.000           0.000
## pies/pasties                        0.000   0.000           0.000
## newspapers                          0.000   0.000           0.000
## citrus                              0.000   0.000           0.000
## whipped/sour cream                  0.000   0.000           0.000
## heinken                             0.000   0.000           0.000
## green tea                           0.000   0.000           0.000
## pip fruit                           0.000   0.000           0.000
## brown bread                         0.000   0.000           0.000
## fruit/vegetable juice               0.000   0.000           0.000
## domestic eggs                       0.000   0.000           0.000
## coffee                              0.000   0.000           0.000
## margarine                           0.000   0.000           0.000
## beef                                0.000   0.000           0.000
## curd                                0.000   0.000           0.000
## butter                              0.001   0.000           0.000
## marinated meats                     0.000   0.000           0.000
## napkins                             0.000   0.000           0.000
## halal meat                          0.000   0.000           0.000
## chocolate                           0.000   0.000           0.000
## frozen vegetables                   0.000   0.000           0.000
## chicken                             0.000   0.000           0.000
## white bread                         0.000   0.000           0.000
## cream cheese                        0.000   0.000           0.000
## waffles                             0.000   0.000           0.000
## dessert                             0.000   0.000           0.000
## salty snack                         0.000   0.000           0.000
## long life bakery product            0.000   0.000           0.000
## berries                             0.000   0.000           0.000
## hamburger meat                      0.000   0.000           0.000
## sugar                               0.000   0.000           0.000
## hygiene articles                    0.000   0.000           0.000
## UHT-milk                            0.000   0.000           0.000
## onions                              0.000   0.000           0.000
## candy                               0.000   0.000           0.000
## specialty chocolate                 0.000   0.000           0.000
## butter milk                         0.000   0.000           0.000
## oil                                 0.000   0.000           0.000
## frozen meals                        0.000   0.000           0.000
## misc. beverages                     0.000   0.000           0.000
## specialty bar                       0.000   0.000           0.000
## ham                                 0.000   0.000           0.000
## beverages                           0.000   0.000           0.000
## meat                                0.000   0.000           0.000
## ice cream                           0.000   0.000           0.000
## sliced cheese                       0.000   0.000           0.000
## hard cheese                         0.000   0.000           0.000
## noodles                             0.000   0.000           0.000
## grapes                              0.000   0.000           0.000
## cat food                            0.000   0.000           0.000
## chewing gum                         0.000   0.000           0.000
## soda                                0.000   0.000           0.000
## detergent                           0.000   0.000           0.000
## red/blush wine                      0.000   0.000           0.000
## white wine                          0.000   0.000           0.000
## turkey                              0.000   0.000           0.000
## dishes                              0.000   0.000           0.000
## bottled water                       0.000   0.000           0.000
## flour                               0.000   0.000           0.000
## semi-finished bread                 0.000   0.000           0.000
## baking powder                       0.000   0.000           0.000
## pickled vegetables                  0.000   0.000           0.000
## herbs                               0.000   0.000           0.000
## tropical herbs                      0.000   0.000           0.000
## soft cheese                         0.000   0.000           0.000
## tea                                 0.000   0.000           0.000
## processed cheese                    0.000   0.000           0.000
## sausage                             0.000   0.000           0.000
## pasta                               0.000   0.000           0.000
## citrus herbs                        0.000   0.000           0.000
## potted plants                       0.000   0.000           0.000
## canned fish                         0.000   0.000           0.000
## seasonal products                   0.000   0.000           0.000
## cake bar                            0.000   0.000           0.000
## carrots                             0.000   0.000           0.000
## mustard                             0.000   0.000           0.000
## packaged fruit/vegetables           0.000   0.000           0.000
## spread cheese                       0.000   0.000           0.000
## frozen dessert                      0.000   0.000           0.000
## frozen fish                         0.000   0.000           0.000
## cling film/bags                     0.000   0.000           0.000
## salt                                0.000   0.000           0.000
## liquor                              0.000   0.000           0.000
## canned vegetables                   0.000   0.000           0.000
## bottled beer                        0.000   0.000           0.000
## flower (seeds)                      0.000   0.000           0.000
## cooking oil                         0.000   0.000           0.000
## dish cleaner                        0.000   0.000           0.000
## condensed milk                      0.000   0.000           0.000
## roll products                       0.000   0.000           0.000
## photo/film                          0.000   0.000           0.000
## pet care                            0.000   0.000           0.000
## chocolate marshmallow               0.000   0.000           0.000
## herbs/vegetable juice               0.000   0.000           0.000
## whole milk                          0.000   0.000           0.000
## candles                             0.000   0.000           0.000
## mayonnaise                          0.000   0.000           0.000
## Instant food products               0.000   0.000           0.000
## sweet spreads                       0.000   0.000           0.000
## liquor (appetizer)                  0.000   0.000           0.000
## specialty cheese                    0.000   0.000           0.000
## frozen potato products              0.000   0.000           0.000
## house keeping products              0.000   0.000           0.000
## dog food                            0.000   0.000           0.000
## soy                                 0.000   0.000           0.000
## instant coffee                      0.000   0.000           0.000
## pip herbs                           0.000   0.000           0.000
## zwieback                            0.000   0.000           0.000
## finished products                   0.000   0.000           0.000
## popcorn                             0.000   0.000           0.000
## vinegar                             0.000   0.000           0.000
## soups                               0.000   0.000           0.000
## female sanitary products            0.000   0.000           0.000
## sparkling wine                      0.000   0.000           0.000
## dental care                         0.000   0.000           0.000
## cereals                             0.000   0.000           0.000
## kitchen towels                      0.000   0.000           0.000
## curd cheese                         0.000   0.000           0.000
## other vegetables                    0.000   0.000           0.000
## rolls/buns                          0.000   0.000           0.000
## softener                            0.000   0.000           0.000
## cleaner                             0.000   0.000           0.000
## spices                              0.000   0.000           0.000
## jam                                 0.000   0.000           0.000
## sauces                              0.000   0.000           0.000
## rum                                 0.000   0.000           0.000
## liver loaf                          0.000   0.000           0.000
## male cosmetics                      0.000   0.000           0.000
## meat spreads                        0.000   0.000           0.000
## packaged herbs/vegetables           0.000   0.000           0.000
## brandy                              0.000   0.000           0.000
## ketchup                             0.000   0.000           0.000
## abrasive cleaner                    0.000   0.000           0.000
## light bulbs                         0.000   0.000           0.000
## artif. sweetener                    0.000   0.000           0.000
## nuts/prunes                         0.000   0.000           0.000
## specialty fat                       0.000   0.000           0.000
## skin care                           0.000   0.000           0.000
## fish                                0.000   0.000           0.000
## potato products                     0.000   0.000           0.000
## root vegetables                     0.000   0.000           0.000
## snack products                      0.000   0.000           0.000
## nut snack                           0.000   0.000           0.000
## soap                                0.000   0.000           0.000
## syrup                               0.000   0.000           0.000
## bathroom cleaner                    0.000   0.000           0.000
## canned fruit                        0.000   0.000           0.000
## cookware                            0.000   0.000           0.000
## cooking chocolate                   0.000   0.000           0.000
## tidbits                             0.000   0.000           0.000
## cocoa drinks                        0.000   0.000           0.000
## pudding powder                      0.000   0.000           0.000
## ready soups                         0.000   0.000           0.000
## organic marinated meat              0.000   0.000           0.000
## flower soil/fertilizer              0.000   0.000           0.000
## organic products                    0.000   0.000           0.000
## pot plants                          0.000   0.000           0.000
## prosecco                            0.000   0.000           0.000
## frankfurter                         0.000   0.000           0.000
## decalcifier                         0.000   0.000           0.000
## honey                               0.000   0.000           0.000
## specialty vegetables                0.000   0.000           0.000
## cream                               0.000   0.000           0.000
## hair spray                          0.000   0.000           0.000
## frozen fruits                       0.000   0.000           0.000
## rubbing alcohol                     0.001   0.000           0.000
## liqueur                             0.000   0.001           0.000
## make up remover                     0.000   0.000           0.001
## salad dressing                      0.000   0.000           0.000
## frozen chicken                      0.000   0.000           0.000
## whisky                              0.000   0.000           0.000
## baby cosmetics                      0.000   0.000           0.000
## toilet cleaner                      0.000   0.000           0.000
## bags                                0.000   0.000           0.000
## canned herbs                        0.000   0.000           0.000
## kitchen utensil                     0.000   0.000           0.000
## preservation products               0.000   0.000           0.000
## baby food                           0.000   0.000           0.000
## frozen herbss                       0.000   0.000           0.000
## organic sausage                     0.000   0.000           0.000
## sound storage medium                0.000   0.000           0.000
##                           salad dressing frozen chicken whisky baby cosmetics
## rice                               0.000          0.000  0.000          0.000
## veggies                            0.000          0.000  0.000          0.000
## loaf                               0.000          0.000  0.000          0.000
## coke                               0.000          0.000  0.000          0.000
## yogurt                             0.000          0.000  0.000          0.000
## vegetables                         0.000          0.000  0.000          0.000
## mineral water                      0.000          0.000  0.000          0.000
## Plastic bags                       0.000          0.000  0.000          0.000
## tropical fruit                     0.000          0.000  0.000          0.000
## marinated meat                     0.000          0.000  0.000          0.000
## pies/pasties                       0.000          0.000  0.000          0.000
## newspapers                         0.000          0.000  0.000          0.000
## citrus                             0.000          0.000  0.000          0.000
## whipped/sour cream                 0.000          0.000  0.000          0.000
## heinken                            0.000          0.000  0.000          0.000
## green tea                          0.000          0.000  0.000          0.000
## pip fruit                          0.000          0.000  0.000          0.000
## brown bread                        0.000          0.000  0.000          0.000
## fruit/vegetable juice              0.000          0.000  0.000          0.000
## domestic eggs                      0.000          0.000  0.000          0.000
## coffee                             0.000          0.000  0.000          0.000
## margarine                          0.000          0.000  0.000          0.000
## beef                               0.000          0.000  0.000          0.000
## curd                               0.000          0.000  0.000          0.000
## butter                             0.000          0.000  0.000          0.000
## marinated meats                    0.000          0.000  0.000          0.000
## napkins                            0.000          0.000  0.000          0.000
## halal meat                         0.000          0.000  0.000          0.000
## chocolate                          0.000          0.000  0.000          0.000
## frozen vegetables                  0.000          0.000  0.000          0.000
## chicken                            0.000          0.000  0.000          0.000
## white bread                        0.000          0.000  0.000          0.000
## cream cheese                       0.000          0.000  0.000          0.000
## waffles                            0.000          0.000  0.000          0.000
## dessert                            0.000          0.000  0.000          0.000
## salty snack                        0.000          0.000  0.000          0.000
## long life bakery product           0.000          0.000  0.000          0.000
## berries                            0.000          0.000  0.000          0.000
## hamburger meat                     0.000          0.000  0.000          0.000
## sugar                              0.000          0.000  0.000          0.000
## hygiene articles                   0.000          0.000  0.000          0.000
## UHT-milk                           0.000          0.000  0.000          0.000
## onions                             0.000          0.000  0.000          0.000
## candy                              0.000          0.000  0.000          0.000
## specialty chocolate                0.000          0.000  0.000          0.000
## butter milk                        0.000          0.000  0.000          0.000
## oil                                0.000          0.000  0.000          0.000
## frozen meals                       0.000          0.000  0.000          0.000
## misc. beverages                    0.000          0.000  0.000          0.000
## specialty bar                      0.000          0.000  0.000          0.000
## ham                                0.000          0.000  0.000          0.000
## beverages                          0.000          0.000  0.000          0.000
## meat                               0.000          0.000  0.000          0.000
## ice cream                          0.000          0.000  0.000          0.000
## sliced cheese                      0.000          0.000  0.000          0.000
## hard cheese                        0.000          0.000  0.000          0.000
## noodles                            0.000          0.000  0.000          0.000
## grapes                             0.000          0.000  0.000          0.000
## cat food                           0.000          0.000  0.000          0.000
## chewing gum                        0.000          0.000  0.000          0.000
## soda                               0.000          0.000  0.000          0.000
## detergent                          0.000          0.000  0.000          0.000
## red/blush wine                     0.000          0.000  0.000          0.000
## white wine                         0.000          0.000  0.000          0.000
## turkey                             0.000          0.000  0.000          0.000
## dishes                             0.000          0.000  0.000          0.000
## bottled water                      0.000          0.000  0.000          0.000
## flour                              0.000          0.000  0.000          0.000
## semi-finished bread                0.000          0.000  0.000          0.000
## baking powder                      0.000          0.000  0.000          0.000
## pickled vegetables                 0.000          0.000  0.000          0.000
## herbs                              0.000          0.000  0.000          0.000
## tropical herbs                     0.000          0.000  0.000          0.000
## soft cheese                        0.000          0.000  0.000          0.000
## tea                                0.000          0.000  0.000          0.000
## processed cheese                   0.000          0.000  0.000          0.000
## sausage                            0.000          0.000  0.000          0.000
## pasta                              0.000          0.000  0.000          0.000
## citrus herbs                       0.000          0.000  0.000          0.000
## potted plants                      0.000          0.000  0.000          0.000
## canned fish                        0.000          0.000  0.000          0.000
## seasonal products                  0.000          0.000  0.000          0.000
## cake bar                           0.000          0.000  0.000          0.000
## carrots                            0.000          0.000  0.000          0.000
## mustard                            0.000          0.000  0.000          0.000
## packaged fruit/vegetables          0.000          0.000  0.000          0.000
## spread cheese                      0.000          0.000  0.000          0.000
## frozen dessert                     0.000          0.000  0.000          0.000
## frozen fish                        0.000          0.000  0.000          0.000
## cling film/bags                    0.000          0.000  0.000          0.000
## salt                               0.000          0.000  0.000          0.000
## liquor                             0.000          0.000  0.000          0.000
## canned vegetables                  0.000          0.000  0.000          0.000
## bottled beer                       0.000          0.000  0.000          0.000
## flower (seeds)                     0.000          0.000  0.000          0.000
## cooking oil                        0.000          0.000  0.000          0.000
## dish cleaner                       0.000          0.000  0.000          0.000
## condensed milk                     0.000          0.000  0.000          0.000
## roll products                      0.000          0.000  0.000          0.000
## photo/film                         0.000          0.000  0.000          0.000
## pet care                           0.000          0.000  0.000          0.000
## chocolate marshmallow              0.000          0.000  0.000          0.000
## herbs/vegetable juice              0.000          0.000  0.000          0.000
## whole milk                         0.000          0.000  0.000          0.000
## candles                            0.000          0.000  0.000          0.000
## mayonnaise                         0.000          0.000  0.000          0.000
## Instant food products              0.000          0.000  0.000          0.000
## sweet spreads                      0.000          0.000  0.000          0.000
## liquor (appetizer)                 0.000          0.000  0.000          0.000
## specialty cheese                   0.000          0.000  0.000          0.000
## frozen potato products             0.000          0.000  0.000          0.000
## house keeping products             0.000          0.000  0.000          0.000
## dog food                           0.000          0.000  0.000          0.000
## soy                                0.000          0.000  0.000          0.000
## instant coffee                     0.000          0.000  0.000          0.000
## pip herbs                          0.000          0.000  0.000          0.000
## zwieback                           0.000          0.000  0.000          0.000
## finished products                  0.000          0.000  0.000          0.000
## popcorn                            0.000          0.000  0.000          0.000
## vinegar                            0.000          0.000  0.000          0.000
## soups                              0.000          0.000  0.000          0.000
## female sanitary products           0.000          0.000  0.000          0.000
## sparkling wine                     0.000          0.000  0.000          0.000
## dental care                        0.000          0.000  0.000          0.000
## cereals                            0.000          0.000  0.000          0.000
## kitchen towels                     0.000          0.000  0.000          0.000
## curd cheese                        0.000          0.000  0.000          0.000
## other vegetables                   0.000          0.000  0.000          0.000
## rolls/buns                         0.000          0.000  0.000          0.000
## softener                           0.000          0.000  0.000          0.000
## cleaner                            0.000          0.000  0.000          0.000
## spices                             0.000          0.000  0.000          0.000
## jam                                0.000          0.000  0.000          0.000
## sauces                             0.000          0.000  0.000          0.000
## rum                                0.000          0.000  0.000          0.000
## liver loaf                         0.000          0.000  0.000          0.000
## male cosmetics                     0.000          0.000  0.000          0.000
## meat spreads                       0.000          0.000  0.000          0.000
## packaged herbs/vegetables          0.000          0.000  0.000          0.000
## brandy                             0.000          0.000  0.000          0.000
## ketchup                            0.000          0.000  0.000          0.000
## abrasive cleaner                   0.000          0.000  0.000          0.000
## light bulbs                        0.000          0.000  0.000          0.000
## artif. sweetener                   0.000          0.000  0.000          0.000
## nuts/prunes                        0.000          0.000  0.000          0.000
## specialty fat                      0.000          0.000  0.000          0.000
## skin care                          0.000          0.000  0.000          0.000
## fish                               0.000          0.000  0.000          0.000
## potato products                    0.000          0.000  0.000          0.000
## root vegetables                    0.000          0.000  0.000          0.000
## snack products                     0.000          0.000  0.000          0.000
## nut snack                          0.000          0.000  0.000          0.000
## soap                               0.000          0.000  0.000          0.000
## syrup                              0.000          0.000  0.000          0.000
## bathroom cleaner                   0.000          0.000  0.000          0.000
## canned fruit                       0.000          0.000  0.000          0.000
## cookware                           0.000          0.000  0.000          0.000
## cooking chocolate                  0.000          0.000  0.000          0.000
## tidbits                            0.000          0.000  0.000          0.000
## cocoa drinks                       0.000          0.000  0.000          0.000
## pudding powder                     0.000          0.000  0.000          0.000
## ready soups                        0.000          0.000  0.000          0.000
## organic marinated meat             0.000          0.000  0.000          0.000
## flower soil/fertilizer             0.000          0.000  0.000          0.000
## organic products                   0.000          0.000  0.000          0.000
## pot plants                         0.000          0.000  0.000          0.000
## prosecco                           0.000          0.000  0.000          0.000
## frankfurter                        0.000          0.000  0.000          0.000
## decalcifier                        0.000          0.000  0.000          0.000
## honey                              0.000          0.000  0.000          0.000
## specialty vegetables               0.000          0.000  0.000          0.000
## cream                              0.000          0.000  0.000          0.000
## hair spray                         0.000          0.000  0.000          0.000
## frozen fruits                      0.000          0.000  0.000          0.000
## rubbing alcohol                    0.000          0.000  0.000          0.000
## liqueur                            0.000          0.000  0.000          0.000
## make up remover                    0.000          0.000  0.000          0.000
## salad dressing                     0.001          0.000  0.000          0.000
## frozen chicken                     0.000          0.001  0.000          0.000
## whisky                             0.000          0.000  0.001          0.000
## baby cosmetics                     0.000          0.000  0.000          0.001
## toilet cleaner                     0.000          0.000  0.000          0.000
## bags                               0.000          0.000  0.000          0.000
## canned herbs                       0.000          0.000  0.000          0.000
## kitchen utensil                    0.000          0.000  0.000          0.000
## preservation products              0.000          0.000  0.000          0.000
## baby food                          0.000          0.000  0.000          0.000
## frozen herbss                      0.000          0.000  0.000          0.000
## organic sausage                    0.000          0.000  0.000          0.000
## sound storage medium               0.000          0.000  0.000          0.000
##                           toilet cleaner bags canned herbs kitchen utensil
## rice                               0.000    0            0               0
## veggies                            0.000    0            0               0
## loaf                               0.000    0            0               0
## coke                               0.000    0            0               0
## yogurt                             0.000    0            0               0
## vegetables                         0.000    0            0               0
## mineral water                      0.000    0            0               0
## Plastic bags                       0.000    0            0               0
## tropical fruit                     0.000    0            0               0
## marinated meat                     0.000    0            0               0
## pies/pasties                       0.000    0            0               0
## newspapers                         0.000    0            0               0
## citrus                             0.000    0            0               0
## whipped/sour cream                 0.000    0            0               0
## heinken                            0.000    0            0               0
## green tea                          0.000    0            0               0
## pip fruit                          0.000    0            0               0
## brown bread                        0.000    0            0               0
## fruit/vegetable juice              0.000    0            0               0
## domestic eggs                      0.000    0            0               0
## coffee                             0.000    0            0               0
## margarine                          0.000    0            0               0
## beef                               0.000    0            0               0
## curd                               0.000    0            0               0
## butter                             0.000    0            0               0
## marinated meats                    0.000    0            0               0
## napkins                            0.000    0            0               0
## halal meat                         0.000    0            0               0
## chocolate                          0.000    0            0               0
## frozen vegetables                  0.000    0            0               0
## chicken                            0.000    0            0               0
## white bread                        0.000    0            0               0
## cream cheese                       0.000    0            0               0
## waffles                            0.000    0            0               0
## dessert                            0.000    0            0               0
## salty snack                        0.000    0            0               0
## long life bakery product           0.000    0            0               0
## berries                            0.000    0            0               0
## hamburger meat                     0.000    0            0               0
## sugar                              0.000    0            0               0
## hygiene articles                   0.000    0            0               0
## UHT-milk                           0.000    0            0               0
## onions                             0.000    0            0               0
## candy                              0.000    0            0               0
## specialty chocolate                0.000    0            0               0
## butter milk                        0.000    0            0               0
## oil                                0.000    0            0               0
## frozen meals                       0.000    0            0               0
## misc. beverages                    0.000    0            0               0
## specialty bar                      0.000    0            0               0
## ham                                0.000    0            0               0
## beverages                          0.000    0            0               0
## meat                               0.000    0            0               0
## ice cream                          0.000    0            0               0
## sliced cheese                      0.000    0            0               0
## hard cheese                        0.000    0            0               0
## noodles                            0.000    0            0               0
## grapes                             0.000    0            0               0
## cat food                           0.000    0            0               0
## chewing gum                        0.000    0            0               0
## soda                               0.000    0            0               0
## detergent                          0.000    0            0               0
## red/blush wine                     0.000    0            0               0
## white wine                         0.000    0            0               0
## turkey                             0.000    0            0               0
## dishes                             0.000    0            0               0
## bottled water                      0.000    0            0               0
## flour                              0.000    0            0               0
## semi-finished bread                0.000    0            0               0
## baking powder                      0.000    0            0               0
## pickled vegetables                 0.000    0            0               0
## herbs                              0.000    0            0               0
## tropical herbs                     0.000    0            0               0
## soft cheese                        0.000    0            0               0
## tea                                0.000    0            0               0
## processed cheese                   0.000    0            0               0
## sausage                            0.000    0            0               0
## pasta                              0.000    0            0               0
## citrus herbs                       0.000    0            0               0
## potted plants                      0.000    0            0               0
## canned fish                        0.000    0            0               0
## seasonal products                  0.000    0            0               0
## cake bar                           0.000    0            0               0
## carrots                            0.000    0            0               0
## mustard                            0.000    0            0               0
## packaged fruit/vegetables          0.000    0            0               0
## spread cheese                      0.000    0            0               0
## frozen dessert                     0.000    0            0               0
## frozen fish                        0.000    0            0               0
## cling film/bags                    0.000    0            0               0
## salt                               0.000    0            0               0
## liquor                             0.000    0            0               0
## canned vegetables                  0.000    0            0               0
## bottled beer                       0.000    0            0               0
## flower (seeds)                     0.000    0            0               0
## cooking oil                        0.000    0            0               0
## dish cleaner                       0.000    0            0               0
## condensed milk                     0.000    0            0               0
## roll products                      0.000    0            0               0
## photo/film                         0.000    0            0               0
## pet care                           0.000    0            0               0
## chocolate marshmallow              0.000    0            0               0
## herbs/vegetable juice              0.000    0            0               0
## whole milk                         0.000    0            0               0
## candles                            0.000    0            0               0
## mayonnaise                         0.000    0            0               0
## Instant food products              0.000    0            0               0
## sweet spreads                      0.000    0            0               0
## liquor (appetizer)                 0.000    0            0               0
## specialty cheese                   0.000    0            0               0
## frozen potato products             0.000    0            0               0
## house keeping products             0.000    0            0               0
## dog food                           0.000    0            0               0
## soy                                0.000    0            0               0
## instant coffee                     0.000    0            0               0
## pip herbs                          0.000    0            0               0
## zwieback                           0.000    0            0               0
## finished products                  0.000    0            0               0
## popcorn                            0.000    0            0               0
## vinegar                            0.000    0            0               0
## soups                              0.000    0            0               0
## female sanitary products           0.000    0            0               0
## sparkling wine                     0.000    0            0               0
## dental care                        0.000    0            0               0
## cereals                            0.000    0            0               0
## kitchen towels                     0.000    0            0               0
## curd cheese                        0.000    0            0               0
## other vegetables                   0.000    0            0               0
## rolls/buns                         0.000    0            0               0
## softener                           0.000    0            0               0
## cleaner                            0.000    0            0               0
## spices                             0.000    0            0               0
## jam                                0.000    0            0               0
## sauces                             0.000    0            0               0
## rum                                0.000    0            0               0
## liver loaf                         0.000    0            0               0
## male cosmetics                     0.000    0            0               0
## meat spreads                       0.000    0            0               0
## packaged herbs/vegetables          0.000    0            0               0
## brandy                             0.000    0            0               0
## ketchup                            0.000    0            0               0
## abrasive cleaner                   0.000    0            0               0
## light bulbs                        0.000    0            0               0
## artif. sweetener                   0.000    0            0               0
## nuts/prunes                        0.000    0            0               0
## specialty fat                      0.000    0            0               0
## skin care                          0.000    0            0               0
## fish                               0.000    0            0               0
## potato products                    0.000    0            0               0
## root vegetables                    0.000    0            0               0
## snack products                     0.000    0            0               0
## nut snack                          0.000    0            0               0
## soap                               0.000    0            0               0
## syrup                              0.000    0            0               0
## bathroom cleaner                   0.000    0            0               0
## canned fruit                       0.000    0            0               0
## cookware                           0.000    0            0               0
## cooking chocolate                  0.000    0            0               0
## tidbits                            0.000    0            0               0
## cocoa drinks                       0.000    0            0               0
## pudding powder                     0.000    0            0               0
## ready soups                        0.000    0            0               0
## organic marinated meat             0.000    0            0               0
## flower soil/fertilizer             0.000    0            0               0
## organic products                   0.000    0            0               0
## pot plants                         0.000    0            0               0
## prosecco                           0.000    0            0               0
## frankfurter                        0.000    0            0               0
## decalcifier                        0.000    0            0               0
## honey                              0.000    0            0               0
## specialty vegetables               0.000    0            0               0
## cream                              0.000    0            0               0
## hair spray                         0.000    0            0               0
## frozen fruits                      0.000    0            0               0
## rubbing alcohol                    0.000    0            0               0
## liqueur                            0.000    0            0               0
## make up remover                    0.000    0            0               0
## salad dressing                     0.000    0            0               0
## frozen chicken                     0.000    0            0               0
## whisky                             0.000    0            0               0
## baby cosmetics                     0.000    0            0               0
## toilet cleaner                     0.001    0            0               0
## bags                               0.000    0            0               0
## canned herbs                       0.000    0            0               0
## kitchen utensil                    0.000    0            0               0
## preservation products              0.000    0            0               0
## baby food                          0.000    0            0               0
## frozen herbss                      0.000    0            0               0
## organic sausage                    0.000    0            0               0
## sound storage medium               0.000    0            0               0
##                           preservation products baby food frozen herbss
## rice                                          0         0             0
## veggies                                       0         0             0
## loaf                                          0         0             0
## coke                                          0         0             0
## yogurt                                        0         0             0
## vegetables                                    0         0             0
## mineral water                                 0         0             0
## Plastic bags                                  0         0             0
## tropical fruit                                0         0             0
## marinated meat                                0         0             0
## pies/pasties                                  0         0             0
## newspapers                                    0         0             0
## citrus                                        0         0             0
## whipped/sour cream                            0         0             0
## heinken                                       0         0             0
## green tea                                     0         0             0
## pip fruit                                     0         0             0
## brown bread                                   0         0             0
## fruit/vegetable juice                         0         0             0
## domestic eggs                                 0         0             0
## coffee                                        0         0             0
## margarine                                     0         0             0
## beef                                          0         0             0
## curd                                          0         0             0
## butter                                        0         0             0
## marinated meats                               0         0             0
## napkins                                       0         0             0
## halal meat                                    0         0             0
## chocolate                                     0         0             0
## frozen vegetables                             0         0             0
## chicken                                       0         0             0
## white bread                                   0         0             0
## cream cheese                                  0         0             0
## waffles                                       0         0             0
## dessert                                       0         0             0
## salty snack                                   0         0             0
## long life bakery product                      0         0             0
## berries                                       0         0             0
## hamburger meat                                0         0             0
## sugar                                         0         0             0
## hygiene articles                              0         0             0
## UHT-milk                                      0         0             0
## onions                                        0         0             0
## candy                                         0         0             0
## specialty chocolate                           0         0             0
## butter milk                                   0         0             0
## oil                                           0         0             0
## frozen meals                                  0         0             0
## misc. beverages                               0         0             0
## specialty bar                                 0         0             0
## ham                                           0         0             0
## beverages                                     0         0             0
## meat                                          0         0             0
## ice cream                                     0         0             0
## sliced cheese                                 0         0             0
## hard cheese                                   0         0             0
## noodles                                       0         0             0
## grapes                                        0         0             0
## cat food                                      0         0             0
## chewing gum                                   0         0             0
## soda                                          0         0             0
## detergent                                     0         0             0
## red/blush wine                                0         0             0
## white wine                                    0         0             0
## turkey                                        0         0             0
## dishes                                        0         0             0
## bottled water                                 0         0             0
## flour                                         0         0             0
## semi-finished bread                           0         0             0
## baking powder                                 0         0             0
## pickled vegetables                            0         0             0
## herbs                                         0         0             0
## tropical herbs                                0         0             0
## soft cheese                                   0         0             0
## tea                                           0         0             0
## processed cheese                              0         0             0
## sausage                                       0         0             0
## pasta                                         0         0             0
## citrus herbs                                  0         0             0
## potted plants                                 0         0             0
## canned fish                                   0         0             0
## seasonal products                             0         0             0
## cake bar                                      0         0             0
## carrots                                       0         0             0
## mustard                                       0         0             0
## packaged fruit/vegetables                     0         0             0
## spread cheese                                 0         0             0
## frozen dessert                                0         0             0
## frozen fish                                   0         0             0
## cling film/bags                               0         0             0
## salt                                          0         0             0
## liquor                                        0         0             0
## canned vegetables                             0         0             0
## bottled beer                                  0         0             0
## flower (seeds)                                0         0             0
## cooking oil                                   0         0             0
## dish cleaner                                  0         0             0
## condensed milk                                0         0             0
## roll products                                 0         0             0
## photo/film                                    0         0             0
## pet care                                      0         0             0
## chocolate marshmallow                         0         0             0
## herbs/vegetable juice                         0         0             0
## whole milk                                    0         0             0
## candles                                       0         0             0
## mayonnaise                                    0         0             0
## Instant food products                         0         0             0
## sweet spreads                                 0         0             0
## liquor (appetizer)                            0         0             0
## specialty cheese                              0         0             0
## frozen potato products                        0         0             0
## house keeping products                        0         0             0
## dog food                                      0         0             0
## soy                                           0         0             0
## instant coffee                                0         0             0
## pip herbs                                     0         0             0
## zwieback                                      0         0             0
## finished products                             0         0             0
## popcorn                                       0         0             0
## vinegar                                       0         0             0
## soups                                         0         0             0
## female sanitary products                      0         0             0
## sparkling wine                                0         0             0
## dental care                                   0         0             0
## cereals                                       0         0             0
## kitchen towels                                0         0             0
## curd cheese                                   0         0             0
## other vegetables                              0         0             0
## rolls/buns                                    0         0             0
## softener                                      0         0             0
## cleaner                                       0         0             0
## spices                                        0         0             0
## jam                                           0         0             0
## sauces                                        0         0             0
## rum                                           0         0             0
## liver loaf                                    0         0             0
## male cosmetics                                0         0             0
## meat spreads                                  0         0             0
## packaged herbs/vegetables                     0         0             0
## brandy                                        0         0             0
## ketchup                                       0         0             0
## abrasive cleaner                              0         0             0
## light bulbs                                   0         0             0
## artif. sweetener                              0         0             0
## nuts/prunes                                   0         0             0
## specialty fat                                 0         0             0
## skin care                                     0         0             0
## fish                                          0         0             0
## potato products                               0         0             0
## root vegetables                               0         0             0
## snack products                                0         0             0
## nut snack                                     0         0             0
## soap                                          0         0             0
## syrup                                         0         0             0
## bathroom cleaner                              0         0             0
## canned fruit                                  0         0             0
## cookware                                      0         0             0
## cooking chocolate                             0         0             0
## tidbits                                       0         0             0
## cocoa drinks                                  0         0             0
## pudding powder                                0         0             0
## ready soups                                   0         0             0
## organic marinated meat                        0         0             0
## flower soil/fertilizer                        0         0             0
## organic products                              0         0             0
## pot plants                                    0         0             0
## prosecco                                      0         0             0
## frankfurter                                   0         0             0
## decalcifier                                   0         0             0
## honey                                         0         0             0
## specialty vegetables                          0         0             0
## cream                                         0         0             0
## hair spray                                    0         0             0
## frozen fruits                                 0         0             0
## rubbing alcohol                               0         0             0
## liqueur                                       0         0             0
## make up remover                               0         0             0
## salad dressing                                0         0             0
## frozen chicken                                0         0             0
## whisky                                        0         0             0
## baby cosmetics                                0         0             0
## toilet cleaner                                0         0             0
## bags                                          0         0             0
## canned herbs                                  0         0             0
## kitchen utensil                               0         0             0
## preservation products                         0         0             0
## baby food                                     0         0             0
## frozen herbss                                 0         0             0
## organic sausage                               0         0             0
## sound storage medium                          0         0             0
##                           organic sausage sound storage medium
## rice                                    0                    0
## veggies                                 0                    0
## loaf                                    0                    0
## coke                                    0                    0
## yogurt                                  0                    0
## vegetables                              0                    0
## mineral water                           0                    0
## Plastic bags                            0                    0
## tropical fruit                          0                    0
## marinated meat                          0                    0
## pies/pasties                            0                    0
## newspapers                              0                    0
## citrus                                  0                    0
## whipped/sour cream                      0                    0
## heinken                                 0                    0
## green tea                               0                    0
## pip fruit                               0                    0
## brown bread                             0                    0
## fruit/vegetable juice                   0                    0
## domestic eggs                           0                    0
## coffee                                  0                    0
## margarine                               0                    0
## beef                                    0                    0
## curd                                    0                    0
## butter                                  0                    0
## marinated meats                         0                    0
## napkins                                 0                    0
## halal meat                              0                    0
## chocolate                               0                    0
## frozen vegetables                       0                    0
## chicken                                 0                    0
## white bread                             0                    0
## cream cheese                            0                    0
## waffles                                 0                    0
## dessert                                 0                    0
## salty snack                             0                    0
## long life bakery product                0                    0
## berries                                 0                    0
## hamburger meat                          0                    0
## sugar                                   0                    0
## hygiene articles                        0                    0
## UHT-milk                                0                    0
## onions                                  0                    0
## candy                                   0                    0
## specialty chocolate                     0                    0
## butter milk                             0                    0
## oil                                     0                    0
## frozen meals                            0                    0
## misc. beverages                         0                    0
## specialty bar                           0                    0
## ham                                     0                    0
## beverages                               0                    0
## meat                                    0                    0
## ice cream                               0                    0
## sliced cheese                           0                    0
## hard cheese                             0                    0
## noodles                                 0                    0
## grapes                                  0                    0
## cat food                                0                    0
## chewing gum                             0                    0
## soda                                    0                    0
## detergent                               0                    0
## red/blush wine                          0                    0
## white wine                              0                    0
## turkey                                  0                    0
## dishes                                  0                    0
## bottled water                           0                    0
## flour                                   0                    0
## semi-finished bread                     0                    0
## baking powder                           0                    0
## pickled vegetables                      0                    0
## herbs                                   0                    0
## tropical herbs                          0                    0
## soft cheese                             0                    0
## tea                                     0                    0
## processed cheese                        0                    0
## sausage                                 0                    0
## pasta                                   0                    0
## citrus herbs                            0                    0
## potted plants                           0                    0
## canned fish                             0                    0
## seasonal products                       0                    0
## cake bar                                0                    0
## carrots                                 0                    0
## mustard                                 0                    0
## packaged fruit/vegetables               0                    0
## spread cheese                           0                    0
## frozen dessert                          0                    0
## frozen fish                             0                    0
## cling film/bags                         0                    0
## salt                                    0                    0
## liquor                                  0                    0
## canned vegetables                       0                    0
## bottled beer                            0                    0
## flower (seeds)                          0                    0
## cooking oil                             0                    0
## dish cleaner                            0                    0
## condensed milk                          0                    0
## roll products                           0                    0
## photo/film                              0                    0
## pet care                                0                    0
## chocolate marshmallow                   0                    0
## herbs/vegetable juice                   0                    0
## whole milk                              0                    0
## candles                                 0                    0
## mayonnaise                              0                    0
## Instant food products                   0                    0
## sweet spreads                           0                    0
## liquor (appetizer)                      0                    0
## specialty cheese                        0                    0
## frozen potato products                  0                    0
## house keeping products                  0                    0
## dog food                                0                    0
## soy                                     0                    0
## instant coffee                          0                    0
## pip herbs                               0                    0
## zwieback                                0                    0
## finished products                       0                    0
## popcorn                                 0                    0
## vinegar                                 0                    0
## soups                                   0                    0
## female sanitary products                0                    0
## sparkling wine                          0                    0
## dental care                             0                    0
## cereals                                 0                    0
## kitchen towels                          0                    0
## curd cheese                             0                    0
## other vegetables                        0                    0
## rolls/buns                              0                    0
## softener                                0                    0
## cleaner                                 0                    0
## spices                                  0                    0
## jam                                     0                    0
## sauces                                  0                    0
## rum                                     0                    0
## liver loaf                              0                    0
## male cosmetics                          0                    0
## meat spreads                            0                    0
## packaged herbs/vegetables               0                    0
## brandy                                  0                    0
## ketchup                                 0                    0
## abrasive cleaner                        0                    0
## light bulbs                             0                    0
## artif. sweetener                        0                    0
## nuts/prunes                             0                    0
## specialty fat                           0                    0
## skin care                               0                    0
## fish                                    0                    0
## potato products                         0                    0
## root vegetables                         0                    0
## snack products                          0                    0
## nut snack                               0                    0
## soap                                    0                    0
## syrup                                   0                    0
## bathroom cleaner                        0                    0
## canned fruit                            0                    0
## cookware                                0                    0
## cooking chocolate                       0                    0
## tidbits                                 0                    0
## cocoa drinks                            0                    0
## pudding powder                          0                    0
## ready soups                             0                    0
## organic marinated meat                  0                    0
## flower soil/fertilizer                  0                    0
## organic products                        0                    0
## pot plants                              0                    0
## prosecco                                0                    0
## frankfurter                             0                    0
## decalcifier                             0                    0
## honey                                   0                    0
## specialty vegetables                    0                    0
## cream                                   0                    0
## hair spray                              0                    0
## frozen fruits                           0                    0
## rubbing alcohol                         0                    0
## liqueur                                 0                    0
## make up remover                         0                    0
## salad dressing                          0                    0
## frozen chicken                          0                    0
## whisky                                  0                    0
## baby cosmetics                          0                    0
## toilet cleaner                          0                    0
## bags                                    0                    0
## canned herbs                            0                    0
## kitchen utensil                         0                    0
## preservation products                   0                    0
## baby food                               0                    0
## frozen herbss                           0                    0
## organic sausage                         0                    0
## sound storage medium                    0                    0

some key facts: the support between “rice” and “veggies” is 0.067, meaning 6.7% of all transactions included both rice and veggies. the support between “loaf” and “coke” is 0.034, indicating that 3.4% of transactions included both loaf and coke.

ptab<-crossTable(shopping, measure="probability", sort=TRUE) 
round(ptab,3)
##                            rice veggies  loaf  coke yogurt vegetables
## rice                      0.256   0.067 0.050 0.036  0.056      0.052
## veggies                   0.067   0.170 0.037 0.029  0.038      0.042
## loaf                      0.050   0.037 0.161 0.034  0.030      0.021
## coke                      0.036   0.029 0.034 0.153  0.024      0.016
## yogurt                    0.056   0.038 0.030 0.024  0.140      0.027
## vegetables                0.052   0.042 0.021 0.016  0.027      0.116
## mineral water             0.030   0.022 0.021 0.025  0.020      0.014
## Plastic bags              0.025   0.020 0.017 0.022  0.015      0.013
## tropical fruit            0.037   0.031 0.022 0.018  0.026      0.018
## marinated meat            0.026   0.024 0.027 0.021  0.017      0.013
## pies/pasties              0.029   0.020 0.018 0.018  0.016      0.010
## newspapers                0.027   0.017 0.017 0.013  0.015      0.011
## citrus                    0.027   0.025 0.015 0.011  0.019      0.016
## whipped/sour cream        0.032   0.025 0.013 0.010  0.021      0.018
## heinken                   0.018   0.014 0.012 0.015  0.008      0.008
## green tea                 0.008   0.008 0.010 0.012  0.005      0.004
## pip fruit                 0.027   0.023 0.012 0.012  0.016      0.014
## brown bread               0.024   0.016 0.011 0.011  0.015      0.011
## fruit/vegetable juice     0.024   0.018 0.013 0.016  0.016      0.011
## domestic eggs             0.030   0.020 0.014 0.011  0.014      0.014
## coffee                    0.020   0.012 0.010 0.009  0.011      0.008
## margarine                 0.024   0.017 0.013 0.009  0.014      0.012
## beef                      0.023   0.017 0.012 0.007  0.012      0.018
## curd                      0.027   0.015 0.009 0.007  0.018      0.012
## butter                    0.027   0.018 0.012 0.008  0.014      0.013
## marinated meats           0.018   0.014 0.017 0.010  0.010      0.009
## napkins                   0.019   0.013 0.010 0.011  0.012      0.010
## halal meat                0.020   0.019 0.010 0.010  0.008      0.012
## chocolate                 0.016   0.011 0.010 0.012  0.009      0.007
## frozen vegetables         0.021   0.016 0.009 0.008  0.012      0.012
## chicken                   0.018   0.016 0.008 0.007  0.008      0.012
## white bread               0.016   0.012 0.006 0.009  0.009      0.008
## cream cheese              0.017   0.012 0.009 0.006  0.012      0.008
## waffles                   0.012   0.009 0.008 0.008  0.007      0.006
## dessert                   0.014   0.010 0.006 0.009  0.010      0.006
## salty snack               0.011   0.009 0.004 0.008  0.006      0.005
## long life bakery product  0.013   0.009 0.007 0.007  0.008      0.005
## berries                   0.013   0.009 0.006 0.006  0.011      0.008
## hamburger meat            0.015   0.012 0.008 0.005  0.007      0.007
## sugar                     0.015   0.009 0.006 0.006  0.007      0.007
## hygiene articles          0.013   0.008 0.005 0.006  0.007      0.006
## UHT-milk                  0.004   0.007 0.006 0.007  0.007      0.005
## onions                    0.012   0.012 0.006 0.005  0.007      0.010
## candy                     0.008   0.006 0.006 0.008  0.006      0.004
## specialty chocolate       0.007   0.005 0.005 0.006  0.004      0.003
## butter milk               0.011   0.009 0.007 0.004  0.009      0.006
## oil                       0.011   0.009 0.004 0.004  0.005      0.007
## frozen meals              0.010   0.007 0.004 0.005  0.006      0.004
## misc. beverages           0.007   0.005 0.004 0.006  0.004      0.003
## specialty bar             0.006   0.005 0.005 0.006  0.004      0.002
## ham                       0.011   0.008 0.006 0.004  0.007      0.004
## beverages                 0.007   0.005 0.005 0.004  0.006      0.003
## meat                      0.010   0.009 0.006 0.005  0.005      0.006
## ice cream                 0.006   0.004 0.003 0.005  0.004      0.003
## sliced cheese             0.011   0.008 0.007 0.004  0.008      0.006
## hard cheese               0.010   0.008 0.005 0.004  0.006      0.006
## noodles                   0.008   0.000 0.000 0.000  0.003      0.006
## grapes                    0.007   0.008 0.004 0.004  0.005      0.005
## cat food                  0.008   0.006 0.003 0.004  0.006      0.004
## chewing gum               0.005   0.004 0.003 0.005  0.002      0.002
## soda                      0.005   0.000 0.000 0.000  0.003      0.004
## detergent                 0.009   0.006 0.003 0.003  0.004      0.004
## red/blush wine            0.005   0.004 0.003 0.004  0.002      0.003
## white wine                0.003   0.002 0.002 0.003  0.002      0.002
## turkey                    0.007   0.003 0.002 0.001  0.004      0.005
## dishes                    0.006   0.005 0.003 0.002  0.004      0.003
## bottled water             0.004   0.000 0.000 0.000  0.004      0.004
## flour                     0.009   0.006 0.003 0.002  0.005      0.005
## semi-finished bread       0.007   0.005 0.003 0.004  0.003      0.002
## baking powder             0.009   0.006 0.003 0.002  0.004      0.004
## pickled vegetables        0.007   0.006 0.004 0.004  0.004      0.004
## herbs                     0.008   0.007 0.003 0.002  0.004      0.007
## tropical herbs            0.005   0.000 0.000 0.000  0.004      0.004
## soft cheese               0.007   0.006 0.005 0.002  0.006      0.004
## tea                       0.006   0.001 0.001 0.000  0.002      0.003
## processed cheese          0.007   0.005 0.004 0.005  0.002      0.003
## sausage                   0.004   0.000 0.000 0.000  0.003      0.003
## pasta                     0.006   0.004 0.002 0.004  0.003      0.004
## citrus herbs              0.006   0.000 0.000 0.000  0.003      0.003
## potted plants             0.006   0.004 0.002 0.002  0.003      0.002
## canned fish               0.005   0.004 0.004 0.003  0.003      0.003
## seasonal products         0.004   0.003 0.002 0.002  0.003      0.002
## cake bar                  0.005   0.003 0.003 0.004  0.002      0.002
## carrots                   0.006   0.000 0.000 0.000  0.003      0.005
## mustard                   0.005   0.003 0.004 0.002  0.002      0.003
## packaged fruit/vegetables 0.004   0.003 0.002 0.002  0.002      0.003
## spread cheese             0.003   0.003 0.004 0.003  0.004      0.002
## frozen dessert            0.004   0.003 0.003 0.002  0.002      0.003
## frozen fish               0.005   0.004 0.002 0.001  0.003      0.003
## cling film/bags           0.004   0.003 0.002 0.002  0.003      0.002
## salt                      0.004   0.003 0.002 0.001  0.002      0.003
## liquor                    0.001   0.001 0.001 0.002  0.001      0.001
## canned vegetables         0.004   0.004 0.002 0.003  0.003      0.002
## bottled beer              0.003   0.000 0.000 0.000  0.001      0.002
## flower (seeds)            0.004   0.003 0.002 0.001  0.001      0.002
## cooking oil               0.001   0.000 0.000 0.000  0.001      0.001
## dish cleaner              0.003   0.002 0.002 0.002  0.002      0.002
## condensed milk            0.002   0.002 0.002 0.002  0.002      0.002
## roll products             0.004   0.004 0.002 0.001  0.002      0.003
## photo/film                0.002   0.001 0.001 0.001  0.001      0.001
## pet care                  0.002   0.002 0.001 0.002  0.001      0.001
## chocolate marshmallow     0.003   0.002 0.002 0.002  0.001      0.001
## herbs/vegetable juice     0.003   0.000 0.000 0.000  0.002      0.002
## whole milk                0.000   0.000 0.000 0.000  0.001      0.000
## candles                   0.003   0.002 0.001 0.001  0.001      0.002
## mayonnaise                0.003   0.003 0.002 0.002  0.003      0.002
## Instant food products     0.003   0.002 0.002 0.002  0.001      0.002
## sweet spreads             0.003   0.002 0.001 0.002  0.002      0.002
## liquor (appetizer)        0.002   0.001 0.001 0.002  0.001      0.001
## specialty cheese          0.003   0.004 0.001 0.001  0.003      0.002
## frozen potato products    0.004   0.002 0.002 0.002  0.002      0.002
## house keeping products    0.003   0.002 0.002 0.002  0.002      0.002
## dog food                  0.003   0.002 0.001 0.002  0.002      0.001
## soy                       0.003   0.000 0.000 0.000  0.002      0.002
## instant coffee            0.002   0.002 0.002 0.002  0.002      0.001
## pip herbs                 0.002   0.000 0.000 0.000  0.001      0.002
## zwieback                  0.002   0.002 0.001 0.001  0.001      0.001
## finished products         0.001   0.002 0.001 0.002  0.001      0.001
## popcorn                   0.003   0.001 0.001 0.002  0.001      0.002
## vinegar                   0.003   0.002 0.001 0.001  0.002      0.002
## soups                     0.003   0.003 0.001 0.001  0.001      0.002
## female sanitary products  0.002   0.001 0.001 0.001  0.002      0.001
## sparkling wine            0.001   0.001 0.001 0.001  0.001      0.001
## dental care               0.002   0.002 0.001 0.001  0.001      0.001
## cereals                   0.004   0.002 0.001 0.001  0.002      0.001
## kitchen towels            0.002   0.002 0.001 0.001  0.001      0.001
## curd cheese               0.002   0.002 0.001 0.000  0.001      0.001
## other vegetables          0.000   0.000 0.000 0.000  0.001      0.000
## rolls/buns                0.000   0.000 0.000 0.000  0.001      0.000
## softener                  0.002   0.001 0.001 0.001  0.001      0.001
## cleaner                   0.002   0.001 0.001 0.001  0.002      0.001
## spices                    0.001   0.002 0.001 0.001  0.001      0.001
## jam                       0.003   0.002 0.001 0.001  0.001      0.002
## sauces                    0.002   0.001 0.001 0.001  0.001      0.001
## rum                       0.002   0.001 0.001 0.001  0.001      0.001
## liver loaf                0.002   0.001 0.001 0.001  0.001      0.001
## male cosmetics            0.001   0.001 0.001 0.001  0.001      0.001
## meat spreads              0.001   0.001 0.001 0.001  0.002      0.001
## packaged herbs/vegetables 0.002   0.000 0.000 0.000  0.001      0.001
## brandy                    0.001   0.001 0.001 0.001  0.001      0.001
## ketchup                   0.001   0.001 0.000 0.001  0.001      0.001
## abrasive cleaner          0.002   0.001 0.000 0.001  0.001      0.001
## light bulbs               0.001   0.001 0.001 0.001  0.001      0.001
## artif. sweetener          0.001   0.001 0.001 0.001  0.001      0.001
## nuts/prunes               0.001   0.001 0.001 0.001  0.000      0.001
## specialty fat             0.001   0.001 0.001 0.000  0.001      0.001
## skin care                 0.002   0.001 0.001 0.001  0.001      0.001
## fish                      0.001   0.001 0.000 0.000  0.001      0.001
## potato products           0.001   0.001 0.001 0.001  0.001      0.001
## root vegetables           0.000   0.000 0.000 0.000  0.000      0.000
## snack products            0.001   0.001 0.001 0.001  0.000      0.000
## nut snack                 0.000   0.001 0.001 0.001  0.001      0.001
## soap                      0.001   0.000 0.001 0.001  0.000      0.000
## syrup                     0.001   0.001 0.001 0.001  0.001      0.001
## bathroom cleaner          0.001   0.001 0.001 0.001  0.001      0.001
## canned fruit              0.001   0.001 0.001 0.001  0.000      0.001
## cookware                  0.000   0.000 0.001 0.001  0.000      0.000
## cooking chocolate         0.001   0.001 0.001 0.000  0.000      0.000
## tidbits                   0.001   0.000 0.001 0.001  0.001      0.000
## cocoa drinks              0.001   0.000 0.000 0.000  0.000      0.000
## pudding powder            0.001   0.001 0.000 0.000  0.001      0.001
## ready soups               0.001   0.001 0.001 0.001  0.000      0.001
## organic marinated meat    0.001   0.000 0.000 0.000  0.001      0.000
## flower soil/fertilizer    0.000   0.000 0.000 0.000  0.000      0.000
## organic products          0.001   0.001 0.000 0.000  0.000      0.001
## pot plants                0.001   0.000 0.000 0.000  0.000      0.000
## prosecco                  0.000   0.000 0.000 0.000  0.000      0.000
## frankfurter               0.000   0.000 0.000 0.000  0.000      0.000
## decalcifier               0.001   0.000 0.000 0.000  0.000      0.000
## honey                     0.001   0.000 0.000 0.000  0.000      0.000
## specialty vegetables      0.000   0.001 0.000 0.001  0.000      0.000
## cream                     0.000   0.001 0.000 0.000  0.000      0.000
## hair spray                0.000   0.000 0.000 0.000  0.000      0.000
## frozen fruits             0.000   0.001 0.000 0.000  0.000      0.000
## rubbing alcohol           0.001   0.000 0.000 0.000  0.000      0.000
## liqueur                   0.000   0.000 0.000 0.000  0.000      0.000
## make up remover           0.000   0.000 0.000 0.000  0.000      0.000
## salad dressing            0.000   0.000 0.000 0.000  0.000      0.000
## frozen chicken            0.000   0.000 0.000 0.000  0.000      0.000
## whisky                    0.000   0.000 0.000 0.000  0.000      0.000
## baby cosmetics            0.000   0.000 0.000 0.000  0.000      0.000
## toilet cleaner            0.000   0.000 0.000 0.000  0.000      0.000
## bags                      0.000   0.000 0.000 0.000  0.000      0.000
## canned herbs              0.000   0.000 0.000 0.000  0.000      0.000
## kitchen utensil           0.000   0.000 0.000 0.000  0.000      0.000
## preservation products     0.000   0.000 0.000 0.000  0.000      0.000
## baby food                 0.000   0.000 0.000 0.000  0.000      0.000
## frozen herbss             0.000   0.000 0.000 0.000  0.000      0.000
## organic sausage           0.000   0.000 0.000 0.000  0.000      0.000
## sound storage medium      0.000   0.000 0.000 0.000  0.000      0.000
##                           mineral water Plastic bags tropical fruit
## rice                              0.030        0.025          0.037
## veggies                           0.022        0.020          0.031
## loaf                              0.021        0.017          0.022
## coke                              0.025        0.022          0.018
## yogurt                            0.020        0.015          0.026
## vegetables                        0.014        0.013          0.018
## mineral water                     0.097        0.010          0.016
## Plastic bags                      0.010        0.097          0.012
## tropical fruit                    0.016        0.012          0.092
## marinated meat                    0.011        0.014          0.012
## pies/pasties                      0.008        0.011          0.012
## newspapers                        0.010        0.007          0.010
## citrus                            0.012        0.009          0.017
## whipped/sour cream                0.008        0.008          0.012
## heinken                           0.014        0.005          0.007
## green tea                         0.007        0.010          0.003
## pip fruit                         0.009        0.008          0.018
## brown bread                       0.007        0.009          0.009
## fruit/vegetable juice             0.012        0.009          0.012
## domestic eggs                     0.008        0.009          0.010
## coffee                            0.006        0.010          0.006
## margarine                         0.009        0.006          0.008
## beef                              0.005        0.005          0.007
## curd                              0.005        0.006          0.009
## butter                            0.008        0.005          0.009
## marinated meats                   0.006        0.007          0.008
## napkins                           0.008        0.007          0.009
## halal meat                        0.007        0.006          0.007
## chocolate                         0.005        0.008          0.007
## frozen vegetables                 0.005        0.004          0.008
## chicken                           0.005        0.005          0.006
## white bread                       0.004        0.007          0.008
## cream cheese                      0.005        0.005          0.006
## waffles                           0.004        0.006          0.005
## dessert                           0.005        0.006          0.006
## salty snack                       0.004        0.006          0.005
## long life bakery product          0.004        0.005          0.006
## berries                           0.004        0.005          0.006
## hamburger meat                    0.003        0.004          0.004
## sugar                             0.004        0.003          0.004
## hygiene articles                  0.005        0.005          0.006
## UHT-milk                          0.006        0.005          0.004
## onions                            0.005        0.004          0.005
## candy                             0.003        0.004          0.005
## specialty chocolate               0.003        0.004          0.003
## butter milk                       0.003        0.004          0.005
## oil                               0.004        0.003          0.004
## frozen meals                      0.003        0.005          0.005
## misc. beverages                   0.005        0.004          0.004
## specialty bar                     0.002        0.003          0.003
## ham                               0.003        0.004          0.005
## beverages                         0.003        0.003          0.004
## meat                              0.003        0.003          0.003
## ice cream                         0.002        0.003          0.004
## sliced cheese                     0.003        0.004          0.005
## hard cheese                       0.003        0.003          0.004
## noodles                           0.000        0.002          0.000
## grapes                            0.004        0.002          0.005
## cat food                          0.004        0.004          0.004
## chewing gum                       0.002        0.003          0.002
## soda                              0.000        0.003          0.000
## detergent                         0.002        0.003          0.003
## red/blush wine                    0.003        0.003          0.002
## white wine                        0.003        0.003          0.001
## turkey                            0.001        0.002          0.002
## dishes                            0.002        0.002          0.002
## bottled water                     0.000        0.001          0.000
## flour                             0.002        0.002          0.003
## semi-finished bread               0.002        0.003          0.004
## baking powder                     0.002        0.002          0.003
## pickled vegetables                0.003        0.002          0.003
## herbs                             0.003        0.002          0.002
## tropical herbs                    0.000        0.002          0.000
## soft cheese                       0.002        0.003          0.003
## tea                               0.001        0.001          0.001
## processed cheese                  0.002        0.002          0.004
## sausage                           0.000        0.002          0.000
## pasta                             0.002        0.002          0.002
## citrus herbs                      0.000        0.001          0.000
## potted plants                     0.002        0.002          0.003
## canned fish                       0.001        0.003          0.002
## seasonal products                 0.001        0.002          0.002
## cake bar                          0.002        0.003          0.002
## carrots                           0.000        0.001          0.000
## mustard                           0.002        0.002          0.002
## packaged fruit/vegetables         0.002        0.001          0.002
## spread cheese                     0.002        0.002          0.002
## frozen dessert                    0.001        0.001          0.002
## frozen fish                       0.001        0.001          0.002
## cling film/bags                   0.002        0.001          0.002
## salt                              0.001        0.001          0.001
## liquor                            0.001        0.002          0.000
## canned vegetables                 0.001        0.001          0.002
## bottled beer                      0.000        0.001          0.000
## flower (seeds)                    0.001        0.001          0.001
## cooking oil                       0.000        0.001          0.000
## dish cleaner                      0.001        0.001          0.001
## condensed milk                    0.001        0.002          0.001
## roll products                     0.001        0.001          0.002
## photo/film                        0.000        0.000          0.000
## pet care                          0.001        0.001          0.001
## chocolate marshmallow             0.001        0.000          0.002
## herbs/vegetable juice             0.000        0.001          0.000
## whole milk                        0.000        0.001          0.000
## candles                           0.001        0.000          0.001
## mayonnaise                        0.001        0.002          0.001
## Instant food products             0.001        0.001          0.001
## sweet spreads                     0.000        0.002          0.001
## liquor (appetizer)                0.001        0.002          0.001
## specialty cheese                  0.002        0.001          0.001
## frozen potato products            0.001        0.001          0.001
## house keeping products            0.001        0.002          0.001
## dog food                          0.001        0.002          0.001
## soy                               0.000        0.001          0.000
## instant coffee                    0.001        0.001          0.001
## pip herbs                         0.000        0.001          0.000
## zwieback                          0.001        0.001          0.001
## finished products                 0.001        0.001          0.001
## popcorn                           0.001        0.001          0.001
## vinegar                           0.001        0.001          0.001
## soups                             0.001        0.001          0.001
## female sanitary products          0.001        0.001          0.001
## sparkling wine                    0.000        0.001          0.000
## dental care                       0.001        0.001          0.001
## cereals                           0.000        0.001          0.001
## kitchen towels                    0.000        0.001          0.001
## curd cheese                       0.001        0.000          0.001
## other vegetables                  0.000        0.001          0.000
## rolls/buns                        0.000        0.000          0.000
## softener                          0.001        0.001          0.001
## cleaner                           0.001        0.001          0.000
## spices                            0.001        0.001          0.001
## jam                               0.001        0.001          0.001
## sauces                            0.001        0.001          0.001
## rum                               0.001        0.000          0.001
## liver loaf                        0.000        0.001          0.001
## male cosmetics                    0.001        0.001          0.000
## meat spreads                      0.001        0.001          0.001
## packaged herbs/vegetables         0.000        0.000          0.000
## brandy                            0.000        0.001          0.000
## ketchup                           0.000        0.000          0.001
## abrasive cleaner                  0.000        0.000          0.001
## light bulbs                       0.000        0.000          0.000
## artif. sweetener                  0.001        0.001          0.000
## nuts/prunes                       0.000        0.001          0.001
## specialty fat                     0.000        0.000          0.000
## skin care                         0.001        0.001          0.001
## fish                              0.000        0.000          0.000
## potato products                   0.000        0.001          0.000
## root vegetables                   0.000        0.000          0.000
## snack products                    0.000        0.001          0.000
## nut snack                         0.000        0.001          0.001
## soap                              0.000        0.000          0.000
## syrup                             0.000        0.000          0.001
## bathroom cleaner                  0.000        0.000          0.001
## canned fruit                      0.000        0.001          0.001
## cookware                          0.000        0.000          0.000
## cooking chocolate                 0.001        0.000          0.000
## tidbits                           0.000        0.000          0.000
## cocoa drinks                      0.000        0.000          0.000
## pudding powder                    0.000        0.000          0.000
## ready soups                       0.001        0.001          0.000
## organic marinated meat            0.000        0.000          0.000
## flower soil/fertilizer            0.000        0.000          0.000
## organic products                  0.000        0.000          0.001
## pot plants                        0.000        0.000          0.000
## prosecco                          0.000        0.000          0.000
## frankfurter                       0.000        0.000          0.000
## decalcifier                       0.000        0.000          0.000
## honey                             0.000        0.000          0.000
## specialty vegetables              0.000        0.000          0.001
## cream                             0.000        0.000          0.000
## hair spray                        0.000        0.000          0.000
## frozen fruits                     0.000        0.000          0.000
## rubbing alcohol                   0.000        0.000          0.000
## liqueur                           0.000        0.000          0.000
## make up remover                   0.000        0.000          0.000
## salad dressing                    0.000        0.000          0.000
## frozen chicken                    0.000        0.000          0.000
## whisky                            0.000        0.000          0.000
## baby cosmetics                    0.000        0.000          0.000
## toilet cleaner                    0.000        0.000          0.000
## bags                              0.000        0.000          0.000
## canned herbs                      0.000        0.000          0.000
## kitchen utensil                   0.000        0.000          0.000
## preservation products             0.000        0.000          0.000
## baby food                         0.000        0.000          0.000
## frozen herbss                     0.000        0.000          0.000
## organic sausage                   0.000        0.000          0.000
## sound storage medium              0.000        0.000          0.000
##                           marinated meat pies/pasties newspapers citrus
## rice                               0.026        0.029      0.027  0.027
## veggies                            0.024        0.020      0.017  0.025
## loaf                               0.027        0.018      0.017  0.015
## coke                               0.021        0.018      0.013  0.011
## yogurt                             0.017        0.016      0.015  0.019
## vegetables                         0.013        0.010      0.011  0.016
## mineral water                      0.011        0.008      0.010  0.012
## Plastic bags                       0.014        0.011      0.007  0.009
## tropical fruit                     0.012        0.012      0.010  0.017
## marinated meat                     0.082        0.011      0.007  0.010
## pies/pasties                       0.011        0.082      0.008  0.009
## newspapers                         0.007        0.008      0.081  0.007
## citrus                             0.010        0.009      0.007  0.073
## whipped/sour cream                 0.008        0.007      0.007  0.010
## heinken                            0.007        0.004      0.004  0.005
## green tea                          0.006        0.004      0.004  0.004
## pip fruit                          0.009        0.009      0.006  0.012
## brown bread                        0.009        0.009      0.007  0.007
## fruit/vegetable juice              0.009        0.007      0.007  0.009
## domestic eggs                      0.008        0.008      0.007  0.009
## coffee                             0.006        0.006      0.005  0.006
## margarine                          0.006        0.006      0.007  0.007
## beef                               0.005        0.006      0.007  0.007
## curd                               0.007        0.007      0.006  0.006
## butter                             0.008        0.007      0.006  0.008
## marinated meats                    0.009        0.007      0.004  0.006
## napkins                            0.006        0.007      0.006  0.007
## halal meat                         0.006        0.006      0.006  0.006
## chocolate                          0.006        0.007      0.005  0.006
## frozen vegetables                  0.005        0.004      0.004  0.006
## chicken                            0.005        0.004      0.005  0.006
## white bread                        0.006        0.005      0.003  0.004
## cream cheese                       0.005        0.004      0.004  0.005
## waffles                            0.004        0.007      0.004  0.004
## dessert                            0.005        0.005      0.003  0.004
## salty snack                        0.005        0.005      0.003  0.003
## long life bakery product           0.005        0.005      0.003  0.004
## berries                            0.004        0.004      0.003  0.005
## hamburger meat                     0.005        0.004      0.003  0.003
## sugar                              0.003        0.005      0.003  0.004
## hygiene articles                   0.004        0.004      0.003  0.005
## UHT-milk                           0.003        0.003      0.004  0.004
## onions                             0.003        0.003      0.003  0.005
## candy                              0.003        0.003      0.002  0.003
## specialty chocolate                0.002        0.003      0.002  0.002
## butter milk                        0.003        0.003      0.002  0.004
## oil                                0.004        0.003      0.004  0.004
## frozen meals                       0.003        0.003      0.002  0.003
## misc. beverages                    0.002        0.002      0.002  0.002
## specialty bar                      0.002        0.004      0.002  0.002
## ham                                0.004        0.004      0.002  0.002
## beverages                          0.002        0.003      0.003  0.002
## meat                               0.005        0.002      0.003  0.003
## ice cream                          0.002        0.002      0.003  0.001
## sliced cheese                      0.006        0.003      0.003  0.003
## hard cheese                        0.005        0.003      0.002  0.003
## noodles                            0.000        0.000      0.003  0.000
## grapes                             0.003        0.003      0.002  0.003
## cat food                           0.003        0.003      0.003  0.003
## chewing gum                        0.002        0.002      0.002  0.002
## soda                               0.000        0.001      0.002  0.000
## detergent                          0.002        0.002      0.002  0.002
## red/blush wine                     0.002        0.002      0.002  0.002
## white wine                         0.002        0.001      0.002  0.001
## turkey                             0.001        0.002      0.001  0.002
## dishes                             0.001        0.002      0.001  0.002
## bottled water                      0.000        0.000      0.002  0.000
## flour                              0.002        0.002      0.002  0.003
## semi-finished bread                0.002        0.003      0.003  0.002
## baking powder                      0.002        0.001      0.002  0.003
## pickled vegetables                 0.003        0.002      0.002  0.003
## herbs                              0.001        0.001      0.001  0.003
## tropical herbs                     0.000        0.001      0.001  0.000
## soft cheese                        0.003        0.002      0.001  0.002
## tea                                0.000        0.000      0.001  0.001
## processed cheese                   0.003        0.003      0.001  0.002
## sausage                            0.000        0.001      0.002  0.000
## pasta                              0.002        0.002      0.001  0.002
## citrus herbs                       0.000        0.000      0.001  0.000
## potted plants                      0.001        0.002      0.001  0.002
## canned fish                        0.002        0.002      0.002  0.001
## seasonal products                  0.002        0.002      0.001  0.002
## cake bar                           0.002        0.002      0.001  0.001
## carrots                            0.000        0.000      0.000  0.000
## mustard                            0.002        0.001      0.002  0.002
## packaged fruit/vegetables          0.002        0.002      0.001  0.002
## spread cheese                      0.002        0.002      0.002  0.001
## frozen dessert                     0.001        0.002      0.001  0.001
## frozen fish                        0.001        0.001      0.001  0.001
## cling film/bags                    0.001        0.001      0.001  0.001
## salt                               0.002        0.001      0.001  0.001
## liquor                             0.001        0.000      0.001  0.000
## canned vegetables                  0.001        0.001      0.001  0.002
## bottled beer                       0.000        0.000      0.001  0.000
## flower (seeds)                     0.001        0.001      0.001  0.001
## cooking oil                        0.000        0.000      0.001  0.000
## dish cleaner                       0.001        0.001      0.000  0.001
## condensed milk                     0.001        0.001      0.001  0.001
## roll products                      0.002        0.001      0.001  0.001
## photo/film                         0.000        0.000      0.001  0.000
## pet care                           0.001        0.000      0.001  0.001
## chocolate marshmallow              0.001        0.001      0.001  0.001
## herbs/vegetable juice              0.000        0.000      0.001  0.000
## whole milk                         0.000        0.001      0.001  0.000
## candles                            0.001        0.002      0.001  0.001
## mayonnaise                         0.002        0.001      0.001  0.001
## Instant food products              0.001        0.001      0.001  0.001
## sweet spreads                      0.001        0.001      0.001  0.001
## liquor (appetizer)                 0.001        0.000      0.002  0.000
## specialty cheese                   0.001        0.001      0.000  0.001
## frozen potato products             0.001        0.001      0.000  0.001
## house keeping products             0.001        0.001      0.001  0.001
## dog food                           0.001        0.001      0.001  0.001
## soy                                0.000        0.000      0.001  0.000
## instant coffee                     0.001        0.001      0.001  0.001
## pip herbs                          0.000        0.000      0.000  0.000
## zwieback                           0.000        0.000      0.001  0.001
## finished products                  0.001        0.001      0.000  0.001
## popcorn                            0.001        0.001      0.000  0.001
## vinegar                            0.001        0.001      0.001  0.001
## soups                              0.001        0.001      0.001  0.001
## female sanitary products           0.000        0.001      0.000  0.001
## sparkling wine                     0.000        0.000      0.001  0.000
## dental care                        0.001        0.001      0.001  0.001
## cereals                            0.001        0.001      0.000  0.000
## kitchen towels                     0.001        0.001      0.001  0.000
## curd cheese                        0.001        0.000      0.000  0.001
## other vegetables                   0.000        0.001      0.001  0.000
## rolls/buns                         0.000        0.001      0.001  0.000
## softener                           0.001        0.000      0.001  0.001
## cleaner                            0.001        0.001      0.001  0.001
## spices                             0.001        0.000      0.000  0.001
## jam                                0.001        0.001      0.000  0.001
## sauces                             0.001        0.001      0.001  0.000
## rum                                0.000        0.000      0.000  0.000
## liver loaf                         0.001        0.001      0.000  0.000
## male cosmetics                     0.001        0.001      0.001  0.001
## meat spreads                       0.001        0.000      0.000  0.000
## packaged herbs/vegetables          0.000        0.000      0.000  0.000
## brandy                             0.000        0.000      0.000  0.000
## ketchup                            0.001        0.000      0.001  0.000
## abrasive cleaner                   0.001        0.000      0.001  0.001
## light bulbs                        0.000        0.001      0.001  0.000
## artif. sweetener                   0.000        0.001      0.001  0.000
## nuts/prunes                        0.000        0.000      0.001  0.000
## specialty fat                      0.000        0.000      0.000  0.001
## skin care                          0.001        0.000      0.000  0.001
## fish                               0.000        0.000      0.000  0.000
## potato products                    0.000        0.001      0.000  0.000
## root vegetables                    0.000        0.000      0.000  0.000
## snack products                     0.000        0.000      0.000  0.000
## nut snack                          0.001        0.000      0.000  0.000
## soap                               0.000        0.000      0.000  0.000
## syrup                              0.000        0.001      0.000  0.000
## bathroom cleaner                   0.000        0.000      0.001  0.000
## canned fruit                       0.000        0.001      0.000  0.001
## cookware                           0.000        0.000      0.000  0.001
## cooking chocolate                  0.000        0.000      0.000  0.000
## tidbits                            0.000        0.000      0.000  0.000
## cocoa drinks                       0.000        0.000      0.000  0.000
## pudding powder                     0.000        0.000      0.000  0.000
## ready soups                        0.000        0.001      0.001  0.000
## organic marinated meat             0.000        0.000      0.000  0.000
## flower soil/fertilizer             0.000        0.000      0.000  0.000
## organic products                   0.000        0.000      0.000  0.000
## pot plants                         0.000        0.000      0.000  0.000
## prosecco                           0.000        0.000      0.000  0.000
## frankfurter                        0.000        0.000      0.000  0.000
## decalcifier                        0.000        0.000      0.000  0.000
## honey                              0.000        0.000      0.000  0.000
## specialty vegetables               0.000        0.000      0.000  0.000
## cream                              0.001        0.000      0.000  0.000
## hair spray                         0.000        0.000      0.000  0.000
## frozen fruits                      0.000        0.000      0.000  0.000
## rubbing alcohol                    0.000        0.000      0.000  0.000
## liqueur                            0.000        0.000      0.000  0.000
## make up remover                    0.000        0.000      0.000  0.000
## salad dressing                     0.000        0.000      0.000  0.000
## frozen chicken                     0.000        0.000      0.000  0.000
## whisky                             0.000        0.000      0.000  0.000
## baby cosmetics                     0.000        0.000      0.000  0.000
## toilet cleaner                     0.000        0.000      0.000  0.000
## bags                               0.000        0.000      0.000  0.000
## canned herbs                       0.000        0.000      0.000  0.000
## kitchen utensil                    0.000        0.000      0.000  0.000
## preservation products              0.000        0.000      0.000  0.000
## baby food                          0.000        0.000      0.000  0.000
## frozen herbss                      0.000        0.000      0.000  0.000
## organic sausage                    0.000        0.000      0.000  0.000
## sound storage medium               0.000        0.000      0.000  0.000
##                           whipped/sour cream heinken green tea pip fruit
## rice                                   0.032   0.018     0.008     0.027
## veggies                                0.025   0.014     0.008     0.023
## loaf                                   0.013   0.012     0.010     0.012
## coke                                   0.010   0.015     0.012     0.012
## yogurt                                 0.021   0.008     0.005     0.016
## vegetables                             0.018   0.008     0.004     0.014
## mineral water                          0.008   0.014     0.007     0.009
## Plastic bags                           0.008   0.005     0.010     0.008
## tropical fruit                         0.012   0.007     0.003     0.018
## marinated meat                         0.008   0.007     0.006     0.009
## pies/pasties                           0.007   0.004     0.004     0.009
## newspapers                             0.007   0.004     0.004     0.006
## citrus                                 0.010   0.005     0.004     0.012
## whipped/sour cream                     0.072   0.003     0.002     0.008
## heinken                                0.003   0.071     0.002     0.005
## green tea                              0.002   0.002     0.068     0.003
## pip fruit                              0.008   0.005     0.003     0.066
## brown bread                            0.004   0.005     0.004     0.007
## fruit/vegetable juice                  0.008   0.006     0.003     0.008
## domestic eggs                          0.010   0.004     0.003     0.008
## coffee                                 0.007   0.004     0.004     0.006
## margarine                              0.007   0.005     0.003     0.007
## beef                                   0.007   0.004     0.002     0.004
## curd                                   0.011   0.003     0.002     0.007
## butter                                 0.010   0.005     0.002     0.006
## marinated meats                        0.005   0.005     0.002     0.006
## napkins                                0.007   0.005     0.003     0.006
## halal meat                             0.007   0.005     0.003     0.005
## chocolate                              0.005   0.004     0.003     0.005
## frozen vegetables                      0.008   0.004     0.001     0.006
## chicken                                0.007   0.002     0.003     0.004
## white bread                            0.006   0.003     0.001     0.006
## cream cheese                           0.007   0.002     0.001     0.005
## waffles                                0.005   0.002     0.002     0.004
## dessert                                0.005   0.002     0.002     0.004
## salty snack                            0.005   0.003     0.002     0.004
## long life bakery product               0.006   0.002     0.001     0.004
## berries                                0.010   0.001     0.001     0.003
## hamburger meat                         0.005   0.002     0.002     0.004
## sugar                                  0.005   0.003     0.001     0.004
## hygiene articles                       0.004   0.002     0.002     0.004
## UHT-milk                               0.003   0.002     0.002     0.003
## onions                                 0.005   0.003     0.002     0.003
## candy                                  0.004   0.001     0.002     0.002
## specialty chocolate                    0.003   0.002     0.001     0.002
## butter milk                            0.004   0.001     0.000     0.004
## oil                                    0.004   0.003     0.001     0.003
## frozen meals                           0.003   0.002     0.001     0.004
## misc. beverages                        0.002   0.002     0.002     0.002
## specialty bar                          0.002   0.001     0.001     0.002
## ham                                    0.005   0.002     0.000     0.003
## beverages                              0.002   0.001     0.000     0.002
## meat                                   0.004   0.002     0.001     0.002
## ice cream                              0.003   0.002     0.001     0.002
## sliced cheese                          0.004   0.002     0.001     0.004
## hard cheese                            0.005   0.002     0.001     0.003
## noodles                                0.002   0.000     0.000     0.000
## grapes                                 0.003   0.001     0.001     0.003
## cat food                               0.003   0.002     0.001     0.002
## chewing gum                            0.002   0.001     0.001     0.002
## soda                                   0.002   0.000     0.000     0.000
## detergent                              0.002   0.001     0.001     0.002
## red/blush wine                         0.001   0.004     0.002     0.001
## white wine                             0.001   0.002     0.002     0.001
## turkey                                 0.003   0.001     0.000     0.001
## dishes                                 0.002   0.001     0.000     0.001
## bottled water                          0.002   0.000     0.000     0.000
## flour                                  0.004   0.001     0.001     0.002
## semi-finished bread                    0.002   0.001     0.001     0.002
## baking powder                          0.005   0.001     0.001     0.002
## pickled vegetables                     0.002   0.002     0.001     0.002
## herbs                                  0.003   0.002     0.000     0.002
## tropical herbs                         0.002   0.000     0.000     0.000
## soft cheese                            0.003   0.001     0.001     0.003
## tea                                    0.002   0.001     0.000     0.001
## processed cheese                       0.002   0.001     0.000     0.002
## sausage                                0.001   0.000     0.000     0.000
## pasta                                  0.002   0.001     0.001     0.002
## citrus herbs                           0.002   0.000     0.000     0.000
## potted plants                          0.002   0.001     0.000     0.002
## canned fish                            0.002   0.002     0.001     0.001
## seasonal products                      0.001   0.001     0.000     0.001
## cake bar                               0.001   0.001     0.000     0.002
## carrots                                0.002   0.000     0.000     0.000
## mustard                                0.001   0.001     0.001     0.001
## packaged fruit/vegetables              0.001   0.001     0.001     0.001
## spread cheese                          0.000   0.001     0.001     0.001
## frozen dessert                         0.002   0.001     0.000     0.001
## frozen fish                            0.001   0.001     0.001     0.002
## cling film/bags                        0.002   0.001     0.001     0.001
## salt                                   0.002   0.002     0.000     0.001
## liquor                                 0.000   0.004     0.001     0.000
## canned vegetables                      0.002   0.000     0.001     0.002
## bottled beer                           0.000   0.000     0.000     0.000
## flower (seeds)                         0.002   0.001     0.001     0.001
## cooking oil                            0.001   0.000     0.000     0.000
## dish cleaner                           0.002   0.000     0.001     0.001
## condensed milk                         0.001   0.001     0.000     0.001
## roll products                          0.002   0.002     0.001     0.001
## photo/film                             0.001   0.000     0.000     0.001
## pet care                               0.001   0.001     0.000     0.001
## chocolate marshmallow                  0.001   0.001     0.000     0.001
## herbs/vegetable juice                  0.001   0.000     0.000     0.000
## whole milk                             0.001   0.000     0.000     0.000
## candles                                0.001   0.001     0.001     0.001
## mayonnaise                             0.001   0.000     0.000     0.001
## Instant food products                  0.001   0.001     0.000     0.001
## sweet spreads                          0.001   0.000     0.000     0.001
## liquor (appetizer)                     0.001   0.002     0.002     0.000
## specialty cheese                       0.001   0.000     0.000     0.001
## frozen potato products                 0.001   0.001     0.000     0.001
## house keeping products                 0.001   0.001     0.000     0.001
## dog food                               0.001   0.000     0.001     0.001
## soy                                    0.001   0.000     0.000     0.000
## instant coffee                         0.001   0.001     0.000     0.001
## pip herbs                              0.001   0.000     0.000     0.000
## zwieback                               0.001   0.000     0.000     0.001
## finished products                      0.001   0.000     0.000     0.001
## popcorn                                0.001   0.001     0.000     0.001
## vinegar                                0.001   0.001     0.000     0.001
## soups                                  0.002   0.001     0.000     0.001
## female sanitary products               0.001   0.000     0.000     0.000
## sparkling wine                         0.001   0.001     0.000     0.000
## dental care                            0.000   0.001     0.000     0.001
## cereals                                0.001   0.001     0.000     0.001
## kitchen towels                         0.001   0.000     0.000     0.001
## curd cheese                            0.001   0.001     0.000     0.001
## other vegetables                       0.001   0.000     0.000     0.000
## rolls/buns                             0.000   0.000     0.000     0.000
## softener                               0.001   0.001     0.001     0.001
## cleaner                                0.001   0.000     0.000     0.000
## spices                                 0.001   0.001     0.000     0.001
## jam                                    0.001   0.000     0.000     0.001
## sauces                                 0.000   0.000     0.000     0.001
## rum                                    0.000   0.001     0.000     0.000
## liver loaf                             0.000   0.000     0.000     0.001
## male cosmetics                         0.000   0.000     0.001     0.000
## meat spreads                           0.000   0.000     0.000     0.000
## packaged herbs/vegetables              0.001   0.000     0.000     0.000
## brandy                                 0.000   0.001     0.001     0.000
## ketchup                                0.001   0.000     0.000     0.001
## abrasive cleaner                       0.001   0.001     0.000     0.000
## light bulbs                            0.000   0.000     0.000     0.001
## artif. sweetener                       0.000   0.000     0.000     0.000
## nuts/prunes                            0.000   0.000     0.000     0.001
## specialty fat                          0.001   0.000     0.000     0.000
## skin care                              0.001   0.000     0.000     0.000
## fish                                   0.000   0.000     0.000     0.000
## potato products                        0.000   0.001     0.000     0.000
## root vegetables                        0.001   0.000     0.000     0.000
## snack products                         0.000   0.000     0.000     0.000
## nut snack                              0.000   0.001     0.000     0.000
## soap                                   0.000   0.000     0.000     0.000
## syrup                                  0.000   0.000     0.000     0.000
## bathroom cleaner                       0.000   0.000     0.000     0.000
## canned fruit                           0.000   0.000     0.000     0.000
## cookware                               0.000   0.000     0.000     0.001
## cooking chocolate                      0.000   0.000     0.000     0.000
## tidbits                                0.000   0.000     0.000     0.000
## cocoa drinks                           0.000   0.000     0.000     0.000
## pudding powder                         0.001   0.000     0.000     0.000
## ready soups                            0.000   0.000     0.000     0.000
## organic marinated meat                 0.000   0.000     0.000     0.000
## flower soil/fertilizer                 0.000   0.000     0.000     0.000
## organic products                       0.000   0.000     0.000     0.000
## pot plants                             0.000   0.000     0.000     0.000
## prosecco                               0.000   0.001     0.000     0.000
## frankfurter                            0.000   0.000     0.000     0.000
## decalcifier                            0.000   0.000     0.000     0.000
## honey                                  0.000   0.000     0.000     0.000
## specialty vegetables                   0.000   0.001     0.000     0.000
## cream                                  0.000   0.000     0.000     0.000
## hair spray                             0.000   0.000     0.000     0.000
## frozen fruits                          0.001   0.000     0.000     0.000
## rubbing alcohol                        0.000   0.000     0.000     0.000
## liqueur                                0.000   0.000     0.000     0.000
## make up remover                        0.000   0.000     0.000     0.000
## salad dressing                         0.000   0.000     0.000     0.000
## frozen chicken                         0.000   0.000     0.000     0.000
## whisky                                 0.000   0.000     0.000     0.000
## baby cosmetics                         0.000   0.000     0.000     0.000
## toilet cleaner                         0.000   0.000     0.000     0.000
## bags                                   0.000   0.000     0.000     0.000
## canned herbs                           0.000   0.000     0.000     0.000
## kitchen utensil                        0.000   0.000     0.000     0.000
## preservation products                  0.000   0.000     0.000     0.000
## baby food                              0.000   0.000     0.000     0.000
## frozen herbss                          0.000   0.000     0.000     0.000
## organic sausage                        0.000   0.000     0.000     0.000
## sound storage medium                   0.000   0.000     0.000     0.000
##                           brown bread fruit/vegetable juice domestic eggs
## rice                            0.024                 0.024         0.030
## veggies                         0.016                 0.018         0.020
## loaf                            0.011                 0.013         0.014
## coke                            0.011                 0.016         0.011
## yogurt                          0.015                 0.016         0.014
## vegetables                      0.011                 0.011         0.014
## mineral water                   0.007                 0.012         0.008
## Plastic bags                    0.009                 0.009         0.009
## tropical fruit                  0.009                 0.012         0.010
## marinated meat                  0.009                 0.009         0.008
## pies/pasties                    0.009                 0.007         0.008
## newspapers                      0.007                 0.007         0.007
## citrus                          0.007                 0.009         0.009
## whipped/sour cream              0.004                 0.008         0.010
## heinken                         0.005                 0.006         0.004
## green tea                       0.004                 0.003         0.003
## pip fruit                       0.007                 0.008         0.008
## brown bread                     0.064                 0.007         0.007
## fruit/vegetable juice           0.007                 0.063         0.007
## domestic eggs                   0.007                 0.007         0.063
## coffee                          0.004                 0.005         0.005
## margarine                       0.006                 0.005         0.008
## beef                            0.005                 0.004         0.006
## curd                            0.005                 0.004         0.007
## butter                          0.005                 0.007         0.009
## marinated meats                 0.006                 0.005         0.006
## napkins                         0.004                 0.006         0.006
## halal meat                      0.005                 0.004         0.005
## chocolate                       0.004                 0.006         0.003
## frozen vegetables               0.004                 0.007         0.005
## chicken                         0.004                 0.003         0.006
## white bread                     0.005                 0.007         0.006
## cream cheese                    0.005                 0.005         0.005
## waffles                         0.002                 0.003         0.003
## dessert                         0.005                 0.005         0.004
## salty snack                     0.002                 0.005         0.003
## long life bakery product        0.003                 0.005         0.004
## berries                         0.003                 0.003         0.004
## hamburger meat                  0.003                 0.003         0.004
## sugar                           0.004                 0.004         0.005
## hygiene articles                0.003                 0.003         0.005
## UHT-milk                        0.004                 0.003         0.004
## onions                          0.003                 0.003         0.005
## candy                           0.002                 0.003         0.003
## specialty chocolate             0.002                 0.002         0.002
## butter milk                     0.004                 0.004         0.002
## oil                             0.002                 0.003         0.004
## frozen meals                    0.003                 0.003         0.003
## misc. beverages                 0.002                 0.003         0.003
## specialty bar                   0.001                 0.002         0.002
## ham                             0.003                 0.003         0.004
## beverages                       0.002                 0.002         0.002
## meat                            0.003                 0.003         0.003
## ice cream                       0.002                 0.002         0.001
## sliced cheese                   0.003                 0.004         0.003
## hard cheese                     0.002                 0.004         0.004
## noodles                         0.001                 0.000         0.002
## grapes                          0.002                 0.003         0.002
## cat food                        0.002                 0.002         0.002
## chewing gum                     0.000                 0.002         0.001
## soda                            0.001                 0.000         0.002
## detergent                       0.001                 0.001         0.001
## red/blush wine                  0.002                 0.002         0.001
## white wine                      0.001                 0.001         0.001
## turkey                          0.002                 0.001         0.002
## dishes                          0.001                 0.001         0.002
## bottled water                   0.001                 0.000         0.001
## flour                           0.001                 0.002         0.003
## semi-finished bread             0.002                 0.002         0.002
## baking powder                   0.001                 0.002         0.003
## pickled vegetables              0.002                 0.002         0.002
## herbs                           0.001                 0.001         0.002
## tropical herbs                  0.001                 0.000         0.002
## soft cheese                     0.002                 0.002         0.003
## tea                             0.001                 0.001         0.002
## processed cheese                0.002                 0.003         0.002
## sausage                         0.001                 0.000         0.001
## pasta                           0.001                 0.002         0.002
## citrus herbs                    0.001                 0.000         0.001
## potted plants                   0.001                 0.002         0.001
## canned fish                     0.002                 0.001         0.002
## seasonal products               0.001                 0.001         0.001
## cake bar                        0.001                 0.001         0.001
## carrots                         0.001                 0.000         0.002
## mustard                         0.001                 0.002         0.002
## packaged fruit/vegetables       0.001                 0.001         0.001
## spread cheese                   0.002                 0.001         0.001
## frozen dessert                  0.001                 0.001         0.002
## frozen fish                     0.001                 0.001         0.001
## cling film/bags                 0.001                 0.001         0.001
## salt                            0.001                 0.001         0.002
## liquor                          0.001                 0.000         0.000
## canned vegetables               0.001                 0.001         0.002
## bottled beer                    0.001                 0.000         0.000
## flower (seeds)                  0.001                 0.000         0.001
## cooking oil                     0.000                 0.000         0.000
## dish cleaner                    0.001                 0.000         0.001
## condensed milk                  0.001                 0.001         0.001
## roll products                   0.001                 0.001         0.002
## photo/film                      0.000                 0.000         0.001
## pet care                        0.001                 0.001         0.000
## chocolate marshmallow           0.000                 0.000         0.002
## herbs/vegetable juice           0.001                 0.000         0.001
## whole milk                      0.001                 0.000         0.000
## candles                         0.000                 0.001         0.001
## mayonnaise                      0.001                 0.001         0.001
## Instant food products           0.001                 0.001         0.001
## sweet spreads                   0.001                 0.001         0.001
## liquor (appetizer)              0.000                 0.000         0.000
## specialty cheese                0.000                 0.001         0.001
## frozen potato products          0.001                 0.001         0.000
## house keeping products          0.001                 0.001         0.001
## dog food                        0.001                 0.001         0.001
## soy                             0.001                 0.000         0.001
## instant coffee                  0.000                 0.001         0.001
## pip herbs                       0.000                 0.000         0.001
## zwieback                        0.000                 0.001         0.001
## finished products               0.001                 0.001         0.001
## popcorn                         0.001                 0.001         0.001
## vinegar                         0.001                 0.001         0.001
## soups                           0.001                 0.000         0.001
## female sanitary products        0.000                 0.000         0.001
## sparkling wine                  0.000                 0.001         0.001
## dental care                     0.001                 0.001         0.001
## cereals                         0.001                 0.001         0.001
## kitchen towels                  0.001                 0.001         0.001
## curd cheese                     0.000                 0.001         0.001
## other vegetables                0.001                 0.000         0.001
## rolls/buns                      0.000                 0.000         0.000
## softener                        0.000                 0.000         0.001
## cleaner                         0.000                 0.001         0.001
## spices                          0.000                 0.000         0.001
## jam                             0.001                 0.001         0.001
## sauces                          0.001                 0.001         0.000
## rum                             0.000                 0.000         0.001
## liver loaf                      0.000                 0.001         0.000
## male cosmetics                  0.000                 0.000         0.000
## meat spreads                    0.001                 0.001         0.001
## packaged herbs/vegetables       0.000                 0.000         0.000
## brandy                          0.000                 0.000         0.000
## ketchup                         0.001                 0.000         0.001
## abrasive cleaner                0.001                 0.000         0.000
## light bulbs                     0.000                 0.000         0.000
## artif. sweetener                0.000                 0.000         0.000
## nuts/prunes                     0.000                 0.000         0.000
## specialty fat                   0.000                 0.000         0.001
## skin care                       0.000                 0.000         0.001
## fish                            0.000                 0.000         0.000
## potato products                 0.000                 0.001         0.000
## root vegetables                 0.000                 0.000         0.000
## snack products                  0.000                 0.000         0.000
## nut snack                       0.000                 0.000         0.000
## soap                            0.000                 0.001         0.000
## syrup                           0.000                 0.000         0.000
## bathroom cleaner                0.000                 0.000         0.000
## canned fruit                    0.000                 0.000         0.001
## cookware                        0.000                 0.000         0.000
## cooking chocolate               0.000                 0.000         0.001
## tidbits                         0.000                 0.000         0.000
## cocoa drinks                    0.000                 0.000         0.000
## pudding powder                  0.000                 0.000         0.000
## ready soups                     0.000                 0.000         0.000
## organic marinated meat          0.000                 0.000         0.000
## flower soil/fertilizer          0.000                 0.000         0.000
## organic products                0.000                 0.000         0.000
## pot plants                      0.000                 0.000         0.000
## prosecco                        0.000                 0.000         0.000
## frankfurter                     0.000                 0.000         0.000
## decalcifier                     0.000                 0.000         0.000
## honey                           0.000                 0.000         0.000
## specialty vegetables            0.000                 0.000         0.000
## cream                           0.000                 0.000         0.000
## hair spray                      0.000                 0.000         0.000
## frozen fruits                   0.000                 0.000         0.000
## rubbing alcohol                 0.000                 0.000         0.000
## liqueur                         0.000                 0.000         0.000
## make up remover                 0.000                 0.000         0.000
## salad dressing                  0.000                 0.000         0.000
## frozen chicken                  0.000                 0.000         0.000
## whisky                          0.000                 0.000         0.000
## baby cosmetics                  0.000                 0.000         0.000
## toilet cleaner                  0.000                 0.000         0.000
## bags                            0.000                 0.000         0.000
## canned herbs                    0.000                 0.000         0.000
## kitchen utensil                 0.000                 0.000         0.000
## preservation products           0.000                 0.000         0.000
## baby food                       0.000                 0.000         0.000
## frozen herbss                   0.000                 0.000         0.000
## organic sausage                 0.000                 0.000         0.000
## sound storage medium            0.000                 0.000         0.000
##                           coffee margarine  beef  curd butter marinated meats
## rice                       0.020     0.024 0.023 0.027  0.027           0.018
## veggies                    0.012     0.017 0.017 0.015  0.018           0.014
## loaf                       0.010     0.013 0.012 0.009  0.012           0.017
## coke                       0.009     0.009 0.007 0.007  0.008           0.010
## yogurt                     0.011     0.014 0.012 0.018  0.014           0.010
## vegetables                 0.008     0.012 0.018 0.012  0.013           0.009
## mineral water              0.006     0.009 0.005 0.005  0.008           0.006
## Plastic bags               0.010     0.006 0.005 0.006  0.005           0.007
## tropical fruit             0.006     0.008 0.007 0.009  0.009           0.008
## marinated meat             0.006     0.006 0.005 0.007  0.008           0.009
## pies/pasties               0.006     0.006 0.006 0.007  0.007           0.007
## newspapers                 0.005     0.007 0.007 0.006  0.006           0.004
## citrus                     0.006     0.007 0.007 0.006  0.008           0.006
## whipped/sour cream         0.007     0.007 0.007 0.011  0.010           0.005
## heinken                    0.004     0.005 0.004 0.003  0.005           0.005
## green tea                  0.004     0.003 0.002 0.002  0.002           0.002
## pip fruit                  0.006     0.007 0.004 0.007  0.006           0.006
## brown bread                0.004     0.006 0.005 0.005  0.005           0.006
## fruit/vegetable juice      0.005     0.005 0.004 0.004  0.007           0.005
## domestic eggs              0.005     0.008 0.006 0.007  0.009           0.006
## coffee                     0.062     0.004 0.004 0.004  0.005           0.004
## margarine                  0.004     0.058 0.006 0.006  0.006           0.006
## beef                       0.004     0.006 0.057 0.005  0.006           0.004
## curd                       0.004     0.006 0.005 0.057  0.007           0.004
## butter                     0.005     0.006 0.006 0.007  0.055           0.004
## marinated meats            0.004     0.006 0.004 0.004  0.004           0.052
## napkins                    0.004     0.004 0.004 0.005  0.005           0.003
## halal meat                 0.003     0.006 0.007 0.004  0.005           0.005
## chocolate                  0.004     0.003 0.003 0.003  0.006           0.004
## frozen vegetables          0.005     0.005 0.005 0.005  0.005           0.004
## chicken                    0.004     0.005 0.005 0.003  0.006           0.003
## white bread                0.003     0.004 0.003 0.004  0.004           0.005
## cream cheese               0.004     0.005 0.004 0.005  0.004           0.003
## waffles                    0.003     0.003 0.003 0.003  0.003           0.003
## dessert                    0.003     0.003 0.003 0.005  0.003           0.003
## salty snack                0.003     0.003 0.003 0.003  0.003           0.003
## long life bakery product   0.004     0.003 0.002 0.004  0.004           0.002
## berries                    0.003     0.003 0.005 0.003  0.004           0.002
## hamburger meat             0.003     0.003 0.004 0.003  0.005           0.003
## sugar                      0.005     0.005 0.003 0.004  0.003           0.003
## hygiene articles           0.004     0.004 0.003 0.004  0.004           0.003
## UHT-milk                   0.004     0.004 0.002 0.002  0.002           0.003
## onions                     0.003     0.002 0.003 0.003  0.004           0.003
## candy                      0.003     0.003 0.001 0.003  0.003           0.002
## specialty chocolate        0.002     0.001 0.002 0.002  0.002           0.002
## butter milk                0.003     0.002 0.002 0.004  0.002           0.003
## oil                        0.004     0.004 0.004 0.003  0.004           0.002
## frozen meals               0.002     0.001 0.002 0.003  0.003           0.003
## misc. beverages            0.001     0.002 0.001 0.002  0.003           0.001
## specialty bar              0.002     0.002 0.001 0.002  0.001           0.002
## ham                        0.002     0.003 0.003 0.003  0.003           0.002
## beverages                  0.001     0.001 0.001 0.002  0.001           0.001
## meat                       0.002     0.002 0.002 0.002  0.003           0.003
## ice cream                  0.002     0.001 0.002 0.002  0.002           0.001
## sliced cheese              0.003     0.003 0.003 0.003  0.004           0.002
## hard cheese                0.002     0.002 0.002 0.002  0.004           0.002
## noodles                    0.002     0.002 0.003 0.002  0.002           0.000
## grapes                     0.002     0.002 0.003 0.002  0.002           0.002
## cat food                   0.003     0.003 0.003 0.002  0.002           0.001
## chewing gum                0.001     0.001 0.001 0.001  0.001           0.002
## soda                       0.001     0.001 0.001 0.001  0.001           0.000
## detergent                  0.002     0.002 0.002 0.002  0.002           0.002
## red/blush wine             0.002     0.001 0.001 0.000  0.001           0.001
## white wine                 0.001     0.001 0.001 0.000  0.001           0.001
## turkey                     0.001     0.002 0.003 0.002  0.002           0.001
## dishes                     0.002     0.001 0.002 0.001  0.002           0.001
## bottled water              0.001     0.001 0.001 0.002  0.002           0.000
## flour                      0.002     0.004 0.003 0.004  0.002           0.002
## semi-finished bread        0.001     0.002 0.002 0.002  0.001           0.002
## baking powder              0.001     0.003 0.002 0.002  0.003           0.001
## pickled vegetables         0.002     0.002 0.002 0.001  0.002           0.002
## herbs                      0.001     0.002 0.003 0.002  0.002           0.001
## tropical herbs             0.001     0.001 0.002 0.002  0.002           0.000
## soft cheese                0.002     0.002 0.002 0.002  0.003           0.002
## tea                        0.001     0.002 0.002 0.002  0.002           0.000
## processed cheese           0.001     0.002 0.001 0.001  0.003           0.002
## sausage                    0.001     0.001 0.002 0.001  0.001           0.000
## pasta                      0.001     0.002 0.002 0.002  0.003           0.001
## citrus herbs               0.001     0.001 0.002 0.002  0.001           0.000
## potted plants              0.001     0.001 0.002 0.001  0.001           0.001
## canned fish                0.002     0.002 0.001 0.001  0.001           0.002
## seasonal products          0.002     0.001 0.001 0.001  0.001           0.001
## cake bar                   0.001     0.001 0.001 0.002  0.001           0.001
## carrots                    0.002     0.001 0.002 0.001  0.002           0.000
## mustard                    0.002     0.001 0.002 0.001  0.001           0.002
## packaged fruit/vegetables  0.001     0.001 0.001 0.001  0.001           0.001
## spread cheese              0.001     0.001 0.001 0.001  0.001           0.001
## frozen dessert             0.001     0.001 0.001 0.001  0.001           0.001
## frozen fish                0.000     0.002 0.001 0.001  0.001           0.002
## cling film/bags            0.002     0.001 0.001 0.001  0.001           0.001
## salt                       0.001     0.001 0.001 0.001  0.002           0.001
## liquor                     0.000     0.000 0.000 0.000  0.001           0.000
## canned vegetables          0.001     0.001 0.001 0.001  0.001           0.001
## bottled beer               0.001     0.000 0.001 0.001  0.000           0.000
## flower (seeds)             0.001     0.001 0.001 0.000  0.002           0.001
## cooking oil                0.001     0.000 0.000 0.001  0.000           0.000
## dish cleaner               0.001     0.001 0.001 0.001  0.001           0.001
## condensed milk             0.003     0.000 0.001 0.001  0.001           0.001
## roll products              0.001     0.002 0.001 0.002  0.001           0.001
## photo/film                 0.001     0.000 0.001 0.001  0.000           0.000
## pet care                   0.001     0.000 0.000 0.000  0.000           0.000
## chocolate marshmallow      0.001     0.001 0.001 0.001  0.001           0.001
## herbs/vegetable juice      0.001     0.001 0.001 0.001  0.001           0.000
## whole milk                 0.001     0.000 0.001 0.001  0.001           0.000
## candles                    0.001     0.002 0.001 0.001  0.001           0.000
## mayonnaise                 0.001     0.002 0.001 0.001  0.001           0.001
## Instant food products      0.001     0.001 0.001 0.001  0.001           0.001
## sweet spreads              0.001     0.001 0.001 0.001  0.001           0.001
## liquor (appetizer)         0.001     0.000 0.000 0.001  0.000           0.000
## specialty cheese           0.001     0.001 0.001 0.001  0.001           0.001
## frozen potato products     0.001     0.001 0.001 0.001  0.001           0.001
## house keeping products     0.001     0.001 0.001 0.001  0.001           0.001
## dog food                   0.001     0.000 0.001 0.001  0.000           0.000
## soy                        0.001     0.001 0.001 0.001  0.000           0.000
## instant coffee             0.001     0.000 0.001 0.001  0.001           0.001
## pip herbs                  0.001     0.001 0.001 0.001  0.001           0.000
## zwieback                   0.000     0.001 0.000 0.001  0.001           0.001
## finished products          0.000     0.000 0.001 0.000  0.001           0.000
## popcorn                    0.000     0.000 0.000 0.001  0.000           0.000
## vinegar                    0.001     0.001 0.001 0.001  0.001           0.001
## soups                      0.001     0.001 0.001 0.001  0.001           0.001
## female sanitary products   0.001     0.001 0.000 0.000  0.000           0.000
## sparkling wine             0.001     0.000 0.000 0.000  0.001           0.000
## dental care                0.001     0.001 0.001 0.001  0.001           0.000
## cereals                    0.000     0.001 0.000 0.001  0.001           0.000
## kitchen towels             0.001     0.001 0.000 0.000  0.001           0.001
## curd cheese                0.001     0.001 0.000 0.001  0.000           0.000
## other vegetables           0.000     0.000 0.001 0.001  0.001           0.000
## rolls/buns                 0.001     0.000 0.000 0.000  0.001           0.000
## softener                   0.000     0.001 0.000 0.000  0.001           0.000
## cleaner                    0.001     0.000 0.000 0.001  0.000           0.000
## spices                     0.000     0.000 0.001 0.001  0.001           0.000
## jam                        0.001     0.001 0.001 0.001  0.001           0.001
## sauces                     0.000     0.000 0.000 0.000  0.000           0.000
## rum                        0.000     0.001 0.000 0.001  0.001           0.000
## liver loaf                 0.000     0.001 0.000 0.001  0.000           0.001
## male cosmetics             0.000     0.000 0.000 0.000  0.000           0.000
## meat spreads               0.000     0.000 0.000 0.000  0.000           0.000
## packaged herbs/vegetables  0.000     0.000 0.001 0.000  0.000           0.000
## brandy                     0.001     0.000 0.000 0.000  0.000           0.000
## ketchup                    0.000     0.001 0.000 0.000  0.000           0.001
## abrasive cleaner           0.000     0.000 0.001 0.000  0.001           0.000
## light bulbs                0.001     0.000 0.000 0.000  0.000           0.000
## artif. sweetener           0.001     0.001 0.000 0.000  0.000           0.001
## nuts/prunes                0.000     0.000 0.000 0.000  0.000           0.000
## specialty fat              0.000     0.001 0.000 0.000  0.001           0.001
## skin care                  0.000     0.001 0.001 0.000  0.000           0.000
## fish                       0.001     0.000 0.000 0.000  0.000           0.000
## potato products            0.001     0.000 0.000 0.000  0.000           0.001
## root vegetables            0.000     0.000 0.000 0.000  0.000           0.000
## snack products             0.000     0.000 0.000 0.000  0.000           0.000
## nut snack                  0.000     0.000 0.000 0.000  0.000           0.001
## soap                       0.000     0.000 0.001 0.000  0.000           0.000
## syrup                      0.000     0.000 0.000 0.000  0.001           0.000
## bathroom cleaner           0.000     0.000 0.000 0.000  0.000           0.000
## canned fruit               0.000     0.000 0.000 0.000  0.000           0.000
## cookware                   0.000     0.000 0.001 0.000  0.000           0.000
## cooking chocolate          0.000     0.000 0.000 0.001  0.000           0.000
## tidbits                    0.000     0.000 0.000 0.000  0.000           0.000
## cocoa drinks               0.000     0.001 0.000 0.001  0.000           0.000
## pudding powder             0.000     0.000 0.000 0.001  0.000           0.000
## ready soups                0.000     0.001 0.000 0.000  0.000           0.000
## organic marinated meat     0.000     0.000 0.000 0.000  0.000           0.000
## flower soil/fertilizer     0.000     0.000 0.000 0.000  0.000           0.000
## organic products           0.000     0.001 0.000 0.000  0.000           0.000
## pot plants                 0.000     0.000 0.000 0.000  0.000           0.000
## prosecco                   0.000     0.000 0.000 0.000  0.000           0.000
## frankfurter                0.000     0.000 0.000 0.000  0.000           0.000
## decalcifier                0.000     0.000 0.000 0.000  0.000           0.000
## honey                      0.000     0.000 0.000 0.000  0.000           0.000
## specialty vegetables       0.000     0.000 0.000 0.000  0.000           0.000
## cream                      0.000     0.000 0.000 0.000  0.000           0.000
## hair spray                 0.000     0.000 0.000 0.000  0.000           0.000
## frozen fruits              0.000     0.000 0.000 0.000  0.000           0.000
## rubbing alcohol            0.000     0.000 0.000 0.000  0.001           0.000
## liqueur                    0.000     0.000 0.000 0.000  0.000           0.000
## make up remover            0.000     0.000 0.000 0.000  0.000           0.000
## salad dressing             0.000     0.000 0.000 0.000  0.000           0.000
## frozen chicken             0.000     0.000 0.000 0.000  0.000           0.000
## whisky                     0.000     0.000 0.000 0.000  0.000           0.000
## baby cosmetics             0.000     0.000 0.000 0.000  0.000           0.000
## toilet cleaner             0.000     0.000 0.000 0.000  0.000           0.000
## bags                       0.000     0.000 0.000 0.000  0.000           0.000
## canned herbs               0.000     0.000 0.000 0.000  0.000           0.000
## kitchen utensil            0.000     0.000 0.000 0.000  0.000           0.000
## preservation products      0.000     0.000 0.000 0.000  0.000           0.000
## baby food                  0.000     0.000 0.000 0.000  0.000           0.000
## frozen herbss              0.000     0.000 0.000 0.000  0.000           0.000
## organic sausage            0.000     0.000 0.000 0.000  0.000           0.000
## sound storage medium       0.000     0.000 0.000 0.000  0.000           0.000
##                           napkins halal meat chocolate frozen vegetables
## rice                        0.019      0.020     0.016             0.021
## veggies                     0.013      0.019     0.011             0.016
## loaf                        0.010      0.010     0.010             0.009
## coke                        0.011      0.010     0.012             0.008
## yogurt                      0.012      0.008     0.009             0.012
## vegetables                  0.010      0.012     0.007             0.012
## mineral water               0.008      0.007     0.005             0.005
## Plastic bags                0.007      0.006     0.008             0.004
## tropical fruit              0.009      0.007     0.007             0.008
## marinated meat              0.006      0.006     0.006             0.005
## pies/pasties                0.007      0.006     0.007             0.004
## newspapers                  0.006      0.006     0.005             0.004
## citrus                      0.007      0.006     0.006             0.006
## whipped/sour cream          0.007      0.007     0.005             0.008
## heinken                     0.005      0.005     0.004             0.004
## green tea                   0.003      0.003     0.003             0.001
## pip fruit                   0.006      0.005     0.005             0.006
## brown bread                 0.004      0.005     0.004             0.004
## fruit/vegetable juice       0.006      0.004     0.006             0.007
## domestic eggs               0.006      0.005     0.003             0.005
## coffee                      0.004      0.003     0.004             0.005
## margarine                   0.004      0.006     0.003             0.005
## beef                        0.004      0.007     0.003             0.005
## curd                        0.005      0.004     0.003             0.005
## butter                      0.005      0.005     0.006             0.005
## marinated meats             0.003      0.005     0.004             0.004
## napkins                     0.051      0.005     0.004             0.004
## halal meat                  0.005      0.051     0.004             0.006
## chocolate                   0.004      0.004     0.049             0.002
## frozen vegetables           0.004      0.006     0.002             0.048
## chicken                     0.004      0.005     0.003             0.007
## white bread                 0.003      0.004     0.004             0.003
## cream cheese                0.004      0.003     0.004             0.003
## waffles                     0.003      0.003     0.006             0.002
## dessert                     0.004      0.003     0.004             0.003
## salty snack                 0.004      0.003     0.003             0.003
## long life bakery product    0.004      0.001     0.005             0.004
## berries                     0.003      0.003     0.003             0.003
## hamburger meat              0.003      0.003     0.002             0.003
## sugar                       0.003      0.004     0.002             0.003
## hygiene articles            0.007      0.003     0.002             0.003
## UHT-milk                    0.002      0.003     0.001             0.003
## onions                      0.003      0.003     0.002             0.003
## candy                       0.002      0.002     0.005             0.002
## specialty chocolate         0.002      0.001     0.003             0.002
## butter milk                 0.002      0.002     0.002             0.002
## oil                         0.003      0.003     0.003             0.002
## frozen meals                0.002      0.002     0.002             0.003
## misc. beverages             0.002      0.001     0.002             0.002
## specialty bar               0.002      0.002     0.003             0.001
## ham                         0.002      0.002     0.003             0.002
## beverages                   0.001      0.001     0.002             0.002
## meat                        0.002      0.002     0.001             0.002
## ice cream                   0.002      0.001     0.001             0.002
## sliced cheese               0.003      0.002     0.002             0.002
## hard cheese                 0.003      0.002     0.002             0.002
## noodles                     0.001      0.000     0.001             0.001
## grapes                      0.002      0.002     0.002             0.002
## cat food                    0.003      0.002     0.003             0.001
## chewing gum                 0.002      0.001     0.001             0.001
## soda                        0.001      0.000     0.001             0.001
## detergent                   0.002      0.002     0.001             0.003
## red/blush wine              0.001      0.001     0.001             0.001
## white wine                  0.001      0.001     0.001             0.001
## turkey                      0.001      0.000     0.001             0.002
## dishes                      0.002      0.002     0.001             0.001
## bottled water               0.001      0.000     0.001             0.001
## flour                       0.002      0.002     0.002             0.001
## semi-finished bread         0.001      0.002     0.001             0.002
## baking powder               0.002      0.002     0.002             0.002
## pickled vegetables          0.001      0.002     0.001             0.002
## herbs                       0.001      0.002     0.000             0.003
## tropical herbs              0.001      0.000     0.001             0.001
## soft cheese                 0.001      0.001     0.002             0.002
## tea                         0.001      0.000     0.001             0.001
## processed cheese            0.001      0.001     0.001             0.002
## sausage                     0.001      0.000     0.001             0.001
## pasta                       0.001      0.001     0.001             0.001
## citrus herbs                0.001      0.000     0.001             0.001
## potted plants               0.001      0.001     0.001             0.001
## canned fish                 0.002      0.001     0.001             0.002
## seasonal products           0.001      0.001     0.001             0.002
## cake bar                    0.001      0.001     0.002             0.001
## carrots                     0.001      0.000     0.000             0.001
## mustard                     0.001      0.001     0.002             0.001
## packaged fruit/vegetables   0.001      0.001     0.000             0.002
## spread cheese               0.001      0.001     0.001             0.001
## frozen dessert              0.001      0.001     0.001             0.002
## frozen fish                 0.001      0.002     0.001             0.002
## cling film/bags             0.002      0.000     0.001             0.002
## salt                        0.001      0.001     0.001             0.001
## liquor                      0.001      0.001     0.000             0.000
## canned vegetables           0.001      0.001     0.001             0.001
## bottled beer                0.001      0.000     0.000             0.001
## flower (seeds)              0.001      0.001     0.001             0.001
## cooking oil                 0.001      0.000     0.000             0.000
## dish cleaner                0.002      0.001     0.001             0.001
## condensed milk              0.001      0.000     0.000             0.001
## roll products               0.001      0.001     0.001             0.001
## photo/film                  0.001      0.000     0.000             0.001
## pet care                    0.001      0.001     0.001             0.000
## chocolate marshmallow       0.001      0.001     0.002             0.001
## herbs/vegetable juice       0.000      0.000     0.000             0.001
## whole milk                  0.001      0.000     0.001             0.000
## candles                     0.000      0.001     0.001             0.001
## mayonnaise                  0.001      0.001     0.002             0.001
## Instant food products       0.001      0.001     0.000             0.001
## sweet spreads               0.001      0.001     0.001             0.001
## liquor (appetizer)          0.001      0.001     0.000             0.001
## specialty cheese            0.000      0.000     0.000             0.001
## frozen potato products      0.001      0.001     0.001             0.001
## house keeping products      0.001      0.001     0.001             0.001
## dog food                    0.001      0.001     0.001             0.001
## soy                         0.000      0.000     0.000             0.000
## instant coffee              0.001      0.000     0.000             0.001
## pip herbs                   0.000      0.000     0.000             0.000
## zwieback                    0.001      0.000     0.000             0.001
## finished products           0.000      0.000     0.001             0.001
## popcorn                     0.000      0.000     0.001             0.001
## vinegar                     0.001      0.000     0.000             0.001
## soups                       0.001      0.000     0.001             0.001
## female sanitary products    0.001      0.001     0.001             0.000
## sparkling wine              0.000      0.000     0.000             0.000
## dental care                 0.001      0.001     0.001             0.001
## cereals                     0.001      0.000     0.000             0.000
## kitchen towels              0.001      0.001     0.000             0.001
## curd cheese                 0.000      0.001     0.000             0.001
## other vegetables            0.001      0.000     0.000             0.001
## rolls/buns                  0.000      0.000     0.000             0.000
## softener                    0.001      0.000     0.000             0.000
## cleaner                     0.001      0.000     0.000             0.001
## spices                      0.000      0.000     0.001             0.001
## jam                         0.001      0.000     0.000             0.001
## sauces                      0.001      0.000     0.000             0.000
## rum                         0.000      0.000     0.000             0.000
## liver loaf                  0.000      0.000     0.000             0.001
## male cosmetics              0.000      0.000     0.000             0.000
## meat spreads                0.000      0.000     0.001             0.000
## packaged herbs/vegetables   0.000      0.000     0.000             0.001
## brandy                      0.000      0.000     0.000             0.000
## ketchup                     0.001      0.001     0.001             0.000
## abrasive cleaner            0.000      0.000     0.000             0.000
## light bulbs                 0.001      0.000     0.000             0.000
## artif. sweetener            0.000      0.001     0.000             0.000
## nuts/prunes                 0.000      0.000     0.001             0.000
## specialty fat               0.001      0.001     0.000             0.001
## skin care                   0.001      0.000     0.000             0.001
## fish                        0.000      0.000     0.000             0.000
## potato products             0.000      0.000     0.000             0.000
## root vegetables             0.000      0.000     0.000             0.000
## snack products              0.000      0.000     0.000             0.000
## nut snack                   0.000      0.000     0.000             0.000
## soap                        0.000      0.000     0.000             0.000
## syrup                       0.000      0.000     0.000             0.000
## bathroom cleaner            0.001      0.000     0.000             0.000
## canned fruit                0.000      0.000     0.000             0.000
## cookware                    0.000      0.000     0.000             0.000
## cooking chocolate           0.000      0.000     0.000             0.000
## tidbits                     0.000      0.000     0.000             0.000
## cocoa drinks                0.000      0.000     0.001             0.000
## pudding powder              0.000      0.000     0.000             0.000
## ready soups                 0.000      0.000     0.000             0.000
## organic marinated meat      0.000      0.000     0.000             0.000
## flower soil/fertilizer      0.000      0.000     0.000             0.000
## organic products            0.000      0.000     0.000             0.000
## pot plants                  0.000      0.000     0.000             0.000
## prosecco                    0.000      0.000     0.000             0.000
## frankfurter                 0.000      0.000     0.000             0.000
## decalcifier                 0.000      0.000     0.000             0.000
## honey                       0.000      0.000     0.000             0.000
## specialty vegetables        0.000      0.000     0.000             0.000
## cream                       0.000      0.000     0.000             0.000
## hair spray                  0.000      0.000     0.000             0.000
## frozen fruits               0.000      0.000     0.000             0.000
## rubbing alcohol             0.000      0.000     0.000             0.000
## liqueur                     0.000      0.000     0.000             0.000
## make up remover             0.000      0.000     0.000             0.000
## salad dressing              0.000      0.000     0.000             0.000
## frozen chicken              0.000      0.000     0.000             0.000
## whisky                      0.000      0.000     0.000             0.000
## baby cosmetics              0.000      0.000     0.000             0.000
## toilet cleaner              0.000      0.000     0.000             0.000
## bags                        0.000      0.000     0.000             0.000
## canned herbs                0.000      0.000     0.000             0.000
## kitchen utensil             0.000      0.000     0.000             0.000
## preservation products       0.000      0.000     0.000             0.000
## baby food                   0.000      0.000     0.000             0.000
## frozen herbss               0.000      0.000     0.000             0.000
## organic sausage             0.000      0.000     0.000             0.000
## sound storage medium        0.000      0.000     0.000             0.000
##                           chicken white bread cream cheese waffles dessert
## rice                        0.018       0.016        0.017   0.012   0.014
## veggies                     0.016       0.012        0.012   0.009   0.010
## loaf                        0.008       0.006        0.009   0.008   0.006
## coke                        0.007       0.009        0.006   0.008   0.009
## yogurt                      0.008       0.009        0.012   0.007   0.010
## vegetables                  0.012       0.008        0.008   0.006   0.006
## mineral water               0.005       0.004        0.005   0.004   0.005
## Plastic bags                0.005       0.007        0.005   0.006   0.006
## tropical fruit              0.006       0.008        0.006   0.005   0.006
## marinated meat              0.005       0.006        0.005   0.004   0.005
## pies/pasties                0.004       0.005        0.004   0.007   0.005
## newspapers                  0.005       0.003        0.004   0.004   0.003
## citrus                      0.006       0.004        0.005   0.004   0.004
## whipped/sour cream          0.007       0.006        0.007   0.005   0.005
## heinken                     0.002       0.003        0.002   0.002   0.002
## green tea                   0.003       0.001        0.001   0.002   0.002
## pip fruit                   0.004       0.006        0.005   0.004   0.004
## brown bread                 0.004       0.005        0.005   0.002   0.005
## fruit/vegetable juice       0.003       0.007        0.005   0.003   0.005
## domestic eggs               0.006       0.006        0.005   0.003   0.004
## coffee                      0.004       0.003        0.004   0.003   0.003
## margarine                   0.005       0.004        0.005   0.003   0.003
## beef                        0.005       0.003        0.004   0.003   0.003
## curd                        0.003       0.004        0.005   0.003   0.005
## butter                      0.006       0.004        0.004   0.003   0.003
## marinated meats             0.003       0.005        0.003   0.003   0.003
## napkins                     0.004       0.003        0.004   0.003   0.004
## halal meat                  0.005       0.004        0.003   0.003   0.003
## chocolate                   0.003       0.004        0.004   0.006   0.004
## frozen vegetables           0.007       0.003        0.003   0.002   0.003
## chicken                     0.044       0.003        0.003   0.002   0.002
## white bread                 0.003       0.042        0.004   0.003   0.004
## cream cheese                0.003       0.004        0.040   0.003   0.003
## waffles                     0.002       0.003        0.003   0.038   0.003
## dessert                     0.002       0.004        0.003   0.003   0.037
## salty snack                 0.002       0.002        0.002   0.004   0.002
## long life bakery product    0.003       0.004        0.003   0.004   0.003
## berries                     0.003       0.002        0.002   0.002   0.002
## hamburger meat              0.004       0.003        0.002   0.002   0.002
## sugar                       0.003       0.003        0.003   0.002   0.002
## hygiene articles            0.002       0.002        0.002   0.002   0.002
## UHT-milk                    0.002       0.001        0.003   0.002   0.003
## onions                      0.003       0.002        0.002   0.001   0.002
## candy                       0.002       0.003        0.002   0.003   0.001
## specialty chocolate         0.002       0.001        0.001   0.002   0.001
## butter milk                 0.002       0.002        0.003   0.002   0.003
## oil                         0.003       0.002        0.002   0.002   0.002
## frozen meals                0.002       0.002        0.001   0.002   0.002
## misc. beverages             0.001       0.001        0.002   0.001   0.001
## specialty bar               0.001       0.002        0.002   0.003   0.001
## ham                         0.002       0.005        0.002   0.002   0.003
## beverages                   0.002       0.002        0.002   0.002   0.001
## meat                        0.002       0.002        0.002   0.001   0.001
## ice cream                   0.002       0.001        0.001   0.001   0.001
## sliced cheese               0.001       0.002        0.002   0.001   0.002
## hard cheese                 0.001       0.002        0.002   0.002   0.001
## noodles                     0.001       0.000        0.001   0.001   0.001
## grapes                      0.002       0.001        0.001   0.002   0.001
## cat food                    0.001       0.001        0.002   0.002   0.002
## chewing gum                 0.001       0.001        0.001   0.001   0.001
## soda                        0.001       0.001        0.001   0.001   0.001
## detergent                   0.001       0.002        0.001   0.001   0.001
## red/blush wine              0.002       0.001        0.000   0.001   0.001
## white wine                  0.001       0.001        0.000   0.000   0.001
## turkey                      0.002       0.001        0.001   0.001   0.001
## dishes                      0.001       0.000        0.002   0.001   0.001
## bottled water               0.001       0.001        0.001   0.001   0.001
## flour                       0.002       0.001        0.001   0.001   0.001
## semi-finished bread         0.001       0.001        0.001   0.001   0.001
## baking powder               0.001       0.002        0.002   0.001   0.001
## pickled vegetables          0.002       0.001        0.001   0.001   0.002
## herbs                       0.002       0.000        0.001   0.001   0.001
## tropical herbs              0.001       0.001        0.001   0.001   0.001
## soft cheese                 0.002       0.002        0.002   0.001   0.002
## tea                         0.001       0.001        0.002   0.000   0.001
## processed cheese            0.001       0.004        0.001   0.001   0.001
## sausage                     0.001       0.001        0.001   0.000   0.001
## pasta                       0.002       0.001        0.001   0.002   0.001
## citrus herbs                0.001       0.001        0.001   0.000   0.001
## potted plants               0.001       0.001        0.001   0.000   0.000
## canned fish                 0.001       0.001        0.002   0.001   0.001
## seasonal products           0.001       0.000        0.001   0.001   0.001
## cake bar                    0.001       0.001        0.001   0.001   0.002
## carrots                     0.001       0.001        0.001   0.000   0.001
## mustard                     0.001       0.001        0.001   0.001   0.001
## packaged fruit/vegetables   0.001       0.001        0.000   0.000   0.001
## spread cheese               0.001       0.001        0.001   0.001   0.001
## frozen dessert              0.001       0.001        0.001   0.001   0.001
## frozen fish                 0.001       0.001        0.001   0.001   0.000
## cling film/bags             0.001       0.001        0.001   0.000   0.001
## salt                        0.001       0.001        0.001   0.001   0.001
## liquor                      0.000       0.000        0.000   0.000   0.000
## canned vegetables           0.001       0.001        0.001   0.001   0.001
## bottled beer                0.000       0.000        0.000   0.000   0.000
## flower (seeds)              0.001       0.000        0.000   0.000   0.001
## cooking oil                 0.001       0.000        0.000   0.000   0.000
## dish cleaner                0.001       0.001        0.000   0.001   0.000
## condensed milk              0.001       0.001        0.000   0.001   0.000
## roll products               0.001       0.001        0.001   0.001   0.000
## photo/film                  0.000       0.000        0.000   0.000   0.000
## pet care                    0.000       0.001        0.001   0.001   0.000
## chocolate marshmallow       0.001       0.000        0.001   0.001   0.001
## herbs/vegetable juice       0.001       0.001        0.001   0.001   0.000
## whole milk                  0.001       0.001        0.001   0.001   0.001
## candles                     0.001       0.000        0.000   0.000   0.001
## mayonnaise                  0.001       0.001        0.001   0.001   0.001
## Instant food products       0.000       0.001        0.000   0.000   0.000
## sweet spreads               0.000       0.001        0.001   0.001   0.000
## liquor (appetizer)          0.001       0.000        0.000   0.001   0.000
## specialty cheese            0.000       0.001        0.001   0.000   0.000
## frozen potato products      0.001       0.001        0.000   0.000   0.001
## house keeping products      0.001       0.001        0.000   0.000   0.000
## dog food                    0.001       0.001        0.001   0.000   0.000
## soy                         0.000       0.000        0.000   0.000   0.000
## instant coffee              0.000       0.001        0.000   0.001   0.000
## pip herbs                   0.001       0.001        0.001   0.001   0.000
## zwieback                    0.000       0.000        0.000   0.001   0.000
## finished products           0.000       0.001        0.000   0.001   0.000
## popcorn                     0.000       0.001        0.000   0.000   0.001
## vinegar                     0.001       0.000        0.001   0.000   0.000
## soups                       0.001       0.000        0.001   0.000   0.000
## female sanitary products    0.000       0.000        0.000   0.000   0.000
## sparkling wine              0.000       0.001        0.000   0.000   0.000
## dental care                 0.000       0.001        0.000   0.000   0.001
## cereals                     0.000       0.000        0.001   0.001   0.000
## kitchen towels              0.000       0.000        0.001   0.000   0.000
## curd cheese                 0.000       0.000        0.000   0.000   0.000
## other vegetables            0.001       0.001        0.000   0.000   0.000
## rolls/buns                  0.000       0.000        0.000   0.001   0.000
## softener                    0.001       0.001        0.000   0.000   0.000
## cleaner                     0.001       0.000        0.000   0.001   0.001
## spices                      0.001       0.000        0.000   0.000   0.001
## jam                         0.000       0.000        0.001   0.001   0.000
## sauces                      0.000       0.000        0.000   0.001   0.000
## rum                         0.000       0.000        0.000   0.000   0.000
## liver loaf                  0.000       0.000        0.001   0.000   0.000
## male cosmetics              0.000       0.000        0.000   0.000   0.000
## meat spreads                0.000       0.000        0.001   0.000   0.000
## packaged herbs/vegetables   0.000       0.000        0.000   0.000   0.000
## brandy                      0.000       0.000        0.000   0.000   0.000
## ketchup                     0.000       0.000        0.000   0.000   0.000
## abrasive cleaner            0.001       0.000        0.000   0.000   0.000
## light bulbs                 0.000       0.000        0.000   0.000   0.000
## artif. sweetener            0.000       0.000        0.000   0.000   0.000
## nuts/prunes                 0.000       0.000        0.000   0.000   0.000
## specialty fat               0.001       0.001        0.000   0.000   0.000
## skin care                   0.001       0.000        0.000   0.000   0.000
## fish                        0.000       0.000        0.000   0.000   0.000
## potato products             0.000       0.000        0.000   0.000   0.000
## root vegetables             0.001       0.000        0.000   0.000   0.000
## snack products              0.000       0.000        0.000   0.000   0.000
## nut snack                   0.000       0.000        0.000   0.000   0.000
## soap                        0.000       0.000        0.000   0.000   0.000
## syrup                       0.000       0.000        0.000   0.000   0.000
## bathroom cleaner            0.000       0.000        0.000   0.000   0.000
## canned fruit                0.000       0.000        0.000   0.000   0.000
## cookware                    0.000       0.000        0.000   0.000   0.000
## cooking chocolate           0.000       0.000        0.000   0.000   0.000
## tidbits                     0.000       0.000        0.000   0.001   0.000
## cocoa drinks                0.000       0.000        0.000   0.000   0.000
## pudding powder              0.000       0.000        0.000   0.000   0.000
## ready soups                 0.000       0.000        0.000   0.000   0.000
## organic marinated meat      0.000       0.000        0.000   0.000   0.000
## flower soil/fertilizer      0.000       0.000        0.000   0.000   0.000
## organic products            0.000       0.000        0.000   0.000   0.000
## pot plants                  0.000       0.000        0.000   0.000   0.000
## prosecco                    0.000       0.000        0.000   0.000   0.000
## frankfurter                 0.000       0.000        0.000   0.000   0.000
## decalcifier                 0.000       0.000        0.000   0.000   0.000
## honey                       0.000       0.000        0.000   0.000   0.000
## specialty vegetables        0.000       0.001        0.000   0.000   0.000
## cream                       0.000       0.000        0.000   0.000   0.000
## hair spray                  0.000       0.000        0.000   0.000   0.000
## frozen fruits               0.000       0.000        0.000   0.000   0.000
## rubbing alcohol             0.000       0.000        0.000   0.000   0.000
## liqueur                     0.000       0.000        0.000   0.000   0.000
## make up remover             0.000       0.000        0.000   0.000   0.000
## salad dressing              0.000       0.000        0.000   0.000   0.000
## frozen chicken              0.000       0.000        0.000   0.000   0.000
## whisky                      0.000       0.000        0.000   0.000   0.000
## baby cosmetics              0.000       0.000        0.000   0.000   0.000
## toilet cleaner              0.000       0.000        0.000   0.000   0.000
## bags                        0.000       0.000        0.000   0.000   0.000
## canned herbs                0.000       0.000        0.000   0.000   0.000
## kitchen utensil             0.000       0.000        0.000   0.000   0.000
## preservation products       0.000       0.000        0.000   0.000   0.000
## baby food                   0.000       0.000        0.000   0.000   0.000
## frozen herbss               0.000       0.000        0.000   0.000   0.000
## organic sausage             0.000       0.000        0.000   0.000   0.000
## sound storage medium        0.000       0.000        0.000   0.000   0.000
##                           salty snack long life bakery product berries
## rice                            0.011                    0.013   0.013
## veggies                         0.009                    0.009   0.009
## loaf                            0.004                    0.007   0.006
## coke                            0.008                    0.007   0.006
## yogurt                          0.006                    0.008   0.011
## vegetables                      0.005                    0.005   0.008
## mineral water                   0.004                    0.004   0.004
## Plastic bags                    0.006                    0.005   0.005
## tropical fruit                  0.005                    0.006   0.006
## marinated meat                  0.005                    0.005   0.004
## pies/pasties                    0.005                    0.005   0.004
## newspapers                      0.003                    0.003   0.003
## citrus                          0.003                    0.004   0.005
## whipped/sour cream              0.005                    0.006   0.010
## heinken                         0.003                    0.002   0.001
## green tea                       0.002                    0.001   0.001
## pip fruit                       0.004                    0.004   0.003
## brown bread                     0.002                    0.003   0.003
## fruit/vegetable juice           0.005                    0.005   0.003
## domestic eggs                   0.003                    0.004   0.004
## coffee                          0.003                    0.004   0.003
## margarine                       0.003                    0.003   0.003
## beef                            0.003                    0.002   0.005
## curd                            0.003                    0.004   0.003
## butter                          0.003                    0.004   0.004
## marinated meats                 0.003                    0.002   0.002
## napkins                         0.004                    0.004   0.003
## halal meat                      0.003                    0.001   0.003
## chocolate                       0.003                    0.005   0.003
## frozen vegetables               0.003                    0.004   0.003
## chicken                         0.002                    0.003   0.003
## white bread                     0.002                    0.004   0.002
## cream cheese                    0.002                    0.003   0.002
## waffles                         0.004                    0.004   0.002
## dessert                         0.002                    0.003   0.002
## salty snack                     0.037                    0.003   0.002
## long life bakery product        0.003                    0.036   0.002
## berries                         0.002                    0.002   0.036
## hamburger meat                  0.002                    0.001   0.002
## sugar                           0.002                    0.002   0.003
## hygiene articles                0.001                    0.002   0.003
## UHT-milk                        0.002                    0.002   0.002
## onions                          0.002                    0.001   0.002
## candy                           0.002                    0.002   0.001
## specialty chocolate             0.002                    0.002   0.001
## butter milk                     0.002                    0.002   0.002
## oil                             0.002                    0.001   0.002
## frozen meals                    0.002                    0.002   0.001
## misc. beverages                 0.001                    0.001   0.001
## specialty bar                   0.002                    0.002   0.002
## ham                             0.001                    0.002   0.002
## beverages                       0.000                    0.001   0.001
## meat                            0.001                    0.002   0.002
## ice cream                       0.002                    0.002   0.001
## sliced cheese                   0.001                    0.002   0.002
## hard cheese                     0.001                    0.002   0.002
## noodles                         0.001                    0.001   0.001
## grapes                          0.002                    0.001   0.003
## cat food                        0.001                    0.001   0.002
## chewing gum                     0.002                    0.001   0.000
## soda                            0.001                    0.000   0.001
## detergent                       0.001                    0.001   0.002
## red/blush wine                  0.001                    0.001   0.001
## white wine                      0.001                    0.001   0.001
## turkey                          0.001                    0.001   0.001
## dishes                          0.001                    0.000   0.001
## bottled water                   0.001                    0.001   0.001
## flour                           0.002                    0.001   0.001
## semi-finished bread             0.001                    0.001   0.001
## baking powder                   0.001                    0.002   0.001
## pickled vegetables              0.001                    0.001   0.001
## herbs                           0.001                    0.001   0.001
## tropical herbs                  0.001                    0.001   0.001
## soft cheese                     0.000                    0.002   0.001
## tea                             0.000                    0.001   0.001
## processed cheese                0.001                    0.002   0.001
## sausage                         0.001                    0.000   0.001
## pasta                           0.001                    0.000   0.001
## citrus herbs                    0.001                    0.001   0.002
## potted plants                   0.001                    0.001   0.001
## canned fish                     0.001                    0.001   0.001
## seasonal products               0.001                    0.000   0.001
## cake bar                        0.001                    0.001   0.002
## carrots                         0.000                    0.000   0.002
## mustard                         0.001                    0.001   0.001
## packaged fruit/vegetables       0.000                    0.000   0.001
## spread cheese                   0.001                    0.001   0.001
## frozen dessert                  0.001                    0.001   0.000
## frozen fish                     0.001                    0.001   0.001
## cling film/bags                 0.000                    0.001   0.001
## salt                            0.001                    0.001   0.000
## liquor                          0.000                    0.000   0.001
## canned vegetables               0.001                    0.000   0.000
## bottled beer                    0.000                    0.000   0.000
## flower (seeds)                  0.000                    0.000   0.001
## cooking oil                     0.000                    0.000   0.000
## dish cleaner                    0.000                    0.001   0.001
## condensed milk                  0.001                    0.001   0.000
## roll products                   0.001                    0.000   0.001
## photo/film                      0.000                    0.000   0.000
## pet care                        0.000                    0.000   0.001
## chocolate marshmallow           0.000                    0.001   0.000
## herbs/vegetable juice           0.001                    0.000   0.001
## whole milk                      0.000                    0.000   0.000
## candles                         0.000                    0.001   0.000
## mayonnaise                      0.001                    0.001   0.001
## Instant food products           0.001                    0.000   0.000
## sweet spreads                   0.001                    0.001   0.000
## liquor (appetizer)              0.000                    0.000   0.000
## specialty cheese                0.001                    0.000   0.001
## frozen potato products          0.001                    0.001   0.001
## house keeping products          0.000                    0.001   0.001
## dog food                        0.001                    0.001   0.000
## soy                             0.000                    0.000   0.001
## instant coffee                  0.001                    0.000   0.000
## pip herbs                       0.000                    0.000   0.000
## zwieback                        0.000                    0.000   0.000
## finished products               0.001                    0.001   0.000
## popcorn                         0.002                    0.000   0.001
## vinegar                         0.000                    0.000   0.000
## soups                           0.000                    0.000   0.001
## female sanitary products        0.000                    0.001   0.000
## sparkling wine                  0.000                    0.000   0.000
## dental care                     0.001                    0.000   0.000
## cereals                         0.000                    0.001   0.001
## kitchen towels                  0.001                    0.000   0.000
## curd cheese                     0.000                    0.000   0.000
## other vegetables                0.000                    0.000   0.000
## rolls/buns                      0.000                    0.000   0.000
## softener                        0.000                    0.000   0.000
## cleaner                         0.000                    0.000   0.000
## spices                          0.000                    0.001   0.000
## jam                             0.000                    0.000   0.000
## sauces                          0.001                    0.000   0.000
## rum                             0.000                    0.001   0.000
## liver loaf                      0.000                    0.000   0.000
## male cosmetics                  0.000                    0.000   0.000
## meat spreads                    0.000                    0.000   0.000
## packaged herbs/vegetables       0.000                    0.000   0.001
## brandy                          0.000                    0.000   0.000
## ketchup                         0.000                    0.000   0.000
## abrasive cleaner                0.000                    0.000   0.001
## light bulbs                     0.000                    0.000   0.000
## artif. sweetener                0.000                    0.000   0.000
## nuts/prunes                     0.000                    0.000   0.000
## specialty fat                   0.000                    0.000   0.000
## skin care                       0.000                    0.000   0.000
## fish                            0.000                    0.000   0.000
## potato products                 0.000                    0.000   0.000
## root vegetables                 0.000                    0.000   0.000
## snack products                  0.000                    0.000   0.000
## nut snack                       0.001                    0.000   0.000
## soap                            0.000                    0.000   0.000
## syrup                           0.000                    0.000   0.000
## bathroom cleaner                0.000                    0.000   0.000
## canned fruit                    0.000                    0.000   0.000
## cookware                        0.000                    0.000   0.000
## cooking chocolate               0.000                    0.000   0.000
## tidbits                         0.000                    0.000   0.000
## cocoa drinks                    0.000                    0.000   0.000
## pudding powder                  0.000                    0.000   0.000
## ready soups                     0.000                    0.000   0.000
## organic marinated meat          0.000                    0.000   0.000
## flower soil/fertilizer          0.000                    0.000   0.000
## organic products                0.000                    0.000   0.000
## pot plants                      0.000                    0.000   0.000
## prosecco                        0.000                    0.000   0.000
## frankfurter                     0.000                    0.000   0.000
## decalcifier                     0.000                    0.000   0.000
## honey                           0.000                    0.000   0.000
## specialty vegetables            0.000                    0.000   0.000
## cream                           0.000                    0.000   0.000
## hair spray                      0.000                    0.000   0.000
## frozen fruits                   0.000                    0.000   0.000
## rubbing alcohol                 0.000                    0.000   0.000
## liqueur                         0.000                    0.000   0.000
## make up remover                 0.000                    0.000   0.000
## salad dressing                  0.000                    0.000   0.000
## frozen chicken                  0.000                    0.000   0.000
## whisky                          0.000                    0.000   0.000
## baby cosmetics                  0.000                    0.000   0.000
## toilet cleaner                  0.000                    0.000   0.000
## bags                            0.000                    0.000   0.000
## canned herbs                    0.000                    0.000   0.000
## kitchen utensil                 0.000                    0.000   0.000
## preservation products           0.000                    0.000   0.000
## baby food                       0.000                    0.000   0.000
## frozen herbss                   0.000                    0.000   0.000
## organic sausage                 0.000                    0.000   0.000
## sound storage medium            0.000                    0.000   0.000
##                           hamburger meat sugar hygiene articles UHT-milk onions
## rice                               0.015 0.015            0.013    0.004  0.012
## veggies                            0.012 0.009            0.008    0.007  0.012
## loaf                               0.008 0.006            0.005    0.006  0.006
## coke                               0.005 0.006            0.006    0.007  0.005
## yogurt                             0.007 0.007            0.007    0.007  0.007
## vegetables                         0.007 0.007            0.006    0.005  0.010
## mineral water                      0.003 0.004            0.005    0.006  0.005
## Plastic bags                       0.004 0.003            0.005    0.005  0.004
## tropical fruit                     0.004 0.004            0.006    0.004  0.005
## marinated meat                     0.005 0.003            0.004    0.003  0.003
## pies/pasties                       0.004 0.005            0.004    0.003  0.003
## newspapers                         0.003 0.003            0.003    0.004  0.003
## citrus                             0.003 0.004            0.005    0.004  0.005
## whipped/sour cream                 0.005 0.005            0.004    0.003  0.005
## heinken                            0.002 0.003            0.002    0.002  0.003
## green tea                          0.002 0.001            0.002    0.002  0.002
## pip fruit                          0.004 0.004            0.004    0.003  0.003
## brown bread                        0.003 0.004            0.003    0.004  0.003
## fruit/vegetable juice              0.003 0.004            0.003    0.003  0.003
## domestic eggs                      0.004 0.005            0.005    0.004  0.005
## coffee                             0.003 0.005            0.004    0.004  0.003
## margarine                          0.003 0.005            0.004    0.004  0.002
## beef                               0.004 0.003            0.003    0.002  0.003
## curd                               0.003 0.004            0.004    0.002  0.003
## butter                             0.005 0.003            0.004    0.002  0.004
## marinated meats                    0.003 0.003            0.003    0.003  0.003
## napkins                            0.003 0.003            0.007    0.002  0.003
## halal meat                         0.003 0.004            0.003    0.003  0.003
## chocolate                          0.002 0.002            0.002    0.001  0.002
## frozen vegetables                  0.003 0.003            0.003    0.003  0.003
## chicken                            0.004 0.003            0.002    0.002  0.003
## white bread                        0.003 0.003            0.002    0.001  0.002
## cream cheese                       0.002 0.003            0.002    0.003  0.002
## waffles                            0.002 0.002            0.002    0.002  0.001
## dessert                            0.002 0.002            0.002    0.003  0.002
## salty snack                        0.002 0.002            0.001    0.002  0.002
## long life bakery product           0.001 0.002            0.002    0.002  0.001
## berries                            0.002 0.003            0.003    0.002  0.002
## hamburger meat                     0.035 0.002            0.003    0.002  0.003
## sugar                              0.002 0.035            0.003    0.002  0.002
## hygiene articles                   0.003 0.003            0.034    0.002  0.002
## UHT-milk                           0.002 0.002            0.002    0.033  0.001
## onions                             0.003 0.002            0.002    0.001  0.033
## candy                              0.001 0.002            0.001    0.001  0.001
## specialty chocolate                0.001 0.001            0.001    0.001  0.001
## butter milk                        0.002 0.001            0.001    0.002  0.002
## oil                                0.002 0.002            0.003    0.001  0.002
## frozen meals                       0.002 0.001            0.002    0.001  0.001
## misc. beverages                    0.001 0.001            0.002    0.000  0.001
## specialty bar                      0.001 0.001            0.001    0.001  0.001
## ham                                0.001 0.002            0.002    0.001  0.002
## beverages                          0.001 0.001            0.001    0.001  0.001
## meat                               0.002 0.001            0.001    0.001  0.002
## ice cream                          0.001 0.001            0.001    0.001  0.001
## sliced cheese                      0.001 0.001            0.001    0.001  0.002
## hard cheese                        0.002 0.002            0.002    0.001  0.002
## noodles                            0.001 0.001            0.002    0.001  0.001
## grapes                             0.001 0.001            0.001    0.001  0.001
## cat food                           0.002 0.002            0.002    0.001  0.001
## chewing gum                        0.001 0.001            0.001    0.001  0.001
## soda                               0.001 0.001            0.001    0.001  0.001
## detergent                          0.001 0.001            0.001    0.001  0.001
## red/blush wine                     0.001 0.000            0.001    0.001  0.001
## white wine                         0.001 0.001            0.001    0.000  0.001
## turkey                             0.001 0.001            0.001    0.001  0.001
## dishes                             0.001 0.001            0.000    0.001  0.001
## bottled water                      0.001 0.001            0.001    0.001  0.001
## flour                              0.001 0.005            0.002    0.001  0.001
## semi-finished bread                0.001 0.001            0.001    0.001  0.001
## baking powder                      0.001 0.003            0.001    0.001  0.001
## pickled vegetables                 0.001 0.001            0.001    0.001  0.001
## herbs                              0.002 0.000            0.001    0.001  0.002
## tropical herbs                     0.001 0.001            0.001    0.000  0.001
## soft cheese                        0.001 0.001            0.001    0.000  0.002
## tea                                0.001 0.001            0.001    0.001  0.001
## processed cheese                   0.001 0.001            0.001    0.001  0.001
## sausage                            0.001 0.001            0.001    0.000  0.001
## pasta                              0.003 0.001            0.001    0.001  0.001
## citrus herbs                       0.001 0.002            0.001    0.001  0.001
## potted plants                      0.001 0.001            0.001    0.001  0.001
## canned fish                        0.001 0.001            0.001    0.001  0.001
## seasonal products                  0.000 0.000            0.001    0.001  0.001
## cake bar                           0.001 0.001            0.000    0.001  0.001
## carrots                            0.001 0.000            0.001    0.000  0.001
## mustard                            0.001 0.001            0.001    0.001  0.001
## packaged fruit/vegetables          0.001 0.001            0.000    0.001  0.001
## spread cheese                      0.001 0.001            0.001    0.001  0.001
## frozen dessert                     0.000 0.001            0.001    0.001  0.001
## frozen fish                        0.000 0.001            0.001    0.001  0.001
## cling film/bags                    0.001 0.001            0.001    0.001  0.001
## salt                               0.001 0.002            0.001    0.001  0.001
## liquor                             0.000 0.000            0.000    0.000  0.000
## canned vegetables                  0.002 0.001            0.001    0.001  0.001
## bottled beer                       0.000 0.000            0.000    0.000  0.001
## flower (seeds)                     0.001 0.000            0.000    0.000  0.000
## cooking oil                        0.000 0.000            0.000    0.000  0.001
## dish cleaner                       0.001 0.001            0.001    0.001  0.001
## condensed milk                     0.000 0.001            0.000    0.001  0.000
## roll products                      0.001 0.001            0.001    0.000  0.001
## photo/film                         0.000 0.000            0.001    0.000  0.000
## pet care                           0.000 0.000            0.000    0.001  0.001
## chocolate marshmallow              0.001 0.001            0.001    0.000  0.000
## herbs/vegetable juice              0.000 0.001            0.000    0.000  0.000
## whole milk                         0.001 0.000            0.001    0.000  0.001
## candles                            0.000 0.001            0.000    0.000  0.000
## mayonnaise                         0.001 0.001            0.001    0.001  0.001
## Instant food products              0.003 0.000            0.001    0.000  0.000
## sweet spreads                      0.001 0.000            0.001    0.001  0.000
## liquor (appetizer)                 0.000 0.000            0.001    0.001  0.001
## specialty cheese                   0.001 0.000            0.001    0.001  0.001
## frozen potato products             0.001 0.000            0.001    0.000  0.000
## house keeping products             0.000 0.001            0.001    0.001  0.001
## dog food                           0.000 0.000            0.000    0.000  0.000
## soy                                0.000 0.001            0.000    0.000  0.000
## instant coffee                     0.000 0.000            0.001    0.000  0.001
## pip herbs                          0.001 0.001            0.001    0.000  0.000
## zwieback                           0.000 0.000            0.000    0.001  0.000
## finished products                  0.000 0.000            0.000    0.000  0.001
## popcorn                            0.001 0.000            0.000    0.000  0.001
## vinegar                            0.000 0.001            0.000    0.000  0.001
## soups                              0.001 0.001            0.001    0.000  0.001
## female sanitary products           0.000 0.000            0.001    0.000  0.000
## sparkling wine                     0.000 0.000            0.000    0.000  0.000
## dental care                        0.001 0.000            0.001    0.000  0.001
## cereals                            0.001 0.001            0.000    0.000  0.000
## kitchen towels                     0.001 0.001            0.000    0.000  0.000
## curd cheese                        0.000 0.000            0.001    0.000  0.000
## other vegetables                   0.001 0.000            0.000    0.000  0.001
## rolls/buns                         0.000 0.000            0.000    0.000  0.000
## softener                           0.001 0.000            0.001    0.000  0.000
## cleaner                            0.000 0.000            0.000    0.000  0.000
## spices                             0.001 0.000            0.000    0.000  0.001
## jam                                0.000 0.001            0.001    0.000  0.001
## sauces                             0.001 0.001            0.000    0.000  0.000
## rum                                0.000 0.000            0.000    0.000  0.000
## liver loaf                         0.000 0.000            0.000    0.000  0.000
## male cosmetics                     0.000 0.000            0.000    0.000  0.000
## meat spreads                       0.001 0.000            0.000    0.000  0.000
## packaged herbs/vegetables          0.000 0.000            0.000    0.000  0.001
## brandy                             0.000 0.000            0.000    0.000  0.000
## ketchup                            0.000 0.000            0.001    0.000  0.000
## abrasive cleaner                   0.000 0.000            0.000    0.000  0.000
## light bulbs                        0.000 0.000            0.000    0.000  0.000
## artif. sweetener                   0.000 0.000            0.000    0.001  0.000
## nuts/prunes                        0.000 0.000            0.000    0.000  0.000
## specialty fat                      0.000 0.000            0.000    0.000  0.000
## skin care                          0.000 0.001            0.001    0.000  0.000
## fish                               0.000 0.000            0.000    0.000  0.000
## potato products                    0.001 0.000            0.000    0.000  0.000
## root vegetables                    0.000 0.000            0.000    0.000  0.000
## snack products                     0.000 0.000            0.000    0.000  0.000
## nut snack                          0.000 0.000            0.000    0.000  0.000
## soap                               0.000 0.000            0.000    0.000  0.000
## syrup                              0.000 0.000            0.000    0.000  0.000
## bathroom cleaner                   0.000 0.000            0.000    0.000  0.000
## canned fruit                       0.000 0.000            0.001    0.000  0.000
## cookware                           0.000 0.000            0.000    0.000  0.000
## cooking chocolate                  0.000 0.000            0.000    0.000  0.000
## tidbits                            0.000 0.000            0.000    0.000  0.000
## cocoa drinks                       0.000 0.000            0.000    0.000  0.000
## pudding powder                     0.000 0.000            0.000    0.000  0.000
## ready soups                        0.000 0.000            0.000    0.000  0.000
## organic marinated meat             0.000 0.000            0.000    0.000  0.000
## flower soil/fertilizer             0.000 0.000            0.000    0.000  0.000
## organic products                   0.000 0.000            0.000    0.000  0.000
## pot plants                         0.000 0.000            0.000    0.000  0.000
## prosecco                           0.000 0.000            0.000    0.000  0.000
## frankfurter                        0.000 0.000            0.000    0.000  0.000
## decalcifier                        0.000 0.000            0.000    0.000  0.000
## honey                              0.000 0.000            0.000    0.000  0.000
## specialty vegetables               0.000 0.000            0.000    0.000  0.000
## cream                              0.000 0.000            0.000    0.000  0.000
## hair spray                         0.000 0.000            0.000    0.000  0.000
## frozen fruits                      0.000 0.000            0.000    0.000  0.000
## rubbing alcohol                    0.000 0.000            0.000    0.000  0.000
## liqueur                            0.000 0.000            0.000    0.000  0.000
## make up remover                    0.000 0.000            0.000    0.000  0.000
## salad dressing                     0.000 0.000            0.000    0.000  0.000
## frozen chicken                     0.000 0.000            0.000    0.000  0.000
## whisky                             0.000 0.000            0.000    0.000  0.000
## baby cosmetics                     0.000 0.000            0.000    0.000  0.000
## toilet cleaner                     0.000 0.000            0.000    0.000  0.000
## bags                               0.000 0.000            0.000    0.000  0.000
## canned herbs                       0.000 0.000            0.000    0.000  0.000
## kitchen utensil                    0.000 0.000            0.000    0.000  0.000
## preservation products              0.000 0.000            0.000    0.000  0.000
## baby food                          0.000 0.000            0.000    0.000  0.000
## frozen herbss                      0.000 0.000            0.000    0.000  0.000
## organic sausage                    0.000 0.000            0.000    0.000  0.000
## sound storage medium               0.000 0.000            0.000    0.000  0.000
##                           candy specialty chocolate butter milk   oil
## rice                      0.008               0.007       0.011 0.011
## veggies                   0.006               0.005       0.009 0.009
## loaf                      0.006               0.005       0.007 0.004
## coke                      0.008               0.006       0.004 0.004
## yogurt                    0.006               0.004       0.009 0.005
## vegetables                0.004               0.003       0.006 0.007
## mineral water             0.003               0.003       0.003 0.004
## Plastic bags              0.004               0.004       0.004 0.003
## tropical fruit            0.005               0.003       0.005 0.004
## marinated meat            0.003               0.002       0.003 0.004
## pies/pasties              0.003               0.003       0.003 0.003
## newspapers                0.002               0.002       0.002 0.004
## citrus                    0.003               0.002       0.004 0.004
## whipped/sour cream        0.004               0.003       0.004 0.004
## heinken                   0.001               0.002       0.001 0.003
## green tea                 0.002               0.001       0.000 0.001
## pip fruit                 0.002               0.002       0.004 0.003
## brown bread               0.002               0.002       0.004 0.002
## fruit/vegetable juice     0.003               0.002       0.004 0.003
## domestic eggs             0.003               0.002       0.002 0.004
## coffee                    0.003               0.002       0.003 0.004
## margarine                 0.003               0.001       0.002 0.004
## beef                      0.001               0.002       0.002 0.004
## curd                      0.003               0.002       0.004 0.003
## butter                    0.003               0.002       0.002 0.004
## marinated meats           0.002               0.002       0.003 0.002
## napkins                   0.002               0.002       0.002 0.003
## halal meat                0.002               0.001       0.002 0.003
## chocolate                 0.005               0.003       0.002 0.003
## frozen vegetables         0.002               0.002       0.002 0.002
## chicken                   0.002               0.002       0.002 0.003
## white bread               0.003               0.001       0.002 0.002
## cream cheese              0.002               0.001       0.003 0.002
## waffles                   0.003               0.002       0.002 0.002
## dessert                   0.001               0.001       0.003 0.002
## salty snack               0.002               0.002       0.002 0.002
## long life bakery product  0.002               0.002       0.002 0.001
## berries                   0.001               0.001       0.002 0.002
## hamburger meat            0.001               0.001       0.002 0.002
## sugar                     0.002               0.001       0.001 0.002
## hygiene articles          0.001               0.001       0.001 0.003
## UHT-milk                  0.001               0.001       0.002 0.001
## onions                    0.001               0.001       0.002 0.002
## candy                     0.029               0.002       0.001 0.001
## specialty chocolate       0.002               0.029       0.001 0.001
## butter milk               0.001               0.001       0.029 0.001
## oil                       0.001               0.001       0.001 0.029
## frozen meals              0.001               0.001       0.001 0.001
## misc. beverages           0.002               0.002       0.001 0.001
## specialty bar             0.001               0.002       0.001 0.001
## ham                       0.001               0.001       0.002 0.002
## beverages                 0.001               0.001       0.002 0.001
## meat                      0.001               0.001       0.001 0.002
## ice cream                 0.001               0.001       0.001 0.001
## sliced cheese             0.001               0.001       0.003 0.001
## hard cheese               0.002               0.001       0.001 0.001
## noodles                   0.001               0.000       0.001 0.001
## grapes                    0.001               0.001       0.001 0.002
## cat food                  0.001               0.001       0.001 0.001
## chewing gum               0.000               0.001       0.000 0.001
## soda                      0.001               0.000       0.001 0.001
## detergent                 0.000               0.001       0.001 0.002
## red/blush wine            0.001               0.001       0.000 0.000
## white wine                0.000               0.000       0.000 0.001
## turkey                    0.001               0.001       0.001 0.001
## dishes                    0.000               0.000       0.000 0.001
## bottled water             0.001               0.000       0.001 0.001
## flour                     0.001               0.001       0.001 0.002
## semi-finished bread       0.001               0.001       0.001 0.001
## baking powder             0.001               0.001       0.001 0.002
## pickled vegetables        0.001               0.001       0.001 0.002
## herbs                     0.001               0.001       0.001 0.002
## tropical herbs            0.001               0.000       0.001 0.000
## soft cheese               0.000               0.001       0.001 0.001
## tea                       0.000               0.000       0.001 0.001
## processed cheese          0.002               0.001       0.001 0.001
## sausage                   0.000               0.000       0.001 0.000
## pasta                     0.001               0.001       0.001 0.001
## citrus herbs              0.001               0.000       0.001 0.001
## potted plants             0.000               0.001       0.000 0.001
## canned fish               0.001               0.000       0.001 0.001
## seasonal products         0.001               0.001       0.000 0.001
## cake bar                  0.001               0.001       0.000 0.001
## carrots                   0.001               0.000       0.000 0.000
## mustard                   0.000               0.001       0.001 0.002
## packaged fruit/vegetables 0.001               0.000       0.000 0.001
## spread cheese             0.000               0.000       0.001 0.000
## frozen dessert            0.001               0.000       0.000 0.001
## frozen fish               0.001               0.000       0.000 0.001
## cling film/bags           0.001               0.000       0.000 0.001
## salt                      0.000               0.000       0.001 0.001
## liquor                    0.001               0.000       0.000 0.000
## canned vegetables         0.000               0.001       0.000 0.001
## bottled beer              0.000               0.000       0.000 0.000
## flower (seeds)            0.000               0.000       0.000 0.001
## cooking oil               0.000               0.000       0.000 0.000
## dish cleaner              0.001               0.001       0.001 0.001
## condensed milk            0.000               0.000       0.000 0.001
## roll products             0.000               0.001       0.001 0.001
## photo/film                0.000               0.000       0.001 0.000
## pet care                  0.000               0.000       0.000 0.000
## chocolate marshmallow     0.002               0.001       0.000 0.001
## herbs/vegetable juice     0.000               0.000       0.001 0.000
## whole milk                0.000               0.000       0.000 0.001
## candles                   0.000               0.000       0.000 0.001
## mayonnaise                0.001               0.000       0.001 0.001
## Instant food products     0.000               0.000       0.000 0.001
## sweet spreads             0.000               0.000       0.001 0.000
## liquor (appetizer)        0.001               0.000       0.000 0.000
## specialty cheese          0.000               0.000       0.001 0.000
## frozen potato products    0.001               0.000       0.000 0.001
## house keeping products    0.000               0.001       0.000 0.001
## dog food                  0.000               0.001       0.000 0.001
## soy                       0.000               0.000       0.000 0.000
## instant coffee            0.000               0.000       0.000 0.000
## pip herbs                 0.000               0.000       0.001 0.000
## zwieback                  0.000               0.000       0.000 0.000
## finished products         0.001               0.000       0.000 0.000
## popcorn                   0.001               0.000       0.001 0.000
## vinegar                   0.000               0.000       0.000 0.001
## soups                     0.000               0.000       0.000 0.001
## female sanitary products  0.000               0.000       0.000 0.000
## sparkling wine            0.000               0.001       0.000 0.000
## dental care               0.000               0.000       0.000 0.001
## cereals                   0.000               0.001       0.000 0.000
## kitchen towels            0.000               0.001       0.000 0.000
## curd cheese               0.000               0.000       0.001 0.000
## other vegetables          0.000               0.000       0.000 0.000
## rolls/buns                0.000               0.000       0.000 0.000
## softener                  0.000               0.000       0.000 0.000
## cleaner                   0.000               0.000       0.000 0.000
## spices                    0.000               0.000       0.000 0.000
## jam                       0.000               0.000       0.000 0.000
## sauces                    0.000               0.000       0.000 0.000
## rum                       0.000               0.000       0.000 0.000
## liver loaf                0.000               0.000       0.000 0.000
## male cosmetics            0.000               0.000       0.000 0.000
## meat spreads              0.000               0.000       0.000 0.000
## packaged herbs/vegetables 0.000               0.000       0.000 0.000
## brandy                    0.000               0.000       0.000 0.000
## ketchup                   0.000               0.000       0.000 0.001
## abrasive cleaner          0.000               0.000       0.000 0.000
## light bulbs               0.000               0.000       0.000 0.000
## artif. sweetener          0.000               0.000       0.000 0.000
## nuts/prunes               0.000               0.000       0.000 0.000
## specialty fat             0.000               0.000       0.000 0.000
## skin care                 0.000               0.000       0.000 0.000
## fish                      0.000               0.000       0.000 0.000
## potato products           0.000               0.000       0.000 0.000
## root vegetables           0.000               0.000       0.000 0.000
## snack products            0.000               0.000       0.000 0.000
## nut snack                 0.000               0.000       0.000 0.000
## soap                      0.000               0.000       0.000 0.000
## syrup                     0.000               0.000       0.000 0.000
## bathroom cleaner          0.000               0.000       0.000 0.000
## canned fruit              0.000               0.000       0.000 0.000
## cookware                  0.000               0.000       0.000 0.000
## cooking chocolate         0.000               0.000       0.000 0.000
## tidbits                   0.000               0.000       0.000 0.000
## cocoa drinks              0.000               0.000       0.000 0.000
## pudding powder            0.000               0.000       0.000 0.000
## ready soups               0.000               0.000       0.000 0.000
## organic marinated meat    0.000               0.000       0.000 0.000
## flower soil/fertilizer    0.000               0.000       0.000 0.000
## organic products          0.000               0.000       0.000 0.000
## pot plants                0.000               0.000       0.000 0.000
## prosecco                  0.000               0.000       0.000 0.000
## frankfurter               0.000               0.000       0.000 0.000
## decalcifier               0.000               0.000       0.000 0.000
## honey                     0.000               0.000       0.000 0.000
## specialty vegetables      0.000               0.000       0.000 0.000
## cream                     0.000               0.000       0.000 0.000
## hair spray                0.000               0.000       0.000 0.000
## frozen fruits             0.000               0.000       0.000 0.000
## rubbing alcohol           0.000               0.000       0.000 0.000
## liqueur                   0.000               0.000       0.000 0.000
## make up remover           0.000               0.000       0.000 0.000
## salad dressing            0.000               0.000       0.000 0.000
## frozen chicken            0.000               0.000       0.000 0.000
## whisky                    0.000               0.000       0.000 0.000
## baby cosmetics            0.000               0.000       0.000 0.000
## toilet cleaner            0.000               0.000       0.000 0.000
## bags                      0.000               0.000       0.000 0.000
## canned herbs              0.000               0.000       0.000 0.000
## kitchen utensil           0.000               0.000       0.000 0.000
## preservation products     0.000               0.000       0.000 0.000
## baby food                 0.000               0.000       0.000 0.000
## frozen herbss             0.000               0.000       0.000 0.000
## organic sausage           0.000               0.000       0.000 0.000
## sound storage medium      0.000               0.000       0.000 0.000
##                           frozen meals misc. beverages specialty bar   ham
## rice                             0.010           0.007         0.006 0.011
## veggies                          0.007           0.005         0.005 0.008
## loaf                             0.004           0.004         0.005 0.006
## coke                             0.005           0.006         0.006 0.004
## yogurt                           0.006           0.004         0.004 0.007
## vegetables                       0.004           0.003         0.002 0.004
## mineral water                    0.003           0.005         0.002 0.003
## Plastic bags                     0.005           0.004         0.003 0.004
## tropical fruit                   0.005           0.004         0.003 0.005
## marinated meat                   0.003           0.002         0.002 0.004
## pies/pasties                     0.003           0.002         0.004 0.004
## newspapers                       0.002           0.002         0.002 0.002
## citrus                           0.003           0.002         0.002 0.002
## whipped/sour cream               0.003           0.002         0.002 0.005
## heinken                          0.002           0.002         0.001 0.002
## green tea                        0.001           0.002         0.001 0.000
## pip fruit                        0.004           0.002         0.002 0.003
## brown bread                      0.003           0.002         0.001 0.003
## fruit/vegetable juice            0.003           0.003         0.002 0.003
## domestic eggs                    0.003           0.003         0.002 0.004
## coffee                           0.002           0.001         0.002 0.002
## margarine                        0.001           0.002         0.002 0.003
## beef                             0.002           0.001         0.001 0.003
## curd                             0.003           0.002         0.002 0.003
## butter                           0.003           0.003         0.001 0.003
## marinated meats                  0.003           0.001         0.002 0.002
## napkins                          0.002           0.002         0.002 0.002
## halal meat                       0.002           0.001         0.002 0.002
## chocolate                        0.002           0.002         0.003 0.003
## frozen vegetables                0.003           0.002         0.001 0.002
## chicken                          0.002           0.001         0.001 0.002
## white bread                      0.002           0.001         0.002 0.005
## cream cheese                     0.001           0.002         0.002 0.002
## waffles                          0.002           0.001         0.003 0.002
## dessert                          0.002           0.001         0.001 0.003
## salty snack                      0.002           0.001         0.002 0.001
## long life bakery product         0.002           0.001         0.002 0.002
## berries                          0.001           0.001         0.002 0.002
## hamburger meat                   0.002           0.001         0.001 0.001
## sugar                            0.001           0.001         0.001 0.002
## hygiene articles                 0.002           0.002         0.001 0.002
## UHT-milk                         0.001           0.000         0.001 0.001
## onions                           0.001           0.001         0.001 0.002
## candy                            0.001           0.002         0.001 0.001
## specialty chocolate              0.001           0.002         0.002 0.001
## butter milk                      0.001           0.001         0.001 0.002
## oil                              0.001           0.001         0.001 0.002
## frozen meals                     0.029           0.001         0.001 0.002
## misc. beverages                  0.001           0.028         0.001 0.001
## specialty bar                    0.001           0.001         0.028 0.001
## ham                              0.002           0.001         0.001 0.027
## beverages                        0.001           0.001         0.001 0.001
## meat                             0.002           0.001         0.001 0.001
## ice cream                        0.001           0.001         0.001 0.001
## sliced cheese                    0.002           0.001         0.001 0.003
## hard cheese                      0.002           0.002         0.001 0.003
## noodles                          0.000           0.001         0.001 0.001
## grapes                           0.001           0.001         0.001 0.001
## cat food                         0.001           0.001         0.001 0.001
## chewing gum                      0.000           0.001         0.001 0.001
## soda                             0.001           0.001         0.001 0.001
## detergent                        0.001           0.001         0.001 0.001
## red/blush wine                   0.001           0.001         0.000 0.001
## white wine                       0.000           0.001         0.000 0.001
## turkey                           0.001           0.000         0.001 0.001
## dishes                           0.000           0.000         0.001 0.000
## bottled water                    0.001           0.001         0.000 0.000
## flour                            0.000           0.001         0.000 0.000
## semi-finished bread              0.001           0.001         0.001 0.001
## baking powder                    0.001           0.001         0.000 0.001
## pickled vegetables               0.001           0.001         0.001 0.000
## herbs                            0.000           0.001         0.000 0.001
## tropical herbs                   0.001           0.001         0.000 0.001
## soft cheese                      0.001           0.001         0.001 0.002
## tea                              0.000           0.000         0.001 0.001
## processed cheese                 0.000           0.001         0.001 0.003
## sausage                          0.000           0.001         0.001 0.001
## pasta                            0.002           0.001         0.000 0.001
## citrus herbs                     0.000           0.001         0.000 0.001
## potted plants                    0.001           0.001         0.000 0.001
## canned fish                      0.001           0.001         0.000 0.001
## seasonal products                0.001           0.000         0.001 0.001
## cake bar                         0.001           0.001         0.001 0.001
## carrots                          0.000           0.000         0.000 0.000
## mustard                          0.000           0.001         0.001 0.001
## packaged fruit/vegetables        0.000           0.000         0.000 0.000
## spread cheese                    0.000           0.001         0.000 0.001
## frozen dessert                   0.002           0.000         0.000 0.000
## frozen fish                      0.001           0.000         0.000 0.001
## cling film/bags                  0.000           0.000         0.000 0.000
## salt                             0.000           0.000         0.000 0.000
## liquor                           0.000           0.000         0.000 0.000
## canned vegetables                0.000           0.001         0.000 0.001
## bottled beer                     0.000           0.000         0.000 0.000
## flower (seeds)                   0.000           0.000         0.000 0.000
## cooking oil                      0.000           0.000         0.000 0.000
## dish cleaner                     0.000           0.000         0.001 0.000
## condensed milk                   0.000           0.000         0.000 0.000
## roll products                    0.000           0.001         0.000 0.000
## photo/film                       0.000           0.000         0.000 0.000
## pet care                         0.000           0.000         0.000 0.000
## chocolate marshmallow            0.000           0.000         0.000 0.001
## herbs/vegetable juice            0.000           0.000         0.000 0.000
## whole milk                       0.001           0.000         0.000 0.001
## candles                          0.000           0.000         0.000 0.000
## mayonnaise                       0.000           0.000         0.000 0.001
## Instant food products            0.000           0.000         0.000 0.000
## sweet spreads                    0.001           0.000         0.001 0.001
## liquor (appetizer)               0.000           0.000         0.000 0.000
## specialty cheese                 0.000           0.000         0.000 0.000
## frozen potato products           0.001           0.000         0.001 0.001
## house keeping products           0.001           0.000         0.000 0.000
## dog food                         0.001           0.000         0.000 0.000
## soy                              0.000           0.000         0.000 0.000
## instant coffee                   0.001           0.001         0.000 0.000
## pip herbs                        0.001           0.000         0.000 0.001
## zwieback                         0.000           0.000         0.001 0.001
## finished products                0.000           0.000         0.000 0.000
## popcorn                          0.001           0.000         0.000 0.000
## vinegar                          0.000           0.000         0.000 0.000
## soups                            0.000           0.000         0.000 0.000
## female sanitary products         0.000           0.001         0.000 0.001
## sparkling wine                   0.000           0.001         0.000 0.000
## dental care                      0.000           0.000         0.000 0.000
## cereals                          0.001           0.000         0.000 0.000
## kitchen towels                   0.001           0.000         0.000 0.000
## curd cheese                      0.000           0.000         0.000 0.000
## other vegetables                 0.000           0.000         0.000 0.000
## rolls/buns                       0.000           0.000         0.000 0.000
## softener                         0.000           0.000         0.000 0.000
## cleaner                          0.000           0.000         0.000 0.000
## spices                           0.000           0.000         0.000 0.000
## jam                              0.000           0.000         0.000 0.000
## sauces                           0.000           0.000         0.000 0.000
## rum                              0.000           0.000         0.000 0.000
## liver loaf                       0.000           0.000         0.000 0.000
## male cosmetics                   0.000           0.000         0.000 0.000
## meat spreads                     0.000           0.000         0.000 0.000
## packaged herbs/vegetables        0.000           0.000         0.000 0.000
## brandy                           0.000           0.000         0.000 0.000
## ketchup                          0.000           0.000         0.000 0.000
## abrasive cleaner                 0.000           0.000         0.000 0.000
## light bulbs                      0.000           0.000         0.000 0.000
## artif. sweetener                 0.000           0.000         0.000 0.000
## nuts/prunes                      0.000           0.000         0.000 0.000
## specialty fat                    0.000           0.000         0.000 0.000
## skin care                        0.000           0.000         0.000 0.000
## fish                             0.000           0.000         0.000 0.000
## potato products                  0.000           0.000         0.000 0.000
## root vegetables                  0.000           0.000         0.000 0.000
## snack products                   0.000           0.000         0.000 0.000
## nut snack                        0.000           0.000         0.000 0.000
## soap                             0.000           0.000         0.000 0.000
## syrup                            0.000           0.000         0.000 0.000
## bathroom cleaner                 0.000           0.000         0.000 0.000
## canned fruit                     0.000           0.001         0.000 0.000
## cookware                         0.000           0.000         0.000 0.000
## cooking chocolate                0.000           0.000         0.000 0.000
## tidbits                          0.000           0.000         0.000 0.000
## cocoa drinks                     0.000           0.000         0.000 0.000
## pudding powder                   0.000           0.000         0.000 0.000
## ready soups                      0.000           0.000         0.000 0.000
## organic marinated meat           0.000           0.000         0.000 0.000
## flower soil/fertilizer           0.000           0.000         0.000 0.000
## organic products                 0.000           0.000         0.000 0.000
## pot plants                       0.000           0.000         0.000 0.000
## prosecco                         0.000           0.000         0.000 0.000
## frankfurter                      0.000           0.000         0.000 0.000
## decalcifier                      0.000           0.000         0.000 0.000
## honey                            0.000           0.000         0.000 0.000
## specialty vegetables             0.000           0.000         0.000 0.000
## cream                            0.000           0.000         0.000 0.000
## hair spray                       0.000           0.000         0.000 0.000
## frozen fruits                    0.000           0.000         0.000 0.000
## rubbing alcohol                  0.000           0.000         0.000 0.000
## liqueur                          0.000           0.000         0.000 0.000
## make up remover                  0.000           0.000         0.000 0.000
## salad dressing                   0.000           0.000         0.000 0.000
## frozen chicken                   0.000           0.000         0.000 0.000
## whisky                           0.000           0.000         0.000 0.000
## baby cosmetics                   0.000           0.000         0.000 0.000
## toilet cleaner                   0.000           0.000         0.000 0.000
## bags                             0.000           0.000         0.000 0.000
## canned herbs                     0.000           0.000         0.000 0.000
## kitchen utensil                  0.000           0.000         0.000 0.000
## preservation products            0.000           0.000         0.000 0.000
## baby food                        0.000           0.000         0.000 0.000
## frozen herbss                    0.000           0.000         0.000 0.000
## organic sausage                  0.000           0.000         0.000 0.000
## sound storage medium             0.000           0.000         0.000 0.000
##                           beverages  meat ice cream sliced cheese hard cheese
## rice                          0.007 0.010     0.006         0.011       0.010
## veggies                       0.005 0.009     0.004         0.008       0.008
## loaf                          0.005 0.006     0.003         0.007       0.005
## coke                          0.004 0.005     0.005         0.004       0.004
## yogurt                        0.006 0.005     0.004         0.008       0.006
## vegetables                    0.003 0.006     0.003         0.006       0.006
## mineral water                 0.003 0.003     0.002         0.003       0.003
## Plastic bags                  0.003 0.003     0.003         0.004       0.003
## tropical fruit                0.004 0.003     0.004         0.005       0.004
## marinated meat                0.002 0.005     0.002         0.006       0.005
## pies/pasties                  0.003 0.002     0.002         0.003       0.003
## newspapers                    0.003 0.003     0.003         0.003       0.002
## citrus                        0.002 0.003     0.001         0.003       0.003
## whipped/sour cream            0.002 0.004     0.003         0.004       0.005
## heinken                       0.001 0.002     0.002         0.002       0.002
## green tea                     0.000 0.001     0.001         0.001       0.001
## pip fruit                     0.002 0.002     0.002         0.004       0.003
## brown bread                   0.002 0.003     0.002         0.003       0.002
## fruit/vegetable juice         0.002 0.003     0.002         0.004       0.004
## domestic eggs                 0.002 0.003     0.001         0.003       0.004
## coffee                        0.001 0.002     0.002         0.003       0.002
## margarine                     0.001 0.002     0.001         0.003       0.002
## beef                          0.001 0.002     0.002         0.003       0.002
## curd                          0.002 0.002     0.002         0.003       0.002
## butter                        0.001 0.003     0.002         0.004       0.004
## marinated meats               0.001 0.003     0.001         0.002       0.002
## napkins                       0.001 0.002     0.002         0.003       0.003
## halal meat                    0.001 0.002     0.001         0.002       0.002
## chocolate                     0.002 0.001     0.001         0.002       0.002
## frozen vegetables             0.002 0.002     0.002         0.002       0.002
## chicken                       0.002 0.002     0.002         0.001       0.001
## white bread                   0.002 0.002     0.001         0.002       0.002
## cream cheese                  0.002 0.002     0.001         0.002       0.002
## waffles                       0.002 0.001     0.001         0.001       0.002
## dessert                       0.001 0.001     0.001         0.002       0.001
## salty snack                   0.000 0.001     0.002         0.001       0.001
## long life bakery product      0.001 0.002     0.002         0.002       0.002
## berries                       0.001 0.002     0.001         0.002       0.002
## hamburger meat                0.001 0.002     0.001         0.001       0.002
## sugar                         0.001 0.001     0.001         0.001       0.002
## hygiene articles              0.001 0.001     0.001         0.001       0.002
## UHT-milk                      0.001 0.001     0.001         0.001       0.001
## onions                        0.001 0.002     0.001         0.002       0.002
## candy                         0.001 0.001     0.001         0.001       0.002
## specialty chocolate           0.001 0.001     0.001         0.001       0.001
## butter milk                   0.002 0.001     0.001         0.003       0.001
## oil                           0.001 0.002     0.001         0.001       0.001
## frozen meals                  0.001 0.002     0.001         0.002       0.002
## misc. beverages               0.001 0.001     0.001         0.001       0.002
## specialty bar                 0.001 0.001     0.001         0.001       0.001
## ham                           0.001 0.001     0.001         0.003       0.003
## beverages                     0.027 0.001     0.000         0.001       0.002
## meat                          0.001 0.027     0.001         0.002       0.002
## ice cream                     0.000 0.001     0.026         0.001       0.001
## sliced cheese                 0.001 0.002     0.001         0.025       0.002
## hard cheese                   0.002 0.002     0.001         0.002       0.024
## noodles                       0.001 0.001     0.001         0.001       0.001
## grapes                        0.001 0.001     0.002         0.001       0.001
## cat food                      0.000 0.001     0.001         0.001       0.001
## chewing gum                   0.001 0.000     0.001         0.001       0.000
## soda                          0.001 0.001     0.001         0.001       0.001
## detergent                     0.001 0.001     0.001         0.001       0.001
## red/blush wine                0.000 0.000     0.001         0.001       0.000
## white wine                    0.000 0.000     0.000         0.000       0.000
## turkey                        0.001 0.001     0.001         0.000       0.001
## dishes                        0.000 0.001     0.001         0.001       0.000
## bottled water                 0.001 0.001     0.000         0.001       0.001
## flour                         0.001 0.001     0.000         0.000       0.001
## semi-finished bread           0.000 0.001     0.000         0.001       0.001
## baking powder                 0.000 0.001     0.001         0.001       0.001
## pickled vegetables            0.000 0.001     0.001         0.001       0.001
## herbs                         0.000 0.001     0.001         0.001       0.001
## tropical herbs                0.000 0.001     0.001         0.001       0.001
## soft cheese                   0.001 0.001     0.001         0.002       0.002
## tea                           0.001 0.001     0.000         0.001       0.001
## processed cheese              0.001 0.000     0.000         0.001       0.001
## sausage                       0.001 0.001     0.001         0.001       0.001
## pasta                         0.001 0.000     0.000         0.001       0.001
## citrus herbs                  0.001 0.001     0.000         0.000       0.000
## potted plants                 0.001 0.000     0.000         0.001       0.000
## canned fish                   0.000 0.001     0.001         0.001       0.001
## seasonal products             0.000 0.001     0.000         0.000       0.001
## cake bar                      0.001 0.001     0.000         0.000       0.000
## carrots                       0.001 0.001     0.000         0.001       0.001
## mustard                       0.000 0.000     0.000         0.001       0.001
## packaged fruit/vegetables     0.000 0.000     0.000         0.001       0.000
## spread cheese                 0.000 0.000     0.000         0.000       0.001
## frozen dessert                0.000 0.000     0.001         0.001       0.001
## frozen fish                   0.000 0.000     0.000         0.001       0.000
## cling film/bags               0.000 0.000     0.001         0.000       0.001
## salt                          0.000 0.000     0.000         0.001       0.001
## liquor                        0.000 0.000     0.000         0.000       0.000
## canned vegetables             0.000 0.000     0.000         0.001       0.001
## bottled beer                  0.000 0.000     0.000         0.000       0.000
## flower (seeds)                0.001 0.000     0.000         0.000       0.000
## cooking oil                   0.000 0.000     0.000         0.000       0.000
## dish cleaner                  0.000 0.001     0.001         0.000       0.001
## condensed milk                0.000 0.000     0.000         0.000       0.000
## roll products                 0.000 0.001     0.000         0.001       0.000
## photo/film                    0.000 0.000     0.000         0.000       0.000
## pet care                      0.000 0.000     0.000         0.000       0.001
## chocolate marshmallow         0.001 0.000     0.001         0.000       0.000
## herbs/vegetable juice         0.000 0.000     0.001         0.001       0.001
## whole milk                    0.000 0.000     0.000         0.001       0.000
## candles                       0.000 0.000     0.000         0.000       0.001
## mayonnaise                    0.000 0.000     0.000         0.001       0.001
## Instant food products         0.000 0.001     0.001         0.000       0.000
## sweet spreads                 0.001 0.000     0.000         0.001       0.001
## liquor (appetizer)            0.000 0.000     0.000         0.000       0.000
## specialty cheese              0.000 0.000     0.000         0.001       0.001
## frozen potato products        0.000 0.000     0.001         0.000       0.000
## house keeping products        0.000 0.000     0.000         0.001       0.000
## dog food                      0.000 0.000     0.000         0.000       0.001
## soy                           0.000 0.000     0.000         0.001       0.000
## instant coffee                0.000 0.000     0.000         0.000       0.000
## pip herbs                     0.000 0.000     0.000         0.001       0.001
## zwieback                      0.000 0.000     0.000         0.000       0.000
## finished products             0.000 0.000     0.000         0.000       0.000
## popcorn                       0.000 0.000     0.000         0.000       0.001
## vinegar                       0.000 0.000     0.000         0.000       0.000
## soups                         0.000 0.000     0.000         0.000       0.000
## female sanitary products      0.000 0.000     0.000         0.000       0.000
## sparkling wine                0.000 0.000     0.000         0.000       0.001
## dental care                   0.000 0.000     0.000         0.000       0.000
## cereals                       0.000 0.000     0.000         0.000       0.001
## kitchen towels                0.000 0.000     0.000         0.000       0.000
## curd cheese                   0.000 0.000     0.000         0.000       0.000
## other vegetables              0.000 0.000     0.000         0.000       0.000
## rolls/buns                    0.000 0.000     0.000         0.000       0.000
## softener                      0.000 0.000     0.000         0.000       0.000
## cleaner                       0.000 0.000     0.000         0.000       0.000
## spices                        0.000 0.000     0.000         0.000       0.000
## jam                           0.000 0.000     0.000         0.000       0.000
## sauces                        0.000 0.000     0.000         0.000       0.001
## rum                           0.000 0.000     0.000         0.001       0.000
## liver loaf                    0.000 0.000     0.000         0.000       0.000
## male cosmetics                0.000 0.000     0.000         0.000       0.000
## meat spreads                  0.000 0.000     0.000         0.000       0.000
## packaged herbs/vegetables     0.000 0.000     0.000         0.000       0.000
## brandy                        0.000 0.000     0.000         0.000       0.000
## ketchup                       0.000 0.000     0.000         0.000       0.000
## abrasive cleaner              0.000 0.000     0.000         0.000       0.000
## light bulbs                   0.000 0.000     0.000         0.000       0.000
## artif. sweetener              0.000 0.000     0.000         0.000       0.000
## nuts/prunes                   0.000 0.000     0.000         0.000       0.000
## specialty fat                 0.000 0.000     0.000         0.000       0.001
## skin care                     0.000 0.000     0.000         0.000       0.000
## fish                          0.000 0.000     0.000         0.000       0.000
## potato products               0.000 0.000     0.000         0.000       0.000
## root vegetables               0.000 0.000     0.000         0.000       0.000
## snack products                0.000 0.000     0.000         0.000       0.000
## nut snack                     0.000 0.000     0.000         0.000       0.000
## soap                          0.000 0.000     0.000         0.000       0.000
## syrup                         0.000 0.000     0.000         0.000       0.000
## bathroom cleaner              0.000 0.000     0.000         0.000       0.000
## canned fruit                  0.000 0.000     0.000         0.000       0.000
## cookware                      0.000 0.000     0.000         0.000       0.000
## cooking chocolate             0.000 0.000     0.000         0.000       0.000
## tidbits                       0.000 0.000     0.000         0.000       0.000
## cocoa drinks                  0.000 0.000     0.000         0.000       0.000
## pudding powder                0.000 0.000     0.000         0.000       0.000
## ready soups                   0.000 0.000     0.000         0.000       0.000
## organic marinated meat        0.000 0.000     0.000         0.000       0.000
## flower soil/fertilizer        0.000 0.000     0.000         0.000       0.000
## organic products              0.000 0.000     0.000         0.000       0.000
## pot plants                    0.000 0.000     0.000         0.000       0.000
## prosecco                      0.000 0.000     0.000         0.000       0.000
## frankfurter                   0.000 0.000     0.000         0.000       0.000
## decalcifier                   0.000 0.000     0.000         0.000       0.000
## honey                         0.000 0.000     0.000         0.000       0.000
## specialty vegetables          0.000 0.000     0.000         0.000       0.000
## cream                         0.000 0.000     0.000         0.000       0.000
## hair spray                    0.000 0.000     0.000         0.000       0.000
## frozen fruits                 0.000 0.000     0.000         0.000       0.000
## rubbing alcohol               0.000 0.000     0.000         0.000       0.000
## liqueur                       0.000 0.000     0.000         0.000       0.000
## make up remover               0.000 0.000     0.000         0.000       0.000
## salad dressing                0.000 0.000     0.000         0.000       0.000
## frozen chicken                0.000 0.000     0.000         0.000       0.000
## whisky                        0.000 0.000     0.000         0.000       0.000
## baby cosmetics                0.000 0.000     0.000         0.000       0.000
## toilet cleaner                0.000 0.000     0.000         0.000       0.000
## bags                          0.000 0.000     0.000         0.000       0.000
## canned herbs                  0.000 0.000     0.000         0.000       0.000
## kitchen utensil               0.000 0.000     0.000         0.000       0.000
## preservation products         0.000 0.000     0.000         0.000       0.000
## baby food                     0.000 0.000     0.000         0.000       0.000
## frozen herbss                 0.000 0.000     0.000         0.000       0.000
## organic sausage               0.000 0.000     0.000         0.000       0.000
## sound storage medium          0.000 0.000     0.000         0.000       0.000
##                           noodles grapes cat food chewing gum  soda detergent
## rice                        0.008  0.007    0.008       0.005 0.005     0.009
## veggies                     0.000  0.008    0.006       0.004 0.000     0.006
## loaf                        0.000  0.004    0.003       0.003 0.000     0.003
## coke                        0.000  0.004    0.004       0.005 0.000     0.003
## yogurt                      0.003  0.005    0.006       0.002 0.003     0.004
## vegetables                  0.006  0.005    0.004       0.002 0.004     0.004
## mineral water               0.000  0.004    0.004       0.002 0.000     0.002
## Plastic bags                0.002  0.002    0.004       0.003 0.003     0.003
## tropical fruit              0.000  0.005    0.004       0.002 0.000     0.003
## marinated meat              0.000  0.003    0.003       0.002 0.000     0.002
## pies/pasties                0.000  0.003    0.003       0.002 0.001     0.002
## newspapers                  0.003  0.002    0.003       0.002 0.002     0.002
## citrus                      0.000  0.003    0.003       0.002 0.000     0.002
## whipped/sour cream          0.002  0.003    0.003       0.002 0.002     0.002
## heinken                     0.000  0.001    0.002       0.001 0.000     0.001
## green tea                   0.000  0.001    0.001       0.001 0.000     0.001
## pip fruit                   0.000  0.003    0.002       0.002 0.000     0.002
## brown bread                 0.001  0.002    0.002       0.000 0.001     0.001
## fruit/vegetable juice       0.000  0.003    0.002       0.002 0.000     0.001
## domestic eggs               0.002  0.002    0.002       0.001 0.002     0.001
## coffee                      0.002  0.002    0.003       0.001 0.001     0.002
## margarine                   0.002  0.002    0.003       0.001 0.001     0.002
## beef                        0.003  0.003    0.003       0.001 0.001     0.002
## curd                        0.002  0.002    0.002       0.001 0.001     0.002
## butter                      0.002  0.002    0.002       0.001 0.001     0.002
## marinated meats             0.000  0.002    0.001       0.002 0.000     0.002
## napkins                     0.001  0.002    0.003       0.002 0.001     0.002
## halal meat                  0.000  0.002    0.002       0.001 0.000     0.002
## chocolate                   0.001  0.002    0.003       0.001 0.001     0.001
## frozen vegetables           0.001  0.002    0.001       0.001 0.001     0.003
## chicken                     0.001  0.002    0.001       0.001 0.001     0.001
## white bread                 0.000  0.001    0.001       0.001 0.001     0.002
## cream cheese                0.001  0.001    0.002       0.001 0.001     0.001
## waffles                     0.001  0.002    0.002       0.001 0.001     0.001
## dessert                     0.001  0.001    0.002       0.001 0.001     0.001
## salty snack                 0.001  0.002    0.001       0.002 0.001     0.001
## long life bakery product    0.001  0.001    0.001       0.001 0.000     0.001
## berries                     0.001  0.003    0.002       0.000 0.001     0.002
## hamburger meat              0.001  0.001    0.002       0.001 0.001     0.001
## sugar                       0.001  0.001    0.002       0.001 0.001     0.001
## hygiene articles            0.002  0.001    0.002       0.001 0.001     0.001
## UHT-milk                    0.001  0.001    0.001       0.001 0.001     0.001
## onions                      0.001  0.001    0.001       0.001 0.001     0.001
## candy                       0.001  0.001    0.001       0.000 0.001     0.000
## specialty chocolate         0.000  0.001    0.001       0.001 0.000     0.001
## butter milk                 0.001  0.001    0.001       0.000 0.001     0.001
## oil                         0.001  0.002    0.001       0.001 0.001     0.002
## frozen meals                0.000  0.001    0.001       0.000 0.001     0.001
## misc. beverages             0.001  0.001    0.001       0.001 0.001     0.001
## specialty bar               0.001  0.001    0.001       0.001 0.001     0.001
## ham                         0.001  0.001    0.001       0.001 0.001     0.001
## beverages                   0.001  0.001    0.000       0.001 0.001     0.001
## meat                        0.001  0.001    0.001       0.000 0.001     0.001
## ice cream                   0.001  0.002    0.001       0.001 0.001     0.001
## sliced cheese               0.001  0.001    0.001       0.001 0.001     0.001
## hard cheese                 0.001  0.001    0.001       0.000 0.001     0.001
## noodles                     0.023  0.001    0.000       0.000 0.005     0.001
## grapes                      0.001  0.023    0.001       0.001 0.001     0.001
## cat food                    0.000  0.001    0.022       0.001 0.000     0.001
## chewing gum                 0.000  0.001    0.001       0.021 0.001     0.000
## soda                        0.005  0.001    0.000       0.001 0.021     0.000
## detergent                   0.001  0.001    0.001       0.000 0.000     0.020
## red/blush wine              0.001  0.001    0.000       0.000 0.000     0.000
## white wine                  0.000  0.001    0.001       0.000 0.000     0.001
## turkey                      0.002  0.002    0.001       0.000 0.002     0.000
## dishes                      0.000  0.001    0.001       0.001 0.001     0.001
## bottled water               0.004  0.001    0.000       0.000 0.003     0.000
## flour                       0.000  0.001    0.001       0.000 0.000     0.000
## semi-finished bread         0.001  0.001    0.001       0.000 0.000     0.001
## baking powder               0.001  0.001    0.001       0.001 0.000     0.001
## pickled vegetables          0.000  0.001    0.001       0.000 0.000     0.001
## herbs                       0.000  0.000    0.001       0.000 0.000     0.000
## tropical herbs              0.003  0.001    0.000       0.000 0.003     0.000
## soft cheese                 0.000  0.001    0.001       0.000 0.000     0.001
## tea                         0.005  0.001    0.000       0.000 0.002     0.000
## processed cheese            0.000  0.001    0.001       0.000 0.000     0.001
## sausage                     0.004  0.001    0.000       0.000 0.004     0.000
## pasta                       0.000  0.000    0.001       0.000 0.000     0.001
## citrus herbs                0.004  0.001    0.000       0.000 0.002     0.001
## potted plants               0.000  0.001    0.000       0.000 0.000     0.001
## canned fish                 0.000  0.000    0.001       0.000 0.000     0.000
## seasonal products           0.000  0.001    0.000       0.000 0.000     0.001
## cake bar                    0.000  0.000    0.001       0.000 0.001     0.001
## carrots                     0.004  0.001    0.000       0.000 0.002     0.001
## mustard                     0.000  0.001    0.001       0.000 0.000     0.000
## packaged fruit/vegetables   0.000  0.000    0.001       0.000 0.000     0.000
## spread cheese               0.001  0.000    0.000       0.000 0.000     0.000
## frozen dessert              0.000  0.001    0.000       0.000 0.000     0.000
## frozen fish                 0.000  0.000    0.000       0.000 0.000     0.000
## cling film/bags             0.000  0.001    0.000       0.000 0.000     0.000
## salt                        0.000  0.000    0.000       0.000 0.000     0.000
## liquor                      0.000  0.000    0.000       0.000 0.000     0.000
## canned vegetables           0.000  0.000    0.000       0.000 0.000     0.000
## bottled beer                0.002  0.000    0.000       0.000 0.002     0.000
## flower (seeds)              0.000  0.000    0.000       0.000 0.000     0.001
## cooking oil                 0.002  0.000    0.000       0.000 0.002     0.000
## dish cleaner                0.000  0.001    0.001       0.000 0.000     0.001
## condensed milk              0.000  0.000    0.000       0.000 0.000     0.000
## roll products               0.000  0.000    0.001       0.000 0.000     0.001
## photo/film                  0.000  0.000    0.000       0.000 0.000     0.000
## pet care                    0.000  0.000    0.001       0.000 0.000     0.000
## chocolate marshmallow       0.000  0.000    0.000       0.001 0.000     0.000
## herbs/vegetable juice       0.002  0.000    0.000       0.000 0.002     0.000
## whole milk                  0.000  0.000    0.000       0.000 0.001     0.000
## candles                     0.000  0.000    0.000       0.000 0.000     0.001
## mayonnaise                  0.000  0.001    0.000       0.000 0.000     0.000
## Instant food products       0.000  0.000    0.000       0.000 0.000     0.000
## sweet spreads               0.000  0.000    0.000       0.000 0.000     0.000
## liquor (appetizer)          0.000  0.000    0.000       0.000 0.000     0.000
## specialty cheese            0.000  0.000    0.001       0.000 0.000     0.000
## frozen potato products      0.000  0.001    0.000       0.000 0.000     0.000
## house keeping products      0.000  0.000    0.000       0.000 0.000     0.001
## dog food                    0.000  0.001    0.000       0.000 0.000     0.000
## soy                         0.002  0.001    0.000       0.000 0.002     0.000
## instant coffee              0.000  0.000    0.000       0.000 0.000     0.000
## pip herbs                   0.001  0.000    0.000       0.000 0.001     0.000
## zwieback                    0.000  0.000    0.000       0.000 0.000     0.000
## finished products           0.000  0.000    0.000       0.000 0.000     0.000
## popcorn                     0.000  0.000    0.000       0.000 0.000     0.000
## vinegar                     0.000  0.000    0.001       0.000 0.000     0.001
## soups                       0.000  0.000    0.000       0.000 0.000     0.000
## female sanitary products    0.000  0.000    0.001       0.000 0.000     0.000
## sparkling wine              0.000  0.000    0.000       0.000 0.000     0.000
## dental care                 0.000  0.000    0.000       0.000 0.000     0.000
## cereals                     0.000  0.000    0.000       0.000 0.000     0.000
## kitchen towels              0.000  0.000    0.001       0.000 0.000     0.000
## curd cheese                 0.000  0.000    0.001       0.000 0.000     0.000
## other vegetables            0.000  0.000    0.000       0.000 0.001     0.000
## rolls/buns                  0.000  0.000    0.000       0.000 0.001     0.000
## softener                    0.000  0.000    0.000       0.000 0.000     0.001
## cleaner                     0.000  0.000    0.000       0.000 0.000     0.001
## spices                      0.000  0.000    0.000       0.000 0.000     0.000
## jam                         0.000  0.000    0.000       0.000 0.000     0.000
## sauces                      0.000  0.000    0.000       0.000 0.000     0.000
## rum                         0.000  0.000    0.000       0.000 0.000     0.000
## liver loaf                  0.000  0.000    0.000       0.000 0.000     0.000
## male cosmetics              0.000  0.000    0.000       0.000 0.000     0.000
## meat spreads                0.000  0.000    0.000       0.000 0.000     0.000
## packaged herbs/vegetables   0.001  0.000    0.000       0.000 0.001     0.000
## brandy                      0.000  0.000    0.000       0.000 0.000     0.000
## ketchup                     0.000  0.000    0.000       0.000 0.000     0.000
## abrasive cleaner            0.000  0.000    0.000       0.000 0.000     0.000
## light bulbs                 0.000  0.000    0.000       0.000 0.000     0.000
## artif. sweetener            0.000  0.000    0.000       0.000 0.000     0.000
## nuts/prunes                 0.000  0.000    0.000       0.000 0.000     0.000
## specialty fat               0.000  0.000    0.000       0.000 0.000     0.000
## skin care                   0.000  0.000    0.000       0.000 0.000     0.000
## fish                        0.000  0.000    0.000       0.000 0.000     0.000
## potato products             0.000  0.000    0.000       0.000 0.000     0.000
## root vegetables             0.000  0.000    0.000       0.000 0.000     0.000
## snack products              0.000  0.000    0.000       0.000 0.000     0.000
## nut snack                   0.000  0.000    0.000       0.000 0.000     0.000
## soap                        0.000  0.000    0.000       0.000 0.000     0.000
## syrup                       0.000  0.000    0.000       0.000 0.000     0.000
## bathroom cleaner            0.000  0.000    0.000       0.000 0.000     0.000
## canned fruit                0.000  0.000    0.000       0.000 0.000     0.000
## cookware                    0.000  0.000    0.000       0.000 0.000     0.000
## cooking chocolate           0.000  0.000    0.000       0.000 0.000     0.000
## tidbits                     0.000  0.000    0.000       0.000 0.000     0.000
## cocoa drinks                0.000  0.000    0.000       0.000 0.000     0.000
## pudding powder              0.000  0.000    0.000       0.000 0.000     0.000
## ready soups                 0.000  0.000    0.000       0.000 0.000     0.000
## organic marinated meat      0.000  0.000    0.000       0.000 0.000     0.000
## flower soil/fertilizer      0.000  0.000    0.000       0.000 0.000     0.000
## organic products            0.000  0.000    0.000       0.000 0.000     0.000
## pot plants                  0.000  0.000    0.000       0.000 0.000     0.000
## prosecco                    0.000  0.000    0.000       0.000 0.000     0.000
## frankfurter                 0.000  0.000    0.000       0.000 0.000     0.000
## decalcifier                 0.000  0.000    0.000       0.000 0.000     0.000
## honey                       0.000  0.000    0.000       0.000 0.000     0.000
## specialty vegetables        0.000  0.000    0.000       0.000 0.000     0.000
## cream                       0.000  0.000    0.000       0.000 0.000     0.000
## hair spray                  0.000  0.000    0.000       0.000 0.000     0.000
## frozen fruits               0.000  0.000    0.000       0.000 0.000     0.000
## rubbing alcohol             0.000  0.000    0.000       0.000 0.000     0.000
## liqueur                     0.000  0.000    0.000       0.000 0.000     0.000
## make up remover             0.000  0.000    0.000       0.000 0.000     0.000
## salad dressing              0.000  0.000    0.000       0.000 0.000     0.000
## frozen chicken              0.000  0.000    0.000       0.000 0.000     0.000
## whisky                      0.000  0.000    0.000       0.000 0.000     0.000
## baby cosmetics              0.000  0.000    0.000       0.000 0.000     0.000
## toilet cleaner              0.000  0.000    0.000       0.000 0.000     0.000
## bags                        0.000  0.000    0.000       0.000 0.000     0.000
## canned herbs                0.000  0.000    0.000       0.000 0.000     0.000
## kitchen utensil             0.000  0.000    0.000       0.000 0.000     0.000
## preservation products       0.000  0.000    0.000       0.000 0.000     0.000
## baby food                   0.000  0.000    0.000       0.000 0.000     0.000
## frozen herbss               0.000  0.000    0.000       0.000 0.000     0.000
## organic sausage             0.000  0.000    0.000       0.000 0.000     0.000
## sound storage medium        0.000  0.000    0.000       0.000 0.000     0.000
##                           red/blush wine white wine turkey dishes bottled water
## rice                               0.005      0.003  0.007  0.006         0.004
## veggies                            0.004      0.002  0.003  0.005         0.000
## loaf                               0.003      0.002  0.002  0.003         0.000
## coke                               0.004      0.003  0.001  0.002         0.000
## yogurt                             0.002      0.002  0.004  0.004         0.004
## vegetables                         0.003      0.002  0.005  0.003         0.004
## mineral water                      0.003      0.003  0.001  0.002         0.000
## Plastic bags                       0.003      0.003  0.002  0.002         0.001
## tropical fruit                     0.002      0.001  0.002  0.002         0.000
## marinated meat                     0.002      0.002  0.001  0.001         0.000
## pies/pasties                       0.002      0.001  0.002  0.002         0.000
## newspapers                         0.002      0.002  0.001  0.001         0.002
## citrus                             0.002      0.001  0.002  0.002         0.000
## whipped/sour cream                 0.001      0.001  0.003  0.002         0.002
## heinken                            0.004      0.002  0.001  0.001         0.000
## green tea                          0.002      0.002  0.000  0.000         0.000
## pip fruit                          0.001      0.001  0.001  0.001         0.000
## brown bread                        0.002      0.001  0.002  0.001         0.001
## fruit/vegetable juice              0.002      0.001  0.001  0.001         0.000
## domestic eggs                      0.001      0.001  0.002  0.002         0.001
## coffee                             0.002      0.001  0.001  0.002         0.001
## margarine                          0.001      0.001  0.002  0.001         0.001
## beef                               0.001      0.001  0.003  0.002         0.001
## curd                               0.000      0.000  0.002  0.001         0.002
## butter                             0.001      0.001  0.002  0.002         0.002
## marinated meats                    0.001      0.001  0.001  0.001         0.000
## napkins                            0.001      0.001  0.001  0.002         0.001
## halal meat                         0.001      0.001  0.000  0.002         0.000
## chocolate                          0.001      0.001  0.001  0.001         0.001
## frozen vegetables                  0.001      0.001  0.002  0.001         0.001
## chicken                            0.002      0.001  0.002  0.001         0.001
## white bread                        0.001      0.001  0.001  0.000         0.001
## cream cheese                       0.000      0.000  0.001  0.002         0.001
## waffles                            0.001      0.000  0.001  0.001         0.001
## dessert                            0.001      0.001  0.001  0.001         0.001
## salty snack                        0.001      0.001  0.001  0.001         0.001
## long life bakery product           0.001      0.001  0.001  0.000         0.001
## berries                            0.001      0.001  0.001  0.001         0.001
## hamburger meat                     0.001      0.001  0.001  0.001         0.001
## sugar                              0.000      0.001  0.001  0.001         0.001
## hygiene articles                   0.001      0.001  0.001  0.000         0.001
## UHT-milk                           0.001      0.000  0.001  0.001         0.001
## onions                             0.001      0.001  0.001  0.001         0.001
## candy                              0.001      0.000  0.001  0.000         0.001
## specialty chocolate                0.001      0.000  0.001  0.000         0.000
## butter milk                        0.000      0.000  0.001  0.000         0.001
## oil                                0.000      0.001  0.001  0.001         0.001
## frozen meals                       0.001      0.000  0.001  0.000         0.001
## misc. beverages                    0.001      0.001  0.000  0.000         0.001
## specialty bar                      0.000      0.000  0.001  0.001         0.000
## ham                                0.001      0.001  0.001  0.000         0.000
## beverages                          0.000      0.000  0.001  0.000         0.001
## meat                               0.000      0.000  0.001  0.001         0.001
## ice cream                          0.001      0.000  0.001  0.001         0.000
## sliced cheese                      0.001      0.000  0.000  0.001         0.001
## hard cheese                        0.000      0.000  0.001  0.000         0.001
## noodles                            0.001      0.000  0.002  0.000         0.004
## grapes                             0.001      0.001  0.002  0.001         0.001
## cat food                           0.000      0.001  0.001  0.001         0.000
## chewing gum                        0.000      0.000  0.000  0.001         0.000
## soda                               0.000      0.000  0.002  0.001         0.003
## detergent                          0.000      0.001  0.000  0.001         0.000
## red/blush wine                     0.019      0.001  0.000  0.000         0.001
## white wine                         0.001      0.019  0.000  0.000         0.000
## turkey                             0.000      0.000  0.018  0.001         0.002
## dishes                             0.000      0.000  0.001  0.018         0.000
## bottled water                      0.001      0.000  0.002  0.000         0.018
## flour                              0.000      0.000  0.001  0.001         0.000
## semi-finished bread                0.000      0.000  0.001  0.000         0.000
## baking powder                      0.000      0.000  0.001  0.000         0.000
## pickled vegetables                 0.000      0.000  0.001  0.000         0.000
## herbs                              0.000      0.000  0.001  0.000         0.001
## tropical herbs                     0.000      0.000  0.001  0.000         0.003
## soft cheese                        0.000      0.000  0.000  0.000         0.000
## tea                                0.000      0.000  0.001  0.000         0.001
## processed cheese                   0.001      0.000  0.001  0.000         0.000
## sausage                            0.000      0.000  0.001  0.001         0.002
## pasta                              0.000      0.000  0.000  0.001         0.000
## citrus herbs                       0.000      0.000  0.002  0.000         0.002
## potted plants                      0.000      0.000  0.000  0.000         0.000
## canned fish                        0.000      0.000  0.000  0.000         0.000
## seasonal products                  0.000      0.000  0.000  0.000         0.000
## cake bar                           0.000      0.000  0.000  0.000         0.000
## carrots                            0.000      0.000  0.002  0.000         0.002
## mustard                            0.000      0.000  0.000  0.000         0.000
## packaged fruit/vegetables          0.000      0.000  0.000  0.000         0.000
## spread cheese                      0.000      0.001  0.000  0.000         0.000
## frozen dessert                     0.000      0.000  0.000  0.000         0.000
## frozen fish                        0.000      0.000  0.000  0.000         0.000
## cling film/bags                    0.000      0.000  0.000  0.000         0.000
## salt                               0.000      0.000  0.000  0.000         0.001
## liquor                             0.002      0.000  0.000  0.001         0.000
## canned vegetables                  0.000      0.000  0.000  0.000         0.000
## bottled beer                       0.000      0.000  0.001  0.000         0.002
## flower (seeds)                     0.000      0.000  0.000  0.000         0.000
## cooking oil                        0.000      0.000  0.001  0.000         0.001
## dish cleaner                       0.000      0.000  0.000  0.001         0.000
## condensed milk                     0.000      0.000  0.000  0.000         0.000
## roll products                      0.000      0.000  0.000  0.000         0.000
## photo/film                         0.000      0.000  0.000  0.000         0.000
## pet care                           0.000      0.000  0.000  0.000         0.000
## chocolate marshmallow              0.000      0.000  0.000  0.000         0.000
## herbs/vegetable juice              0.000      0.000  0.001  0.000         0.002
## whole milk                         0.000      0.000  0.001  0.000         0.001
## candles                            0.000      0.000  0.000  0.000         0.000
## mayonnaise                         0.000      0.000  0.000  0.000         0.000
## Instant food products              0.000      0.000  0.000  0.000         0.000
## sweet spreads                      0.000      0.000  0.000  0.000         0.000
## liquor (appetizer)                 0.000      0.000  0.000  0.001         0.000
## specialty cheese                   0.000      0.000  0.000  0.000         0.000
## frozen potato products             0.000      0.000  0.001  0.000         0.000
## house keeping products             0.000      0.000  0.000  0.000         0.000
## dog food                           0.000      0.000  0.000  0.000         0.000
## soy                                0.000      0.000  0.001  0.000         0.001
## instant coffee                     0.000      0.000  0.000  0.000         0.000
## pip herbs                          0.000      0.000  0.001  0.000         0.001
## zwieback                           0.000      0.000  0.000  0.001         0.000
## finished products                  0.000      0.000  0.000  0.000         0.000
## popcorn                            0.000      0.000  0.000  0.000         0.000
## vinegar                            0.000      0.000  0.000  0.000         0.000
## soups                              0.000      0.000  0.000  0.000         0.000
## female sanitary products           0.000      0.000  0.000  0.000         0.000
## sparkling wine                     0.000      0.000  0.000  0.000         0.000
## dental care                        0.000      0.000  0.000  0.000         0.000
## cereals                            0.000      0.000  0.000  0.000         0.000
## kitchen towels                     0.000      0.000  0.000  0.000         0.000
## curd cheese                        0.000      0.000  0.000  0.000         0.000
## other vegetables                   0.000      0.000  0.000  0.000         0.001
## rolls/buns                         0.000      0.000  0.000  0.000         0.001
## softener                           0.000      0.000  0.000  0.000         0.000
## cleaner                            0.000      0.000  0.000  0.000         0.000
## spices                             0.000      0.000  0.000  0.000         0.000
## jam                                0.000      0.000  0.000  0.000         0.000
## sauces                             0.000      0.000  0.000  0.000         0.000
## rum                                0.000      0.000  0.000  0.000         0.000
## liver loaf                         0.000      0.000  0.000  0.000         0.000
## male cosmetics                     0.000      0.000  0.000  0.000         0.000
## meat spreads                       0.000      0.000  0.000  0.000         0.000
## packaged herbs/vegetables          0.000      0.000  0.000  0.000         0.001
## brandy                             0.000      0.000  0.000  0.000         0.000
## ketchup                            0.000      0.000  0.000  0.000         0.000
## abrasive cleaner                   0.000      0.000  0.000  0.000         0.000
## light bulbs                        0.000      0.000  0.000  0.000         0.000
## artif. sweetener                   0.000      0.000  0.000  0.000         0.000
## nuts/prunes                        0.000      0.000  0.000  0.000         0.000
## specialty fat                      0.000      0.000  0.000  0.000         0.000
## skin care                          0.000      0.000  0.000  0.000         0.000
## fish                               0.000      0.000  0.000  0.000         0.000
## potato products                    0.000      0.000  0.000  0.000         0.000
## root vegetables                    0.000      0.000  0.000  0.000         0.000
## snack products                     0.000      0.000  0.000  0.000         0.000
## nut snack                          0.000      0.000  0.000  0.000         0.000
## soap                               0.000      0.000  0.000  0.000         0.000
## syrup                              0.000      0.000  0.000  0.000         0.000
## bathroom cleaner                   0.000      0.000  0.000  0.000         0.000
## canned fruit                       0.000      0.000  0.000  0.000         0.000
## cookware                           0.000      0.000  0.000  0.000         0.000
## cooking chocolate                  0.000      0.000  0.000  0.000         0.000
## tidbits                            0.000      0.000  0.000  0.000         0.000
## cocoa drinks                       0.000      0.000  0.000  0.000         0.000
## pudding powder                     0.000      0.000  0.000  0.000         0.000
## ready soups                        0.000      0.000  0.000  0.000         0.000
## organic marinated meat             0.000      0.000  0.000  0.000         0.000
## flower soil/fertilizer             0.000      0.000  0.000  0.000         0.000
## organic products                   0.000      0.000  0.000  0.000         0.000
## pot plants                         0.000      0.000  0.000  0.000         0.000
## prosecco                           0.000      0.000  0.000  0.000         0.000
## frankfurter                        0.000      0.000  0.000  0.000         0.000
## decalcifier                        0.000      0.000  0.000  0.000         0.000
## honey                              0.000      0.000  0.000  0.000         0.000
## specialty vegetables               0.000      0.000  0.000  0.000         0.000
## cream                              0.000      0.000  0.000  0.000         0.000
## hair spray                         0.000      0.000  0.000  0.000         0.000
## frozen fruits                      0.000      0.000  0.000  0.000         0.000
## rubbing alcohol                    0.000      0.000  0.000  0.000         0.000
## liqueur                            0.000      0.000  0.000  0.000         0.000
## make up remover                    0.000      0.000  0.000  0.000         0.000
## salad dressing                     0.000      0.000  0.000  0.000         0.000
## frozen chicken                     0.000      0.000  0.000  0.000         0.000
## whisky                             0.000      0.000  0.000  0.000         0.000
## baby cosmetics                     0.000      0.000  0.000  0.000         0.000
## toilet cleaner                     0.000      0.000  0.000  0.000         0.000
## bags                               0.000      0.000  0.000  0.000         0.000
## canned herbs                       0.000      0.000  0.000  0.000         0.000
## kitchen utensil                    0.000      0.000  0.000  0.000         0.000
## preservation products              0.000      0.000  0.000  0.000         0.000
## baby food                          0.000      0.000  0.000  0.000         0.000
## frozen herbss                      0.000      0.000  0.000  0.000         0.000
## organic sausage                    0.000      0.000  0.000  0.000         0.000
## sound storage medium               0.000      0.000  0.000  0.000         0.000
##                           flour semi-finished bread baking powder
## rice                      0.009               0.007         0.009
## veggies                   0.006               0.005         0.006
## loaf                      0.003               0.003         0.003
## coke                      0.002               0.004         0.002
## yogurt                    0.005               0.003         0.004
## vegetables                0.005               0.002         0.004
## mineral water             0.002               0.002         0.002
## Plastic bags              0.002               0.003         0.002
## tropical fruit            0.003               0.004         0.003
## marinated meat            0.002               0.002         0.002
## pies/pasties              0.002               0.003         0.001
## newspapers                0.002               0.003         0.002
## citrus                    0.003               0.002         0.003
## whipped/sour cream        0.004               0.002         0.005
## heinken                   0.001               0.001         0.001
## green tea                 0.001               0.001         0.001
## pip fruit                 0.002               0.002         0.002
## brown bread               0.001               0.002         0.001
## fruit/vegetable juice     0.002               0.002         0.002
## domestic eggs             0.003               0.002         0.003
## coffee                    0.002               0.001         0.001
## margarine                 0.004               0.002         0.003
## beef                      0.003               0.002         0.002
## curd                      0.004               0.002         0.002
## butter                    0.002               0.001         0.003
## marinated meats           0.002               0.002         0.001
## napkins                   0.002               0.001         0.002
## halal meat                0.002               0.002         0.002
## chocolate                 0.002               0.001         0.002
## frozen vegetables         0.001               0.002         0.002
## chicken                   0.002               0.001         0.001
## white bread               0.001               0.001         0.002
## cream cheese              0.001               0.001         0.002
## waffles                   0.001               0.001         0.001
## dessert                   0.001               0.001         0.001
## salty snack               0.002               0.001         0.001
## long life bakery product  0.001               0.001         0.002
## berries                   0.001               0.001         0.001
## hamburger meat            0.001               0.001         0.001
## sugar                     0.005               0.001         0.003
## hygiene articles          0.002               0.001         0.001
## UHT-milk                  0.001               0.001         0.001
## onions                    0.001               0.001         0.001
## candy                     0.001               0.001         0.001
## specialty chocolate       0.001               0.001         0.001
## butter milk               0.001               0.001         0.001
## oil                       0.002               0.001         0.002
## frozen meals              0.000               0.001         0.001
## misc. beverages           0.001               0.001         0.001
## specialty bar             0.000               0.001         0.000
## ham                       0.000               0.001         0.001
## beverages                 0.001               0.000         0.000
## meat                      0.001               0.001         0.001
## ice cream                 0.000               0.000         0.001
## sliced cheese             0.000               0.001         0.001
## hard cheese               0.001               0.001         0.001
## noodles                   0.000               0.001         0.001
## grapes                    0.001               0.001         0.001
## cat food                  0.001               0.001         0.001
## chewing gum               0.000               0.000         0.001
## soda                      0.000               0.000         0.000
## detergent                 0.000               0.001         0.001
## red/blush wine            0.000               0.000         0.000
## white wine                0.000               0.000         0.000
## turkey                    0.001               0.001         0.001
## dishes                    0.001               0.000         0.000
## bottled water             0.000               0.000         0.000
## flour                     0.018               0.001         0.002
## semi-finished bread       0.001               0.017         0.001
## baking powder             0.002               0.001         0.017
## pickled vegetables        0.001               0.001         0.001
## herbs                     0.001               0.000         0.001
## tropical herbs            0.001               0.001         0.001
## soft cheese               0.000               0.001         0.001
## tea                       0.000               0.000         0.001
## processed cheese          0.000               0.001         0.000
## sausage                   0.000               0.000         0.000
## pasta                     0.001               0.000         0.001
## citrus herbs              0.001               0.000         0.001
## potted plants             0.000               0.001         0.000
## canned fish               0.001               0.000         0.000
## seasonal products         0.000               0.001         0.001
## cake bar                  0.000               0.001         0.000
## carrots                   0.001               0.000         0.000
## mustard                   0.001               0.000         0.000
## packaged fruit/vegetables 0.000               0.000         0.000
## spread cheese             0.000               0.000         0.000
## frozen dessert            0.001               0.001         0.001
## frozen fish               0.001               0.000         0.001
## cling film/bags           0.000               0.000         0.001
## salt                      0.001               0.000         0.000
## liquor                    0.000               0.000         0.000
## canned vegetables         0.000               0.000         0.000
## bottled beer              0.000               0.000         0.000
## flower (seeds)            0.000               0.000         0.001
## cooking oil               0.000               0.000         0.000
## dish cleaner              0.000               0.000         0.000
## condensed milk            0.000               0.000         0.000
## roll products             0.001               0.000         0.000
## photo/film                0.000               0.000         0.000
## pet care                  0.000               0.000         0.000
## chocolate marshmallow     0.001               0.001         0.000
## herbs/vegetable juice     0.000               0.000         0.000
## whole milk                0.000               0.000         0.000
## candles                   0.000               0.000         0.000
## mayonnaise                0.000               0.000         0.000
## Instant food products     0.000               0.000         0.000
## sweet spreads             0.000               0.000         0.000
## liquor (appetizer)        0.000               0.000         0.000
## specialty cheese          0.000               0.000         0.000
## frozen potato products    0.000               0.000         0.000
## house keeping products    0.000               0.000         0.001
## dog food                  0.000               0.000         0.001
## soy                       0.000               0.000         0.000
## instant coffee            0.000               0.000         0.000
## pip herbs                 0.000               0.000         0.000
## zwieback                  0.000               0.001         0.000
## finished products         0.000               0.000         0.000
## popcorn                   0.000               0.000         0.000
## vinegar                   0.000               0.001         0.001
## soups                     0.000               0.000         0.000
## female sanitary products  0.000               0.000         0.000
## sparkling wine            0.000               0.000         0.000
## dental care               0.000               0.000         0.000
## cereals                   0.000               0.000         0.000
## kitchen towels            0.000               0.000         0.000
## curd cheese               0.000               0.000         0.000
## other vegetables          0.000               0.000         0.000
## rolls/buns                0.000               0.000         0.000
## softener                  0.000               0.000         0.000
## cleaner                   0.000               0.000         0.000
## spices                    0.000               0.000         0.000
## jam                       0.000               0.000         0.000
## sauces                    0.000               0.000         0.000
## rum                       0.000               0.000         0.000
## liver loaf                0.000               0.000         0.000
## male cosmetics            0.000               0.000         0.000
## meat spreads              0.000               0.000         0.000
## packaged herbs/vegetables 0.000               0.000         0.000
## brandy                    0.000               0.000         0.000
## ketchup                   0.000               0.000         0.000
## abrasive cleaner          0.000               0.000         0.000
## light bulbs               0.000               0.000         0.000
## artif. sweetener          0.001               0.000         0.000
## nuts/prunes               0.000               0.000         0.000
## specialty fat             0.000               0.000         0.000
## skin care                 0.000               0.000         0.000
## fish                      0.000               0.000         0.000
## potato products           0.000               0.000         0.000
## root vegetables           0.000               0.000         0.000
## snack products            0.000               0.000         0.000
## nut snack                 0.000               0.000         0.000
## soap                      0.000               0.000         0.000
## syrup                     0.000               0.000         0.000
## bathroom cleaner          0.000               0.000         0.000
## canned fruit              0.000               0.000         0.000
## cookware                  0.000               0.000         0.000
## cooking chocolate         0.000               0.000         0.001
## tidbits                   0.000               0.000         0.000
## cocoa drinks              0.000               0.000         0.000
## pudding powder            0.000               0.000         0.000
## ready soups               0.000               0.001         0.000
## organic marinated meat    0.000               0.000         0.000
## flower soil/fertilizer    0.000               0.000         0.000
## organic products          0.000               0.000         0.000
## pot plants                0.000               0.000         0.000
## prosecco                  0.000               0.000         0.000
## frankfurter               0.000               0.000         0.000
## decalcifier               0.000               0.000         0.000
## honey                     0.000               0.000         0.000
## specialty vegetables      0.000               0.000         0.000
## cream                     0.000               0.000         0.000
## hair spray                0.000               0.000         0.000
## frozen fruits             0.000               0.000         0.000
## rubbing alcohol           0.000               0.000         0.000
## liqueur                   0.000               0.000         0.000
## make up remover           0.000               0.000         0.000
## salad dressing            0.000               0.000         0.000
## frozen chicken            0.000               0.000         0.000
## whisky                    0.000               0.000         0.000
## baby cosmetics            0.000               0.000         0.000
## toilet cleaner            0.000               0.000         0.000
## bags                      0.000               0.000         0.000
## canned herbs              0.000               0.000         0.000
## kitchen utensil           0.000               0.000         0.000
## preservation products     0.000               0.000         0.000
## baby food                 0.000               0.000         0.000
## frozen herbss             0.000               0.000         0.000
## organic sausage           0.000               0.000         0.000
## sound storage medium      0.000               0.000         0.000
##                           pickled vegetables herbs tropical herbs soft cheese
## rice                                   0.007 0.008          0.005       0.007
## veggies                                0.006 0.007          0.000       0.006
## loaf                                   0.004 0.003          0.000       0.005
## coke                                   0.004 0.002          0.000       0.002
## yogurt                                 0.004 0.004          0.004       0.006
## vegetables                             0.004 0.007          0.004       0.004
## mineral water                          0.003 0.003          0.000       0.002
## Plastic bags                           0.002 0.002          0.002       0.003
## tropical fruit                         0.003 0.002          0.000       0.003
## marinated meat                         0.003 0.001          0.000       0.003
## pies/pasties                           0.002 0.001          0.001       0.002
## newspapers                             0.002 0.001          0.001       0.001
## citrus                                 0.003 0.003          0.000       0.002
## whipped/sour cream                     0.002 0.003          0.002       0.003
## heinken                                0.002 0.002          0.000       0.001
## green tea                              0.001 0.000          0.000       0.001
## pip fruit                              0.002 0.002          0.000       0.003
## brown bread                            0.002 0.001          0.001       0.002
## fruit/vegetable juice                  0.002 0.001          0.000       0.002
## domestic eggs                          0.002 0.002          0.002       0.003
## coffee                                 0.002 0.001          0.001       0.002
## margarine                              0.002 0.002          0.001       0.002
## beef                                   0.002 0.003          0.002       0.002
## curd                                   0.001 0.002          0.002       0.002
## butter                                 0.002 0.002          0.002       0.003
## marinated meats                        0.002 0.001          0.000       0.002
## napkins                                0.001 0.001          0.001       0.001
## halal meat                             0.002 0.002          0.000       0.001
## chocolate                              0.001 0.000          0.001       0.002
## frozen vegetables                      0.002 0.003          0.001       0.002
## chicken                                0.002 0.002          0.001       0.002
## white bread                            0.001 0.000          0.001       0.002
## cream cheese                           0.001 0.001          0.001       0.002
## waffles                                0.001 0.001          0.001       0.001
## dessert                                0.002 0.001          0.001       0.002
## salty snack                            0.001 0.001          0.001       0.000
## long life bakery product               0.001 0.001          0.001       0.002
## berries                                0.001 0.001          0.001       0.001
## hamburger meat                         0.001 0.002          0.001       0.001
## sugar                                  0.001 0.000          0.001       0.001
## hygiene articles                       0.001 0.001          0.001       0.001
## UHT-milk                               0.001 0.001          0.000       0.000
## onions                                 0.001 0.002          0.001       0.002
## candy                                  0.001 0.001          0.001       0.000
## specialty chocolate                    0.001 0.001          0.000       0.001
## butter milk                            0.001 0.001          0.001       0.001
## oil                                    0.002 0.002          0.000       0.001
## frozen meals                           0.001 0.000          0.001       0.001
## misc. beverages                        0.001 0.001          0.001       0.001
## specialty bar                          0.001 0.000          0.000       0.001
## ham                                    0.000 0.001          0.001       0.002
## beverages                              0.000 0.000          0.000       0.001
## meat                                   0.001 0.001          0.001       0.001
## ice cream                              0.001 0.001          0.001       0.001
## sliced cheese                          0.001 0.001          0.001       0.002
## hard cheese                            0.001 0.001          0.001       0.002
## noodles                                0.000 0.000          0.003       0.000
## grapes                                 0.001 0.000          0.001       0.001
## cat food                               0.001 0.001          0.000       0.001
## chewing gum                            0.000 0.000          0.000       0.000
## soda                                   0.000 0.000          0.003       0.000
## detergent                              0.001 0.000          0.000       0.001
## red/blush wine                         0.000 0.000          0.000       0.000
## white wine                             0.000 0.000          0.000       0.000
## turkey                                 0.001 0.001          0.001       0.000
## dishes                                 0.000 0.000          0.000       0.000
## bottled water                          0.000 0.001          0.003       0.000
## flour                                  0.001 0.001          0.001       0.000
## semi-finished bread                    0.001 0.000          0.001       0.001
## baking powder                          0.001 0.001          0.001       0.001
## pickled vegetables                     0.017 0.000          0.000       0.001
## herbs                                  0.000 0.017          0.001       0.000
## tropical herbs                         0.000 0.001          0.017       0.000
## soft cheese                            0.001 0.000          0.000       0.016
## tea                                    0.001 0.000          0.002       0.000
## processed cheese                       0.001 0.001          0.001       0.001
## sausage                                0.000 0.000          0.002       0.000
## pasta                                  0.001 0.000          0.000       0.001
## citrus herbs                           0.000 0.000          0.003       0.000
## potted plants                          0.000 0.001          0.000       0.000
## canned fish                            0.001 0.001          0.000       0.001
## seasonal products                      0.001 0.000          0.000       0.000
## cake bar                               0.000 0.000          0.000       0.000
## carrots                                0.000 0.001          0.003       0.000
## mustard                                0.001 0.000          0.000       0.001
## packaged fruit/vegetables              0.000 0.001          0.000       0.000
## spread cheese                          0.000 0.000          0.000       0.000
## frozen dessert                         0.000 0.000          0.000       0.000
## frozen fish                            0.001 0.000          0.000       0.001
## cling film/bags                        0.000 0.000          0.000       0.000
## salt                                   0.000 0.000          0.000       0.001
## liquor                                 0.001 0.000          0.000       0.000
## canned vegetables                      0.000 0.000          0.000       0.000
## bottled beer                           0.000 0.000          0.001       0.000
## flower (seeds)                         0.000 0.000          0.000       0.000
## cooking oil                            0.000 0.000          0.001       0.000
## dish cleaner                           0.000 0.001          0.000       0.001
## condensed milk                         0.000 0.000          0.000       0.000
## roll products                          0.000 0.001          0.000       0.001
## photo/film                             0.000 0.000          0.000       0.000
## pet care                               0.000 0.000          0.000       0.000
## chocolate marshmallow                  0.000 0.000          0.000       0.000
## herbs/vegetable juice                  0.000 0.000          0.002       0.000
## whole milk                             0.000 0.000          0.001       0.000
## candles                                0.000 0.000          0.000       0.001
## mayonnaise                             0.001 0.000          0.000       0.000
## Instant food products                  0.000 0.000          0.000       0.000
## sweet spreads                          0.000 0.000          0.000       0.000
## liquor (appetizer)                     0.000 0.000          0.000       0.000
## specialty cheese                       0.000 0.000          0.000       0.000
## frozen potato products                 0.000 0.000          0.000       0.000
## house keeping products                 0.000 0.000          0.000       0.000
## dog food                               0.000 0.000          0.000       0.000
## soy                                    0.000 0.000          0.001       0.000
## instant coffee                         0.000 0.000          0.000       0.000
## pip herbs                              0.000 0.000          0.002       0.000
## zwieback                               0.000 0.000          0.000       0.000
## finished products                      0.000 0.000          0.000       0.000
## popcorn                                0.000 0.000          0.000       0.000
## vinegar                                0.000 0.000          0.000       0.000
## soups                                  0.000 0.000          0.000       0.000
## female sanitary products               0.000 0.000          0.000       0.000
## sparkling wine                         0.000 0.000          0.000       0.000
## dental care                            0.000 0.000          0.000       0.000
## cereals                                0.000 0.000          0.000       0.000
## kitchen towels                         0.000 0.000          0.000       0.000
## curd cheese                            0.000 0.000          0.000       0.001
## other vegetables                       0.000 0.000          0.001       0.000
## rolls/buns                             0.000 0.000          0.001       0.000
## softener                               0.000 0.000          0.000       0.000
## cleaner                                0.000 0.000          0.000       0.000
## spices                                 0.000 0.000          0.000       0.000
## jam                                    0.000 0.000          0.000       0.000
## sauces                                 0.000 0.000          0.000       0.000
## rum                                    0.000 0.000          0.000       0.000
## liver loaf                             0.000 0.000          0.000       0.000
## male cosmetics                         0.000 0.000          0.000       0.000
## meat spreads                           0.000 0.000          0.000       0.000
## packaged herbs/vegetables              0.000 0.000          0.001       0.000
## brandy                                 0.000 0.000          0.000       0.000
## ketchup                                0.000 0.000          0.000       0.000
## abrasive cleaner                       0.000 0.000          0.000       0.000
## light bulbs                            0.000 0.000          0.000       0.000
## artif. sweetener                       0.000 0.000          0.000       0.000
## nuts/prunes                            0.000 0.000          0.000       0.000
## specialty fat                          0.000 0.000          0.000       0.000
## skin care                              0.000 0.000          0.000       0.000
## fish                                   0.000 0.000          0.000       0.000
## potato products                        0.000 0.000          0.000       0.000
## root vegetables                        0.000 0.000          0.000       0.000
## snack products                         0.000 0.000          0.000       0.000
## nut snack                              0.000 0.000          0.000       0.000
## soap                                   0.000 0.000          0.000       0.000
## syrup                                  0.000 0.000          0.000       0.000
## bathroom cleaner                       0.000 0.000          0.000       0.000
## canned fruit                           0.000 0.000          0.000       0.000
## cookware                               0.000 0.000          0.000       0.000
## cooking chocolate                      0.000 0.000          0.000       0.000
## tidbits                                0.000 0.000          0.000       0.000
## cocoa drinks                           0.000 0.000          0.000       0.000
## pudding powder                         0.000 0.000          0.000       0.000
## ready soups                            0.000 0.000          0.000       0.000
## organic marinated meat                 0.000 0.000          0.000       0.000
## flower soil/fertilizer                 0.000 0.000          0.000       0.000
## organic products                       0.000 0.000          0.000       0.000
## pot plants                             0.000 0.000          0.000       0.000
## prosecco                               0.000 0.000          0.000       0.000
## frankfurter                            0.000 0.000          0.001       0.000
## decalcifier                            0.000 0.000          0.000       0.000
## honey                                  0.000 0.000          0.000       0.000
## specialty vegetables                   0.000 0.000          0.000       0.000
## cream                                  0.000 0.000          0.000       0.000
## hair spray                             0.000 0.000          0.000       0.000
## frozen fruits                          0.000 0.000          0.000       0.000
## rubbing alcohol                        0.000 0.000          0.000       0.000
## liqueur                                0.000 0.000          0.000       0.000
## make up remover                        0.000 0.000          0.000       0.000
## salad dressing                         0.000 0.000          0.000       0.000
## frozen chicken                         0.000 0.000          0.000       0.000
## whisky                                 0.000 0.000          0.000       0.000
## baby cosmetics                         0.000 0.000          0.000       0.000
## toilet cleaner                         0.000 0.000          0.000       0.000
## bags                                   0.000 0.000          0.000       0.000
## canned herbs                           0.000 0.000          0.000       0.000
## kitchen utensil                        0.000 0.000          0.000       0.000
## preservation products                  0.000 0.000          0.000       0.000
## baby food                              0.000 0.000          0.000       0.000
## frozen herbss                          0.000 0.000          0.000       0.000
## organic sausage                        0.000 0.000          0.000       0.000
## sound storage medium                   0.000 0.000          0.000       0.000
##                             tea processed cheese sausage pasta citrus herbs
## rice                      0.006            0.007   0.004 0.006        0.006
## veggies                   0.001            0.005   0.000 0.004        0.000
## loaf                      0.001            0.004   0.000 0.002        0.000
## coke                      0.000            0.005   0.000 0.004        0.000
## yogurt                    0.002            0.002   0.003 0.003        0.003
## vegetables                0.003            0.003   0.003 0.004        0.003
## mineral water             0.001            0.002   0.000 0.002        0.000
## Plastic bags              0.001            0.002   0.002 0.002        0.001
## tropical fruit            0.001            0.004   0.000 0.002        0.000
## marinated meat            0.000            0.003   0.000 0.002        0.000
## pies/pasties              0.000            0.003   0.001 0.002        0.000
## newspapers                0.001            0.001   0.002 0.001        0.001
## citrus                    0.001            0.002   0.000 0.002        0.000
## whipped/sour cream        0.002            0.002   0.001 0.002        0.002
## heinken                   0.001            0.001   0.000 0.001        0.000
## green tea                 0.000            0.000   0.000 0.001        0.000
## pip fruit                 0.001            0.002   0.000 0.002        0.000
## brown bread               0.001            0.002   0.001 0.001        0.001
## fruit/vegetable juice     0.001            0.003   0.000 0.002        0.000
## domestic eggs             0.002            0.002   0.001 0.002        0.001
## coffee                    0.001            0.001   0.001 0.001        0.001
## margarine                 0.002            0.002   0.001 0.002        0.001
## beef                      0.002            0.001   0.002 0.002        0.002
## curd                      0.002            0.001   0.001 0.002        0.002
## butter                    0.002            0.003   0.001 0.003        0.001
## marinated meats           0.000            0.002   0.000 0.001        0.000
## napkins                   0.001            0.001   0.001 0.001        0.001
## halal meat                0.000            0.001   0.000 0.001        0.000
## chocolate                 0.001            0.001   0.001 0.001        0.001
## frozen vegetables         0.001            0.002   0.001 0.001        0.001
## chicken                   0.001            0.001   0.001 0.002        0.001
## white bread               0.001            0.004   0.001 0.001        0.001
## cream cheese              0.002            0.001   0.001 0.001        0.001
## waffles                   0.000            0.001   0.000 0.002        0.000
## dessert                   0.001            0.001   0.001 0.001        0.001
## salty snack               0.000            0.001   0.001 0.001        0.001
## long life bakery product  0.001            0.002   0.000 0.000        0.001
## berries                   0.001            0.001   0.001 0.001        0.002
## hamburger meat            0.001            0.001   0.001 0.003        0.001
## sugar                     0.001            0.001   0.001 0.001        0.002
## hygiene articles          0.001            0.001   0.001 0.001        0.001
## UHT-milk                  0.001            0.001   0.000 0.001        0.001
## onions                    0.001            0.001   0.001 0.001        0.001
## candy                     0.000            0.002   0.000 0.001        0.001
## specialty chocolate       0.000            0.001   0.000 0.001        0.000
## butter milk               0.001            0.001   0.001 0.001        0.001
## oil                       0.001            0.001   0.000 0.001        0.001
## frozen meals              0.000            0.000   0.000 0.002        0.000
## misc. beverages           0.000            0.001   0.001 0.001        0.001
## specialty bar             0.001            0.001   0.001 0.000        0.000
## ham                       0.001            0.003   0.001 0.001        0.001
## beverages                 0.001            0.001   0.001 0.001        0.001
## meat                      0.001            0.000   0.001 0.000        0.001
## ice cream                 0.000            0.000   0.001 0.000        0.000
## sliced cheese             0.001            0.001   0.001 0.001        0.000
## hard cheese               0.001            0.001   0.001 0.001        0.000
## noodles                   0.005            0.000   0.004 0.000        0.004
## grapes                    0.001            0.001   0.001 0.000        0.001
## cat food                  0.000            0.001   0.000 0.001        0.000
## chewing gum               0.000            0.000   0.000 0.000        0.000
## soda                      0.002            0.000   0.004 0.000        0.002
## detergent                 0.000            0.001   0.000 0.001        0.001
## red/blush wine            0.000            0.001   0.000 0.000        0.000
## white wine                0.000            0.000   0.000 0.000        0.000
## turkey                    0.001            0.001   0.001 0.000        0.002
## dishes                    0.000            0.000   0.001 0.001        0.000
## bottled water             0.001            0.000   0.002 0.000        0.002
## flour                     0.000            0.000   0.000 0.001        0.001
## semi-finished bread       0.000            0.001   0.000 0.000        0.000
## baking powder             0.001            0.000   0.000 0.001        0.001
## pickled vegetables        0.001            0.001   0.000 0.001        0.000
## herbs                     0.000            0.001   0.000 0.000        0.000
## tropical herbs            0.002            0.001   0.002 0.000        0.003
## soft cheese               0.000            0.001   0.000 0.001        0.000
## tea                       0.016            0.000   0.002 0.000        0.002
## processed cheese          0.000            0.016   0.000 0.000        0.000
## sausage                   0.002            0.000   0.016 0.000        0.002
## pasta                     0.000            0.000   0.000 0.015        0.000
## citrus herbs              0.002            0.000   0.002 0.000        0.015
## potted plants             0.000            0.000   0.000 0.000        0.000
## canned fish               0.001            0.000   0.000 0.001        0.000
## seasonal products         0.000            0.000   0.000 0.000        0.000
## cake bar                  0.000            0.000   0.001 0.001        0.000
## carrots                   0.002            0.000   0.002 0.000        0.002
## mustard                   0.001            0.000   0.000 0.000        0.000
## packaged fruit/vegetables 0.000            0.000   0.000 0.000        0.000
## spread cheese             0.000            0.000   0.000 0.000        0.000
## frozen dessert            0.000            0.000   0.000 0.000        0.000
## frozen fish               0.000            0.000   0.000 0.000        0.000
## cling film/bags           0.001            0.000   0.000 0.000        0.000
## salt                      0.000            0.000   0.000 0.001        0.000
## liquor                    0.000            0.000   0.000 0.000        0.000
## canned vegetables         0.000            0.000   0.000 0.001        0.000
## bottled beer              0.001            0.000   0.001 0.000        0.001
## flower (seeds)            0.000            0.000   0.000 0.000        0.000
## cooking oil               0.001            0.000   0.001 0.000        0.001
## dish cleaner              0.000            0.000   0.000 0.000        0.000
## condensed milk            0.000            0.000   0.000 0.000        0.000
## roll products             0.000            0.000   0.000 0.001        0.000
## photo/film                0.000            0.000   0.000 0.000        0.000
## pet care                  0.000            0.000   0.000 0.000        0.000
## chocolate marshmallow     0.000            0.000   0.000 0.000        0.000
## herbs/vegetable juice     0.001            0.000   0.001 0.000        0.001
## whole milk                0.000            0.000   0.001 0.000        0.001
## candles                   0.000            0.000   0.000 0.000        0.000
## mayonnaise                0.000            0.001   0.000 0.000        0.000
## Instant food products     0.000            0.000   0.000 0.001        0.000
## sweet spreads             0.000            0.000   0.000 0.001        0.000
## liquor (appetizer)        0.000            0.000   0.000 0.000        0.000
## specialty cheese          0.000            0.000   0.000 0.000        0.000
## frozen potato products    0.000            0.000   0.000 0.000        0.000
## house keeping products    0.000            0.000   0.000 0.000        0.000
## dog food                  0.000            0.000   0.000 0.001        0.000
## soy                       0.001            0.000   0.001 0.000        0.001
## instant coffee            0.000            0.000   0.000 0.000        0.000
## pip herbs                 0.001            0.000   0.001 0.000        0.001
## zwieback                  0.000            0.000   0.000 0.000        0.000
## finished products         0.000            0.000   0.000 0.001        0.000
## popcorn                   0.000            0.000   0.000 0.000        0.000
## vinegar                   0.000            0.000   0.000 0.000        0.000
## soups                     0.000            0.000   0.000 0.001        0.000
## female sanitary products  0.000            0.000   0.000 0.000        0.000
## sparkling wine            0.000            0.000   0.000 0.000        0.000
## dental care               0.000            0.000   0.000 0.000        0.000
## cereals                   0.000            0.000   0.000 0.000        0.000
## kitchen towels            0.000            0.000   0.000 0.000        0.000
## curd cheese               0.000            0.000   0.000 0.000        0.000
## other vegetables          0.000            0.000   0.000 0.000        0.001
## rolls/buns                0.000            0.000   0.001 0.000        0.000
## softener                  0.000            0.000   0.000 0.000        0.000
## cleaner                   0.000            0.000   0.000 0.000        0.000
## spices                    0.000            0.000   0.000 0.000        0.000
## jam                       0.000            0.000   0.000 0.000        0.000
## sauces                    0.000            0.000   0.000 0.000        0.000
## rum                       0.000            0.000   0.000 0.000        0.000
## liver loaf                0.000            0.000   0.000 0.000        0.000
## male cosmetics            0.000            0.000   0.000 0.000        0.000
## meat spreads              0.000            0.000   0.000 0.000        0.000
## packaged herbs/vegetables 0.001            0.000   0.001 0.000        0.001
## brandy                    0.000            0.000   0.000 0.000        0.000
## ketchup                   0.000            0.000   0.000 0.000        0.000
## abrasive cleaner          0.000            0.000   0.000 0.000        0.000
## light bulbs               0.000            0.000   0.000 0.000        0.000
## artif. sweetener          0.000            0.000   0.000 0.000        0.000
## nuts/prunes               0.000            0.000   0.000 0.000        0.000
## specialty fat             0.000            0.000   0.000 0.000        0.000
## skin care                 0.000            0.000   0.000 0.000        0.000
## fish                      0.000            0.000   0.000 0.000        0.000
## potato products           0.000            0.001   0.000 0.000        0.000
## root vegetables           0.000            0.000   0.001 0.000        0.001
## snack products            0.000            0.000   0.000 0.000        0.000
## nut snack                 0.000            0.000   0.000 0.000        0.000
## soap                      0.000            0.000   0.000 0.000        0.000
## syrup                     0.000            0.000   0.000 0.000        0.000
## bathroom cleaner          0.000            0.000   0.000 0.000        0.000
## canned fruit              0.000            0.000   0.000 0.000        0.000
## cookware                  0.000            0.000   0.000 0.000        0.000
## cooking chocolate         0.000            0.000   0.000 0.000        0.000
## tidbits                   0.000            0.000   0.000 0.000        0.000
## cocoa drinks              0.000            0.000   0.000 0.000        0.000
## pudding powder            0.000            0.000   0.000 0.000        0.000
## ready soups               0.000            0.000   0.000 0.000        0.000
## organic marinated meat    0.000            0.000   0.000 0.000        0.000
## flower soil/fertilizer    0.000            0.000   0.000 0.000        0.000
## organic products          0.000            0.000   0.000 0.000        0.000
## pot plants                0.000            0.000   0.000 0.000        0.001
## prosecco                  0.000            0.000   0.000 0.000        0.000
## frankfurter               0.000            0.000   0.000 0.000        0.000
## decalcifier               0.000            0.000   0.000 0.000        0.000
## honey                     0.000            0.000   0.000 0.000        0.000
## specialty vegetables      0.000            0.000   0.000 0.000        0.000
## cream                     0.000            0.000   0.000 0.000        0.000
## hair spray                0.000            0.000   0.000 0.000        0.000
## frozen fruits             0.000            0.000   0.000 0.000        0.000
## rubbing alcohol           0.000            0.000   0.000 0.000        0.000
## liqueur                   0.000            0.000   0.000 0.000        0.000
## make up remover           0.000            0.000   0.000 0.000        0.000
## salad dressing            0.000            0.000   0.000 0.000        0.000
## frozen chicken            0.000            0.000   0.000 0.000        0.000
## whisky                    0.000            0.000   0.000 0.000        0.000
## baby cosmetics            0.000            0.000   0.000 0.000        0.000
## toilet cleaner            0.000            0.000   0.000 0.000        0.000
## bags                      0.000            0.000   0.000 0.000        0.000
## canned herbs              0.000            0.000   0.000 0.000        0.000
## kitchen utensil           0.000            0.000   0.000 0.000        0.000
## preservation products     0.000            0.000   0.000 0.000        0.000
## baby food                 0.000            0.000   0.000 0.000        0.000
## frozen herbss             0.000            0.000   0.000 0.000        0.000
## organic sausage           0.000            0.000   0.000 0.000        0.000
## sound storage medium      0.000            0.000   0.000 0.000        0.000
##                           potted plants canned fish seasonal products cake bar
## rice                              0.006       0.005             0.004    0.005
## veggies                           0.004       0.004             0.003    0.003
## loaf                              0.002       0.004             0.002    0.003
## coke                              0.002       0.003             0.002    0.004
## yogurt                            0.003       0.003             0.003    0.002
## vegetables                        0.002       0.003             0.002    0.002
## mineral water                     0.002       0.001             0.001    0.002
## Plastic bags                      0.002       0.003             0.002    0.003
## tropical fruit                    0.003       0.002             0.002    0.002
## marinated meat                    0.001       0.002             0.002    0.002
## pies/pasties                      0.002       0.002             0.002    0.002
## newspapers                        0.001       0.002             0.001    0.001
## citrus                            0.002       0.001             0.002    0.001
## whipped/sour cream                0.002       0.002             0.001    0.001
## heinken                           0.001       0.002             0.001    0.001
## green tea                         0.000       0.001             0.000    0.000
## pip fruit                         0.002       0.001             0.001    0.002
## brown bread                       0.001       0.002             0.001    0.001
## fruit/vegetable juice             0.002       0.001             0.001    0.001
## domestic eggs                     0.001       0.002             0.001    0.001
## coffee                            0.001       0.002             0.002    0.001
## margarine                         0.001       0.002             0.001    0.001
## beef                              0.002       0.001             0.001    0.001
## curd                              0.001       0.001             0.001    0.002
## butter                            0.001       0.001             0.001    0.001
## marinated meats                   0.001       0.002             0.001    0.001
## napkins                           0.001       0.002             0.001    0.001
## halal meat                        0.001       0.001             0.001    0.001
## chocolate                         0.001       0.001             0.001    0.002
## frozen vegetables                 0.001       0.002             0.002    0.001
## chicken                           0.001       0.001             0.001    0.001
## white bread                       0.001       0.001             0.000    0.001
## cream cheese                      0.001       0.002             0.001    0.001
## waffles                           0.000       0.001             0.001    0.001
## dessert                           0.000       0.001             0.001    0.002
## salty snack                       0.001       0.001             0.001    0.001
## long life bakery product          0.001       0.001             0.000    0.001
## berries                           0.001       0.001             0.001    0.002
## hamburger meat                    0.001       0.001             0.000    0.001
## sugar                             0.001       0.001             0.000    0.001
## hygiene articles                  0.001       0.001             0.001    0.000
## UHT-milk                          0.001       0.001             0.001    0.001
## onions                            0.001       0.001             0.001    0.001
## candy                             0.000       0.001             0.001    0.001
## specialty chocolate               0.001       0.000             0.001    0.001
## butter milk                       0.000       0.001             0.000    0.000
## oil                               0.001       0.001             0.001    0.001
## frozen meals                      0.001       0.001             0.001    0.001
## misc. beverages                   0.001       0.001             0.000    0.001
## specialty bar                     0.000       0.000             0.001    0.001
## ham                               0.001       0.001             0.001    0.001
## beverages                         0.001       0.000             0.000    0.001
## meat                              0.000       0.001             0.001    0.001
## ice cream                         0.000       0.001             0.000    0.000
## sliced cheese                     0.001       0.001             0.000    0.000
## hard cheese                       0.000       0.001             0.001    0.000
## noodles                           0.000       0.000             0.000    0.000
## grapes                            0.001       0.000             0.001    0.000
## cat food                          0.000       0.001             0.000    0.001
## chewing gum                       0.000       0.000             0.000    0.000
## soda                              0.000       0.000             0.000    0.001
## detergent                         0.001       0.000             0.001    0.001
## red/blush wine                    0.000       0.000             0.000    0.000
## white wine                        0.000       0.000             0.000    0.000
## turkey                            0.000       0.000             0.000    0.000
## dishes                            0.000       0.000             0.000    0.000
## bottled water                     0.000       0.000             0.000    0.000
## flour                             0.000       0.001             0.000    0.000
## semi-finished bread               0.001       0.000             0.001    0.001
## baking powder                     0.000       0.000             0.001    0.000
## pickled vegetables                0.000       0.001             0.001    0.000
## herbs                             0.001       0.001             0.000    0.000
## tropical herbs                    0.000       0.000             0.000    0.000
## soft cheese                       0.000       0.001             0.000    0.000
## tea                               0.000       0.001             0.000    0.000
## processed cheese                  0.000       0.000             0.000    0.000
## sausage                           0.000       0.000             0.000    0.001
## pasta                             0.000       0.001             0.000    0.001
## citrus herbs                      0.000       0.000             0.000    0.000
## potted plants                     0.015       0.000             0.001    0.000
## canned fish                       0.000       0.014             0.001    0.000
## seasonal products                 0.001       0.001             0.014    0.001
## cake bar                          0.000       0.000             0.001    0.013
## carrots                           0.000       0.000             0.000    0.000
## mustard                           0.000       0.001             0.000    0.000
## packaged fruit/vegetables         0.000       0.000             0.000    0.000
## spread cheese                     0.000       0.000             0.000    0.000
## frozen dessert                    0.000       0.000             0.000    0.000
## frozen fish                       0.000       0.001             0.000    0.000
## cling film/bags                   0.000       0.001             0.000    0.000
## salt                              0.000       0.001             0.000    0.000
## liquor                            0.000       0.000             0.000    0.000
## canned vegetables                 0.000       0.000             0.000    0.001
## bottled beer                      0.000       0.000             0.000    0.000
## flower (seeds)                    0.000       0.000             0.000    0.000
## cooking oil                       0.000       0.000             0.000    0.000
## dish cleaner                      0.000       0.000             0.000    0.000
## condensed milk                    0.000       0.000             0.000    0.000
## roll products                     0.000       0.000             0.000    0.000
## photo/film                        0.000       0.000             0.000    0.000
## pet care                          0.000       0.000             0.000    0.000
## chocolate marshmallow             0.000       0.000             0.000    0.000
## herbs/vegetable juice             0.000       0.000             0.000    0.000
## whole milk                        0.000       0.000             0.000    0.000
## candles                           0.000       0.001             0.000    0.000
## mayonnaise                        0.000       0.001             0.000    0.000
## Instant food products             0.000       0.001             0.000    0.000
## sweet spreads                     0.000       0.000             0.000    0.000
## liquor (appetizer)                0.000       0.000             0.000    0.000
## specialty cheese                  0.000       0.001             0.000    0.000
## frozen potato products            0.000       0.000             0.000    0.000
## house keeping products            0.000       0.000             0.000    0.001
## dog food                          0.001       0.000             0.000    0.000
## soy                               0.000       0.000             0.000    0.000
## instant coffee                    0.000       0.000             0.000    0.000
## pip herbs                         0.000       0.000             0.000    0.000
## zwieback                          0.000       0.000             0.000    0.000
## finished products                 0.001       0.000             0.000    0.000
## popcorn                           0.000       0.000             0.000    0.000
## vinegar                           0.000       0.000             0.000    0.000
## soups                             0.000       0.001             0.000    0.000
## female sanitary products          0.000       0.000             0.000    0.000
## sparkling wine                    0.000       0.000             0.000    0.000
## dental care                       0.000       0.000             0.000    0.000
## cereals                           0.000       0.000             0.000    0.000
## kitchen towels                    0.000       0.000             0.000    0.000
## curd cheese                       0.000       0.000             0.000    0.000
## other vegetables                  0.000       0.000             0.000    0.000
## rolls/buns                        0.000       0.000             0.000    0.000
## softener                          0.000       0.000             0.000    0.000
## cleaner                           0.000       0.000             0.000    0.000
## spices                            0.000       0.000             0.000    0.000
## jam                               0.000       0.000             0.000    0.000
## sauces                            0.000       0.000             0.000    0.000
## rum                               0.000       0.000             0.000    0.000
## liver loaf                        0.000       0.000             0.000    0.000
## male cosmetics                    0.000       0.000             0.000    0.000
## meat spreads                      0.000       0.001             0.000    0.000
## packaged herbs/vegetables         0.000       0.000             0.000    0.000
## brandy                            0.000       0.000             0.000    0.000
## ketchup                           0.000       0.001             0.000    0.000
## abrasive cleaner                  0.000       0.000             0.000    0.000
## light bulbs                       0.000       0.000             0.000    0.000
## artif. sweetener                  0.000       0.000             0.000    0.000
## nuts/prunes                       0.000       0.000             0.000    0.000
## specialty fat                     0.000       0.000             0.000    0.000
## skin care                         0.000       0.000             0.000    0.000
## fish                              0.000       0.000             0.000    0.000
## potato products                   0.000       0.000             0.000    0.000
## root vegetables                   0.000       0.000             0.000    0.000
## snack products                    0.000       0.000             0.000    0.000
## nut snack                         0.000       0.000             0.000    0.000
## soap                              0.000       0.000             0.000    0.000
## syrup                             0.000       0.000             0.000    0.000
## bathroom cleaner                  0.000       0.000             0.000    0.000
## canned fruit                      0.000       0.000             0.000    0.000
## cookware                          0.000       0.000             0.000    0.000
## cooking chocolate                 0.000       0.000             0.000    0.000
## tidbits                           0.000       0.000             0.000    0.000
## cocoa drinks                      0.000       0.000             0.000    0.000
## pudding powder                    0.000       0.000             0.000    0.000
## ready soups                       0.000       0.000             0.000    0.000
## organic marinated meat            0.000       0.000             0.000    0.000
## flower soil/fertilizer            0.000       0.000             0.000    0.000
## organic products                  0.000       0.000             0.000    0.000
## pot plants                        0.000       0.000             0.000    0.000
## prosecco                          0.000       0.000             0.000    0.000
## frankfurter                       0.000       0.000             0.000    0.000
## decalcifier                       0.000       0.000             0.000    0.000
## honey                             0.000       0.000             0.000    0.000
## specialty vegetables              0.000       0.000             0.000    0.000
## cream                             0.000       0.000             0.000    0.000
## hair spray                        0.000       0.000             0.000    0.000
## frozen fruits                     0.000       0.000             0.000    0.000
## rubbing alcohol                   0.000       0.000             0.000    0.000
## liqueur                           0.000       0.000             0.000    0.000
## make up remover                   0.000       0.000             0.000    0.000
## salad dressing                    0.000       0.000             0.000    0.000
## frozen chicken                    0.000       0.000             0.000    0.000
## whisky                            0.000       0.000             0.000    0.000
## baby cosmetics                    0.000       0.000             0.000    0.000
## toilet cleaner                    0.000       0.000             0.000    0.000
## bags                              0.000       0.000             0.000    0.000
## canned herbs                      0.000       0.000             0.000    0.000
## kitchen utensil                   0.000       0.000             0.000    0.000
## preservation products             0.000       0.000             0.000    0.000
## baby food                         0.000       0.000             0.000    0.000
## frozen herbss                     0.000       0.000             0.000    0.000
## organic sausage                   0.000       0.000             0.000    0.000
## sound storage medium              0.000       0.000             0.000    0.000
##                           carrots mustard packaged fruit/vegetables
## rice                        0.006   0.005                     0.004
## veggies                     0.000   0.003                     0.003
## loaf                        0.000   0.004                     0.002
## coke                        0.000   0.002                     0.002
## yogurt                      0.003   0.002                     0.002
## vegetables                  0.005   0.003                     0.003
## mineral water               0.000   0.002                     0.002
## Plastic bags                0.001   0.002                     0.001
## tropical fruit              0.000   0.002                     0.002
## marinated meat              0.000   0.002                     0.002
## pies/pasties                0.000   0.001                     0.002
## newspapers                  0.000   0.002                     0.001
## citrus                      0.000   0.002                     0.002
## whipped/sour cream          0.002   0.001                     0.001
## heinken                     0.000   0.001                     0.001
## green tea                   0.000   0.001                     0.001
## pip fruit                   0.000   0.001                     0.001
## brown bread                 0.001   0.001                     0.001
## fruit/vegetable juice       0.000   0.002                     0.001
## domestic eggs               0.002   0.002                     0.001
## coffee                      0.002   0.002                     0.001
## margarine                   0.001   0.001                     0.001
## beef                        0.002   0.002                     0.001
## curd                        0.001   0.001                     0.001
## butter                      0.002   0.001                     0.001
## marinated meats             0.000   0.002                     0.001
## napkins                     0.001   0.001                     0.001
## halal meat                  0.000   0.001                     0.001
## chocolate                   0.000   0.002                     0.000
## frozen vegetables           0.001   0.001                     0.002
## chicken                     0.001   0.001                     0.001
## white bread                 0.001   0.001                     0.001
## cream cheese                0.001   0.001                     0.000
## waffles                     0.000   0.001                     0.000
## dessert                     0.001   0.001                     0.001
## salty snack                 0.000   0.001                     0.000
## long life bakery product    0.000   0.001                     0.000
## berries                     0.002   0.001                     0.001
## hamburger meat              0.001   0.001                     0.001
## sugar                       0.000   0.001                     0.001
## hygiene articles            0.001   0.001                     0.000
## UHT-milk                    0.000   0.001                     0.001
## onions                      0.001   0.001                     0.001
## candy                       0.001   0.000                     0.001
## specialty chocolate         0.000   0.001                     0.000
## butter milk                 0.000   0.001                     0.000
## oil                         0.000   0.002                     0.001
## frozen meals                0.000   0.000                     0.000
## misc. beverages             0.000   0.001                     0.000
## specialty bar               0.000   0.001                     0.000
## ham                         0.000   0.001                     0.000
## beverages                   0.001   0.000                     0.000
## meat                        0.001   0.000                     0.000
## ice cream                   0.000   0.000                     0.000
## sliced cheese               0.001   0.001                     0.001
## hard cheese                 0.001   0.001                     0.000
## noodles                     0.004   0.000                     0.000
## grapes                      0.001   0.001                     0.000
## cat food                    0.000   0.001                     0.001
## chewing gum                 0.000   0.000                     0.000
## soda                        0.002   0.000                     0.000
## detergent                   0.001   0.000                     0.000
## red/blush wine              0.000   0.000                     0.000
## white wine                  0.000   0.000                     0.000
## turkey                      0.002   0.000                     0.000
## dishes                      0.000   0.000                     0.000
## bottled water               0.002   0.000                     0.000
## flour                       0.001   0.001                     0.000
## semi-finished bread         0.000   0.000                     0.000
## baking powder               0.000   0.000                     0.000
## pickled vegetables          0.000   0.001                     0.000
## herbs                       0.001   0.000                     0.001
## tropical herbs              0.003   0.000                     0.000
## soft cheese                 0.000   0.001                     0.000
## tea                         0.002   0.001                     0.000
## processed cheese            0.000   0.000                     0.000
## sausage                     0.002   0.000                     0.000
## pasta                       0.000   0.000                     0.000
## citrus herbs                0.002   0.000                     0.000
## potted plants               0.000   0.000                     0.000
## canned fish                 0.000   0.001                     0.000
## seasonal products           0.000   0.000                     0.000
## cake bar                    0.000   0.000                     0.000
## carrots                     0.013   0.000                     0.000
## mustard                     0.000   0.012                     0.000
## packaged fruit/vegetables   0.000   0.000                     0.011
## spread cheese               0.000   0.000                     0.000
## frozen dessert              0.000   0.000                     0.000
## frozen fish                 0.000   0.000                     0.000
## cling film/bags             0.000   0.000                     0.000
## salt                        0.000   0.000                     0.000
## liquor                      0.000   0.000                     0.000
## canned vegetables           0.000   0.000                     0.000
## bottled beer                0.001   0.000                     0.000
## flower (seeds)              0.000   0.000                     0.000
## cooking oil                 0.001   0.000                     0.000
## dish cleaner                0.000   0.001                     0.000
## condensed milk              0.000   0.000                     0.000
## roll products               0.000   0.000                     0.000
## photo/film                  0.000   0.000                     0.000
## pet care                    0.000   0.000                     0.000
## chocolate marshmallow       0.000   0.001                     0.000
## herbs/vegetable juice       0.001   0.000                     0.000
## whole milk                  0.000   0.000                     0.000
## candles                     0.000   0.000                     0.000
## mayonnaise                  0.000   0.001                     0.000
## Instant food products       0.000   0.000                     0.000
## sweet spreads               0.000   0.000                     0.000
## liquor (appetizer)          0.000   0.000                     0.000
## specialty cheese            0.000   0.000                     0.000
## frozen potato products      0.000   0.000                     0.000
## house keeping products      0.000   0.000                     0.000
## dog food                    0.000   0.000                     0.000
## soy                         0.001   0.000                     0.000
## instant coffee              0.000   0.000                     0.000
## pip herbs                   0.001   0.000                     0.000
## zwieback                    0.000   0.000                     0.000
## finished products           0.000   0.000                     0.000
## popcorn                     0.000   0.000                     0.000
## vinegar                     0.000   0.000                     0.000
## soups                       0.000   0.000                     0.000
## female sanitary products    0.000   0.000                     0.000
## sparkling wine              0.000   0.000                     0.000
## dental care                 0.000   0.000                     0.000
## cereals                     0.000   0.000                     0.000
## kitchen towels              0.000   0.000                     0.000
## curd cheese                 0.000   0.000                     0.000
## other vegetables            0.000   0.000                     0.000
## rolls/buns                  0.000   0.000                     0.000
## softener                    0.000   0.000                     0.000
## cleaner                     0.000   0.000                     0.000
## spices                      0.000   0.000                     0.000
## jam                         0.000   0.000                     0.000
## sauces                      0.000   0.000                     0.000
## rum                         0.000   0.000                     0.000
## liver loaf                  0.000   0.000                     0.000
## male cosmetics              0.000   0.000                     0.000
## meat spreads                0.000   0.000                     0.000
## packaged herbs/vegetables   0.001   0.000                     0.000
## brandy                      0.000   0.000                     0.000
## ketchup                     0.000   0.001                     0.000
## abrasive cleaner            0.000   0.000                     0.000
## light bulbs                 0.000   0.000                     0.000
## artif. sweetener            0.000   0.000                     0.000
## nuts/prunes                 0.000   0.000                     0.000
## specialty fat               0.000   0.000                     0.000
## skin care                   0.000   0.000                     0.000
## fish                        0.000   0.000                     0.000
## potato products             0.000   0.000                     0.000
## root vegetables             0.000   0.000                     0.000
## snack products              0.000   0.000                     0.000
## nut snack                   0.000   0.000                     0.000
## soap                        0.000   0.000                     0.000
## syrup                       0.000   0.000                     0.000
## bathroom cleaner            0.000   0.000                     0.000
## canned fruit                0.000   0.000                     0.000
## cookware                    0.000   0.000                     0.000
## cooking chocolate           0.000   0.000                     0.000
## tidbits                     0.000   0.000                     0.000
## cocoa drinks                0.000   0.000                     0.000
## pudding powder              0.000   0.000                     0.000
## ready soups                 0.000   0.000                     0.000
## organic marinated meat      0.000   0.000                     0.000
## flower soil/fertilizer      0.000   0.000                     0.000
## organic products            0.000   0.000                     0.000
## pot plants                  0.000   0.000                     0.000
## prosecco                    0.000   0.000                     0.000
## frankfurter                 0.000   0.000                     0.000
## decalcifier                 0.000   0.000                     0.000
## honey                       0.000   0.000                     0.000
## specialty vegetables        0.000   0.000                     0.000
## cream                       0.000   0.000                     0.000
## hair spray                  0.000   0.000                     0.000
## frozen fruits               0.000   0.000                     0.000
## rubbing alcohol             0.000   0.000                     0.000
## liqueur                     0.000   0.000                     0.000
## make up remover             0.000   0.000                     0.000
## salad dressing              0.000   0.000                     0.000
## frozen chicken              0.000   0.000                     0.000
## whisky                      0.000   0.000                     0.000
## baby cosmetics              0.000   0.000                     0.000
## toilet cleaner              0.000   0.000                     0.000
## bags                        0.000   0.000                     0.000
## canned herbs                0.000   0.000                     0.000
## kitchen utensil             0.000   0.000                     0.000
## preservation products       0.000   0.000                     0.000
## baby food                   0.000   0.000                     0.000
## frozen herbss               0.000   0.000                     0.000
## organic sausage             0.000   0.000                     0.000
## sound storage medium        0.000   0.000                     0.000
##                           spread cheese frozen dessert frozen fish
## rice                              0.003          0.004       0.005
## veggies                           0.003          0.003       0.004
## loaf                              0.004          0.003       0.002
## coke                              0.003          0.002       0.001
## yogurt                            0.004          0.002       0.003
## vegetables                        0.002          0.003       0.003
## mineral water                     0.002          0.001       0.001
## Plastic bags                      0.002          0.001       0.001
## tropical fruit                    0.002          0.002       0.002
## marinated meat                    0.002          0.001       0.001
## pies/pasties                      0.002          0.002       0.001
## newspapers                        0.002          0.001       0.001
## citrus                            0.001          0.001       0.001
## whipped/sour cream                0.000          0.002       0.001
## heinken                           0.001          0.001       0.001
## green tea                         0.001          0.000       0.001
## pip fruit                         0.001          0.001       0.002
## brown bread                       0.002          0.001       0.001
## fruit/vegetable juice             0.001          0.001       0.001
## domestic eggs                     0.001          0.002       0.001
## coffee                            0.001          0.001       0.000
## margarine                         0.001          0.001       0.002
## beef                              0.001          0.001       0.001
## curd                              0.001          0.001       0.001
## butter                            0.001          0.001       0.001
## marinated meats                   0.001          0.001       0.002
## napkins                           0.001          0.001       0.001
## halal meat                        0.001          0.001       0.002
## chocolate                         0.001          0.001       0.001
## frozen vegetables                 0.001          0.002       0.002
## chicken                           0.001          0.001       0.001
## white bread                       0.001          0.001       0.001
## cream cheese                      0.001          0.001       0.001
## waffles                           0.001          0.001       0.001
## dessert                           0.001          0.001       0.000
## salty snack                       0.001          0.001       0.001
## long life bakery product          0.001          0.001       0.001
## berries                           0.001          0.000       0.001
## hamburger meat                    0.001          0.000       0.000
## sugar                             0.001          0.001       0.001
## hygiene articles                  0.001          0.001       0.001
## UHT-milk                          0.001          0.001       0.001
## onions                            0.001          0.001       0.001
## candy                             0.000          0.001       0.001
## specialty chocolate               0.000          0.000       0.000
## butter milk                       0.001          0.000       0.000
## oil                               0.000          0.001       0.001
## frozen meals                      0.000          0.002       0.001
## misc. beverages                   0.001          0.000       0.000
## specialty bar                     0.000          0.000       0.000
## ham                               0.001          0.000       0.001
## beverages                         0.000          0.000       0.000
## meat                              0.000          0.000       0.000
## ice cream                         0.000          0.001       0.000
## sliced cheese                     0.000          0.001       0.001
## hard cheese                       0.001          0.001       0.000
## noodles                           0.001          0.000       0.000
## grapes                            0.000          0.001       0.000
## cat food                          0.000          0.000       0.000
## chewing gum                       0.000          0.000       0.000
## soda                              0.000          0.000       0.000
## detergent                         0.000          0.000       0.000
## red/blush wine                    0.000          0.000       0.000
## white wine                        0.001          0.000       0.000
## turkey                            0.000          0.000       0.000
## dishes                            0.000          0.000       0.000
## bottled water                     0.000          0.000       0.000
## flour                             0.000          0.001       0.001
## semi-finished bread               0.000          0.001       0.000
## baking powder                     0.000          0.001       0.001
## pickled vegetables                0.000          0.000       0.001
## herbs                             0.000          0.000       0.000
## tropical herbs                    0.000          0.000       0.000
## soft cheese                       0.000          0.000       0.001
## tea                               0.000          0.000       0.000
## processed cheese                  0.000          0.000       0.000
## sausage                           0.000          0.000       0.000
## pasta                             0.000          0.000       0.000
## citrus herbs                      0.000          0.000       0.000
## potted plants                     0.000          0.000       0.000
## canned fish                       0.000          0.000       0.001
## seasonal products                 0.000          0.000       0.000
## cake bar                          0.000          0.000       0.000
## carrots                           0.000          0.000       0.000
## mustard                           0.000          0.000       0.000
## packaged fruit/vegetables         0.000          0.000       0.000
## spread cheese                     0.011          0.000       0.000
## frozen dessert                    0.000          0.011       0.000
## frozen fish                       0.000          0.000       0.011
## cling film/bags                   0.000          0.000       0.000
## salt                              0.000          0.000       0.000
## liquor                            0.000          0.000       0.000
## canned vegetables                 0.000          0.000       0.000
## bottled beer                      0.000          0.000       0.000
## flower (seeds)                    0.000          0.000       0.000
## cooking oil                       0.000          0.000       0.000
## dish cleaner                      0.000          0.000       0.000
## condensed milk                    0.000          0.000       0.000
## roll products                     0.000          0.000       0.000
## photo/film                        0.000          0.000       0.000
## pet care                          0.000          0.000       0.000
## chocolate marshmallow             0.000          0.000       0.000
## herbs/vegetable juice             0.000          0.000       0.000
## whole milk                        0.000          0.000       0.000
## candles                           0.000          0.000       0.000
## mayonnaise                        0.000          0.000       0.000
## Instant food products             0.000          0.000       0.000
## sweet spreads                     0.000          0.001       0.000
## liquor (appetizer)                0.000          0.000       0.000
## specialty cheese                  0.000          0.000       0.000
## frozen potato products            0.000          0.000       0.000
## house keeping products            0.000          0.000       0.000
## dog food                          0.000          0.000       0.000
## soy                               0.000          0.000       0.000
## instant coffee                    0.000          0.000       0.000
## pip herbs                         0.000          0.000       0.000
## zwieback                          0.000          0.000       0.000
## finished products                 0.000          0.000       0.000
## popcorn                           0.000          0.000       0.000
## vinegar                           0.000          0.000       0.000
## soups                             0.000          0.000       0.000
## female sanitary products          0.000          0.000       0.000
## sparkling wine                    0.000          0.000       0.000
## dental care                       0.000          0.000       0.000
## cereals                           0.000          0.000       0.000
## kitchen towels                    0.000          0.000       0.000
## curd cheese                       0.000          0.000       0.000
## other vegetables                  0.000          0.000       0.000
## rolls/buns                        0.000          0.000       0.000
## softener                          0.000          0.000       0.000
## cleaner                           0.000          0.000       0.000
## spices                            0.000          0.000       0.000
## jam                               0.000          0.000       0.000
## sauces                            0.000          0.000       0.000
## rum                               0.000          0.000       0.000
## liver loaf                        0.000          0.000       0.000
## male cosmetics                    0.000          0.000       0.000
## meat spreads                      0.000          0.000       0.000
## packaged herbs/vegetables         0.000          0.000       0.000
## brandy                            0.000          0.000       0.000
## ketchup                           0.000          0.000       0.000
## abrasive cleaner                  0.000          0.000       0.000
## light bulbs                       0.000          0.000       0.000
## artif. sweetener                  0.000          0.000       0.000
## nuts/prunes                       0.000          0.000       0.000
## specialty fat                     0.000          0.000       0.000
## skin care                         0.000          0.000       0.000
## fish                              0.000          0.000       0.000
## potato products                   0.000          0.000       0.000
## root vegetables                   0.000          0.000       0.000
## snack products                    0.000          0.000       0.000
## nut snack                         0.000          0.000       0.000
## soap                              0.000          0.000       0.000
## syrup                             0.000          0.000       0.000
## bathroom cleaner                  0.000          0.000       0.000
## canned fruit                      0.000          0.000       0.000
## cookware                          0.000          0.000       0.000
## cooking chocolate                 0.000          0.000       0.000
## tidbits                           0.000          0.000       0.000
## cocoa drinks                      0.000          0.000       0.000
## pudding powder                    0.000          0.000       0.000
## ready soups                       0.000          0.000       0.000
## organic marinated meat            0.000          0.000       0.000
## flower soil/fertilizer            0.000          0.000       0.000
## organic products                  0.000          0.000       0.000
## pot plants                        0.000          0.000       0.000
## prosecco                          0.000          0.000       0.000
## frankfurter                       0.000          0.000       0.000
## decalcifier                       0.000          0.000       0.000
## honey                             0.000          0.000       0.000
## specialty vegetables              0.000          0.000       0.000
## cream                             0.000          0.000       0.000
## hair spray                        0.000          0.000       0.000
## frozen fruits                     0.000          0.000       0.000
## rubbing alcohol                   0.000          0.000       0.000
## liqueur                           0.000          0.000       0.000
## make up remover                   0.000          0.000       0.000
## salad dressing                    0.000          0.000       0.000
## frozen chicken                    0.000          0.000       0.000
## whisky                            0.000          0.000       0.000
## baby cosmetics                    0.000          0.000       0.000
## toilet cleaner                    0.000          0.000       0.000
## bags                              0.000          0.000       0.000
## canned herbs                      0.000          0.000       0.000
## kitchen utensil                   0.000          0.000       0.000
## preservation products             0.000          0.000       0.000
## baby food                         0.000          0.000       0.000
## frozen herbss                     0.000          0.000       0.000
## organic sausage                   0.000          0.000       0.000
## sound storage medium              0.000          0.000       0.000
##                           cling film/bags  salt liquor canned vegetables
## rice                                0.004 0.004  0.001             0.004
## veggies                             0.003 0.003  0.001             0.004
## loaf                                0.002 0.002  0.001             0.002
## coke                                0.002 0.001  0.002             0.003
## yogurt                              0.003 0.002  0.001             0.003
## vegetables                          0.002 0.003  0.001             0.002
## mineral water                       0.002 0.001  0.001             0.001
## Plastic bags                        0.001 0.001  0.002             0.001
## tropical fruit                      0.002 0.001  0.000             0.002
## marinated meat                      0.001 0.002  0.001             0.001
## pies/pasties                        0.001 0.001  0.000             0.001
## newspapers                          0.001 0.001  0.001             0.001
## citrus                              0.001 0.001  0.000             0.002
## whipped/sour cream                  0.002 0.002  0.000             0.002
## heinken                             0.001 0.002  0.004             0.000
## green tea                           0.001 0.000  0.001             0.001
## pip fruit                           0.001 0.001  0.000             0.002
## brown bread                         0.001 0.001  0.001             0.001
## fruit/vegetable juice               0.001 0.001  0.000             0.001
## domestic eggs                       0.001 0.002  0.000             0.002
## coffee                              0.002 0.001  0.000             0.001
## margarine                           0.001 0.001  0.000             0.001
## beef                                0.001 0.001  0.000             0.001
## curd                                0.001 0.001  0.000             0.001
## butter                              0.001 0.002  0.001             0.001
## marinated meats                     0.001 0.001  0.000             0.001
## napkins                             0.002 0.001  0.001             0.001
## halal meat                          0.000 0.001  0.001             0.001
## chocolate                           0.001 0.001  0.000             0.001
## frozen vegetables                   0.002 0.001  0.000             0.001
## chicken                             0.001 0.001  0.000             0.001
## white bread                         0.001 0.001  0.000             0.001
## cream cheese                        0.001 0.001  0.000             0.001
## waffles                             0.000 0.001  0.000             0.001
## dessert                             0.001 0.001  0.000             0.001
## salty snack                         0.000 0.001  0.000             0.001
## long life bakery product            0.001 0.001  0.000             0.000
## berries                             0.001 0.000  0.001             0.000
## hamburger meat                      0.001 0.001  0.000             0.002
## sugar                               0.001 0.002  0.000             0.001
## hygiene articles                    0.001 0.001  0.000             0.001
## UHT-milk                            0.001 0.001  0.000             0.001
## onions                              0.001 0.001  0.000             0.001
## candy                               0.001 0.000  0.001             0.000
## specialty chocolate                 0.000 0.000  0.000             0.001
## butter milk                         0.000 0.001  0.000             0.000
## oil                                 0.001 0.001  0.000             0.001
## frozen meals                        0.000 0.000  0.000             0.000
## misc. beverages                     0.000 0.000  0.000             0.001
## specialty bar                       0.000 0.000  0.000             0.000
## ham                                 0.000 0.000  0.000             0.001
## beverages                           0.000 0.000  0.000             0.000
## meat                                0.000 0.000  0.000             0.000
## ice cream                           0.001 0.000  0.000             0.000
## sliced cheese                       0.000 0.001  0.000             0.001
## hard cheese                         0.001 0.001  0.000             0.001
## noodles                             0.000 0.000  0.000             0.000
## grapes                              0.001 0.000  0.000             0.000
## cat food                            0.000 0.000  0.000             0.000
## chewing gum                         0.000 0.000  0.000             0.000
## soda                                0.000 0.000  0.000             0.000
## detergent                           0.000 0.000  0.000             0.000
## red/blush wine                      0.000 0.000  0.002             0.000
## white wine                          0.000 0.000  0.000             0.000
## turkey                              0.000 0.000  0.000             0.000
## dishes                              0.000 0.000  0.001             0.000
## bottled water                       0.000 0.001  0.000             0.000
## flour                               0.000 0.001  0.000             0.000
## semi-finished bread                 0.000 0.000  0.000             0.000
## baking powder                       0.001 0.000  0.000             0.000
## pickled vegetables                  0.000 0.000  0.001             0.000
## herbs                               0.000 0.000  0.000             0.000
## tropical herbs                      0.000 0.000  0.000             0.000
## soft cheese                         0.000 0.001  0.000             0.000
## tea                                 0.001 0.000  0.000             0.000
## processed cheese                    0.000 0.000  0.000             0.000
## sausage                             0.000 0.000  0.000             0.000
## pasta                               0.000 0.001  0.000             0.001
## citrus herbs                        0.000 0.000  0.000             0.000
## potted plants                       0.000 0.000  0.000             0.000
## canned fish                         0.001 0.001  0.000             0.000
## seasonal products                   0.000 0.000  0.000             0.000
## cake bar                            0.000 0.000  0.000             0.001
## carrots                             0.000 0.000  0.000             0.000
## mustard                             0.000 0.000  0.000             0.000
## packaged fruit/vegetables           0.000 0.000  0.000             0.000
## spread cheese                       0.000 0.000  0.000             0.000
## frozen dessert                      0.000 0.000  0.000             0.000
## frozen fish                         0.000 0.000  0.000             0.000
## cling film/bags                     0.011 0.000  0.000             0.000
## salt                                0.000 0.011  0.000             0.001
## liquor                              0.000 0.000  0.011             0.000
## canned vegetables                   0.000 0.001  0.000             0.010
## bottled beer                        0.000 0.000  0.000             0.000
## flower (seeds)                      0.000 0.000  0.000             0.000
## cooking oil                         0.000 0.000  0.000             0.000
## dish cleaner                        0.001 0.000  0.000             0.000
## condensed milk                      0.001 0.000  0.000             0.000
## roll products                       0.000 0.000  0.000             0.000
## photo/film                          0.000 0.000  0.000             0.000
## pet care                            0.000 0.000  0.000             0.000
## chocolate marshmallow               0.000 0.000  0.000             0.000
## herbs/vegetable juice               0.000 0.000  0.000             0.000
## whole milk                          0.000 0.000  0.000             0.000
## candles                             0.000 0.000  0.000             0.000
## mayonnaise                          0.000 0.000  0.000             0.000
## Instant food products               0.000 0.000  0.000             0.000
## sweet spreads                       0.000 0.000  0.000             0.000
## liquor (appetizer)                  0.000 0.000  0.000             0.000
## specialty cheese                    0.000 0.000  0.000             0.001
## frozen potato products              0.000 0.000  0.000             0.000
## house keeping products              0.001 0.000  0.000             0.000
## dog food                            0.000 0.000  0.000             0.000
## soy                                 0.000 0.000  0.000             0.000
## instant coffee                      0.000 0.000  0.000             0.000
## pip herbs                           0.000 0.000  0.000             0.000
## zwieback                            0.000 0.000  0.000             0.000
## finished products                   0.000 0.000  0.000             0.000
## popcorn                             0.000 0.000  0.000             0.000
## vinegar                             0.000 0.000  0.000             0.000
## soups                               0.000 0.000  0.000             0.000
## female sanitary products            0.000 0.000  0.000             0.000
## sparkling wine                      0.000 0.000  0.000             0.000
## dental care                         0.000 0.000  0.000             0.000
## cereals                             0.000 0.000  0.000             0.000
## kitchen towels                      0.000 0.000  0.000             0.000
## curd cheese                         0.000 0.000  0.000             0.000
## other vegetables                    0.000 0.000  0.000             0.000
## rolls/buns                          0.000 0.000  0.000             0.000
## softener                            0.000 0.000  0.000             0.000
## cleaner                             0.000 0.000  0.000             0.000
## spices                              0.000 0.000  0.000             0.000
## jam                                 0.000 0.001  0.000             0.000
## sauces                              0.000 0.000  0.000             0.000
## rum                                 0.001 0.000  0.000             0.000
## liver loaf                          0.000 0.000  0.000             0.000
## male cosmetics                      0.000 0.000  0.000             0.000
## meat spreads                        0.000 0.000  0.000             0.000
## packaged herbs/vegetables           0.000 0.000  0.000             0.000
## brandy                              0.000 0.000  0.000             0.000
## ketchup                             0.000 0.000  0.000             0.000
## abrasive cleaner                    0.000 0.000  0.000             0.000
## light bulbs                         0.000 0.000  0.000             0.000
## artif. sweetener                    0.000 0.000  0.000             0.000
## nuts/prunes                         0.000 0.000  0.000             0.000
## specialty fat                       0.000 0.000  0.000             0.000
## skin care                           0.000 0.000  0.000             0.000
## fish                                0.000 0.000  0.000             0.000
## potato products                     0.000 0.000  0.000             0.000
## root vegetables                     0.000 0.000  0.000             0.000
## snack products                      0.000 0.000  0.000             0.000
## nut snack                           0.000 0.000  0.000             0.000
## soap                                0.000 0.000  0.000             0.000
## syrup                               0.000 0.000  0.000             0.000
## bathroom cleaner                    0.000 0.000  0.000             0.000
## canned fruit                        0.000 0.000  0.000             0.000
## cookware                            0.000 0.000  0.000             0.000
## cooking chocolate                   0.000 0.000  0.000             0.000
## tidbits                             0.000 0.000  0.000             0.000
## cocoa drinks                        0.000 0.000  0.000             0.000
## pudding powder                      0.000 0.000  0.000             0.000
## ready soups                         0.000 0.000  0.000             0.000
## organic marinated meat              0.000 0.000  0.000             0.000
## flower soil/fertilizer              0.000 0.000  0.000             0.000
## organic products                    0.000 0.000  0.000             0.000
## pot plants                          0.000 0.000  0.000             0.000
## prosecco                            0.000 0.000  0.000             0.000
## frankfurter                         0.000 0.000  0.000             0.000
## decalcifier                         0.000 0.000  0.000             0.000
## honey                               0.000 0.000  0.000             0.000
## specialty vegetables                0.000 0.000  0.000             0.000
## cream                               0.000 0.000  0.000             0.000
## hair spray                          0.000 0.000  0.000             0.000
## frozen fruits                       0.000 0.000  0.000             0.000
## rubbing alcohol                     0.000 0.000  0.000             0.000
## liqueur                             0.000 0.000  0.000             0.000
## make up remover                     0.000 0.000  0.000             0.000
## salad dressing                      0.000 0.000  0.000             0.000
## frozen chicken                      0.000 0.000  0.000             0.000
## whisky                              0.000 0.000  0.000             0.000
## baby cosmetics                      0.000 0.000  0.000             0.000
## toilet cleaner                      0.000 0.000  0.000             0.000
## bags                                0.000 0.000  0.000             0.000
## canned herbs                        0.000 0.000  0.000             0.000
## kitchen utensil                     0.000 0.000  0.000             0.000
## preservation products               0.000 0.000  0.000             0.000
## baby food                           0.000 0.000  0.000             0.000
## frozen herbss                       0.000 0.000  0.000             0.000
## organic sausage                     0.000 0.000  0.000             0.000
## sound storage medium                0.000 0.000  0.000             0.000
##                           bottled beer flower (seeds) cooking oil dish cleaner
## rice                             0.003          0.004       0.001        0.003
## veggies                          0.000          0.003       0.000        0.002
## loaf                             0.000          0.002       0.000        0.002
## coke                             0.000          0.001       0.000        0.002
## yogurt                           0.001          0.001       0.001        0.002
## vegetables                       0.002          0.002       0.001        0.002
## mineral water                    0.000          0.001       0.000        0.001
## Plastic bags                     0.001          0.001       0.001        0.001
## tropical fruit                   0.000          0.001       0.000        0.001
## marinated meat                   0.000          0.001       0.000        0.001
## pies/pasties                     0.000          0.001       0.000        0.001
## newspapers                       0.001          0.001       0.001        0.000
## citrus                           0.000          0.001       0.000        0.001
## whipped/sour cream               0.000          0.002       0.001        0.002
## heinken                          0.000          0.001       0.000        0.000
## green tea                        0.000          0.001       0.000        0.001
## pip fruit                        0.000          0.001       0.000        0.001
## brown bread                      0.001          0.001       0.000        0.001
## fruit/vegetable juice            0.000          0.000       0.000        0.000
## domestic eggs                    0.000          0.001       0.000        0.001
## coffee                           0.001          0.001       0.001        0.001
## margarine                        0.000          0.001       0.000        0.001
## beef                             0.001          0.001       0.000        0.001
## curd                             0.001          0.000       0.001        0.001
## butter                           0.000          0.002       0.000        0.001
## marinated meats                  0.000          0.001       0.000        0.001
## napkins                          0.001          0.001       0.001        0.002
## halal meat                       0.000          0.001       0.000        0.001
## chocolate                        0.000          0.001       0.000        0.001
## frozen vegetables                0.001          0.001       0.000        0.001
## chicken                          0.000          0.001       0.001        0.001
## white bread                      0.000          0.000       0.000        0.001
## cream cheese                     0.000          0.000       0.000        0.000
## waffles                          0.000          0.000       0.000        0.001
## dessert                          0.000          0.001       0.000        0.000
## salty snack                      0.000          0.000       0.000        0.000
## long life bakery product         0.000          0.000       0.000        0.001
## berries                          0.000          0.001       0.000        0.001
## hamburger meat                   0.000          0.001       0.000        0.001
## sugar                            0.000          0.000       0.000        0.001
## hygiene articles                 0.000          0.000       0.000        0.001
## UHT-milk                         0.000          0.000       0.000        0.001
## onions                           0.001          0.000       0.001        0.001
## candy                            0.000          0.000       0.000        0.001
## specialty chocolate              0.000          0.000       0.000        0.001
## butter milk                      0.000          0.000       0.000        0.001
## oil                              0.000          0.001       0.000        0.001
## frozen meals                     0.000          0.000       0.000        0.000
## misc. beverages                  0.000          0.000       0.000        0.000
## specialty bar                    0.000          0.000       0.000        0.001
## ham                              0.000          0.000       0.000        0.000
## beverages                        0.000          0.001       0.000        0.000
## meat                             0.000          0.000       0.000        0.001
## ice cream                        0.000          0.000       0.000        0.001
## sliced cheese                    0.000          0.000       0.000        0.000
## hard cheese                      0.000          0.000       0.000        0.001
## noodles                          0.002          0.000       0.002        0.000
## grapes                           0.000          0.000       0.000        0.001
## cat food                         0.000          0.000       0.000        0.001
## chewing gum                      0.000          0.000       0.000        0.000
## soda                             0.002          0.000       0.002        0.000
## detergent                        0.000          0.001       0.000        0.001
## red/blush wine                   0.000          0.000       0.000        0.000
## white wine                       0.000          0.000       0.000        0.000
## turkey                           0.001          0.000       0.001        0.000
## dishes                           0.000          0.000       0.000        0.001
## bottled water                    0.002          0.000       0.001        0.000
## flour                            0.000          0.000       0.000        0.000
## semi-finished bread              0.000          0.000       0.000        0.000
## baking powder                    0.000          0.001       0.000        0.000
## pickled vegetables               0.000          0.000       0.000        0.000
## herbs                            0.000          0.000       0.000        0.001
## tropical herbs                   0.001          0.000       0.001        0.000
## soft cheese                      0.000          0.000       0.000        0.001
## tea                              0.001          0.000       0.001        0.000
## processed cheese                 0.000          0.000       0.000        0.000
## sausage                          0.001          0.000       0.001        0.000
## pasta                            0.000          0.000       0.000        0.000
## citrus herbs                     0.001          0.000       0.001        0.000
## potted plants                    0.000          0.000       0.000        0.000
## canned fish                      0.000          0.000       0.000        0.000
## seasonal products                0.000          0.000       0.000        0.000
## cake bar                         0.000          0.000       0.000        0.000
## carrots                          0.001          0.000       0.001        0.000
## mustard                          0.000          0.000       0.000        0.001
## packaged fruit/vegetables        0.000          0.000       0.000        0.000
## spread cheese                    0.000          0.000       0.000        0.000
## frozen dessert                   0.000          0.000       0.000        0.000
## frozen fish                      0.000          0.000       0.000        0.000
## cling film/bags                  0.000          0.000       0.000        0.001
## salt                             0.000          0.000       0.000        0.000
## liquor                           0.000          0.000       0.000        0.000
## canned vegetables                0.000          0.000       0.000        0.000
## bottled beer                     0.010          0.000       0.001        0.000
## flower (seeds)                   0.000          0.010       0.000        0.000
## cooking oil                      0.001          0.000       0.010        0.000
## dish cleaner                     0.000          0.000       0.000        0.010
## condensed milk                   0.000          0.000       0.000        0.000
## roll products                    0.000          0.000       0.000        0.000
## photo/film                       0.000          0.000       0.000        0.000
## pet care                         0.000          0.000       0.000        0.000
## chocolate marshmallow            0.000          0.000       0.000        0.000
## herbs/vegetable juice            0.001          0.000       0.001        0.000
## whole milk                       0.001          0.000       0.000        0.000
## candles                          0.000          0.000       0.000        0.000
## mayonnaise                       0.000          0.000       0.000        0.001
## Instant food products            0.000          0.000       0.000        0.000
## sweet spreads                    0.000          0.000       0.000        0.000
## liquor (appetizer)               0.001          0.000       0.000        0.000
## specialty cheese                 0.000          0.000       0.000        0.000
## frozen potato products           0.000          0.000       0.000        0.000
## house keeping products           0.000          0.000       0.000        0.000
## dog food                         0.000          0.000       0.000        0.000
## soy                              0.000          0.000       0.000        0.000
## instant coffee                   0.000          0.000       0.000        0.000
## pip herbs                        0.000          0.000       0.000        0.000
## zwieback                         0.000          0.000       0.000        0.000
## finished products                0.000          0.000       0.000        0.000
## popcorn                          0.000          0.000       0.000        0.000
## vinegar                          0.000          0.000       0.000        0.000
## soups                            0.000          0.000       0.000        0.000
## female sanitary products         0.000          0.000       0.000        0.000
## sparkling wine                   0.000          0.000       0.000        0.000
## dental care                      0.000          0.000       0.000        0.000
## cereals                          0.000          0.000       0.000        0.000
## kitchen towels                   0.000          0.000       0.000        0.000
## curd cheese                      0.000          0.000       0.000        0.000
## other vegetables                 0.000          0.000       0.000        0.000
## rolls/buns                       0.001          0.000       0.000        0.000
## softener                         0.000          0.000       0.000        0.000
## cleaner                          0.000          0.000       0.000        0.000
## spices                           0.000          0.000       0.000        0.000
## jam                              0.000          0.000       0.000        0.000
## sauces                           0.000          0.000       0.000        0.000
## rum                              0.000          0.000       0.000        0.000
## liver loaf                       0.000          0.000       0.000        0.000
## male cosmetics                   0.000          0.000       0.000        0.000
## meat spreads                     0.000          0.000       0.000        0.000
## packaged herbs/vegetables        0.000          0.000       0.000        0.000
## brandy                           0.000          0.000       0.000        0.000
## ketchup                          0.000          0.000       0.000        0.000
## abrasive cleaner                 0.000          0.000       0.000        0.000
## light bulbs                      0.000          0.000       0.000        0.000
## artif. sweetener                 0.000          0.000       0.000        0.000
## nuts/prunes                      0.000          0.000       0.000        0.000
## specialty fat                    0.000          0.000       0.000        0.000
## skin care                        0.000          0.000       0.000        0.000
## fish                             0.000          0.000       0.000        0.000
## potato products                  0.000          0.000       0.000        0.000
## root vegetables                  0.000          0.000       0.000        0.000
## snack products                   0.000          0.000       0.000        0.000
## nut snack                        0.000          0.000       0.000        0.000
## soap                             0.000          0.000       0.000        0.000
## syrup                            0.000          0.000       0.000        0.000
## bathroom cleaner                 0.000          0.000       0.000        0.000
## canned fruit                     0.000          0.000       0.000        0.000
## cookware                         0.000          0.000       0.000        0.000
## cooking chocolate                0.000          0.000       0.000        0.000
## tidbits                          0.000          0.000       0.000        0.000
## cocoa drinks                     0.000          0.000       0.000        0.000
## pudding powder                   0.000          0.000       0.000        0.000
## ready soups                      0.000          0.000       0.000        0.000
## organic marinated meat           0.000          0.000       0.000        0.000
## flower soil/fertilizer           0.000          0.000       0.000        0.000
## organic products                 0.000          0.000       0.000        0.000
## pot plants                       0.000          0.000       0.000        0.000
## prosecco                         0.000          0.000       0.000        0.000
## frankfurter                      0.000          0.000       0.000        0.000
## decalcifier                      0.000          0.000       0.000        0.000
## honey                            0.000          0.000       0.000        0.000
## specialty vegetables             0.000          0.000       0.000        0.000
## cream                            0.000          0.000       0.000        0.000
## hair spray                       0.000          0.000       0.000        0.000
## frozen fruits                    0.000          0.000       0.000        0.000
## rubbing alcohol                  0.000          0.000       0.000        0.000
## liqueur                          0.000          0.000       0.000        0.000
## make up remover                  0.000          0.000       0.000        0.000
## salad dressing                   0.000          0.000       0.000        0.000
## frozen chicken                   0.000          0.000       0.000        0.000
## whisky                           0.000          0.000       0.000        0.000
## baby cosmetics                   0.000          0.000       0.000        0.000
## toilet cleaner                   0.000          0.000       0.000        0.000
## bags                             0.000          0.000       0.000        0.000
## canned herbs                     0.000          0.000       0.000        0.000
## kitchen utensil                  0.000          0.000       0.000        0.000
## preservation products            0.000          0.000       0.000        0.000
## baby food                        0.000          0.000       0.000        0.000
## frozen herbss                    0.000          0.000       0.000        0.000
## organic sausage                  0.000          0.000       0.000        0.000
## sound storage medium             0.000          0.000       0.000        0.000
##                           condensed milk roll products photo/film pet care
## rice                               0.002         0.004      0.002    0.002
## veggies                            0.002         0.004      0.001    0.002
## loaf                               0.002         0.002      0.001    0.001
## coke                               0.002         0.001      0.001    0.002
## yogurt                             0.002         0.002      0.001    0.001
## vegetables                         0.002         0.003      0.001    0.001
## mineral water                      0.001         0.001      0.000    0.001
## Plastic bags                       0.002         0.001      0.000    0.001
## tropical fruit                     0.001         0.002      0.000    0.001
## marinated meat                     0.001         0.002      0.000    0.001
## pies/pasties                       0.001         0.001      0.000    0.000
## newspapers                         0.001         0.001      0.001    0.001
## citrus                             0.001         0.001      0.000    0.001
## whipped/sour cream                 0.001         0.002      0.001    0.001
## heinken                            0.001         0.002      0.000    0.001
## green tea                          0.000         0.001      0.000    0.000
## pip fruit                          0.001         0.001      0.001    0.001
## brown bread                        0.001         0.001      0.000    0.001
## fruit/vegetable juice              0.001         0.001      0.000    0.001
## domestic eggs                      0.001         0.002      0.001    0.000
## coffee                             0.003         0.001      0.001    0.001
## margarine                          0.000         0.002      0.000    0.000
## beef                               0.001         0.001      0.001    0.000
## curd                               0.001         0.002      0.001    0.000
## butter                             0.001         0.001      0.000    0.000
## marinated meats                    0.001         0.001      0.000    0.000
## napkins                            0.001         0.001      0.001    0.001
## halal meat                         0.000         0.001      0.000    0.001
## chocolate                          0.000         0.001      0.000    0.001
## frozen vegetables                  0.001         0.001      0.001    0.000
## chicken                            0.001         0.001      0.000    0.000
## white bread                        0.001         0.001      0.000    0.001
## cream cheese                       0.000         0.001      0.000    0.001
## waffles                            0.001         0.001      0.000    0.001
## dessert                            0.000         0.000      0.000    0.000
## salty snack                        0.001         0.001      0.000    0.000
## long life bakery product           0.001         0.000      0.000    0.000
## berries                            0.000         0.001      0.000    0.001
## hamburger meat                     0.000         0.001      0.000    0.000
## sugar                              0.001         0.001      0.000    0.000
## hygiene articles                   0.000         0.001      0.001    0.000
## UHT-milk                           0.001         0.000      0.000    0.001
## onions                             0.000         0.001      0.000    0.001
## candy                              0.000         0.000      0.000    0.000
## specialty chocolate                0.000         0.001      0.000    0.000
## butter milk                        0.000         0.001      0.001    0.000
## oil                                0.001         0.001      0.000    0.000
## frozen meals                       0.000         0.000      0.000    0.000
## misc. beverages                    0.000         0.001      0.000    0.000
## specialty bar                      0.000         0.000      0.000    0.000
## ham                                0.000         0.000      0.000    0.000
## beverages                          0.000         0.000      0.000    0.000
## meat                               0.000         0.001      0.000    0.000
## ice cream                          0.000         0.000      0.000    0.000
## sliced cheese                      0.000         0.001      0.000    0.000
## hard cheese                        0.000         0.000      0.000    0.001
## noodles                            0.000         0.000      0.000    0.000
## grapes                             0.000         0.000      0.000    0.000
## cat food                           0.000         0.001      0.000    0.001
## chewing gum                        0.000         0.000      0.000    0.000
## soda                               0.000         0.000      0.000    0.000
## detergent                          0.000         0.001      0.000    0.000
## red/blush wine                     0.000         0.000      0.000    0.000
## white wine                         0.000         0.000      0.000    0.000
## turkey                             0.000         0.000      0.000    0.000
## dishes                             0.000         0.000      0.000    0.000
## bottled water                      0.000         0.000      0.000    0.000
## flour                              0.000         0.001      0.000    0.000
## semi-finished bread                0.000         0.000      0.000    0.000
## baking powder                      0.000         0.000      0.000    0.000
## pickled vegetables                 0.000         0.000      0.000    0.000
## herbs                              0.000         0.001      0.000    0.000
## tropical herbs                     0.000         0.000      0.000    0.000
## soft cheese                        0.000         0.001      0.000    0.000
## tea                                0.000         0.000      0.000    0.000
## processed cheese                   0.000         0.000      0.000    0.000
## sausage                            0.000         0.000      0.000    0.000
## pasta                              0.000         0.001      0.000    0.000
## citrus herbs                       0.000         0.000      0.000    0.000
## potted plants                      0.000         0.000      0.000    0.000
## canned fish                        0.000         0.000      0.000    0.000
## seasonal products                  0.000         0.000      0.000    0.000
## cake bar                           0.000         0.000      0.000    0.000
## carrots                            0.000         0.000      0.000    0.000
## mustard                            0.000         0.000      0.000    0.000
## packaged fruit/vegetables          0.000         0.000      0.000    0.000
## spread cheese                      0.000         0.000      0.000    0.000
## frozen dessert                     0.000         0.000      0.000    0.000
## frozen fish                        0.000         0.000      0.000    0.000
## cling film/bags                    0.001         0.000      0.000    0.000
## salt                               0.000         0.000      0.000    0.000
## liquor                             0.000         0.000      0.000    0.000
## canned vegetables                  0.000         0.000      0.000    0.000
## bottled beer                       0.000         0.000      0.000    0.000
## flower (seeds)                     0.000         0.000      0.000    0.000
## cooking oil                        0.000         0.000      0.000    0.000
## dish cleaner                       0.000         0.000      0.000    0.000
## condensed milk                     0.010         0.000      0.000    0.000
## roll products                      0.000         0.010      0.000    0.000
## photo/film                         0.000         0.000      0.010    0.000
## pet care                           0.000         0.000      0.000    0.010
## chocolate marshmallow              0.000         0.000      0.000    0.000
## herbs/vegetable juice              0.000         0.000      0.000    0.000
## whole milk                         0.000         0.000      0.000    0.000
## candles                            0.000         0.000      0.000    0.000
## mayonnaise                         0.000         0.000      0.000    0.000
## Instant food products              0.000         0.000      0.000    0.000
## sweet spreads                      0.000         0.000      0.000    0.000
## liquor (appetizer)                 0.000         0.000      0.000    0.000
## specialty cheese                   0.000         0.000      0.000    0.000
## frozen potato products             0.000         0.000      0.000    0.000
## house keeping products             0.000         0.000      0.000    0.000
## dog food                           0.000         0.000      0.000    0.000
## soy                                0.000         0.000      0.000    0.000
## instant coffee                     0.000         0.000      0.000    0.000
## pip herbs                          0.000         0.000      0.000    0.000
## zwieback                           0.000         0.000      0.000    0.000
## finished products                  0.000         0.000      0.000    0.000
## popcorn                            0.000         0.000      0.000    0.000
## vinegar                            0.000         0.000      0.000    0.000
## soups                              0.000         0.000      0.000    0.000
## female sanitary products           0.000         0.000      0.000    0.000
## sparkling wine                     0.000         0.000      0.000    0.000
## dental care                        0.000         0.000      0.000    0.000
## cereals                            0.000         0.000      0.000    0.000
## kitchen towels                     0.000         0.000      0.000    0.000
## curd cheese                        0.000         0.000      0.000    0.000
## other vegetables                   0.000         0.000      0.000    0.000
## rolls/buns                         0.000         0.000      0.000    0.000
## softener                           0.000         0.000      0.000    0.000
## cleaner                            0.000         0.000      0.000    0.000
## spices                             0.000         0.000      0.000    0.000
## jam                                0.000         0.000      0.000    0.000
## sauces                             0.000         0.000      0.000    0.000
## rum                                0.000         0.000      0.000    0.000
## liver loaf                         0.000         0.000      0.000    0.000
## male cosmetics                     0.000         0.000      0.000    0.000
## meat spreads                       0.000         0.000      0.000    0.000
## packaged herbs/vegetables          0.000         0.000      0.000    0.000
## brandy                             0.000         0.000      0.000    0.000
## ketchup                            0.000         0.000      0.000    0.000
## abrasive cleaner                   0.000         0.000      0.000    0.000
## light bulbs                        0.000         0.000      0.000    0.000
## artif. sweetener                   0.000         0.000      0.000    0.000
## nuts/prunes                        0.000         0.000      0.000    0.000
## specialty fat                      0.000         0.000      0.000    0.000
## skin care                          0.000         0.000      0.000    0.000
## fish                               0.000         0.000      0.000    0.000
## potato products                    0.000         0.000      0.000    0.000
## root vegetables                    0.000         0.000      0.000    0.000
## snack products                     0.000         0.000      0.000    0.000
## nut snack                          0.000         0.000      0.000    0.000
## soap                               0.000         0.000      0.000    0.000
## syrup                              0.000         0.000      0.000    0.000
## bathroom cleaner                   0.000         0.000      0.000    0.000
## canned fruit                       0.000         0.000      0.000    0.000
## cookware                           0.000         0.000      0.000    0.000
## cooking chocolate                  0.000         0.000      0.000    0.000
## tidbits                            0.000         0.000      0.000    0.000
## cocoa drinks                       0.000         0.000      0.000    0.000
## pudding powder                     0.000         0.000      0.000    0.000
## ready soups                        0.000         0.000      0.000    0.000
## organic marinated meat             0.000         0.000      0.000    0.000
## flower soil/fertilizer             0.000         0.000      0.000    0.000
## organic products                   0.000         0.000      0.000    0.000
## pot plants                         0.000         0.000      0.000    0.000
## prosecco                           0.000         0.000      0.000    0.000
## frankfurter                        0.000         0.000      0.000    0.000
## decalcifier                        0.000         0.000      0.000    0.000
## honey                              0.000         0.000      0.000    0.000
## specialty vegetables               0.000         0.000      0.000    0.000
## cream                              0.000         0.000      0.000    0.000
## hair spray                         0.000         0.000      0.000    0.000
## frozen fruits                      0.000         0.000      0.000    0.000
## rubbing alcohol                    0.000         0.000      0.000    0.000
## liqueur                            0.000         0.000      0.000    0.000
## make up remover                    0.000         0.000      0.000    0.000
## salad dressing                     0.000         0.000      0.000    0.000
## frozen chicken                     0.000         0.000      0.000    0.000
## whisky                             0.000         0.000      0.000    0.000
## baby cosmetics                     0.000         0.000      0.000    0.000
## toilet cleaner                     0.000         0.000      0.000    0.000
## bags                               0.000         0.000      0.000    0.000
## canned herbs                       0.000         0.000      0.000    0.000
## kitchen utensil                    0.000         0.000      0.000    0.000
## preservation products              0.000         0.000      0.000    0.000
## baby food                          0.000         0.000      0.000    0.000
## frozen herbss                      0.000         0.000      0.000    0.000
## organic sausage                    0.000         0.000      0.000    0.000
## sound storage medium               0.000         0.000      0.000    0.000
##                           chocolate marshmallow herbs/vegetable juice
## rice                                      0.003                 0.003
## veggies                                   0.002                 0.000
## loaf                                      0.002                 0.000
## coke                                      0.002                 0.000
## yogurt                                    0.001                 0.002
## vegetables                                0.001                 0.002
## mineral water                             0.001                 0.000
## Plastic bags                              0.000                 0.001
## tropical fruit                            0.002                 0.000
## marinated meat                            0.001                 0.000
## pies/pasties                              0.001                 0.000
## newspapers                                0.001                 0.001
## citrus                                    0.001                 0.000
## whipped/sour cream                        0.001                 0.001
## heinken                                   0.001                 0.000
## green tea                                 0.000                 0.000
## pip fruit                                 0.001                 0.000
## brown bread                               0.000                 0.001
## fruit/vegetable juice                     0.000                 0.000
## domestic eggs                             0.002                 0.001
## coffee                                    0.001                 0.001
## margarine                                 0.001                 0.001
## beef                                      0.001                 0.001
## curd                                      0.001                 0.001
## butter                                    0.001                 0.001
## marinated meats                           0.001                 0.000
## napkins                                   0.001                 0.000
## halal meat                                0.001                 0.000
## chocolate                                 0.002                 0.000
## frozen vegetables                         0.001                 0.001
## chicken                                   0.001                 0.001
## white bread                               0.000                 0.001
## cream cheese                              0.001                 0.001
## waffles                                   0.001                 0.001
## dessert                                   0.001                 0.000
## salty snack                               0.000                 0.001
## long life bakery product                  0.001                 0.000
## berries                                   0.000                 0.001
## hamburger meat                            0.001                 0.000
## sugar                                     0.001                 0.001
## hygiene articles                          0.001                 0.000
## UHT-milk                                  0.000                 0.000
## onions                                    0.000                 0.000
## candy                                     0.002                 0.000
## specialty chocolate                       0.001                 0.000
## butter milk                               0.000                 0.001
## oil                                       0.001                 0.000
## frozen meals                              0.000                 0.000
## misc. beverages                           0.000                 0.000
## specialty bar                             0.000                 0.000
## ham                                       0.001                 0.000
## beverages                                 0.001                 0.000
## meat                                      0.000                 0.000
## ice cream                                 0.001                 0.001
## sliced cheese                             0.000                 0.001
## hard cheese                               0.000                 0.001
## noodles                                   0.000                 0.002
## grapes                                    0.000                 0.000
## cat food                                  0.000                 0.000
## chewing gum                               0.001                 0.000
## soda                                      0.000                 0.002
## detergent                                 0.000                 0.000
## red/blush wine                            0.000                 0.000
## white wine                                0.000                 0.000
## turkey                                    0.000                 0.001
## dishes                                    0.000                 0.000
## bottled water                             0.000                 0.002
## flour                                     0.001                 0.000
## semi-finished bread                       0.001                 0.000
## baking powder                             0.000                 0.000
## pickled vegetables                        0.000                 0.000
## herbs                                     0.000                 0.000
## tropical herbs                            0.000                 0.002
## soft cheese                               0.000                 0.000
## tea                                       0.000                 0.001
## processed cheese                          0.000                 0.000
## sausage                                   0.000                 0.001
## pasta                                     0.000                 0.000
## citrus herbs                              0.000                 0.001
## potted plants                             0.000                 0.000
## canned fish                               0.000                 0.000
## seasonal products                         0.000                 0.000
## cake bar                                  0.000                 0.000
## carrots                                   0.000                 0.001
## mustard                                   0.001                 0.000
## packaged fruit/vegetables                 0.000                 0.000
## spread cheese                             0.000                 0.000
## frozen dessert                            0.000                 0.000
## frozen fish                               0.000                 0.000
## cling film/bags                           0.000                 0.000
## salt                                      0.000                 0.000
## liquor                                    0.000                 0.000
## canned vegetables                         0.000                 0.000
## bottled beer                              0.000                 0.001
## flower (seeds)                            0.000                 0.000
## cooking oil                               0.000                 0.001
## dish cleaner                              0.000                 0.000
## condensed milk                            0.000                 0.000
## roll products                             0.000                 0.000
## photo/film                                0.000                 0.000
## pet care                                  0.000                 0.000
## chocolate marshmallow                     0.009                 0.000
## herbs/vegetable juice                     0.000                 0.009
## whole milk                                0.000                 0.001
## candles                                   0.000                 0.000
## mayonnaise                                0.000                 0.000
## Instant food products                     0.000                 0.000
## sweet spreads                             0.000                 0.000
## liquor (appetizer)                        0.000                 0.000
## specialty cheese                          0.000                 0.000
## frozen potato products                    0.000                 0.000
## house keeping products                    0.000                 0.000
## dog food                                  0.000                 0.000
## soy                                       0.000                 0.001
## instant coffee                            0.000                 0.000
## pip herbs                                 0.000                 0.001
## zwieback                                  0.000                 0.000
## finished products                         0.000                 0.000
## popcorn                                   0.000                 0.000
## vinegar                                   0.000                 0.000
## soups                                     0.000                 0.000
## female sanitary products                  0.000                 0.000
## sparkling wine                            0.000                 0.000
## dental care                               0.000                 0.000
## cereals                                   0.000                 0.000
## kitchen towels                            0.000                 0.000
## curd cheese                               0.000                 0.000
## other vegetables                          0.000                 0.000
## rolls/buns                                0.000                 0.001
## softener                                  0.000                 0.000
## cleaner                                   0.000                 0.000
## spices                                    0.000                 0.000
## jam                                       0.000                 0.000
## sauces                                    0.000                 0.000
## rum                                       0.000                 0.000
## liver loaf                                0.000                 0.000
## male cosmetics                            0.000                 0.000
## meat spreads                              0.000                 0.000
## packaged herbs/vegetables                 0.000                 0.000
## brandy                                    0.000                 0.000
## ketchup                                   0.000                 0.000
## abrasive cleaner                          0.000                 0.000
## light bulbs                               0.000                 0.000
## artif. sweetener                          0.000                 0.000
## nuts/prunes                               0.000                 0.000
## specialty fat                             0.000                 0.000
## skin care                                 0.000                 0.000
## fish                                      0.000                 0.000
## potato products                           0.000                 0.000
## root vegetables                           0.000                 0.000
## snack products                            0.000                 0.000
## nut snack                                 0.000                 0.000
## soap                                      0.000                 0.000
## syrup                                     0.000                 0.000
## bathroom cleaner                          0.000                 0.000
## canned fruit                              0.000                 0.000
## cookware                                  0.000                 0.000
## cooking chocolate                         0.000                 0.000
## tidbits                                   0.000                 0.000
## cocoa drinks                              0.000                 0.000
## pudding powder                            0.000                 0.000
## ready soups                               0.000                 0.000
## organic marinated meat                    0.000                 0.000
## flower soil/fertilizer                    0.000                 0.000
## organic products                          0.000                 0.000
## pot plants                                0.000                 0.000
## prosecco                                  0.000                 0.000
## frankfurter                               0.000                 0.000
## decalcifier                               0.000                 0.000
## honey                                     0.000                 0.000
## specialty vegetables                      0.000                 0.000
## cream                                     0.000                 0.000
## hair spray                                0.000                 0.000
## frozen fruits                             0.000                 0.000
## rubbing alcohol                           0.000                 0.000
## liqueur                                   0.000                 0.000
## make up remover                           0.000                 0.000
## salad dressing                            0.000                 0.000
## frozen chicken                            0.000                 0.000
## whisky                                    0.000                 0.000
## baby cosmetics                            0.000                 0.000
## toilet cleaner                            0.000                 0.000
## bags                                      0.000                 0.000
## canned herbs                              0.000                 0.000
## kitchen utensil                           0.000                 0.000
## preservation products                     0.000                 0.000
## baby food                                 0.000                 0.000
## frozen herbss                             0.000                 0.000
## organic sausage                           0.000                 0.000
## sound storage medium                      0.000                 0.000
##                           whole milk candles mayonnaise Instant food products
## rice                           0.000   0.003      0.003                 0.003
## veggies                        0.000   0.002      0.003                 0.002
## loaf                           0.000   0.001      0.002                 0.002
## coke                           0.000   0.001      0.002                 0.002
## yogurt                         0.001   0.001      0.003                 0.001
## vegetables                     0.000   0.002      0.002                 0.002
## mineral water                  0.000   0.001      0.001                 0.001
## Plastic bags                   0.001   0.000      0.002                 0.001
## tropical fruit                 0.000   0.001      0.001                 0.001
## marinated meat                 0.000   0.001      0.002                 0.001
## pies/pasties                   0.001   0.002      0.001                 0.001
## newspapers                     0.001   0.001      0.001                 0.001
## citrus                         0.000   0.001      0.001                 0.001
## whipped/sour cream             0.001   0.001      0.001                 0.001
## heinken                        0.000   0.001      0.000                 0.001
## green tea                      0.000   0.001      0.000                 0.000
## pip fruit                      0.000   0.001      0.001                 0.001
## brown bread                    0.001   0.000      0.001                 0.001
## fruit/vegetable juice          0.000   0.001      0.001                 0.001
## domestic eggs                  0.000   0.001      0.001                 0.001
## coffee                         0.001   0.001      0.001                 0.001
## margarine                      0.000   0.002      0.002                 0.001
## beef                           0.001   0.001      0.001                 0.001
## curd                           0.001   0.001      0.001                 0.001
## butter                         0.001   0.001      0.001                 0.001
## marinated meats                0.000   0.000      0.001                 0.001
## napkins                        0.001   0.000      0.001                 0.001
## halal meat                     0.000   0.001      0.001                 0.001
## chocolate                      0.001   0.001      0.002                 0.000
## frozen vegetables              0.000   0.001      0.001                 0.001
## chicken                        0.001   0.001      0.001                 0.000
## white bread                    0.001   0.000      0.001                 0.001
## cream cheese                   0.001   0.000      0.001                 0.000
## waffles                        0.001   0.000      0.001                 0.000
## dessert                        0.001   0.001      0.001                 0.000
## salty snack                    0.000   0.000      0.001                 0.001
## long life bakery product       0.000   0.001      0.001                 0.000
## berries                        0.000   0.000      0.001                 0.000
## hamburger meat                 0.001   0.000      0.001                 0.003
## sugar                          0.000   0.001      0.001                 0.000
## hygiene articles               0.001   0.000      0.001                 0.001
## UHT-milk                       0.000   0.000      0.001                 0.000
## onions                         0.001   0.000      0.001                 0.000
## candy                          0.000   0.000      0.001                 0.000
## specialty chocolate            0.000   0.000      0.000                 0.000
## butter milk                    0.000   0.000      0.001                 0.000
## oil                            0.001   0.001      0.001                 0.001
## frozen meals                   0.001   0.000      0.000                 0.000
## misc. beverages                0.000   0.000      0.000                 0.000
## specialty bar                  0.000   0.000      0.000                 0.000
## ham                            0.001   0.000      0.001                 0.000
## beverages                      0.000   0.000      0.000                 0.000
## meat                           0.000   0.000      0.000                 0.001
## ice cream                      0.000   0.000      0.000                 0.001
## sliced cheese                  0.001   0.000      0.001                 0.000
## hard cheese                    0.000   0.001      0.001                 0.000
## noodles                        0.000   0.000      0.000                 0.000
## grapes                         0.000   0.000      0.001                 0.000
## cat food                       0.000   0.000      0.000                 0.000
## chewing gum                    0.000   0.000      0.000                 0.000
## soda                           0.001   0.000      0.000                 0.000
## detergent                      0.000   0.001      0.000                 0.000
## red/blush wine                 0.000   0.000      0.000                 0.000
## white wine                     0.000   0.000      0.000                 0.000
## turkey                         0.001   0.000      0.000                 0.000
## dishes                         0.000   0.000      0.000                 0.000
## bottled water                  0.001   0.000      0.000                 0.000
## flour                          0.000   0.000      0.000                 0.000
## semi-finished bread            0.000   0.000      0.000                 0.000
## baking powder                  0.000   0.000      0.000                 0.000
## pickled vegetables             0.000   0.000      0.001                 0.000
## herbs                          0.000   0.000      0.000                 0.000
## tropical herbs                 0.001   0.000      0.000                 0.000
## soft cheese                    0.000   0.001      0.000                 0.000
## tea                            0.000   0.000      0.000                 0.000
## processed cheese               0.000   0.000      0.001                 0.000
## sausage                        0.001   0.000      0.000                 0.000
## pasta                          0.000   0.000      0.000                 0.001
## citrus herbs                   0.001   0.000      0.000                 0.000
## potted plants                  0.000   0.000      0.000                 0.000
## canned fish                    0.000   0.001      0.001                 0.001
## seasonal products              0.000   0.000      0.000                 0.000
## cake bar                       0.000   0.000      0.000                 0.000
## carrots                        0.000   0.000      0.000                 0.000
## mustard                        0.000   0.000      0.001                 0.000
## packaged fruit/vegetables      0.000   0.000      0.000                 0.000
## spread cheese                  0.000   0.000      0.000                 0.000
## frozen dessert                 0.000   0.000      0.000                 0.000
## frozen fish                    0.000   0.000      0.000                 0.000
## cling film/bags                0.000   0.000      0.000                 0.000
## salt                           0.000   0.000      0.000                 0.000
## liquor                         0.000   0.000      0.000                 0.000
## canned vegetables              0.000   0.000      0.000                 0.000
## bottled beer                   0.001   0.000      0.000                 0.000
## flower (seeds)                 0.000   0.000      0.000                 0.000
## cooking oil                    0.000   0.000      0.000                 0.000
## dish cleaner                   0.000   0.000      0.001                 0.000
## condensed milk                 0.000   0.000      0.000                 0.000
## roll products                  0.000   0.000      0.000                 0.000
## photo/film                     0.000   0.000      0.000                 0.000
## pet care                       0.000   0.000      0.000                 0.000
## chocolate marshmallow          0.000   0.000      0.000                 0.000
## herbs/vegetable juice          0.001   0.000      0.000                 0.000
## whole milk                     0.009   0.000      0.000                 0.000
## candles                        0.000   0.009      0.000                 0.000
## mayonnaise                     0.000   0.000      0.009                 0.000
## Instant food products          0.000   0.000      0.000                 0.008
## sweet spreads                  0.000   0.000      0.000                 0.000
## liquor (appetizer)             0.000   0.000      0.000                 0.000
## specialty cheese               0.000   0.000      0.000                 0.000
## frozen potato products         0.000   0.000      0.000                 0.000
## house keeping products         0.000   0.000      0.000                 0.000
## dog food                       0.000   0.000      0.000                 0.000
## soy                            0.000   0.000      0.000                 0.000
## instant coffee                 0.000   0.000      0.000                 0.000
## pip herbs                      0.001   0.000      0.000                 0.000
## zwieback                       0.000   0.000      0.000                 0.000
## finished products              0.000   0.000      0.000                 0.000
## popcorn                        0.000   0.000      0.000                 0.000
## vinegar                        0.000   0.000      0.000                 0.000
## soups                          0.000   0.000      0.000                 0.000
## female sanitary products       0.000   0.000      0.000                 0.000
## sparkling wine                 0.000   0.000      0.000                 0.000
## dental care                    0.000   0.000      0.000                 0.000
## cereals                        0.000   0.000      0.000                 0.000
## kitchen towels                 0.000   0.000      0.000                 0.000
## curd cheese                    0.000   0.000      0.000                 0.000
## other vegetables               0.002   0.000      0.000                 0.000
## rolls/buns                     0.002   0.000      0.000                 0.000
## softener                       0.000   0.000      0.000                 0.000
## cleaner                        0.000   0.000      0.000                 0.000
## spices                         0.000   0.000      0.000                 0.000
## jam                            0.000   0.000      0.000                 0.000
## sauces                         0.000   0.000      0.000                 0.000
## rum                            0.000   0.000      0.000                 0.000
## liver loaf                     0.000   0.000      0.000                 0.000
## male cosmetics                 0.000   0.000      0.000                 0.000
## meat spreads                   0.000   0.000      0.000                 0.000
## packaged herbs/vegetables      0.000   0.000      0.000                 0.000
## brandy                         0.000   0.000      0.000                 0.000
## ketchup                        0.000   0.000      0.000                 0.000
## abrasive cleaner               0.000   0.000      0.000                 0.000
## light bulbs                    0.000   0.000      0.000                 0.000
## artif. sweetener               0.000   0.000      0.000                 0.000
## nuts/prunes                    0.000   0.000      0.000                 0.000
## specialty fat                  0.000   0.000      0.000                 0.000
## skin care                      0.000   0.000      0.000                 0.000
## fish                           0.000   0.000      0.000                 0.000
## potato products                0.000   0.000      0.000                 0.000
## root vegetables                0.001   0.000      0.000                 0.000
## snack products                 0.000   0.000      0.000                 0.000
## nut snack                      0.000   0.000      0.000                 0.000
## soap                           0.000   0.000      0.000                 0.000
## syrup                          0.000   0.000      0.000                 0.000
## bathroom cleaner               0.000   0.000      0.000                 0.000
## canned fruit                   0.000   0.000      0.000                 0.000
## cookware                       0.000   0.000      0.000                 0.000
## cooking chocolate              0.000   0.000      0.000                 0.000
## tidbits                        0.000   0.000      0.000                 0.000
## cocoa drinks                   0.000   0.000      0.000                 0.000
## pudding powder                 0.000   0.000      0.000                 0.000
## ready soups                    0.000   0.000      0.000                 0.000
## organic marinated meat         0.000   0.000      0.000                 0.000
## flower soil/fertilizer         0.000   0.000      0.000                 0.000
## organic products               0.000   0.000      0.000                 0.000
## pot plants                     0.000   0.000      0.000                 0.000
## prosecco                       0.000   0.000      0.000                 0.000
## frankfurter                    0.001   0.000      0.000                 0.000
## decalcifier                    0.000   0.000      0.000                 0.000
## honey                          0.000   0.000      0.000                 0.000
## specialty vegetables           0.000   0.000      0.000                 0.000
## cream                          0.000   0.000      0.000                 0.000
## hair spray                     0.000   0.000      0.000                 0.000
## frozen fruits                  0.000   0.000      0.000                 0.000
## rubbing alcohol                0.000   0.000      0.000                 0.000
## liqueur                        0.000   0.000      0.000                 0.000
## make up remover                0.000   0.000      0.000                 0.000
## salad dressing                 0.000   0.000      0.000                 0.000
## frozen chicken                 0.000   0.000      0.000                 0.000
## whisky                         0.000   0.000      0.000                 0.000
## baby cosmetics                 0.000   0.000      0.000                 0.000
## toilet cleaner                 0.000   0.000      0.000                 0.000
## bags                           0.000   0.000      0.000                 0.000
## canned herbs                   0.000   0.000      0.000                 0.000
## kitchen utensil                0.000   0.000      0.000                 0.000
## preservation products          0.000   0.000      0.000                 0.000
## baby food                      0.000   0.000      0.000                 0.000
## frozen herbss                  0.000   0.000      0.000                 0.000
## organic sausage                0.000   0.000      0.000                 0.000
## sound storage medium           0.000   0.000      0.000                 0.000
##                           sweet spreads liquor (appetizer) specialty cheese
## rice                              0.003              0.002            0.003
## veggies                           0.002              0.001            0.004
## loaf                              0.001              0.001            0.001
## coke                              0.002              0.002            0.001
## yogurt                            0.002              0.001            0.003
## vegetables                        0.002              0.001            0.002
## mineral water                     0.000              0.001            0.002
## Plastic bags                      0.002              0.002            0.001
## tropical fruit                    0.001              0.001            0.001
## marinated meat                    0.001              0.001            0.001
## pies/pasties                      0.001              0.000            0.001
## newspapers                        0.001              0.002            0.000
## citrus                            0.001              0.000            0.001
## whipped/sour cream                0.001              0.001            0.001
## heinken                           0.000              0.002            0.000
## green tea                         0.000              0.002            0.000
## pip fruit                         0.001              0.000            0.001
## brown bread                       0.001              0.000            0.000
## fruit/vegetable juice             0.001              0.000            0.001
## domestic eggs                     0.001              0.000            0.001
## coffee                            0.001              0.001            0.001
## margarine                         0.001              0.000            0.001
## beef                              0.001              0.000            0.001
## curd                              0.001              0.001            0.001
## butter                            0.001              0.000            0.001
## marinated meats                   0.001              0.000            0.001
## napkins                           0.001              0.001            0.000
## halal meat                        0.001              0.001            0.000
## chocolate                         0.001              0.000            0.000
## frozen vegetables                 0.001              0.001            0.001
## chicken                           0.000              0.001            0.000
## white bread                       0.001              0.000            0.001
## cream cheese                      0.001              0.000            0.001
## waffles                           0.001              0.001            0.000
## dessert                           0.000              0.000            0.000
## salty snack                       0.001              0.000            0.001
## long life bakery product          0.001              0.000            0.000
## berries                           0.000              0.000            0.001
## hamburger meat                    0.001              0.000            0.001
## sugar                             0.000              0.000            0.000
## hygiene articles                  0.001              0.001            0.001
## UHT-milk                          0.001              0.001            0.001
## onions                            0.000              0.001            0.001
## candy                             0.000              0.001            0.000
## specialty chocolate               0.000              0.000            0.000
## butter milk                       0.001              0.000            0.001
## oil                               0.000              0.000            0.000
## frozen meals                      0.001              0.000            0.000
## misc. beverages                   0.000              0.000            0.000
## specialty bar                     0.001              0.000            0.000
## ham                               0.001              0.000            0.000
## beverages                         0.001              0.000            0.000
## meat                              0.000              0.000            0.000
## ice cream                         0.000              0.000            0.000
## sliced cheese                     0.001              0.000            0.001
## hard cheese                       0.001              0.000            0.001
## noodles                           0.000              0.000            0.000
## grapes                            0.000              0.000            0.000
## cat food                          0.000              0.000            0.001
## chewing gum                       0.000              0.000            0.000
## soda                              0.000              0.000            0.000
## detergent                         0.000              0.000            0.000
## red/blush wine                    0.000              0.000            0.000
## white wine                        0.000              0.000            0.000
## turkey                            0.000              0.000            0.000
## dishes                            0.000              0.001            0.000
## bottled water                     0.000              0.000            0.000
## flour                             0.000              0.000            0.000
## semi-finished bread               0.000              0.000            0.000
## baking powder                     0.000              0.000            0.000
## pickled vegetables                0.000              0.000            0.000
## herbs                             0.000              0.000            0.000
## tropical herbs                    0.000              0.000            0.000
## soft cheese                       0.000              0.000            0.000
## tea                               0.000              0.000            0.000
## processed cheese                  0.000              0.000            0.000
## sausage                           0.000              0.000            0.000
## pasta                             0.001              0.000            0.000
## citrus herbs                      0.000              0.000            0.000
## potted plants                     0.000              0.000            0.000
## canned fish                       0.000              0.000            0.001
## seasonal products                 0.000              0.000            0.000
## cake bar                          0.000              0.000            0.000
## carrots                           0.000              0.000            0.000
## mustard                           0.000              0.000            0.000
## packaged fruit/vegetables         0.000              0.000            0.000
## spread cheese                     0.000              0.000            0.000
## frozen dessert                    0.001              0.000            0.000
## frozen fish                       0.000              0.000            0.000
## cling film/bags                   0.000              0.000            0.000
## salt                              0.000              0.000            0.000
## liquor                            0.000              0.000            0.000
## canned vegetables                 0.000              0.000            0.001
## bottled beer                      0.000              0.001            0.000
## flower (seeds)                    0.000              0.000            0.000
## cooking oil                       0.000              0.000            0.000
## dish cleaner                      0.000              0.000            0.000
## condensed milk                    0.000              0.000            0.000
## roll products                     0.000              0.000            0.000
## photo/film                        0.000              0.000            0.000
## pet care                          0.000              0.000            0.000
## chocolate marshmallow             0.000              0.000            0.000
## herbs/vegetable juice             0.000              0.000            0.000
## whole milk                        0.000              0.000            0.000
## candles                           0.000              0.000            0.000
## mayonnaise                        0.000              0.000            0.000
## Instant food products             0.000              0.000            0.000
## sweet spreads                     0.008              0.000            0.000
## liquor (appetizer)                0.000              0.008            0.000
## specialty cheese                  0.000              0.000            0.008
## frozen potato products            0.000              0.000            0.000
## house keeping products            0.000              0.000            0.000
## dog food                          0.000              0.000            0.000
## soy                               0.000              0.000            0.000
## instant coffee                    0.000              0.000            0.000
## pip herbs                         0.000              0.000            0.000
## zwieback                          0.000              0.000            0.000
## finished products                 0.000              0.000            0.000
## popcorn                           0.000              0.000            0.000
## vinegar                           0.000              0.000            0.000
## soups                             0.000              0.000            0.000
## female sanitary products          0.000              0.000            0.000
## sparkling wine                    0.000              0.000            0.000
## dental care                       0.000              0.000            0.000
## cereals                           0.000              0.000            0.000
## kitchen towels                    0.000              0.000            0.000
## curd cheese                       0.000              0.000            0.000
## other vegetables                  0.000              0.000            0.000
## rolls/buns                        0.000              0.000            0.000
## softener                          0.000              0.000            0.000
## cleaner                           0.000              0.000            0.000
## spices                            0.000              0.000            0.000
## jam                               0.000              0.000            0.000
## sauces                            0.000              0.000            0.000
## rum                               0.000              0.000            0.000
## liver loaf                        0.000              0.000            0.000
## male cosmetics                    0.000              0.000            0.000
## meat spreads                      0.000              0.000            0.000
## packaged herbs/vegetables         0.000              0.000            0.000
## brandy                            0.000              0.000            0.000
## ketchup                           0.000              0.000            0.000
## abrasive cleaner                  0.000              0.000            0.000
## light bulbs                       0.000              0.000            0.000
## artif. sweetener                  0.000              0.000            0.000
## nuts/prunes                       0.000              0.000            0.000
## specialty fat                     0.000              0.000            0.000
## skin care                         0.000              0.000            0.000
## fish                              0.000              0.000            0.000
## potato products                   0.000              0.000            0.000
## root vegetables                   0.000              0.000            0.000
## snack products                    0.000              0.000            0.000
## nut snack                         0.000              0.000            0.000
## soap                              0.000              0.000            0.000
## syrup                             0.000              0.000            0.000
## bathroom cleaner                  0.000              0.000            0.000
## canned fruit                      0.000              0.000            0.000
## cookware                          0.000              0.000            0.000
## cooking chocolate                 0.000              0.000            0.000
## tidbits                           0.000              0.000            0.000
## cocoa drinks                      0.000              0.000            0.000
## pudding powder                    0.000              0.000            0.000
## ready soups                       0.000              0.000            0.000
## organic marinated meat            0.000              0.000            0.000
## flower soil/fertilizer            0.000              0.000            0.000
## organic products                  0.000              0.000            0.000
## pot plants                        0.000              0.000            0.000
## prosecco                          0.000              0.000            0.000
## frankfurter                       0.000              0.000            0.000
## decalcifier                       0.000              0.000            0.000
## honey                             0.000              0.000            0.000
## specialty vegetables              0.000              0.000            0.000
## cream                             0.000              0.000            0.000
## hair spray                        0.000              0.000            0.000
## frozen fruits                     0.000              0.000            0.000
## rubbing alcohol                   0.000              0.000            0.000
## liqueur                           0.000              0.000            0.000
## make up remover                   0.000              0.000            0.000
## salad dressing                    0.000              0.000            0.000
## frozen chicken                    0.000              0.000            0.000
## whisky                            0.000              0.000            0.000
## baby cosmetics                    0.000              0.000            0.000
## toilet cleaner                    0.000              0.000            0.000
## bags                              0.000              0.000            0.000
## canned herbs                      0.000              0.000            0.000
## kitchen utensil                   0.000              0.000            0.000
## preservation products             0.000              0.000            0.000
## baby food                         0.000              0.000            0.000
## frozen herbss                     0.000              0.000            0.000
## organic sausage                   0.000              0.000            0.000
## sound storage medium              0.000              0.000            0.000
##                           frozen potato products house keeping products
## rice                                       0.004                  0.003
## veggies                                    0.002                  0.002
## loaf                                       0.002                  0.002
## coke                                       0.002                  0.002
## yogurt                                     0.002                  0.002
## vegetables                                 0.002                  0.002
## mineral water                              0.001                  0.001
## Plastic bags                               0.001                  0.002
## tropical fruit                             0.001                  0.001
## marinated meat                             0.001                  0.001
## pies/pasties                               0.001                  0.001
## newspapers                                 0.000                  0.001
## citrus                                     0.001                  0.001
## whipped/sour cream                         0.001                  0.001
## heinken                                    0.001                  0.001
## green tea                                  0.000                  0.000
## pip fruit                                  0.001                  0.001
## brown bread                                0.001                  0.001
## fruit/vegetable juice                      0.001                  0.001
## domestic eggs                              0.000                  0.001
## coffee                                     0.001                  0.001
## margarine                                  0.001                  0.001
## beef                                       0.001                  0.001
## curd                                       0.001                  0.001
## butter                                     0.001                  0.001
## marinated meats                            0.001                  0.001
## napkins                                    0.001                  0.001
## halal meat                                 0.001                  0.001
## chocolate                                  0.001                  0.001
## frozen vegetables                          0.001                  0.001
## chicken                                    0.001                  0.001
## white bread                                0.001                  0.001
## cream cheese                               0.000                  0.000
## waffles                                    0.000                  0.000
## dessert                                    0.001                  0.000
## salty snack                                0.001                  0.000
## long life bakery product                   0.001                  0.001
## berries                                    0.001                  0.001
## hamburger meat                             0.001                  0.000
## sugar                                      0.000                  0.001
## hygiene articles                           0.001                  0.001
## UHT-milk                                   0.000                  0.001
## onions                                     0.000                  0.001
## candy                                      0.001                  0.000
## specialty chocolate                        0.000                  0.001
## butter milk                                0.000                  0.000
## oil                                        0.001                  0.001
## frozen meals                               0.001                  0.001
## misc. beverages                            0.000                  0.000
## specialty bar                              0.001                  0.000
## ham                                        0.001                  0.000
## beverages                                  0.000                  0.000
## meat                                       0.000                  0.000
## ice cream                                  0.001                  0.000
## sliced cheese                              0.000                  0.001
## hard cheese                                0.000                  0.000
## noodles                                    0.000                  0.000
## grapes                                     0.001                  0.000
## cat food                                   0.000                  0.000
## chewing gum                                0.000                  0.000
## soda                                       0.000                  0.000
## detergent                                  0.000                  0.001
## red/blush wine                             0.000                  0.000
## white wine                                 0.000                  0.000
## turkey                                     0.001                  0.000
## dishes                                     0.000                  0.000
## bottled water                              0.000                  0.000
## flour                                      0.000                  0.000
## semi-finished bread                        0.000                  0.000
## baking powder                              0.000                  0.001
## pickled vegetables                         0.000                  0.000
## herbs                                      0.000                  0.000
## tropical herbs                             0.000                  0.000
## soft cheese                                0.000                  0.000
## tea                                        0.000                  0.000
## processed cheese                           0.000                  0.000
## sausage                                    0.000                  0.000
## pasta                                      0.000                  0.000
## citrus herbs                               0.000                  0.000
## potted plants                              0.000                  0.000
## canned fish                                0.000                  0.000
## seasonal products                          0.000                  0.000
## cake bar                                   0.000                  0.001
## carrots                                    0.000                  0.000
## mustard                                    0.000                  0.000
## packaged fruit/vegetables                  0.000                  0.000
## spread cheese                              0.000                  0.000
## frozen dessert                             0.000                  0.000
## frozen fish                                0.000                  0.000
## cling film/bags                            0.000                  0.001
## salt                                       0.000                  0.000
## liquor                                     0.000                  0.000
## canned vegetables                          0.000                  0.000
## bottled beer                               0.000                  0.000
## flower (seeds)                             0.000                  0.000
## cooking oil                                0.000                  0.000
## dish cleaner                               0.000                  0.000
## condensed milk                             0.000                  0.000
## roll products                              0.000                  0.000
## photo/film                                 0.000                  0.000
## pet care                                   0.000                  0.000
## chocolate marshmallow                      0.000                  0.000
## herbs/vegetable juice                      0.000                  0.000
## whole milk                                 0.000                  0.000
## candles                                    0.000                  0.000
## mayonnaise                                 0.000                  0.000
## Instant food products                      0.000                  0.000
## sweet spreads                              0.000                  0.000
## liquor (appetizer)                         0.000                  0.000
## specialty cheese                           0.000                  0.000
## frozen potato products                     0.008                  0.000
## house keeping products                     0.000                  0.008
## dog food                                   0.000                  0.000
## soy                                        0.000                  0.000
## instant coffee                             0.000                  0.000
## pip herbs                                  0.000                  0.000
## zwieback                                   0.000                  0.000
## finished products                          0.000                  0.000
## popcorn                                    0.000                  0.000
## vinegar                                    0.000                  0.000
## soups                                      0.000                  0.000
## female sanitary products                   0.000                  0.000
## sparkling wine                             0.000                  0.000
## dental care                                0.000                  0.000
## cereals                                    0.000                  0.000
## kitchen towels                             0.000                  0.000
## curd cheese                                0.000                  0.000
## other vegetables                           0.000                  0.000
## rolls/buns                                 0.000                  0.000
## softener                                   0.000                  0.000
## cleaner                                    0.000                  0.000
## spices                                     0.000                  0.000
## jam                                        0.000                  0.000
## sauces                                     0.000                  0.000
## rum                                        0.000                  0.000
## liver loaf                                 0.000                  0.000
## male cosmetics                             0.000                  0.000
## meat spreads                               0.000                  0.000
## packaged herbs/vegetables                  0.000                  0.000
## brandy                                     0.000                  0.000
## ketchup                                    0.000                  0.000
## abrasive cleaner                           0.000                  0.000
## light bulbs                                0.000                  0.000
## artif. sweetener                           0.000                  0.000
## nuts/prunes                                0.000                  0.000
## specialty fat                              0.000                  0.000
## skin care                                  0.000                  0.000
## fish                                       0.000                  0.000
## potato products                            0.000                  0.000
## root vegetables                            0.000                  0.000
## snack products                             0.000                  0.000
## nut snack                                  0.000                  0.000
## soap                                       0.000                  0.000
## syrup                                      0.000                  0.000
## bathroom cleaner                           0.000                  0.000
## canned fruit                               0.000                  0.000
## cookware                                   0.000                  0.000
## cooking chocolate                          0.000                  0.000
## tidbits                                    0.000                  0.000
## cocoa drinks                               0.000                  0.000
## pudding powder                             0.000                  0.000
## ready soups                                0.000                  0.000
## organic marinated meat                     0.000                  0.000
## flower soil/fertilizer                     0.000                  0.000
## organic products                           0.000                  0.000
## pot plants                                 0.000                  0.000
## prosecco                                   0.000                  0.000
## frankfurter                                0.000                  0.000
## decalcifier                                0.000                  0.000
## honey                                      0.000                  0.000
## specialty vegetables                       0.000                  0.000
## cream                                      0.000                  0.000
## hair spray                                 0.000                  0.000
## frozen fruits                              0.000                  0.000
## rubbing alcohol                            0.000                  0.000
## liqueur                                    0.000                  0.000
## make up remover                            0.000                  0.000
## salad dressing                             0.000                  0.000
## frozen chicken                             0.000                  0.000
## whisky                                     0.000                  0.000
## baby cosmetics                             0.000                  0.000
## toilet cleaner                             0.000                  0.000
## bags                                       0.000                  0.000
## canned herbs                               0.000                  0.000
## kitchen utensil                            0.000                  0.000
## preservation products                      0.000                  0.000
## baby food                                  0.000                  0.000
## frozen herbss                              0.000                  0.000
## organic sausage                            0.000                  0.000
## sound storage medium                       0.000                  0.000
##                           dog food   soy instant coffee pip herbs zwieback
## rice                         0.003 0.003          0.002     0.002    0.002
## veggies                      0.002 0.000          0.002     0.000    0.002
## loaf                         0.001 0.000          0.002     0.000    0.001
## coke                         0.002 0.000          0.002     0.000    0.001
## yogurt                       0.002 0.002          0.002     0.001    0.001
## vegetables                   0.001 0.002          0.001     0.002    0.001
## mineral water                0.001 0.000          0.001     0.000    0.001
## Plastic bags                 0.002 0.001          0.001     0.001    0.001
## tropical fruit               0.001 0.000          0.001     0.000    0.001
## marinated meat               0.001 0.000          0.001     0.000    0.000
## pies/pasties                 0.001 0.000          0.001     0.000    0.000
## newspapers                   0.001 0.001          0.001     0.000    0.001
## citrus                       0.001 0.000          0.001     0.000    0.001
## whipped/sour cream           0.001 0.001          0.001     0.001    0.001
## heinken                      0.000 0.000          0.001     0.000    0.000
## green tea                    0.001 0.000          0.000     0.000    0.000
## pip fruit                    0.001 0.000          0.001     0.000    0.001
## brown bread                  0.001 0.001          0.000     0.000    0.000
## fruit/vegetable juice        0.001 0.000          0.001     0.000    0.001
## domestic eggs                0.001 0.001          0.001     0.001    0.001
## coffee                       0.001 0.001          0.001     0.001    0.000
## margarine                    0.000 0.001          0.000     0.001    0.001
## beef                         0.001 0.001          0.001     0.001    0.000
## curd                         0.001 0.001          0.001     0.001    0.001
## butter                       0.000 0.000          0.001     0.001    0.001
## marinated meats              0.000 0.000          0.001     0.000    0.001
## napkins                      0.001 0.000          0.001     0.000    0.001
## halal meat                   0.001 0.000          0.000     0.000    0.000
## chocolate                    0.001 0.000          0.000     0.000    0.000
## frozen vegetables            0.001 0.000          0.001     0.000    0.001
## chicken                      0.001 0.000          0.000     0.001    0.000
## white bread                  0.001 0.000          0.001     0.001    0.000
## cream cheese                 0.001 0.000          0.000     0.001    0.000
## waffles                      0.000 0.000          0.001     0.001    0.001
## dessert                      0.000 0.000          0.000     0.000    0.000
## salty snack                  0.001 0.000          0.001     0.000    0.000
## long life bakery product     0.001 0.000          0.000     0.000    0.000
## berries                      0.000 0.001          0.000     0.000    0.000
## hamburger meat               0.000 0.000          0.000     0.001    0.000
## sugar                        0.000 0.001          0.000     0.001    0.000
## hygiene articles             0.000 0.000          0.001     0.001    0.000
## UHT-milk                     0.000 0.000          0.000     0.000    0.001
## onions                       0.000 0.000          0.001     0.000    0.000
## candy                        0.000 0.000          0.000     0.000    0.000
## specialty chocolate          0.001 0.000          0.000     0.000    0.000
## butter milk                  0.000 0.000          0.000     0.001    0.000
## oil                          0.001 0.000          0.000     0.000    0.000
## frozen meals                 0.001 0.000          0.001     0.001    0.000
## misc. beverages              0.000 0.000          0.001     0.000    0.000
## specialty bar                0.000 0.000          0.000     0.000    0.001
## ham                          0.000 0.000          0.000     0.001    0.001
## beverages                    0.000 0.000          0.000     0.000    0.000
## meat                         0.000 0.000          0.000     0.000    0.000
## ice cream                    0.000 0.000          0.000     0.000    0.000
## sliced cheese                0.000 0.001          0.000     0.001    0.000
## hard cheese                  0.001 0.000          0.000     0.001    0.000
## noodles                      0.000 0.002          0.000     0.001    0.000
## grapes                       0.001 0.001          0.000     0.000    0.000
## cat food                     0.000 0.000          0.000     0.000    0.000
## chewing gum                  0.000 0.000          0.000     0.000    0.000
## soda                         0.000 0.002          0.000     0.001    0.000
## detergent                    0.000 0.000          0.000     0.000    0.000
## red/blush wine               0.000 0.000          0.000     0.000    0.000
## white wine                   0.000 0.000          0.000     0.000    0.000
## turkey                       0.000 0.001          0.000     0.001    0.000
## dishes                       0.000 0.000          0.000     0.000    0.001
## bottled water                0.000 0.001          0.000     0.001    0.000
## flour                        0.000 0.000          0.000     0.000    0.000
## semi-finished bread          0.000 0.000          0.000     0.000    0.001
## baking powder                0.001 0.000          0.000     0.000    0.000
## pickled vegetables           0.000 0.000          0.000     0.000    0.000
## herbs                        0.000 0.000          0.000     0.000    0.000
## tropical herbs               0.000 0.001          0.000     0.002    0.000
## soft cheese                  0.000 0.000          0.000     0.000    0.000
## tea                          0.000 0.001          0.000     0.001    0.000
## processed cheese             0.000 0.000          0.000     0.000    0.000
## sausage                      0.000 0.001          0.000     0.001    0.000
## pasta                        0.001 0.000          0.000     0.000    0.000
## citrus herbs                 0.000 0.001          0.000     0.001    0.000
## potted plants                0.001 0.000          0.000     0.000    0.000
## canned fish                  0.000 0.000          0.000     0.000    0.000
## seasonal products            0.000 0.000          0.000     0.000    0.000
## cake bar                     0.000 0.000          0.000     0.000    0.000
## carrots                      0.000 0.001          0.000     0.001    0.000
## mustard                      0.000 0.000          0.000     0.000    0.000
## packaged fruit/vegetables    0.000 0.000          0.000     0.000    0.000
## spread cheese                0.000 0.000          0.000     0.000    0.000
## frozen dessert               0.000 0.000          0.000     0.000    0.000
## frozen fish                  0.000 0.000          0.000     0.000    0.000
## cling film/bags              0.000 0.000          0.000     0.000    0.000
## salt                         0.000 0.000          0.000     0.000    0.000
## liquor                       0.000 0.000          0.000     0.000    0.000
## canned vegetables            0.000 0.000          0.000     0.000    0.000
## bottled beer                 0.000 0.000          0.000     0.000    0.000
## flower (seeds)               0.000 0.000          0.000     0.000    0.000
## cooking oil                  0.000 0.000          0.000     0.000    0.000
## dish cleaner                 0.000 0.000          0.000     0.000    0.000
## condensed milk               0.000 0.000          0.000     0.000    0.000
## roll products                0.000 0.000          0.000     0.000    0.000
## photo/film                   0.000 0.000          0.000     0.000    0.000
## pet care                     0.000 0.000          0.000     0.000    0.000
## chocolate marshmallow        0.000 0.000          0.000     0.000    0.000
## herbs/vegetable juice        0.000 0.001          0.000     0.001    0.000
## whole milk                   0.000 0.000          0.000     0.001    0.000
## candles                      0.000 0.000          0.000     0.000    0.000
## mayonnaise                   0.000 0.000          0.000     0.000    0.000
## Instant food products        0.000 0.000          0.000     0.000    0.000
## sweet spreads                0.000 0.000          0.000     0.000    0.000
## liquor (appetizer)           0.000 0.000          0.000     0.000    0.000
## specialty cheese             0.000 0.000          0.000     0.000    0.000
## frozen potato products       0.000 0.000          0.000     0.000    0.000
## house keeping products       0.000 0.000          0.000     0.000    0.000
## dog food                     0.008 0.000          0.000     0.000    0.000
## soy                          0.000 0.008          0.000     0.000    0.000
## instant coffee               0.000 0.000          0.007     0.000    0.000
## pip herbs                    0.000 0.000          0.000     0.007    0.000
## zwieback                     0.000 0.000          0.000     0.000    0.007
## finished products            0.000 0.000          0.000     0.000    0.000
## popcorn                      0.000 0.000          0.000     0.000    0.000
## vinegar                      0.000 0.000          0.000     0.000    0.000
## soups                        0.000 0.000          0.000     0.000    0.000
## female sanitary products     0.000 0.000          0.000     0.000    0.000
## sparkling wine               0.000 0.000          0.000     0.000    0.000
## dental care                  0.000 0.000          0.000     0.000    0.000
## cereals                      0.000 0.000          0.000     0.000    0.000
## kitchen towels               0.000 0.000          0.000     0.000    0.000
## curd cheese                  0.000 0.000          0.000     0.000    0.000
## other vegetables             0.000 0.000          0.000     0.001    0.000
## rolls/buns                   0.000 0.000          0.000     0.000    0.000
## softener                     0.000 0.000          0.000     0.000    0.000
## cleaner                      0.000 0.000          0.000     0.000    0.000
## spices                       0.000 0.000          0.000     0.000    0.000
## jam                          0.000 0.000          0.000     0.000    0.000
## sauces                       0.000 0.000          0.000     0.000    0.000
## rum                          0.000 0.000          0.000     0.000    0.000
## liver loaf                   0.000 0.000          0.000     0.000    0.000
## male cosmetics               0.000 0.000          0.000     0.000    0.000
## meat spreads                 0.000 0.000          0.000     0.000    0.000
## packaged herbs/vegetables    0.000 0.000          0.000     0.000    0.000
## brandy                       0.000 0.000          0.000     0.000    0.000
## ketchup                      0.000 0.000          0.000     0.000    0.000
## abrasive cleaner             0.000 0.000          0.000     0.000    0.000
## light bulbs                  0.000 0.000          0.000     0.000    0.000
## artif. sweetener             0.000 0.000          0.000     0.000    0.000
## nuts/prunes                  0.000 0.000          0.000     0.000    0.000
## specialty fat                0.000 0.000          0.000     0.000    0.000
## skin care                    0.000 0.000          0.000     0.000    0.000
## fish                         0.000 0.000          0.000     0.000    0.000
## potato products              0.000 0.000          0.000     0.000    0.000
## root vegetables              0.000 0.000          0.000     0.000    0.000
## snack products               0.000 0.000          0.000     0.000    0.000
## nut snack                    0.000 0.000          0.000     0.000    0.000
## soap                         0.000 0.000          0.000     0.000    0.000
## syrup                        0.000 0.000          0.000     0.000    0.000
## bathroom cleaner             0.000 0.000          0.000     0.000    0.000
## canned fruit                 0.000 0.000          0.000     0.000    0.000
## cookware                     0.000 0.000          0.000     0.000    0.000
## cooking chocolate            0.000 0.000          0.000     0.000    0.000
## tidbits                      0.000 0.000          0.000     0.000    0.000
## cocoa drinks                 0.000 0.000          0.000     0.000    0.000
## pudding powder               0.000 0.000          0.000     0.000    0.000
## ready soups                  0.000 0.000          0.000     0.000    0.000
## organic marinated meat       0.000 0.000          0.000     0.000    0.000
## flower soil/fertilizer       0.000 0.000          0.000     0.000    0.000
## organic products             0.000 0.000          0.000     0.000    0.000
## pot plants                   0.000 0.000          0.000     0.000    0.000
## prosecco                     0.000 0.000          0.000     0.000    0.000
## frankfurter                  0.000 0.000          0.000     0.000    0.000
## decalcifier                  0.000 0.000          0.000     0.000    0.000
## honey                        0.000 0.000          0.000     0.000    0.000
## specialty vegetables         0.000 0.000          0.000     0.000    0.000
## cream                        0.000 0.000          0.000     0.000    0.000
## hair spray                   0.000 0.000          0.000     0.000    0.000
## frozen fruits                0.000 0.000          0.000     0.000    0.000
## rubbing alcohol              0.000 0.000          0.000     0.000    0.000
## liqueur                      0.000 0.000          0.000     0.000    0.000
## make up remover              0.000 0.000          0.000     0.000    0.000
## salad dressing               0.000 0.000          0.000     0.000    0.000
## frozen chicken               0.000 0.000          0.000     0.000    0.000
## whisky                       0.000 0.000          0.000     0.000    0.000
## baby cosmetics               0.000 0.000          0.000     0.000    0.000
## toilet cleaner               0.000 0.000          0.000     0.000    0.000
## bags                         0.000 0.000          0.000     0.000    0.000
## canned herbs                 0.000 0.000          0.000     0.000    0.000
## kitchen utensil              0.000 0.000          0.000     0.000    0.000
## preservation products        0.000 0.000          0.000     0.000    0.000
## baby food                    0.000 0.000          0.000     0.000    0.000
## frozen herbss                0.000 0.000          0.000     0.000    0.000
## organic sausage              0.000 0.000          0.000     0.000    0.000
## sound storage medium         0.000 0.000          0.000     0.000    0.000
##                           finished products popcorn vinegar soups
## rice                                  0.001   0.003   0.003 0.003
## veggies                               0.002   0.001   0.002 0.003
## loaf                                  0.001   0.001   0.001 0.001
## coke                                  0.002   0.002   0.001 0.001
## yogurt                                0.001   0.001   0.002 0.001
## vegetables                            0.001   0.002   0.002 0.002
## mineral water                         0.001   0.001   0.001 0.001
## Plastic bags                          0.001   0.001   0.001 0.001
## tropical fruit                        0.001   0.001   0.001 0.001
## marinated meat                        0.001   0.001   0.001 0.001
## pies/pasties                          0.001   0.001   0.001 0.001
## newspapers                            0.000   0.000   0.001 0.001
## citrus                                0.001   0.001   0.001 0.001
## whipped/sour cream                    0.001   0.001   0.001 0.002
## heinken                               0.000   0.001   0.001 0.001
## green tea                             0.000   0.000   0.000 0.000
## pip fruit                             0.001   0.001   0.001 0.001
## brown bread                           0.001   0.001   0.001 0.001
## fruit/vegetable juice                 0.001   0.001   0.001 0.000
## domestic eggs                         0.001   0.001   0.001 0.001
## coffee                                0.000   0.000   0.001 0.001
## margarine                             0.000   0.000   0.001 0.001
## beef                                  0.001   0.000   0.001 0.001
## curd                                  0.000   0.001   0.001 0.001
## butter                                0.001   0.000   0.001 0.001
## marinated meats                       0.000   0.000   0.001 0.001
## napkins                               0.000   0.000   0.001 0.001
## halal meat                            0.000   0.000   0.000 0.000
## chocolate                             0.001   0.001   0.000 0.001
## frozen vegetables                     0.001   0.001   0.001 0.001
## chicken                               0.000   0.000   0.001 0.001
## white bread                           0.001   0.001   0.000 0.000
## cream cheese                          0.000   0.000   0.001 0.001
## waffles                               0.001   0.000   0.000 0.000
## dessert                               0.000   0.001   0.000 0.000
## salty snack                           0.001   0.002   0.000 0.000
## long life bakery product              0.001   0.000   0.000 0.000
## berries                               0.000   0.001   0.000 0.001
## hamburger meat                        0.000   0.001   0.000 0.001
## sugar                                 0.000   0.000   0.001 0.001
## hygiene articles                      0.000   0.000   0.000 0.001
## UHT-milk                              0.000   0.000   0.000 0.000
## onions                                0.001   0.001   0.001 0.001
## candy                                 0.001   0.001   0.000 0.000
## specialty chocolate                   0.000   0.000   0.000 0.000
## butter milk                           0.000   0.001   0.000 0.000
## oil                                   0.000   0.000   0.001 0.001
## frozen meals                          0.000   0.001   0.000 0.000
## misc. beverages                       0.000   0.000   0.000 0.000
## specialty bar                         0.000   0.000   0.000 0.000
## ham                                   0.000   0.000   0.000 0.000
## beverages                             0.000   0.000   0.000 0.000
## meat                                  0.000   0.000   0.000 0.000
## ice cream                             0.000   0.000   0.000 0.000
## sliced cheese                         0.000   0.000   0.000 0.000
## hard cheese                           0.000   0.001   0.000 0.000
## noodles                               0.000   0.000   0.000 0.000
## grapes                                0.000   0.000   0.000 0.000
## cat food                              0.000   0.000   0.001 0.000
## chewing gum                           0.000   0.000   0.000 0.000
## soda                                  0.000   0.000   0.000 0.000
## detergent                             0.000   0.000   0.001 0.000
## red/blush wine                        0.000   0.000   0.000 0.000
## white wine                            0.000   0.000   0.000 0.000
## turkey                                0.000   0.000   0.000 0.000
## dishes                                0.000   0.000   0.000 0.000
## bottled water                         0.000   0.000   0.000 0.000
## flour                                 0.000   0.000   0.000 0.000
## semi-finished bread                   0.000   0.000   0.001 0.000
## baking powder                         0.000   0.000   0.001 0.000
## pickled vegetables                    0.000   0.000   0.000 0.000
## herbs                                 0.000   0.000   0.000 0.000
## tropical herbs                        0.000   0.000   0.000 0.000
## soft cheese                           0.000   0.000   0.000 0.000
## tea                                   0.000   0.000   0.000 0.000
## processed cheese                      0.000   0.000   0.000 0.000
## sausage                               0.000   0.000   0.000 0.000
## pasta                                 0.001   0.000   0.000 0.001
## citrus herbs                          0.000   0.000   0.000 0.000
## potted plants                         0.001   0.000   0.000 0.000
## canned fish                           0.000   0.000   0.000 0.001
## seasonal products                     0.000   0.000   0.000 0.000
## cake bar                              0.000   0.000   0.000 0.000
## carrots                               0.000   0.000   0.000 0.000
## mustard                               0.000   0.000   0.000 0.000
## packaged fruit/vegetables             0.000   0.000   0.000 0.000
## spread cheese                         0.000   0.000   0.000 0.000
## frozen dessert                        0.000   0.000   0.000 0.000
## frozen fish                           0.000   0.000   0.000 0.000
## cling film/bags                       0.000   0.000   0.000 0.000
## salt                                  0.000   0.000   0.000 0.000
## liquor                                0.000   0.000   0.000 0.000
## canned vegetables                     0.000   0.000   0.000 0.000
## bottled beer                          0.000   0.000   0.000 0.000
## flower (seeds)                        0.000   0.000   0.000 0.000
## cooking oil                           0.000   0.000   0.000 0.000
## dish cleaner                          0.000   0.000   0.000 0.000
## condensed milk                        0.000   0.000   0.000 0.000
## roll products                         0.000   0.000   0.000 0.000
## photo/film                            0.000   0.000   0.000 0.000
## pet care                              0.000   0.000   0.000 0.000
## chocolate marshmallow                 0.000   0.000   0.000 0.000
## herbs/vegetable juice                 0.000   0.000   0.000 0.000
## whole milk                            0.000   0.000   0.000 0.000
## candles                               0.000   0.000   0.000 0.000
## mayonnaise                            0.000   0.000   0.000 0.000
## Instant food products                 0.000   0.000   0.000 0.000
## sweet spreads                         0.000   0.000   0.000 0.000
## liquor (appetizer)                    0.000   0.000   0.000 0.000
## specialty cheese                      0.000   0.000   0.000 0.000
## frozen potato products                0.000   0.000   0.000 0.000
## house keeping products                0.000   0.000   0.000 0.000
## dog food                              0.000   0.000   0.000 0.000
## soy                                   0.000   0.000   0.000 0.000
## instant coffee                        0.000   0.000   0.000 0.000
## pip herbs                             0.000   0.000   0.000 0.000
## zwieback                              0.000   0.000   0.000 0.000
## finished products                     0.007   0.000   0.000 0.000
## popcorn                               0.000   0.007   0.000 0.000
## vinegar                               0.000   0.000   0.007 0.000
## soups                                 0.000   0.000   0.000 0.007
## female sanitary products              0.000   0.000   0.000 0.000
## sparkling wine                        0.000   0.000   0.000 0.000
## dental care                           0.000   0.000   0.000 0.000
## cereals                               0.000   0.000   0.000 0.000
## kitchen towels                        0.000   0.000   0.000 0.000
## curd cheese                           0.000   0.000   0.000 0.000
## other vegetables                      0.000   0.000   0.000 0.000
## rolls/buns                            0.000   0.000   0.000 0.000
## softener                              0.000   0.000   0.000 0.000
## cleaner                               0.000   0.000   0.000 0.000
## spices                                0.000   0.000   0.000 0.000
## jam                                   0.000   0.000   0.000 0.000
## sauces                                0.000   0.000   0.000 0.000
## rum                                   0.000   0.000   0.000 0.000
## liver loaf                            0.000   0.000   0.000 0.000
## male cosmetics                        0.000   0.000   0.000 0.000
## meat spreads                          0.000   0.000   0.000 0.000
## packaged herbs/vegetables             0.000   0.000   0.000 0.000
## brandy                                0.000   0.000   0.000 0.000
## ketchup                               0.000   0.000   0.000 0.000
## abrasive cleaner                      0.000   0.000   0.000 0.000
## light bulbs                           0.000   0.000   0.000 0.000
## artif. sweetener                      0.000   0.000   0.000 0.000
## nuts/prunes                           0.000   0.000   0.000 0.000
## specialty fat                         0.000   0.000   0.000 0.000
## skin care                             0.000   0.000   0.000 0.000
## fish                                  0.000   0.000   0.000 0.000
## potato products                       0.000   0.000   0.000 0.000
## root vegetables                       0.000   0.000   0.000 0.000
## snack products                        0.000   0.000   0.000 0.000
## nut snack                             0.000   0.000   0.000 0.000
## soap                                  0.000   0.000   0.000 0.000
## syrup                                 0.000   0.000   0.000 0.000
## bathroom cleaner                      0.000   0.000   0.000 0.000
## canned fruit                          0.000   0.000   0.000 0.000
## cookware                              0.000   0.000   0.000 0.000
## cooking chocolate                     0.000   0.000   0.000 0.000
## tidbits                               0.000   0.000   0.000 0.000
## cocoa drinks                          0.000   0.000   0.000 0.000
## pudding powder                        0.000   0.000   0.000 0.000
## ready soups                           0.000   0.000   0.000 0.000
## organic marinated meat                0.000   0.000   0.000 0.000
## flower soil/fertilizer                0.000   0.000   0.000 0.000
## organic products                      0.000   0.000   0.000 0.000
## pot plants                            0.000   0.000   0.000 0.000
## prosecco                              0.000   0.000   0.000 0.000
## frankfurter                           0.000   0.000   0.000 0.000
## decalcifier                           0.000   0.000   0.000 0.000
## honey                                 0.000   0.000   0.000 0.000
## specialty vegetables                  0.000   0.000   0.000 0.000
## cream                                 0.000   0.000   0.000 0.000
## hair spray                            0.000   0.000   0.000 0.000
## frozen fruits                         0.000   0.000   0.000 0.000
## rubbing alcohol                       0.000   0.000   0.000 0.000
## liqueur                               0.000   0.000   0.000 0.000
## make up remover                       0.000   0.000   0.000 0.000
## salad dressing                        0.000   0.000   0.000 0.000
## frozen chicken                        0.000   0.000   0.000 0.000
## whisky                                0.000   0.000   0.000 0.000
## baby cosmetics                        0.000   0.000   0.000 0.000
## toilet cleaner                        0.000   0.000   0.000 0.000
## bags                                  0.000   0.000   0.000 0.000
## canned herbs                          0.000   0.000   0.000 0.000
## kitchen utensil                       0.000   0.000   0.000 0.000
## preservation products                 0.000   0.000   0.000 0.000
## baby food                             0.000   0.000   0.000 0.000
## frozen herbss                         0.000   0.000   0.000 0.000
## organic sausage                       0.000   0.000   0.000 0.000
## sound storage medium                  0.000   0.000   0.000 0.000
##                           female sanitary products sparkling wine dental care
## rice                                         0.002          0.001       0.002
## veggies                                      0.001          0.001       0.002
## loaf                                         0.001          0.001       0.001
## coke                                         0.001          0.001       0.001
## yogurt                                       0.002          0.001       0.001
## vegetables                                   0.001          0.001       0.001
## mineral water                                0.001          0.000       0.001
## Plastic bags                                 0.001          0.001       0.001
## tropical fruit                               0.001          0.000       0.001
## marinated meat                               0.000          0.000       0.001
## pies/pasties                                 0.001          0.000       0.001
## newspapers                                   0.000          0.001       0.001
## citrus                                       0.001          0.000       0.001
## whipped/sour cream                           0.001          0.001       0.000
## heinken                                      0.000          0.001       0.001
## green tea                                    0.000          0.000       0.000
## pip fruit                                    0.000          0.000       0.001
## brown bread                                  0.000          0.000       0.001
## fruit/vegetable juice                        0.000          0.001       0.001
## domestic eggs                                0.001          0.001       0.001
## coffee                                       0.001          0.001       0.001
## margarine                                    0.001          0.000       0.001
## beef                                         0.000          0.000       0.001
## curd                                         0.000          0.000       0.001
## butter                                       0.000          0.001       0.001
## marinated meats                              0.000          0.000       0.000
## napkins                                      0.001          0.000       0.001
## halal meat                                   0.001          0.000       0.001
## chocolate                                    0.001          0.000       0.001
## frozen vegetables                            0.000          0.000       0.001
## chicken                                      0.000          0.000       0.000
## white bread                                  0.000          0.001       0.001
## cream cheese                                 0.000          0.000       0.000
## waffles                                      0.000          0.000       0.000
## dessert                                      0.000          0.000       0.001
## salty snack                                  0.000          0.000       0.001
## long life bakery product                     0.001          0.000       0.000
## berries                                      0.000          0.000       0.000
## hamburger meat                               0.000          0.000       0.001
## sugar                                        0.000          0.000       0.000
## hygiene articles                             0.001          0.000       0.001
## UHT-milk                                     0.000          0.000       0.000
## onions                                       0.000          0.000       0.001
## candy                                        0.000          0.000       0.000
## specialty chocolate                          0.000          0.001       0.000
## butter milk                                  0.000          0.000       0.000
## oil                                          0.000          0.000       0.001
## frozen meals                                 0.000          0.000       0.000
## misc. beverages                              0.001          0.001       0.000
## specialty bar                                0.000          0.000       0.000
## ham                                          0.001          0.000       0.000
## beverages                                    0.000          0.000       0.000
## meat                                         0.000          0.000       0.000
## ice cream                                    0.000          0.000       0.000
## sliced cheese                                0.000          0.000       0.000
## hard cheese                                  0.000          0.001       0.000
## noodles                                      0.000          0.000       0.000
## grapes                                       0.000          0.000       0.000
## cat food                                     0.001          0.000       0.000
## chewing gum                                  0.000          0.000       0.000
## soda                                         0.000          0.000       0.000
## detergent                                    0.000          0.000       0.000
## red/blush wine                               0.000          0.000       0.000
## white wine                                   0.000          0.000       0.000
## turkey                                       0.000          0.000       0.000
## dishes                                       0.000          0.000       0.000
## bottled water                                0.000          0.000       0.000
## flour                                        0.000          0.000       0.000
## semi-finished bread                          0.000          0.000       0.000
## baking powder                                0.000          0.000       0.000
## pickled vegetables                           0.000          0.000       0.000
## herbs                                        0.000          0.000       0.000
## tropical herbs                               0.000          0.000       0.000
## soft cheese                                  0.000          0.000       0.000
## tea                                          0.000          0.000       0.000
## processed cheese                             0.000          0.000       0.000
## sausage                                      0.000          0.000       0.000
## pasta                                        0.000          0.000       0.000
## citrus herbs                                 0.000          0.000       0.000
## potted plants                                0.000          0.000       0.000
## canned fish                                  0.000          0.000       0.000
## seasonal products                            0.000          0.000       0.000
## cake bar                                     0.000          0.000       0.000
## carrots                                      0.000          0.000       0.000
## mustard                                      0.000          0.000       0.000
## packaged fruit/vegetables                    0.000          0.000       0.000
## spread cheese                                0.000          0.000       0.000
## frozen dessert                               0.000          0.000       0.000
## frozen fish                                  0.000          0.000       0.000
## cling film/bags                              0.000          0.000       0.000
## salt                                         0.000          0.000       0.000
## liquor                                       0.000          0.000       0.000
## canned vegetables                            0.000          0.000       0.000
## bottled beer                                 0.000          0.000       0.000
## flower (seeds)                               0.000          0.000       0.000
## cooking oil                                  0.000          0.000       0.000
## dish cleaner                                 0.000          0.000       0.000
## condensed milk                               0.000          0.000       0.000
## roll products                                0.000          0.000       0.000
## photo/film                                   0.000          0.000       0.000
## pet care                                     0.000          0.000       0.000
## chocolate marshmallow                        0.000          0.000       0.000
## herbs/vegetable juice                        0.000          0.000       0.000
## whole milk                                   0.000          0.000       0.000
## candles                                      0.000          0.000       0.000
## mayonnaise                                   0.000          0.000       0.000
## Instant food products                        0.000          0.000       0.000
## sweet spreads                                0.000          0.000       0.000
## liquor (appetizer)                           0.000          0.000       0.000
## specialty cheese                             0.000          0.000       0.000
## frozen potato products                       0.000          0.000       0.000
## house keeping products                       0.000          0.000       0.000
## dog food                                     0.000          0.000       0.000
## soy                                          0.000          0.000       0.000
## instant coffee                               0.000          0.000       0.000
## pip herbs                                    0.000          0.000       0.000
## zwieback                                     0.000          0.000       0.000
## finished products                            0.000          0.000       0.000
## popcorn                                      0.000          0.000       0.000
## vinegar                                      0.000          0.000       0.000
## soups                                        0.000          0.000       0.000
## female sanitary products                     0.006          0.000       0.000
## sparkling wine                               0.000          0.006       0.000
## dental care                                  0.000          0.000       0.006
## cereals                                      0.000          0.000       0.000
## kitchen towels                               0.000          0.000       0.000
## curd cheese                                  0.000          0.000       0.000
## other vegetables                             0.000          0.000       0.000
## rolls/buns                                   0.000          0.000       0.000
## softener                                     0.000          0.000       0.000
## cleaner                                      0.001          0.000       0.000
## spices                                       0.000          0.000       0.000
## jam                                          0.000          0.000       0.000
## sauces                                       0.000          0.000       0.000
## rum                                          0.000          0.000       0.000
## liver loaf                                   0.000          0.000       0.000
## male cosmetics                               0.000          0.000       0.000
## meat spreads                                 0.000          0.000       0.000
## packaged herbs/vegetables                    0.000          0.000       0.000
## brandy                                       0.000          0.000       0.000
## ketchup                                      0.000          0.000       0.000
## abrasive cleaner                             0.000          0.000       0.000
## light bulbs                                  0.000          0.000       0.000
## artif. sweetener                             0.000          0.000       0.000
## nuts/prunes                                  0.000          0.000       0.000
## specialty fat                                0.000          0.000       0.000
## skin care                                    0.000          0.000       0.000
## fish                                         0.000          0.000       0.000
## potato products                              0.000          0.000       0.000
## root vegetables                              0.000          0.000       0.000
## snack products                               0.000          0.000       0.000
## nut snack                                    0.000          0.000       0.000
## soap                                         0.000          0.000       0.000
## syrup                                        0.000          0.000       0.000
## bathroom cleaner                             0.000          0.000       0.000
## canned fruit                                 0.000          0.000       0.000
## cookware                                     0.000          0.000       0.000
## cooking chocolate                            0.000          0.000       0.000
## tidbits                                      0.000          0.000       0.000
## cocoa drinks                                 0.000          0.000       0.000
## pudding powder                               0.000          0.000       0.000
## ready soups                                  0.000          0.000       0.000
## organic marinated meat                       0.000          0.000       0.000
## flower soil/fertilizer                       0.000          0.000       0.000
## organic products                             0.000          0.000       0.000
## pot plants                                   0.000          0.000       0.000
## prosecco                                     0.000          0.000       0.000
## frankfurter                                  0.000          0.000       0.000
## decalcifier                                  0.000          0.000       0.000
## honey                                        0.000          0.000       0.000
## specialty vegetables                         0.000          0.000       0.000
## cream                                        0.000          0.000       0.000
## hair spray                                   0.000          0.000       0.000
## frozen fruits                                0.000          0.000       0.000
## rubbing alcohol                              0.000          0.000       0.000
## liqueur                                      0.000          0.000       0.000
## make up remover                              0.000          0.000       0.000
## salad dressing                               0.000          0.000       0.000
## frozen chicken                               0.000          0.000       0.000
## whisky                                       0.000          0.000       0.000
## baby cosmetics                               0.000          0.000       0.000
## toilet cleaner                               0.000          0.000       0.000
## bags                                         0.000          0.000       0.000
## canned herbs                                 0.000          0.000       0.000
## kitchen utensil                              0.000          0.000       0.000
## preservation products                        0.000          0.000       0.000
## baby food                                    0.000          0.000       0.000
## frozen herbss                                0.000          0.000       0.000
## organic sausage                              0.000          0.000       0.000
## sound storage medium                         0.000          0.000       0.000
##                           cereals kitchen towels curd cheese other vegetables
## rice                        0.004          0.002       0.002            0.000
## veggies                     0.002          0.002       0.002            0.000
## loaf                        0.001          0.001       0.001            0.000
## coke                        0.001          0.001       0.000            0.000
## yogurt                      0.002          0.001       0.001            0.001
## vegetables                  0.001          0.001       0.001            0.000
## mineral water               0.000          0.000       0.001            0.000
## Plastic bags                0.001          0.001       0.000            0.001
## tropical fruit              0.001          0.001       0.001            0.000
## marinated meat              0.001          0.001       0.001            0.000
## pies/pasties                0.001          0.001       0.000            0.001
## newspapers                  0.000          0.001       0.000            0.001
## citrus                      0.000          0.000       0.001            0.000
## whipped/sour cream          0.001          0.001       0.001            0.001
## heinken                     0.001          0.000       0.001            0.000
## green tea                   0.000          0.000       0.000            0.000
## pip fruit                   0.001          0.001       0.001            0.000
## brown bread                 0.001          0.001       0.000            0.001
## fruit/vegetable juice       0.001          0.001       0.001            0.000
## domestic eggs               0.001          0.001       0.001            0.001
## coffee                      0.000          0.001       0.001            0.000
## margarine                   0.001          0.001       0.001            0.000
## beef                        0.000          0.000       0.000            0.001
## curd                        0.001          0.000       0.001            0.001
## butter                      0.001          0.001       0.000            0.001
## marinated meats             0.000          0.001       0.000            0.000
## napkins                     0.001          0.001       0.000            0.001
## halal meat                  0.000          0.001       0.001            0.000
## chocolate                   0.000          0.000       0.000            0.000
## frozen vegetables           0.000          0.001       0.001            0.001
## chicken                     0.000          0.000       0.000            0.001
## white bread                 0.000          0.000       0.000            0.001
## cream cheese                0.001          0.001       0.000            0.000
## waffles                     0.001          0.000       0.000            0.000
## dessert                     0.000          0.000       0.000            0.000
## salty snack                 0.000          0.001       0.000            0.000
## long life bakery product    0.001          0.000       0.000            0.000
## berries                     0.001          0.000       0.000            0.000
## hamburger meat              0.001          0.001       0.000            0.001
## sugar                       0.001          0.001       0.000            0.000
## hygiene articles            0.000          0.000       0.001            0.000
## UHT-milk                    0.000          0.000       0.000            0.000
## onions                      0.000          0.000       0.000            0.001
## candy                       0.000          0.000       0.000            0.000
## specialty chocolate         0.001          0.001       0.000            0.000
## butter milk                 0.000          0.000       0.001            0.000
## oil                         0.000          0.000       0.000            0.000
## frozen meals                0.001          0.001       0.000            0.000
## misc. beverages             0.000          0.000       0.000            0.000
## specialty bar               0.000          0.000       0.000            0.000
## ham                         0.000          0.000       0.000            0.000
## beverages                   0.000          0.000       0.000            0.000
## meat                        0.000          0.000       0.000            0.000
## ice cream                   0.000          0.000       0.000            0.000
## sliced cheese               0.000          0.000       0.000            0.000
## hard cheese                 0.001          0.000       0.000            0.000
## noodles                     0.000          0.000       0.000            0.000
## grapes                      0.000          0.000       0.000            0.000
## cat food                    0.000          0.001       0.001            0.000
## chewing gum                 0.000          0.000       0.000            0.000
## soda                        0.000          0.000       0.000            0.001
## detergent                   0.000          0.000       0.000            0.000
## red/blush wine              0.000          0.000       0.000            0.000
## white wine                  0.000          0.000       0.000            0.000
## turkey                      0.000          0.000       0.000            0.000
## dishes                      0.000          0.000       0.000            0.000
## bottled water               0.000          0.000       0.000            0.001
## flour                       0.000          0.000       0.000            0.000
## semi-finished bread         0.000          0.000       0.000            0.000
## baking powder               0.000          0.000       0.000            0.000
## pickled vegetables          0.000          0.000       0.000            0.000
## herbs                       0.000          0.000       0.000            0.000
## tropical herbs              0.000          0.000       0.000            0.001
## soft cheese                 0.000          0.000       0.001            0.000
## tea                         0.000          0.000       0.000            0.000
## processed cheese            0.000          0.000       0.000            0.000
## sausage                     0.000          0.000       0.000            0.000
## pasta                       0.000          0.000       0.000            0.000
## citrus herbs                0.000          0.000       0.000            0.001
## potted plants               0.000          0.000       0.000            0.000
## canned fish                 0.000          0.000       0.000            0.000
## seasonal products           0.000          0.000       0.000            0.000
## cake bar                    0.000          0.000       0.000            0.000
## carrots                     0.000          0.000       0.000            0.000
## mustard                     0.000          0.000       0.000            0.000
## packaged fruit/vegetables   0.000          0.000       0.000            0.000
## spread cheese               0.000          0.000       0.000            0.000
## frozen dessert              0.000          0.000       0.000            0.000
## frozen fish                 0.000          0.000       0.000            0.000
## cling film/bags             0.000          0.000       0.000            0.000
## salt                        0.000          0.000       0.000            0.000
## liquor                      0.000          0.000       0.000            0.000
## canned vegetables           0.000          0.000       0.000            0.000
## bottled beer                0.000          0.000       0.000            0.000
## flower (seeds)              0.000          0.000       0.000            0.000
## cooking oil                 0.000          0.000       0.000            0.000
## dish cleaner                0.000          0.000       0.000            0.000
## condensed milk              0.000          0.000       0.000            0.000
## roll products               0.000          0.000       0.000            0.000
## photo/film                  0.000          0.000       0.000            0.000
## pet care                    0.000          0.000       0.000            0.000
## chocolate marshmallow       0.000          0.000       0.000            0.000
## herbs/vegetable juice       0.000          0.000       0.000            0.000
## whole milk                  0.000          0.000       0.000            0.002
## candles                     0.000          0.000       0.000            0.000
## mayonnaise                  0.000          0.000       0.000            0.000
## Instant food products       0.000          0.000       0.000            0.000
## sweet spreads               0.000          0.000       0.000            0.000
## liquor (appetizer)          0.000          0.000       0.000            0.000
## specialty cheese            0.000          0.000       0.000            0.000
## frozen potato products      0.000          0.000       0.000            0.000
## house keeping products      0.000          0.000       0.000            0.000
## dog food                    0.000          0.000       0.000            0.000
## soy                         0.000          0.000       0.000            0.000
## instant coffee              0.000          0.000       0.000            0.000
## pip herbs                   0.000          0.000       0.000            0.001
## zwieback                    0.000          0.000       0.000            0.000
## finished products           0.000          0.000       0.000            0.000
## popcorn                     0.000          0.000       0.000            0.000
## vinegar                     0.000          0.000       0.000            0.000
## soups                       0.000          0.000       0.000            0.000
## female sanitary products    0.000          0.000       0.000            0.000
## sparkling wine              0.000          0.000       0.000            0.000
## dental care                 0.000          0.000       0.000            0.000
## cereals                     0.006          0.000       0.000            0.000
## kitchen towels              0.000          0.006       0.000            0.000
## curd cheese                 0.000          0.000       0.006            0.000
## other vegetables            0.000          0.000       0.000            0.006
## rolls/buns                  0.000          0.000       0.000            0.001
## softener                    0.000          0.000       0.000            0.000
## cleaner                     0.000          0.000       0.000            0.000
## spices                      0.000          0.000       0.000            0.000
## jam                         0.000          0.000       0.000            0.000
## sauces                      0.000          0.000       0.000            0.000
## rum                         0.000          0.000       0.000            0.000
## liver loaf                  0.000          0.000       0.000            0.000
## male cosmetics              0.000          0.000       0.000            0.000
## meat spreads                0.000          0.000       0.000            0.000
## packaged herbs/vegetables   0.000          0.000       0.000            0.000
## brandy                      0.000          0.000       0.000            0.000
## ketchup                     0.000          0.000       0.000            0.000
## abrasive cleaner            0.000          0.000       0.000            0.000
## light bulbs                 0.000          0.000       0.000            0.000
## artif. sweetener            0.000          0.000       0.000            0.000
## nuts/prunes                 0.000          0.000       0.000            0.000
## specialty fat               0.000          0.000       0.000            0.000
## skin care                   0.000          0.000       0.000            0.000
## fish                        0.000          0.000       0.000            0.000
## potato products             0.000          0.000       0.000            0.000
## root vegetables             0.000          0.000       0.000            0.001
## snack products              0.000          0.000       0.000            0.000
## nut snack                   0.000          0.000       0.000            0.000
## soap                        0.000          0.000       0.000            0.000
## syrup                       0.000          0.000       0.000            0.000
## bathroom cleaner            0.000          0.000       0.000            0.000
## canned fruit                0.000          0.000       0.000            0.000
## cookware                    0.000          0.000       0.000            0.000
## cooking chocolate           0.000          0.000       0.000            0.000
## tidbits                     0.000          0.000       0.000            0.000
## cocoa drinks                0.000          0.000       0.000            0.000
## pudding powder              0.000          0.000       0.000            0.000
## ready soups                 0.000          0.000       0.000            0.000
## organic marinated meat      0.000          0.000       0.000            0.000
## flower soil/fertilizer      0.000          0.000       0.000            0.000
## organic products            0.000          0.000       0.000            0.000
## pot plants                  0.000          0.000       0.000            0.000
## prosecco                    0.000          0.000       0.000            0.000
## frankfurter                 0.000          0.000       0.000            0.001
## decalcifier                 0.000          0.000       0.000            0.000
## honey                       0.000          0.000       0.000            0.000
## specialty vegetables        0.000          0.000       0.000            0.000
## cream                       0.000          0.000       0.000            0.000
## hair spray                  0.000          0.000       0.000            0.000
## frozen fruits               0.000          0.000       0.000            0.000
## rubbing alcohol             0.000          0.000       0.000            0.000
## liqueur                     0.000          0.000       0.000            0.000
## make up remover             0.000          0.000       0.000            0.000
## salad dressing              0.000          0.000       0.000            0.000
## frozen chicken              0.000          0.000       0.000            0.000
## whisky                      0.000          0.000       0.000            0.000
## baby cosmetics              0.000          0.000       0.000            0.000
## toilet cleaner              0.000          0.000       0.000            0.000
## bags                        0.000          0.000       0.000            0.000
## canned herbs                0.000          0.000       0.000            0.000
## kitchen utensil             0.000          0.000       0.000            0.000
## preservation products       0.000          0.000       0.000            0.000
## baby food                   0.000          0.000       0.000            0.000
## frozen herbss               0.000          0.000       0.000            0.000
## organic sausage             0.000          0.000       0.000            0.000
## sound storage medium        0.000          0.000       0.000            0.000
##                           rolls/buns softener cleaner spices   jam sauces   rum
## rice                           0.000    0.002   0.002  0.001 0.003  0.002 0.002
## veggies                        0.000    0.001   0.001  0.002 0.002  0.001 0.001
## loaf                           0.000    0.001   0.001  0.001 0.001  0.001 0.001
## coke                           0.000    0.001   0.001  0.001 0.001  0.001 0.001
## yogurt                         0.001    0.001   0.002  0.001 0.001  0.001 0.001
## vegetables                     0.000    0.001   0.001  0.001 0.002  0.001 0.001
## mineral water                  0.000    0.001   0.001  0.001 0.001  0.001 0.001
## Plastic bags                   0.000    0.001   0.001  0.001 0.001  0.001 0.000
## tropical fruit                 0.000    0.001   0.000  0.001 0.001  0.001 0.001
## marinated meat                 0.000    0.001   0.001  0.001 0.001  0.001 0.000
## pies/pasties                   0.001    0.000   0.001  0.000 0.001  0.001 0.000
## newspapers                     0.001    0.001   0.001  0.000 0.000  0.001 0.000
## citrus                         0.000    0.001   0.001  0.001 0.001  0.000 0.000
## whipped/sour cream             0.000    0.001   0.001  0.001 0.001  0.000 0.000
## heinken                        0.000    0.001   0.000  0.001 0.000  0.000 0.001
## green tea                      0.000    0.001   0.000  0.000 0.000  0.000 0.000
## pip fruit                      0.000    0.001   0.000  0.001 0.001  0.001 0.000
## brown bread                    0.000    0.000   0.000  0.000 0.001  0.001 0.000
## fruit/vegetable juice          0.000    0.000   0.001  0.000 0.001  0.001 0.000
## domestic eggs                  0.000    0.001   0.001  0.001 0.001  0.000 0.001
## coffee                         0.001    0.000   0.001  0.000 0.001  0.000 0.000
## margarine                      0.000    0.001   0.000  0.000 0.001  0.000 0.001
## beef                           0.000    0.000   0.000  0.001 0.001  0.000 0.000
## curd                           0.000    0.000   0.001  0.001 0.001  0.000 0.001
## butter                         0.001    0.001   0.000  0.001 0.001  0.000 0.001
## marinated meats                0.000    0.000   0.000  0.000 0.001  0.000 0.000
## napkins                        0.000    0.001   0.001  0.000 0.001  0.001 0.000
## halal meat                     0.000    0.000   0.000  0.000 0.000  0.000 0.000
## chocolate                      0.000    0.000   0.000  0.001 0.000  0.000 0.000
## frozen vegetables              0.000    0.000   0.001  0.001 0.001  0.000 0.000
## chicken                        0.000    0.001   0.001  0.001 0.000  0.000 0.000
## white bread                    0.000    0.001   0.000  0.000 0.000  0.000 0.000
## cream cheese                   0.000    0.000   0.000  0.000 0.001  0.000 0.000
## waffles                        0.001    0.000   0.001  0.000 0.001  0.001 0.000
## dessert                        0.000    0.000   0.001  0.001 0.000  0.000 0.000
## salty snack                    0.000    0.000   0.000  0.000 0.000  0.001 0.000
## long life bakery product       0.000    0.000   0.000  0.001 0.000  0.000 0.001
## berries                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## hamburger meat                 0.000    0.001   0.000  0.001 0.000  0.001 0.000
## sugar                          0.000    0.000   0.000  0.000 0.001  0.001 0.000
## hygiene articles               0.000    0.001   0.000  0.000 0.001  0.000 0.000
## UHT-milk                       0.000    0.000   0.000  0.000 0.000  0.000 0.000
## onions                         0.000    0.000   0.000  0.001 0.001  0.000 0.000
## candy                          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## specialty chocolate            0.000    0.000   0.000  0.000 0.000  0.000 0.000
## butter milk                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## oil                            0.000    0.000   0.000  0.000 0.000  0.000 0.000
## frozen meals                   0.000    0.000   0.000  0.000 0.000  0.000 0.000
## misc. beverages                0.000    0.000   0.000  0.000 0.000  0.000 0.000
## specialty bar                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## ham                            0.000    0.000   0.000  0.000 0.000  0.000 0.000
## beverages                      0.000    0.000   0.000  0.000 0.000  0.000 0.000
## meat                           0.000    0.000   0.000  0.000 0.000  0.000 0.000
## ice cream                      0.000    0.000   0.000  0.000 0.000  0.000 0.000
## sliced cheese                  0.000    0.000   0.000  0.000 0.000  0.000 0.001
## hard cheese                    0.000    0.000   0.000  0.000 0.000  0.001 0.000
## noodles                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## grapes                         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cat food                       0.000    0.000   0.000  0.000 0.000  0.000 0.000
## chewing gum                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## soda                           0.001    0.000   0.000  0.000 0.000  0.000 0.000
## detergent                      0.000    0.001   0.001  0.000 0.000  0.000 0.000
## red/blush wine                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## white wine                     0.000    0.000   0.000  0.000 0.000  0.000 0.000
## turkey                         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## dishes                         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## bottled water                  0.001    0.000   0.000  0.000 0.000  0.000 0.000
## flour                          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## semi-finished bread            0.000    0.000   0.000  0.000 0.000  0.000 0.000
## baking powder                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## pickled vegetables             0.000    0.000   0.000  0.000 0.000  0.000 0.000
## herbs                          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## tropical herbs                 0.001    0.000   0.000  0.000 0.000  0.000 0.000
## soft cheese                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## tea                            0.000    0.000   0.000  0.000 0.000  0.000 0.000
## processed cheese               0.000    0.000   0.000  0.000 0.000  0.000 0.000
## sausage                        0.001    0.000   0.000  0.000 0.000  0.000 0.000
## pasta                          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## citrus herbs                   0.000    0.000   0.000  0.000 0.000  0.000 0.000
## potted plants                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## canned fish                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## seasonal products              0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cake bar                       0.000    0.000   0.000  0.000 0.000  0.000 0.000
## carrots                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## mustard                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## packaged fruit/vegetables      0.000    0.000   0.000  0.000 0.000  0.000 0.000
## spread cheese                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## frozen dessert                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## frozen fish                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cling film/bags                0.000    0.000   0.000  0.000 0.000  0.000 0.001
## salt                           0.000    0.000   0.000  0.000 0.001  0.000 0.000
## liquor                         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## canned vegetables              0.000    0.000   0.000  0.000 0.000  0.000 0.000
## bottled beer                   0.001    0.000   0.000  0.000 0.000  0.000 0.000
## flower (seeds)                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cooking oil                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## dish cleaner                   0.000    0.000   0.000  0.000 0.000  0.000 0.000
## condensed milk                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## roll products                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## photo/film                     0.000    0.000   0.000  0.000 0.000  0.000 0.000
## pet care                       0.000    0.000   0.000  0.000 0.000  0.000 0.000
## chocolate marshmallow          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## herbs/vegetable juice          0.001    0.000   0.000  0.000 0.000  0.000 0.000
## whole milk                     0.002    0.000   0.000  0.000 0.000  0.000 0.000
## candles                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## mayonnaise                     0.000    0.000   0.000  0.000 0.000  0.000 0.000
## Instant food products          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## sweet spreads                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## liquor (appetizer)             0.000    0.000   0.000  0.000 0.000  0.000 0.000
## specialty cheese               0.000    0.000   0.000  0.000 0.000  0.000 0.000
## frozen potato products         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## house keeping products         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## dog food                       0.000    0.000   0.000  0.000 0.000  0.000 0.000
## soy                            0.000    0.000   0.000  0.000 0.000  0.000 0.000
## instant coffee                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## pip herbs                      0.000    0.000   0.000  0.000 0.000  0.000 0.000
## zwieback                       0.000    0.000   0.000  0.000 0.000  0.000 0.000
## finished products              0.000    0.000   0.000  0.000 0.000  0.000 0.000
## popcorn                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## vinegar                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## soups                          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## female sanitary products       0.000    0.000   0.001  0.000 0.000  0.000 0.000
## sparkling wine                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## dental care                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cereals                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## kitchen towels                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## curd cheese                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## other vegetables               0.001    0.000   0.000  0.000 0.000  0.000 0.000
## rolls/buns                     0.006    0.000   0.000  0.000 0.000  0.000 0.000
## softener                       0.000    0.005   0.000  0.000 0.000  0.000 0.000
## cleaner                        0.000    0.000   0.005  0.000 0.000  0.000 0.000
## spices                         0.000    0.000   0.000  0.005 0.000  0.000 0.000
## jam                            0.000    0.000   0.000  0.000 0.005  0.000 0.000
## sauces                         0.000    0.000   0.000  0.000 0.000  0.005 0.000
## rum                            0.000    0.000   0.000  0.000 0.000  0.000 0.005
## liver loaf                     0.000    0.000   0.000  0.000 0.000  0.000 0.000
## male cosmetics                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## meat spreads                   0.000    0.000   0.000  0.000 0.000  0.000 0.000
## packaged herbs/vegetables      0.000    0.000   0.000  0.000 0.000  0.000 0.000
## brandy                         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## ketchup                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## abrasive cleaner               0.000    0.000   0.001  0.000 0.000  0.000 0.000
## light bulbs                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## artif. sweetener               0.000    0.000   0.000  0.000 0.000  0.000 0.000
## nuts/prunes                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## specialty fat                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## skin care                      0.000    0.000   0.000  0.000 0.000  0.000 0.000
## fish                           0.000    0.000   0.000  0.000 0.000  0.000 0.000
## potato products                0.000    0.000   0.000  0.000 0.000  0.000 0.000
## root vegetables                0.001    0.000   0.000  0.000 0.000  0.000 0.000
## snack products                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## nut snack                      0.000    0.000   0.000  0.000 0.000  0.000 0.000
## soap                           0.000    0.000   0.000  0.000 0.000  0.000 0.000
## syrup                          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## bathroom cleaner               0.000    0.000   0.000  0.000 0.000  0.000 0.000
## canned fruit                   0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cookware                       0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cooking chocolate              0.000    0.000   0.000  0.000 0.000  0.000 0.000
## tidbits                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cocoa drinks                   0.000    0.000   0.000  0.000 0.000  0.000 0.000
## pudding powder                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## ready soups                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## organic marinated meat         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## flower soil/fertilizer         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## organic products               0.000    0.000   0.000  0.000 0.000  0.000 0.000
## pot plants                     0.000    0.000   0.000  0.000 0.000  0.000 0.000
## prosecco                       0.000    0.000   0.000  0.000 0.000  0.000 0.000
## frankfurter                    0.001    0.000   0.000  0.000 0.000  0.000 0.000
## decalcifier                    0.000    0.000   0.000  0.000 0.000  0.000 0.000
## honey                          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## specialty vegetables           0.000    0.000   0.000  0.000 0.000  0.000 0.000
## cream                          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## hair spray                     0.000    0.000   0.000  0.000 0.000  0.000 0.000
## frozen fruits                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## rubbing alcohol                0.000    0.000   0.000  0.000 0.000  0.000 0.000
## liqueur                        0.000    0.000   0.000  0.000 0.000  0.000 0.000
## make up remover                0.000    0.000   0.000  0.000 0.000  0.000 0.000
## salad dressing                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## frozen chicken                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## whisky                         0.000    0.000   0.000  0.000 0.000  0.000 0.000
## baby cosmetics                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## toilet cleaner                 0.000    0.000   0.000  0.000 0.000  0.000 0.000
## bags                           0.000    0.000   0.000  0.000 0.000  0.000 0.000
## canned herbs                   0.000    0.000   0.000  0.000 0.000  0.000 0.000
## kitchen utensil                0.000    0.000   0.000  0.000 0.000  0.000 0.000
## preservation products          0.000    0.000   0.000  0.000 0.000  0.000 0.000
## baby food                      0.000    0.000   0.000  0.000 0.000  0.000 0.000
## frozen herbss                  0.000    0.000   0.000  0.000 0.000  0.000 0.000
## organic sausage                0.000    0.000   0.000  0.000 0.000  0.000 0.000
## sound storage medium           0.000    0.000   0.000  0.000 0.000  0.000 0.000
##                           liver loaf male cosmetics meat spreads
## rice                           0.002          0.001        0.001
## veggies                        0.001          0.001        0.001
## loaf                           0.001          0.001        0.001
## coke                           0.001          0.001        0.001
## yogurt                         0.001          0.001        0.002
## vegetables                     0.001          0.001        0.001
## mineral water                  0.000          0.001        0.001
## Plastic bags                   0.001          0.001        0.001
## tropical fruit                 0.001          0.000        0.001
## marinated meat                 0.001          0.001        0.001
## pies/pasties                   0.001          0.001        0.000
## newspapers                     0.000          0.001        0.000
## citrus                         0.000          0.001        0.000
## whipped/sour cream             0.000          0.000        0.000
## heinken                        0.000          0.000        0.000
## green tea                      0.000          0.001        0.000
## pip fruit                      0.001          0.000        0.000
## brown bread                    0.000          0.000        0.001
## fruit/vegetable juice          0.001          0.000        0.001
## domestic eggs                  0.000          0.000        0.001
## coffee                         0.000          0.000        0.000
## margarine                      0.001          0.000        0.000
## beef                           0.000          0.000        0.000
## curd                           0.001          0.000        0.000
## butter                         0.000          0.000        0.000
## marinated meats                0.001          0.000        0.000
## napkins                        0.000          0.000        0.000
## halal meat                     0.000          0.000        0.000
## chocolate                      0.000          0.000        0.001
## frozen vegetables              0.001          0.000        0.000
## chicken                        0.000          0.000        0.000
## white bread                    0.000          0.000        0.000
## cream cheese                   0.001          0.000        0.001
## waffles                        0.000          0.000        0.000
## dessert                        0.000          0.000        0.000
## salty snack                    0.000          0.000        0.000
## long life bakery product       0.000          0.000        0.000
## berries                        0.000          0.000        0.000
## hamburger meat                 0.000          0.000        0.001
## sugar                          0.000          0.000        0.000
## hygiene articles               0.000          0.000        0.000
## UHT-milk                       0.000          0.000        0.000
## onions                         0.000          0.000        0.000
## candy                          0.000          0.000        0.000
## specialty chocolate            0.000          0.000        0.000
## butter milk                    0.000          0.000        0.000
## oil                            0.000          0.000        0.000
## frozen meals                   0.000          0.000        0.000
## misc. beverages                0.000          0.000        0.000
## specialty bar                  0.000          0.000        0.000
## ham                            0.000          0.000        0.000
## beverages                      0.000          0.000        0.000
## meat                           0.000          0.000        0.000
## ice cream                      0.000          0.000        0.000
## sliced cheese                  0.000          0.000        0.000
## hard cheese                    0.000          0.000        0.000
## noodles                        0.000          0.000        0.000
## grapes                         0.000          0.000        0.000
## cat food                       0.000          0.000        0.000
## chewing gum                    0.000          0.000        0.000
## soda                           0.000          0.000        0.000
## detergent                      0.000          0.000        0.000
## red/blush wine                 0.000          0.000        0.000
## white wine                     0.000          0.000        0.000
## turkey                         0.000          0.000        0.000
## dishes                         0.000          0.000        0.000
## bottled water                  0.000          0.000        0.000
## flour                          0.000          0.000        0.000
## semi-finished bread            0.000          0.000        0.000
## baking powder                  0.000          0.000        0.000
## pickled vegetables             0.000          0.000        0.000
## herbs                          0.000          0.000        0.000
## tropical herbs                 0.000          0.000        0.000
## soft cheese                    0.000          0.000        0.000
## tea                            0.000          0.000        0.000
## processed cheese               0.000          0.000        0.000
## sausage                        0.000          0.000        0.000
## pasta                          0.000          0.000        0.000
## citrus herbs                   0.000          0.000        0.000
## potted plants                  0.000          0.000        0.000
## canned fish                    0.000          0.000        0.001
## seasonal products              0.000          0.000        0.000
## cake bar                       0.000          0.000        0.000
## carrots                        0.000          0.000        0.000
## mustard                        0.000          0.000        0.000
## packaged fruit/vegetables      0.000          0.000        0.000
## spread cheese                  0.000          0.000        0.000
## frozen dessert                 0.000          0.000        0.000
## frozen fish                    0.000          0.000        0.000
## cling film/bags                0.000          0.000        0.000
## salt                           0.000          0.000        0.000
## liquor                         0.000          0.000        0.000
## canned vegetables              0.000          0.000        0.000
## bottled beer                   0.000          0.000        0.000
## flower (seeds)                 0.000          0.000        0.000
## cooking oil                    0.000          0.000        0.000
## dish cleaner                   0.000          0.000        0.000
## condensed milk                 0.000          0.000        0.000
## roll products                  0.000          0.000        0.000
## photo/film                     0.000          0.000        0.000
## pet care                       0.000          0.000        0.000
## chocolate marshmallow          0.000          0.000        0.000
## herbs/vegetable juice          0.000          0.000        0.000
## whole milk                     0.000          0.000        0.000
## candles                        0.000          0.000        0.000
## mayonnaise                     0.000          0.000        0.000
## Instant food products          0.000          0.000        0.000
## sweet spreads                  0.000          0.000        0.000
## liquor (appetizer)             0.000          0.000        0.000
## specialty cheese               0.000          0.000        0.000
## frozen potato products         0.000          0.000        0.000
## house keeping products         0.000          0.000        0.000
## dog food                       0.000          0.000        0.000
## soy                            0.000          0.000        0.000
## instant coffee                 0.000          0.000        0.000
## pip herbs                      0.000          0.000        0.000
## zwieback                       0.000          0.000        0.000
## finished products              0.000          0.000        0.000
## popcorn                        0.000          0.000        0.000
## vinegar                        0.000          0.000        0.000
## soups                          0.000          0.000        0.000
## female sanitary products       0.000          0.000        0.000
## sparkling wine                 0.000          0.000        0.000
## dental care                    0.000          0.000        0.000
## cereals                        0.000          0.000        0.000
## kitchen towels                 0.000          0.000        0.000
## curd cheese                    0.000          0.000        0.000
## other vegetables               0.000          0.000        0.000
## rolls/buns                     0.000          0.000        0.000
## softener                       0.000          0.000        0.000
## cleaner                        0.000          0.000        0.000
## spices                         0.000          0.000        0.000
## jam                            0.000          0.000        0.000
## sauces                         0.000          0.000        0.000
## rum                            0.000          0.000        0.000
## liver loaf                     0.005          0.000        0.000
## male cosmetics                 0.000          0.004        0.000
## meat spreads                   0.000          0.000        0.004
## packaged herbs/vegetables      0.000          0.000        0.000
## brandy                         0.000          0.000        0.000
## ketchup                        0.000          0.000        0.000
## abrasive cleaner               0.000          0.000        0.000
## light bulbs                    0.000          0.000        0.000
## artif. sweetener               0.000          0.000        0.000
## nuts/prunes                    0.000          0.000        0.000
## specialty fat                  0.000          0.000        0.000
## skin care                      0.000          0.000        0.000
## fish                           0.000          0.000        0.000
## potato products                0.000          0.000        0.000
## root vegetables                0.000          0.000        0.000
## snack products                 0.000          0.000        0.000
## nut snack                      0.000          0.000        0.000
## soap                           0.000          0.000        0.000
## syrup                          0.000          0.000        0.000
## bathroom cleaner               0.000          0.000        0.000
## canned fruit                   0.000          0.000        0.000
## cookware                       0.000          0.000        0.000
## cooking chocolate              0.000          0.000        0.000
## tidbits                        0.000          0.000        0.000
## cocoa drinks                   0.000          0.000        0.000
## pudding powder                 0.000          0.000        0.000
## ready soups                    0.000          0.000        0.000
## organic marinated meat         0.000          0.000        0.000
## flower soil/fertilizer         0.000          0.000        0.000
## organic products               0.000          0.000        0.000
## pot plants                     0.000          0.000        0.000
## prosecco                       0.000          0.000        0.000
## frankfurter                    0.000          0.000        0.000
## decalcifier                    0.000          0.000        0.000
## honey                          0.000          0.000        0.000
## specialty vegetables           0.000          0.000        0.000
## cream                          0.000          0.000        0.000
## hair spray                     0.000          0.000        0.000
## frozen fruits                  0.000          0.000        0.000
## rubbing alcohol                0.000          0.000        0.000
## liqueur                        0.000          0.000        0.000
## make up remover                0.000          0.000        0.000
## salad dressing                 0.000          0.000        0.000
## frozen chicken                 0.000          0.000        0.000
## whisky                         0.000          0.000        0.000
## baby cosmetics                 0.000          0.000        0.000
## toilet cleaner                 0.000          0.000        0.000
## bags                           0.000          0.000        0.000
## canned herbs                   0.000          0.000        0.000
## kitchen utensil                0.000          0.000        0.000
## preservation products          0.000          0.000        0.000
## baby food                      0.000          0.000        0.000
## frozen herbss                  0.000          0.000        0.000
## organic sausage                0.000          0.000        0.000
## sound storage medium           0.000          0.000        0.000
##                           packaged herbs/vegetables brandy ketchup
## rice                                          0.002  0.001   0.001
## veggies                                       0.000  0.001   0.001
## loaf                                          0.000  0.001   0.000
## coke                                          0.000  0.001   0.001
## yogurt                                        0.001  0.001   0.001
## vegetables                                    0.001  0.001   0.001
## mineral water                                 0.000  0.000   0.000
## Plastic bags                                  0.000  0.001   0.000
## tropical fruit                                0.000  0.000   0.001
## marinated meat                                0.000  0.000   0.001
## pies/pasties                                  0.000  0.000   0.000
## newspapers                                    0.000  0.000   0.001
## citrus                                        0.000  0.000   0.000
## whipped/sour cream                            0.001  0.000   0.001
## heinken                                       0.000  0.001   0.000
## green tea                                     0.000  0.001   0.000
## pip fruit                                     0.000  0.000   0.001
## brown bread                                   0.000  0.000   0.001
## fruit/vegetable juice                         0.000  0.000   0.000
## domestic eggs                                 0.000  0.000   0.001
## coffee                                        0.000  0.001   0.000
## margarine                                     0.000  0.000   0.001
## beef                                          0.001  0.000   0.000
## curd                                          0.000  0.000   0.000
## butter                                        0.000  0.000   0.000
## marinated meats                               0.000  0.000   0.001
## napkins                                       0.000  0.000   0.001
## halal meat                                    0.000  0.000   0.001
## chocolate                                     0.000  0.000   0.001
## frozen vegetables                             0.001  0.000   0.000
## chicken                                       0.000  0.000   0.000
## white bread                                   0.000  0.000   0.000
## cream cheese                                  0.000  0.000   0.000
## waffles                                       0.000  0.000   0.000
## dessert                                       0.000  0.000   0.000
## salty snack                                   0.000  0.000   0.000
## long life bakery product                      0.000  0.000   0.000
## berries                                       0.001  0.000   0.000
## hamburger meat                                0.000  0.000   0.000
## sugar                                         0.000  0.000   0.000
## hygiene articles                              0.000  0.000   0.001
## UHT-milk                                      0.000  0.000   0.000
## onions                                        0.001  0.000   0.000
## candy                                         0.000  0.000   0.000
## specialty chocolate                           0.000  0.000   0.000
## butter milk                                   0.000  0.000   0.000
## oil                                           0.000  0.000   0.001
## frozen meals                                  0.000  0.000   0.000
## misc. beverages                               0.000  0.000   0.000
## specialty bar                                 0.000  0.000   0.000
## ham                                           0.000  0.000   0.000
## beverages                                     0.000  0.000   0.000
## meat                                          0.000  0.000   0.000
## ice cream                                     0.000  0.000   0.000
## sliced cheese                                 0.000  0.000   0.000
## hard cheese                                   0.000  0.000   0.000
## noodles                                       0.001  0.000   0.000
## grapes                                        0.000  0.000   0.000
## cat food                                      0.000  0.000   0.000
## chewing gum                                   0.000  0.000   0.000
## soda                                          0.001  0.000   0.000
## detergent                                     0.000  0.000   0.000
## red/blush wine                                0.000  0.000   0.000
## white wine                                    0.000  0.000   0.000
## turkey                                        0.000  0.000   0.000
## dishes                                        0.000  0.000   0.000
## bottled water                                 0.001  0.000   0.000
## flour                                         0.000  0.000   0.000
## semi-finished bread                           0.000  0.000   0.000
## baking powder                                 0.000  0.000   0.000
## pickled vegetables                            0.000  0.000   0.000
## herbs                                         0.000  0.000   0.000
## tropical herbs                                0.001  0.000   0.000
## soft cheese                                   0.000  0.000   0.000
## tea                                           0.001  0.000   0.000
## processed cheese                              0.000  0.000   0.000
## sausage                                       0.001  0.000   0.000
## pasta                                         0.000  0.000   0.000
## citrus herbs                                  0.001  0.000   0.000
## potted plants                                 0.000  0.000   0.000
## canned fish                                   0.000  0.000   0.001
## seasonal products                             0.000  0.000   0.000
## cake bar                                      0.000  0.000   0.000
## carrots                                       0.001  0.000   0.000
## mustard                                       0.000  0.000   0.001
## packaged fruit/vegetables                     0.000  0.000   0.000
## spread cheese                                 0.000  0.000   0.000
## frozen dessert                                0.000  0.000   0.000
## frozen fish                                   0.000  0.000   0.000
## cling film/bags                               0.000  0.000   0.000
## salt                                          0.000  0.000   0.000
## liquor                                        0.000  0.000   0.000
## canned vegetables                             0.000  0.000   0.000
## bottled beer                                  0.000  0.000   0.000
## flower (seeds)                                0.000  0.000   0.000
## cooking oil                                   0.000  0.000   0.000
## dish cleaner                                  0.000  0.000   0.000
## condensed milk                                0.000  0.000   0.000
## roll products                                 0.000  0.000   0.000
## photo/film                                    0.000  0.000   0.000
## pet care                                      0.000  0.000   0.000
## chocolate marshmallow                         0.000  0.000   0.000
## herbs/vegetable juice                         0.000  0.000   0.000
## whole milk                                    0.000  0.000   0.000
## candles                                       0.000  0.000   0.000
## mayonnaise                                    0.000  0.000   0.000
## Instant food products                         0.000  0.000   0.000
## sweet spreads                                 0.000  0.000   0.000
## liquor (appetizer)                            0.000  0.000   0.000
## specialty cheese                              0.000  0.000   0.000
## frozen potato products                        0.000  0.000   0.000
## house keeping products                        0.000  0.000   0.000
## dog food                                      0.000  0.000   0.000
## soy                                           0.000  0.000   0.000
## instant coffee                                0.000  0.000   0.000
## pip herbs                                     0.000  0.000   0.000
## zwieback                                      0.000  0.000   0.000
## finished products                             0.000  0.000   0.000
## popcorn                                       0.000  0.000   0.000
## vinegar                                       0.000  0.000   0.000
## soups                                         0.000  0.000   0.000
## female sanitary products                      0.000  0.000   0.000
## sparkling wine                                0.000  0.000   0.000
## dental care                                   0.000  0.000   0.000
## cereals                                       0.000  0.000   0.000
## kitchen towels                                0.000  0.000   0.000
## curd cheese                                   0.000  0.000   0.000
## other vegetables                              0.000  0.000   0.000
## rolls/buns                                    0.000  0.000   0.000
## softener                                      0.000  0.000   0.000
## cleaner                                       0.000  0.000   0.000
## spices                                        0.000  0.000   0.000
## jam                                           0.000  0.000   0.000
## sauces                                        0.000  0.000   0.000
## rum                                           0.000  0.000   0.000
## liver loaf                                    0.000  0.000   0.000
## male cosmetics                                0.000  0.000   0.000
## meat spreads                                  0.000  0.000   0.000
## packaged herbs/vegetables                     0.004  0.000   0.000
## brandy                                        0.000  0.004   0.000
## ketchup                                       0.000  0.000   0.004
## abrasive cleaner                              0.000  0.000   0.000
## light bulbs                                   0.000  0.000   0.000
## artif. sweetener                              0.000  0.000   0.000
## nuts/prunes                                   0.000  0.000   0.000
## specialty fat                                 0.000  0.000   0.000
## skin care                                     0.000  0.000   0.000
## fish                                          0.000  0.000   0.000
## potato products                               0.000  0.000   0.000
## root vegetables                               0.000  0.000   0.000
## snack products                                0.000  0.000   0.000
## nut snack                                     0.000  0.000   0.000
## soap                                          0.000  0.000   0.000
## syrup                                         0.000  0.000   0.000
## bathroom cleaner                              0.000  0.000   0.000
## canned fruit                                  0.000  0.000   0.000
## cookware                                      0.000  0.000   0.000
## cooking chocolate                             0.000  0.000   0.000
## tidbits                                       0.000  0.000   0.000
## cocoa drinks                                  0.000  0.000   0.000
## pudding powder                                0.000  0.000   0.000
## ready soups                                   0.000  0.000   0.000
## organic marinated meat                        0.000  0.000   0.000
## flower soil/fertilizer                        0.000  0.000   0.000
## organic products                              0.000  0.000   0.000
## pot plants                                    0.000  0.000   0.000
## prosecco                                      0.000  0.000   0.000
## frankfurter                                   0.000  0.000   0.000
## decalcifier                                   0.000  0.000   0.000
## honey                                         0.000  0.000   0.000
## specialty vegetables                          0.000  0.000   0.000
## cream                                         0.000  0.000   0.000
## hair spray                                    0.000  0.000   0.000
## frozen fruits                                 0.000  0.000   0.000
## rubbing alcohol                               0.000  0.000   0.000
## liqueur                                       0.000  0.000   0.000
## make up remover                               0.000  0.000   0.000
## salad dressing                                0.000  0.000   0.000
## frozen chicken                                0.000  0.000   0.000
## whisky                                        0.000  0.000   0.000
## baby cosmetics                                0.000  0.000   0.000
## toilet cleaner                                0.000  0.000   0.000
## bags                                          0.000  0.000   0.000
## canned herbs                                  0.000  0.000   0.000
## kitchen utensil                               0.000  0.000   0.000
## preservation products                         0.000  0.000   0.000
## baby food                                     0.000  0.000   0.000
## frozen herbss                                 0.000  0.000   0.000
## organic sausage                               0.000  0.000   0.000
## sound storage medium                          0.000  0.000   0.000
##                           abrasive cleaner light bulbs artif. sweetener
## rice                                 0.002       0.001            0.001
## veggies                              0.001       0.001            0.001
## loaf                                 0.000       0.001            0.001
## coke                                 0.001       0.001            0.001
## yogurt                               0.001       0.001            0.001
## vegetables                           0.001       0.001            0.001
## mineral water                        0.000       0.000            0.001
## Plastic bags                         0.000       0.000            0.001
## tropical fruit                       0.001       0.000            0.000
## marinated meat                       0.001       0.000            0.000
## pies/pasties                         0.000       0.001            0.001
## newspapers                           0.001       0.001            0.001
## citrus                               0.001       0.000            0.000
## whipped/sour cream                   0.001       0.000            0.000
## heinken                              0.001       0.000            0.000
## green tea                            0.000       0.000            0.000
## pip fruit                            0.000       0.001            0.000
## brown bread                          0.001       0.000            0.000
## fruit/vegetable juice                0.000       0.000            0.000
## domestic eggs                        0.000       0.000            0.000
## coffee                               0.000       0.001            0.001
## margarine                            0.000       0.000            0.001
## beef                                 0.001       0.000            0.000
## curd                                 0.000       0.000            0.000
## butter                               0.001       0.000            0.000
## marinated meats                      0.000       0.000            0.001
## napkins                              0.000       0.001            0.000
## halal meat                           0.000       0.000            0.001
## chocolate                            0.000       0.000            0.000
## frozen vegetables                    0.000       0.000            0.000
## chicken                              0.001       0.000            0.000
## white bread                          0.000       0.000            0.000
## cream cheese                         0.000       0.000            0.000
## waffles                              0.000       0.000            0.000
## dessert                              0.000       0.000            0.000
## salty snack                          0.000       0.000            0.000
## long life bakery product             0.000       0.000            0.000
## berries                              0.001       0.000            0.000
## hamburger meat                       0.000       0.000            0.000
## sugar                                0.000       0.000            0.000
## hygiene articles                     0.000       0.000            0.000
## UHT-milk                             0.000       0.000            0.001
## onions                               0.000       0.000            0.000
## candy                                0.000       0.000            0.000
## specialty chocolate                  0.000       0.000            0.000
## butter milk                          0.000       0.000            0.000
## oil                                  0.000       0.000            0.000
## frozen meals                         0.000       0.000            0.000
## misc. beverages                      0.000       0.000            0.000
## specialty bar                        0.000       0.000            0.000
## ham                                  0.000       0.000            0.000
## beverages                            0.000       0.000            0.000
## meat                                 0.000       0.000            0.000
## ice cream                            0.000       0.000            0.000
## sliced cheese                        0.000       0.000            0.000
## hard cheese                          0.000       0.000            0.000
## noodles                              0.000       0.000            0.000
## grapes                               0.000       0.000            0.000
## cat food                             0.000       0.000            0.000
## chewing gum                          0.000       0.000            0.000
## soda                                 0.000       0.000            0.000
## detergent                            0.000       0.000            0.000
## red/blush wine                       0.000       0.000            0.000
## white wine                           0.000       0.000            0.000
## turkey                               0.000       0.000            0.000
## dishes                               0.000       0.000            0.000
## bottled water                        0.000       0.000            0.000
## flour                                0.000       0.000            0.001
## semi-finished bread                  0.000       0.000            0.000
## baking powder                        0.000       0.000            0.000
## pickled vegetables                   0.000       0.000            0.000
## herbs                                0.000       0.000            0.000
## tropical herbs                       0.000       0.000            0.000
## soft cheese                          0.000       0.000            0.000
## tea                                  0.000       0.000            0.000
## processed cheese                     0.000       0.000            0.000
## sausage                              0.000       0.000            0.000
## pasta                                0.000       0.000            0.000
## citrus herbs                         0.000       0.000            0.000
## potted plants                        0.000       0.000            0.000
## canned fish                          0.000       0.000            0.000
## seasonal products                    0.000       0.000            0.000
## cake bar                             0.000       0.000            0.000
## carrots                              0.000       0.000            0.000
## mustard                              0.000       0.000            0.000
## packaged fruit/vegetables            0.000       0.000            0.000
## spread cheese                        0.000       0.000            0.000
## frozen dessert                       0.000       0.000            0.000
## frozen fish                          0.000       0.000            0.000
## cling film/bags                      0.000       0.000            0.000
## salt                                 0.000       0.000            0.000
## liquor                               0.000       0.000            0.000
## canned vegetables                    0.000       0.000            0.000
## bottled beer                         0.000       0.000            0.000
## flower (seeds)                       0.000       0.000            0.000
## cooking oil                          0.000       0.000            0.000
## dish cleaner                         0.000       0.000            0.000
## condensed milk                       0.000       0.000            0.000
## roll products                        0.000       0.000            0.000
## photo/film                           0.000       0.000            0.000
## pet care                             0.000       0.000            0.000
## chocolate marshmallow                0.000       0.000            0.000
## herbs/vegetable juice                0.000       0.000            0.000
## whole milk                           0.000       0.000            0.000
## candles                              0.000       0.000            0.000
## mayonnaise                           0.000       0.000            0.000
## Instant food products                0.000       0.000            0.000
## sweet spreads                        0.000       0.000            0.000
## liquor (appetizer)                   0.000       0.000            0.000
## specialty cheese                     0.000       0.000            0.000
## frozen potato products               0.000       0.000            0.000
## house keeping products               0.000       0.000            0.000
## dog food                             0.000       0.000            0.000
## soy                                  0.000       0.000            0.000
## instant coffee                       0.000       0.000            0.000
## pip herbs                            0.000       0.000            0.000
## zwieback                             0.000       0.000            0.000
## finished products                    0.000       0.000            0.000
## popcorn                              0.000       0.000            0.000
## vinegar                              0.000       0.000            0.000
## soups                                0.000       0.000            0.000
## female sanitary products             0.000       0.000            0.000
## sparkling wine                       0.000       0.000            0.000
## dental care                          0.000       0.000            0.000
## cereals                              0.000       0.000            0.000
## kitchen towels                       0.000       0.000            0.000
## curd cheese                          0.000       0.000            0.000
## other vegetables                     0.000       0.000            0.000
## rolls/buns                           0.000       0.000            0.000
## softener                             0.000       0.000            0.000
## cleaner                              0.001       0.000            0.000
## spices                               0.000       0.000            0.000
## jam                                  0.000       0.000            0.000
## sauces                               0.000       0.000            0.000
## rum                                  0.000       0.000            0.000
## liver loaf                           0.000       0.000            0.000
## male cosmetics                       0.000       0.000            0.000
## meat spreads                         0.000       0.000            0.000
## packaged herbs/vegetables            0.000       0.000            0.000
## brandy                               0.000       0.000            0.000
## ketchup                              0.000       0.000            0.000
## abrasive cleaner                     0.004       0.000            0.000
## light bulbs                          0.000       0.004            0.000
## artif. sweetener                     0.000       0.000            0.004
## nuts/prunes                          0.000       0.000            0.000
## specialty fat                        0.000       0.000            0.000
## skin care                            0.000       0.000            0.000
## fish                                 0.000       0.000            0.000
## potato products                      0.000       0.000            0.000
## root vegetables                      0.000       0.000            0.000
## snack products                       0.000       0.000            0.000
## nut snack                            0.000       0.000            0.000
## soap                                 0.000       0.000            0.000
## syrup                                0.000       0.000            0.000
## bathroom cleaner                     0.000       0.000            0.000
## canned fruit                         0.000       0.000            0.000
## cookware                             0.000       0.000            0.000
## cooking chocolate                    0.000       0.000            0.000
## tidbits                              0.000       0.000            0.000
## cocoa drinks                         0.000       0.000            0.000
## pudding powder                       0.000       0.000            0.000
## ready soups                          0.000       0.000            0.000
## organic marinated meat               0.000       0.000            0.000
## flower soil/fertilizer               0.000       0.000            0.000
## organic products                     0.000       0.000            0.000
## pot plants                           0.000       0.000            0.000
## prosecco                             0.000       0.000            0.000
## frankfurter                          0.000       0.000            0.000
## decalcifier                          0.000       0.000            0.000
## honey                                0.000       0.000            0.000
## specialty vegetables                 0.000       0.000            0.000
## cream                                0.000       0.000            0.000
## hair spray                           0.000       0.000            0.000
## frozen fruits                        0.000       0.000            0.000
## rubbing alcohol                      0.000       0.000            0.000
## liqueur                              0.000       0.000            0.000
## make up remover                      0.000       0.000            0.000
## salad dressing                       0.000       0.000            0.000
## frozen chicken                       0.000       0.000            0.000
## whisky                               0.000       0.000            0.000
## baby cosmetics                       0.000       0.000            0.000
## toilet cleaner                       0.000       0.000            0.000
## bags                                 0.000       0.000            0.000
## canned herbs                         0.000       0.000            0.000
## kitchen utensil                      0.000       0.000            0.000
## preservation products                0.000       0.000            0.000
## baby food                            0.000       0.000            0.000
## frozen herbss                        0.000       0.000            0.000
## organic sausage                      0.000       0.000            0.000
## sound storage medium                 0.000       0.000            0.000
##                           nuts/prunes specialty fat skin care  fish
## rice                            0.001         0.001     0.002 0.001
## veggies                         0.001         0.001     0.001 0.001
## loaf                            0.001         0.001     0.001 0.000
## coke                            0.001         0.000     0.001 0.000
## yogurt                          0.000         0.001     0.001 0.001
## vegetables                      0.001         0.001     0.001 0.001
## mineral water                   0.000         0.000     0.001 0.000
## Plastic bags                    0.001         0.000     0.001 0.000
## tropical fruit                  0.001         0.000     0.001 0.000
## marinated meat                  0.000         0.000     0.001 0.000
## pies/pasties                    0.000         0.000     0.000 0.000
## newspapers                      0.001         0.000     0.000 0.000
## citrus                          0.000         0.001     0.001 0.000
## whipped/sour cream              0.000         0.001     0.001 0.000
## heinken                         0.000         0.000     0.000 0.000
## green tea                       0.000         0.000     0.000 0.000
## pip fruit                       0.001         0.000     0.000 0.000
## brown bread                     0.000         0.000     0.000 0.000
## fruit/vegetable juice           0.000         0.000     0.000 0.000
## domestic eggs                   0.000         0.001     0.001 0.000
## coffee                          0.000         0.000     0.000 0.001
## margarine                       0.000         0.001     0.001 0.000
## beef                            0.000         0.000     0.001 0.000
## curd                            0.000         0.000     0.000 0.000
## butter                          0.000         0.001     0.000 0.000
## marinated meats                 0.000         0.001     0.000 0.000
## napkins                         0.000         0.001     0.001 0.000
## halal meat                      0.000         0.001     0.000 0.000
## chocolate                       0.001         0.000     0.000 0.000
## frozen vegetables               0.000         0.001     0.001 0.000
## chicken                         0.000         0.001     0.001 0.000
## white bread                     0.000         0.001     0.000 0.000
## cream cheese                    0.000         0.000     0.000 0.000
## waffles                         0.000         0.000     0.000 0.000
## dessert                         0.000         0.000     0.000 0.000
## salty snack                     0.000         0.000     0.000 0.000
## long life bakery product        0.000         0.000     0.000 0.000
## berries                         0.000         0.000     0.000 0.000
## hamburger meat                  0.000         0.000     0.000 0.000
## sugar                           0.000         0.000     0.001 0.000
## hygiene articles                0.000         0.000     0.001 0.000
## UHT-milk                        0.000         0.000     0.000 0.000
## onions                          0.000         0.000     0.000 0.000
## candy                           0.000         0.000     0.000 0.000
## specialty chocolate             0.000         0.000     0.000 0.000
## butter milk                     0.000         0.000     0.000 0.000
## oil                             0.000         0.000     0.000 0.000
## frozen meals                    0.000         0.000     0.000 0.000
## misc. beverages                 0.000         0.000     0.000 0.000
## specialty bar                   0.000         0.000     0.000 0.000
## ham                             0.000         0.000     0.000 0.000
## beverages                       0.000         0.000     0.000 0.000
## meat                            0.000         0.000     0.000 0.000
## ice cream                       0.000         0.000     0.000 0.000
## sliced cheese                   0.000         0.000     0.000 0.000
## hard cheese                     0.000         0.001     0.000 0.000
## noodles                         0.000         0.000     0.000 0.000
## grapes                          0.000         0.000     0.000 0.000
## cat food                        0.000         0.000     0.000 0.000
## chewing gum                     0.000         0.000     0.000 0.000
## soda                            0.000         0.000     0.000 0.000
## detergent                       0.000         0.000     0.000 0.000
## red/blush wine                  0.000         0.000     0.000 0.000
## white wine                      0.000         0.000     0.000 0.000
## turkey                          0.000         0.000     0.000 0.000
## dishes                          0.000         0.000     0.000 0.000
## bottled water                   0.000         0.000     0.000 0.000
## flour                           0.000         0.000     0.000 0.000
## semi-finished bread             0.000         0.000     0.000 0.000
## baking powder                   0.000         0.000     0.000 0.000
## pickled vegetables              0.000         0.000     0.000 0.000
## herbs                           0.000         0.000     0.000 0.000
## tropical herbs                  0.000         0.000     0.000 0.000
## soft cheese                     0.000         0.000     0.000 0.000
## tea                             0.000         0.000     0.000 0.000
## processed cheese                0.000         0.000     0.000 0.000
## sausage                         0.000         0.000     0.000 0.000
## pasta                           0.000         0.000     0.000 0.000
## citrus herbs                    0.000         0.000     0.000 0.000
## potted plants                   0.000         0.000     0.000 0.000
## canned fish                     0.000         0.000     0.000 0.000
## seasonal products               0.000         0.000     0.000 0.000
## cake bar                        0.000         0.000     0.000 0.000
## carrots                         0.000         0.000     0.000 0.000
## mustard                         0.000         0.000     0.000 0.000
## packaged fruit/vegetables       0.000         0.000     0.000 0.000
## spread cheese                   0.000         0.000     0.000 0.000
## frozen dessert                  0.000         0.000     0.000 0.000
## frozen fish                     0.000         0.000     0.000 0.000
## cling film/bags                 0.000         0.000     0.000 0.000
## salt                            0.000         0.000     0.000 0.000
## liquor                          0.000         0.000     0.000 0.000
## canned vegetables               0.000         0.000     0.000 0.000
## bottled beer                    0.000         0.000     0.000 0.000
## flower (seeds)                  0.000         0.000     0.000 0.000
## cooking oil                     0.000         0.000     0.000 0.000
## dish cleaner                    0.000         0.000     0.000 0.000
## condensed milk                  0.000         0.000     0.000 0.000
## roll products                   0.000         0.000     0.000 0.000
## photo/film                      0.000         0.000     0.000 0.000
## pet care                        0.000         0.000     0.000 0.000
## chocolate marshmallow           0.000         0.000     0.000 0.000
## herbs/vegetable juice           0.000         0.000     0.000 0.000
## whole milk                      0.000         0.000     0.000 0.000
## candles                         0.000         0.000     0.000 0.000
## mayonnaise                      0.000         0.000     0.000 0.000
## Instant food products           0.000         0.000     0.000 0.000
## sweet spreads                   0.000         0.000     0.000 0.000
## liquor (appetizer)              0.000         0.000     0.000 0.000
## specialty cheese                0.000         0.000     0.000 0.000
## frozen potato products          0.000         0.000     0.000 0.000
## house keeping products          0.000         0.000     0.000 0.000
## dog food                        0.000         0.000     0.000 0.000
## soy                             0.000         0.000     0.000 0.000
## instant coffee                  0.000         0.000     0.000 0.000
## pip herbs                       0.000         0.000     0.000 0.000
## zwieback                        0.000         0.000     0.000 0.000
## finished products               0.000         0.000     0.000 0.000
## popcorn                         0.000         0.000     0.000 0.000
## vinegar                         0.000         0.000     0.000 0.000
## soups                           0.000         0.000     0.000 0.000
## female sanitary products        0.000         0.000     0.000 0.000
## sparkling wine                  0.000         0.000     0.000 0.000
## dental care                     0.000         0.000     0.000 0.000
## cereals                         0.000         0.000     0.000 0.000
## kitchen towels                  0.000         0.000     0.000 0.000
## curd cheese                     0.000         0.000     0.000 0.000
## other vegetables                0.000         0.000     0.000 0.000
## rolls/buns                      0.000         0.000     0.000 0.000
## softener                        0.000         0.000     0.000 0.000
## cleaner                         0.000         0.000     0.000 0.000
## spices                          0.000         0.000     0.000 0.000
## jam                             0.000         0.000     0.000 0.000
## sauces                          0.000         0.000     0.000 0.000
## rum                             0.000         0.000     0.000 0.000
## liver loaf                      0.000         0.000     0.000 0.000
## male cosmetics                  0.000         0.000     0.000 0.000
## meat spreads                    0.000         0.000     0.000 0.000
## packaged herbs/vegetables       0.000         0.000     0.000 0.000
## brandy                          0.000         0.000     0.000 0.000
## ketchup                         0.000         0.000     0.000 0.000
## abrasive cleaner                0.000         0.000     0.000 0.000
## light bulbs                     0.000         0.000     0.000 0.000
## artif. sweetener                0.000         0.000     0.000 0.000
## nuts/prunes                     0.004         0.000     0.000 0.000
## specialty fat                   0.000         0.004     0.000 0.000
## skin care                       0.000         0.000     0.003 0.000
## fish                            0.000         0.000     0.000 0.003
## potato products                 0.000         0.000     0.000 0.000
## root vegetables                 0.000         0.000     0.000 0.000
## snack products                  0.000         0.000     0.000 0.000
## nut snack                       0.000         0.000     0.000 0.000
## soap                            0.000         0.000     0.000 0.000
## syrup                           0.000         0.000     0.000 0.000
## bathroom cleaner                0.000         0.000     0.000 0.000
## canned fruit                    0.000         0.000     0.000 0.000
## cookware                        0.000         0.000     0.000 0.000
## cooking chocolate               0.000         0.000     0.000 0.000
## tidbits                         0.000         0.000     0.000 0.000
## cocoa drinks                    0.000         0.000     0.000 0.000
## pudding powder                  0.000         0.000     0.000 0.000
## ready soups                     0.000         0.000     0.000 0.000
## organic marinated meat          0.000         0.000     0.000 0.000
## flower soil/fertilizer          0.000         0.000     0.000 0.000
## organic products                0.000         0.000     0.000 0.000
## pot plants                      0.000         0.000     0.000 0.000
## prosecco                        0.000         0.000     0.000 0.000
## frankfurter                     0.000         0.000     0.000 0.000
## decalcifier                     0.000         0.000     0.000 0.000
## honey                           0.000         0.000     0.000 0.000
## specialty vegetables            0.000         0.000     0.000 0.000
## cream                           0.000         0.000     0.000 0.000
## hair spray                      0.000         0.000     0.000 0.000
## frozen fruits                   0.000         0.000     0.000 0.000
## rubbing alcohol                 0.000         0.000     0.000 0.000
## liqueur                         0.000         0.000     0.000 0.000
## make up remover                 0.000         0.000     0.000 0.000
## salad dressing                  0.000         0.000     0.000 0.000
## frozen chicken                  0.000         0.000     0.000 0.000
## whisky                          0.000         0.000     0.000 0.000
## baby cosmetics                  0.000         0.000     0.000 0.000
## toilet cleaner                  0.000         0.000     0.000 0.000
## bags                            0.000         0.000     0.000 0.000
## canned herbs                    0.000         0.000     0.000 0.000
## kitchen utensil                 0.000         0.000     0.000 0.000
## preservation products           0.000         0.000     0.000 0.000
## baby food                       0.000         0.000     0.000 0.000
## frozen herbss                   0.000         0.000     0.000 0.000
## organic sausage                 0.000         0.000     0.000 0.000
## sound storage medium            0.000         0.000     0.000 0.000
##                           potato products root vegetables snack products
## rice                                0.001           0.000          0.001
## veggies                             0.001           0.000          0.001
## loaf                                0.001           0.000          0.001
## coke                                0.001           0.000          0.001
## yogurt                              0.001           0.000          0.000
## vegetables                          0.001           0.000          0.000
## mineral water                       0.000           0.000          0.000
## Plastic bags                        0.001           0.000          0.001
## tropical fruit                      0.000           0.000          0.000
## marinated meat                      0.000           0.000          0.000
## pies/pasties                        0.001           0.000          0.000
## newspapers                          0.000           0.000          0.000
## citrus                              0.000           0.000          0.000
## whipped/sour cream                  0.000           0.001          0.000
## heinken                             0.001           0.000          0.000
## green tea                           0.000           0.000          0.000
## pip fruit                           0.000           0.000          0.000
## brown bread                         0.000           0.000          0.000
## fruit/vegetable juice               0.001           0.000          0.000
## domestic eggs                       0.000           0.000          0.000
## coffee                              0.001           0.000          0.000
## margarine                           0.000           0.000          0.000
## beef                                0.000           0.000          0.000
## curd                                0.000           0.000          0.000
## butter                              0.000           0.000          0.000
## marinated meats                     0.001           0.000          0.000
## napkins                             0.000           0.000          0.000
## halal meat                          0.000           0.000          0.000
## chocolate                           0.000           0.000          0.000
## frozen vegetables                   0.000           0.000          0.000
## chicken                             0.000           0.001          0.000
## white bread                         0.000           0.000          0.000
## cream cheese                        0.000           0.000          0.000
## waffles                             0.000           0.000          0.000
## dessert                             0.000           0.000          0.000
## salty snack                         0.000           0.000          0.000
## long life bakery product            0.000           0.000          0.000
## berries                             0.000           0.000          0.000
## hamburger meat                      0.001           0.000          0.000
## sugar                               0.000           0.000          0.000
## hygiene articles                    0.000           0.000          0.000
## UHT-milk                            0.000           0.000          0.000
## onions                              0.000           0.000          0.000
## candy                               0.000           0.000          0.000
## specialty chocolate                 0.000           0.000          0.000
## butter milk                         0.000           0.000          0.000
## oil                                 0.000           0.000          0.000
## frozen meals                        0.000           0.000          0.000
## misc. beverages                     0.000           0.000          0.000
## specialty bar                       0.000           0.000          0.000
## ham                                 0.000           0.000          0.000
## beverages                           0.000           0.000          0.000
## meat                                0.000           0.000          0.000
## ice cream                           0.000           0.000          0.000
## sliced cheese                       0.000           0.000          0.000
## hard cheese                         0.000           0.000          0.000
## noodles                             0.000           0.000          0.000
## grapes                              0.000           0.000          0.000
## cat food                            0.000           0.000          0.000
## chewing gum                         0.000           0.000          0.000
## soda                                0.000           0.000          0.000
## detergent                           0.000           0.000          0.000
## red/blush wine                      0.000           0.000          0.000
## white wine                          0.000           0.000          0.000
## turkey                              0.000           0.000          0.000
## dishes                              0.000           0.000          0.000
## bottled water                       0.000           0.000          0.000
## flour                               0.000           0.000          0.000
## semi-finished bread                 0.000           0.000          0.000
## baking powder                       0.000           0.000          0.000
## pickled vegetables                  0.000           0.000          0.000
## herbs                               0.000           0.000          0.000
## tropical herbs                      0.000           0.000          0.000
## soft cheese                         0.000           0.000          0.000
## tea                                 0.000           0.000          0.000
## processed cheese                    0.001           0.000          0.000
## sausage                             0.000           0.001          0.000
## pasta                               0.000           0.000          0.000
## citrus herbs                        0.000           0.001          0.000
## potted plants                       0.000           0.000          0.000
## canned fish                         0.000           0.000          0.000
## seasonal products                   0.000           0.000          0.000
## cake bar                            0.000           0.000          0.000
## carrots                             0.000           0.000          0.000
## mustard                             0.000           0.000          0.000
## packaged fruit/vegetables           0.000           0.000          0.000
## spread cheese                       0.000           0.000          0.000
## frozen dessert                      0.000           0.000          0.000
## frozen fish                         0.000           0.000          0.000
## cling film/bags                     0.000           0.000          0.000
## salt                                0.000           0.000          0.000
## liquor                              0.000           0.000          0.000
## canned vegetables                   0.000           0.000          0.000
## bottled beer                        0.000           0.000          0.000
## flower (seeds)                      0.000           0.000          0.000
## cooking oil                         0.000           0.000          0.000
## dish cleaner                        0.000           0.000          0.000
## condensed milk                      0.000           0.000          0.000
## roll products                       0.000           0.000          0.000
## photo/film                          0.000           0.000          0.000
## pet care                            0.000           0.000          0.000
## chocolate marshmallow               0.000           0.000          0.000
## herbs/vegetable juice               0.000           0.000          0.000
## whole milk                          0.000           0.001          0.000
## candles                             0.000           0.000          0.000
## mayonnaise                          0.000           0.000          0.000
## Instant food products               0.000           0.000          0.000
## sweet spreads                       0.000           0.000          0.000
## liquor (appetizer)                  0.000           0.000          0.000
## specialty cheese                    0.000           0.000          0.000
## frozen potato products              0.000           0.000          0.000
## house keeping products              0.000           0.000          0.000
## dog food                            0.000           0.000          0.000
## soy                                 0.000           0.000          0.000
## instant coffee                      0.000           0.000          0.000
## pip herbs                           0.000           0.000          0.000
## zwieback                            0.000           0.000          0.000
## finished products                   0.000           0.000          0.000
## popcorn                             0.000           0.000          0.000
## vinegar                             0.000           0.000          0.000
## soups                               0.000           0.000          0.000
## female sanitary products            0.000           0.000          0.000
## sparkling wine                      0.000           0.000          0.000
## dental care                         0.000           0.000          0.000
## cereals                             0.000           0.000          0.000
## kitchen towels                      0.000           0.000          0.000
## curd cheese                         0.000           0.000          0.000
## other vegetables                    0.000           0.001          0.000
## rolls/buns                          0.000           0.001          0.000
## softener                            0.000           0.000          0.000
## cleaner                             0.000           0.000          0.000
## spices                              0.000           0.000          0.000
## jam                                 0.000           0.000          0.000
## sauces                              0.000           0.000          0.000
## rum                                 0.000           0.000          0.000
## liver loaf                          0.000           0.000          0.000
## male cosmetics                      0.000           0.000          0.000
## meat spreads                        0.000           0.000          0.000
## packaged herbs/vegetables           0.000           0.000          0.000
## brandy                              0.000           0.000          0.000
## ketchup                             0.000           0.000          0.000
## abrasive cleaner                    0.000           0.000          0.000
## light bulbs                         0.000           0.000          0.000
## artif. sweetener                    0.000           0.000          0.000
## nuts/prunes                         0.000           0.000          0.000
## specialty fat                       0.000           0.000          0.000
## skin care                           0.000           0.000          0.000
## fish                                0.000           0.000          0.000
## potato products                     0.003           0.000          0.000
## root vegetables                     0.000           0.003          0.000
## snack products                      0.000           0.000          0.003
## nut snack                           0.000           0.000          0.000
## soap                                0.000           0.000          0.000
## syrup                               0.000           0.000          0.000
## bathroom cleaner                    0.000           0.000          0.000
## canned fruit                        0.000           0.000          0.000
## cookware                            0.000           0.000          0.000
## cooking chocolate                   0.000           0.000          0.000
## tidbits                             0.000           0.000          0.000
## cocoa drinks                        0.000           0.000          0.000
## pudding powder                      0.000           0.000          0.000
## ready soups                         0.000           0.000          0.000
## organic marinated meat              0.000           0.000          0.000
## flower soil/fertilizer              0.000           0.000          0.000
## organic products                    0.000           0.000          0.000
## pot plants                          0.000           0.000          0.000
## prosecco                            0.000           0.000          0.000
## frankfurter                         0.000           0.000          0.000
## decalcifier                         0.000           0.000          0.000
## honey                               0.000           0.000          0.000
## specialty vegetables                0.000           0.000          0.000
## cream                               0.000           0.000          0.000
## hair spray                          0.000           0.000          0.000
## frozen fruits                       0.000           0.000          0.000
## rubbing alcohol                     0.000           0.000          0.000
## liqueur                             0.000           0.000          0.000
## make up remover                     0.000           0.000          0.000
## salad dressing                      0.000           0.000          0.000
## frozen chicken                      0.000           0.000          0.000
## whisky                              0.000           0.000          0.000
## baby cosmetics                      0.000           0.000          0.000
## toilet cleaner                      0.000           0.000          0.000
## bags                                0.000           0.000          0.000
## canned herbs                        0.000           0.000          0.000
## kitchen utensil                     0.000           0.000          0.000
## preservation products               0.000           0.000          0.000
## baby food                           0.000           0.000          0.000
## frozen herbss                       0.000           0.000          0.000
## organic sausage                     0.000           0.000          0.000
## sound storage medium                0.000           0.000          0.000
##                           nut snack  soap syrup bathroom cleaner canned fruit
## rice                          0.000 0.001 0.001            0.001        0.001
## veggies                       0.001 0.000 0.001            0.001        0.001
## loaf                          0.001 0.001 0.001            0.001        0.001
## coke                          0.001 0.001 0.001            0.001        0.001
## yogurt                        0.001 0.000 0.001            0.001        0.000
## vegetables                    0.001 0.000 0.001            0.001        0.001
## mineral water                 0.000 0.000 0.000            0.000        0.000
## Plastic bags                  0.001 0.000 0.000            0.000        0.001
## tropical fruit                0.001 0.000 0.001            0.001        0.001
## marinated meat                0.001 0.000 0.000            0.000        0.000
## pies/pasties                  0.000 0.000 0.001            0.000        0.001
## newspapers                    0.000 0.000 0.000            0.001        0.000
## citrus                        0.000 0.000 0.000            0.000        0.001
## whipped/sour cream            0.000 0.000 0.000            0.000        0.000
## heinken                       0.001 0.000 0.000            0.000        0.000
## green tea                     0.000 0.000 0.000            0.000        0.000
## pip fruit                     0.000 0.000 0.000            0.000        0.000
## brown bread                   0.000 0.000 0.000            0.000        0.000
## fruit/vegetable juice         0.000 0.001 0.000            0.000        0.000
## domestic eggs                 0.000 0.000 0.000            0.000        0.001
## coffee                        0.000 0.000 0.000            0.000        0.000
## margarine                     0.000 0.000 0.000            0.000        0.000
## beef                          0.000 0.001 0.000            0.000        0.000
## curd                          0.000 0.000 0.000            0.000        0.000
## butter                        0.000 0.000 0.001            0.000        0.000
## marinated meats               0.001 0.000 0.000            0.000        0.000
## napkins                       0.000 0.000 0.000            0.001        0.000
## halal meat                    0.000 0.000 0.000            0.000        0.000
## chocolate                     0.000 0.000 0.000            0.000        0.000
## frozen vegetables             0.000 0.000 0.000            0.000        0.000
## chicken                       0.000 0.000 0.000            0.000        0.000
## white bread                   0.000 0.000 0.000            0.000        0.000
## cream cheese                  0.000 0.000 0.000            0.000        0.000
## waffles                       0.000 0.000 0.000            0.000        0.000
## dessert                       0.000 0.000 0.000            0.000        0.000
## salty snack                   0.001 0.000 0.000            0.000        0.000
## long life bakery product      0.000 0.000 0.000            0.000        0.000
## berries                       0.000 0.000 0.000            0.000        0.000
## hamburger meat                0.000 0.000 0.000            0.000        0.000
## sugar                         0.000 0.000 0.000            0.000        0.000
## hygiene articles              0.000 0.000 0.000            0.000        0.001
## UHT-milk                      0.000 0.000 0.000            0.000        0.000
## onions                        0.000 0.000 0.000            0.000        0.000
## candy                         0.000 0.000 0.000            0.000        0.000
## specialty chocolate           0.000 0.000 0.000            0.000        0.000
## butter milk                   0.000 0.000 0.000            0.000        0.000
## oil                           0.000 0.000 0.000            0.000        0.000
## frozen meals                  0.000 0.000 0.000            0.000        0.000
## misc. beverages               0.000 0.000 0.000            0.000        0.001
## specialty bar                 0.000 0.000 0.000            0.000        0.000
## ham                           0.000 0.000 0.000            0.000        0.000
## beverages                     0.000 0.000 0.000            0.000        0.000
## meat                          0.000 0.000 0.000            0.000        0.000
## ice cream                     0.000 0.000 0.000            0.000        0.000
## sliced cheese                 0.000 0.000 0.000            0.000        0.000
## hard cheese                   0.000 0.000 0.000            0.000        0.000
## noodles                       0.000 0.000 0.000            0.000        0.000
## grapes                        0.000 0.000 0.000            0.000        0.000
## cat food                      0.000 0.000 0.000            0.000        0.000
## chewing gum                   0.000 0.000 0.000            0.000        0.000
## soda                          0.000 0.000 0.000            0.000        0.000
## detergent                     0.000 0.000 0.000            0.000        0.000
## red/blush wine                0.000 0.000 0.000            0.000        0.000
## white wine                    0.000 0.000 0.000            0.000        0.000
## turkey                        0.000 0.000 0.000            0.000        0.000
## dishes                        0.000 0.000 0.000            0.000        0.000
## bottled water                 0.000 0.000 0.000            0.000        0.000
## flour                         0.000 0.000 0.000            0.000        0.000
## semi-finished bread           0.000 0.000 0.000            0.000        0.000
## baking powder                 0.000 0.000 0.000            0.000        0.000
## pickled vegetables            0.000 0.000 0.000            0.000        0.000
## herbs                         0.000 0.000 0.000            0.000        0.000
## tropical herbs                0.000 0.000 0.000            0.000        0.000
## soft cheese                   0.000 0.000 0.000            0.000        0.000
## tea                           0.000 0.000 0.000            0.000        0.000
## processed cheese              0.000 0.000 0.000            0.000        0.000
## sausage                       0.000 0.000 0.000            0.000        0.000
## pasta                         0.000 0.000 0.000            0.000        0.000
## citrus herbs                  0.000 0.000 0.000            0.000        0.000
## potted plants                 0.000 0.000 0.000            0.000        0.000
## canned fish                   0.000 0.000 0.000            0.000        0.000
## seasonal products             0.000 0.000 0.000            0.000        0.000
## cake bar                      0.000 0.000 0.000            0.000        0.000
## carrots                       0.000 0.000 0.000            0.000        0.000
## mustard                       0.000 0.000 0.000            0.000        0.000
## packaged fruit/vegetables     0.000 0.000 0.000            0.000        0.000
## spread cheese                 0.000 0.000 0.000            0.000        0.000
## frozen dessert                0.000 0.000 0.000            0.000        0.000
## frozen fish                   0.000 0.000 0.000            0.000        0.000
## cling film/bags               0.000 0.000 0.000            0.000        0.000
## salt                          0.000 0.000 0.000            0.000        0.000
## liquor                        0.000 0.000 0.000            0.000        0.000
## canned vegetables             0.000 0.000 0.000            0.000        0.000
## bottled beer                  0.000 0.000 0.000            0.000        0.000
## flower (seeds)                0.000 0.000 0.000            0.000        0.000
## cooking oil                   0.000 0.000 0.000            0.000        0.000
## dish cleaner                  0.000 0.000 0.000            0.000        0.000
## condensed milk                0.000 0.000 0.000            0.000        0.000
## roll products                 0.000 0.000 0.000            0.000        0.000
## photo/film                    0.000 0.000 0.000            0.000        0.000
## pet care                      0.000 0.000 0.000            0.000        0.000
## chocolate marshmallow         0.000 0.000 0.000            0.000        0.000
## herbs/vegetable juice         0.000 0.000 0.000            0.000        0.000
## whole milk                    0.000 0.000 0.000            0.000        0.000
## candles                       0.000 0.000 0.000            0.000        0.000
## mayonnaise                    0.000 0.000 0.000            0.000        0.000
## Instant food products         0.000 0.000 0.000            0.000        0.000
## sweet spreads                 0.000 0.000 0.000            0.000        0.000
## liquor (appetizer)            0.000 0.000 0.000            0.000        0.000
## specialty cheese              0.000 0.000 0.000            0.000        0.000
## frozen potato products        0.000 0.000 0.000            0.000        0.000
## house keeping products        0.000 0.000 0.000            0.000        0.000
## dog food                      0.000 0.000 0.000            0.000        0.000
## soy                           0.000 0.000 0.000            0.000        0.000
## instant coffee                0.000 0.000 0.000            0.000        0.000
## pip herbs                     0.000 0.000 0.000            0.000        0.000
## zwieback                      0.000 0.000 0.000            0.000        0.000
## finished products             0.000 0.000 0.000            0.000        0.000
## popcorn                       0.000 0.000 0.000            0.000        0.000
## vinegar                       0.000 0.000 0.000            0.000        0.000
## soups                         0.000 0.000 0.000            0.000        0.000
## female sanitary products      0.000 0.000 0.000            0.000        0.000
## sparkling wine                0.000 0.000 0.000            0.000        0.000
## dental care                   0.000 0.000 0.000            0.000        0.000
## cereals                       0.000 0.000 0.000            0.000        0.000
## kitchen towels                0.000 0.000 0.000            0.000        0.000
## curd cheese                   0.000 0.000 0.000            0.000        0.000
## other vegetables              0.000 0.000 0.000            0.000        0.000
## rolls/buns                    0.000 0.000 0.000            0.000        0.000
## softener                      0.000 0.000 0.000            0.000        0.000
## cleaner                       0.000 0.000 0.000            0.000        0.000
## spices                        0.000 0.000 0.000            0.000        0.000
## jam                           0.000 0.000 0.000            0.000        0.000
## sauces                        0.000 0.000 0.000            0.000        0.000
## rum                           0.000 0.000 0.000            0.000        0.000
## liver loaf                    0.000 0.000 0.000            0.000        0.000
## male cosmetics                0.000 0.000 0.000            0.000        0.000
## meat spreads                  0.000 0.000 0.000            0.000        0.000
## packaged herbs/vegetables     0.000 0.000 0.000            0.000        0.000
## brandy                        0.000 0.000 0.000            0.000        0.000
## ketchup                       0.000 0.000 0.000            0.000        0.000
## abrasive cleaner              0.000 0.000 0.000            0.000        0.000
## light bulbs                   0.000 0.000 0.000            0.000        0.000
## artif. sweetener              0.000 0.000 0.000            0.000        0.000
## nuts/prunes                   0.000 0.000 0.000            0.000        0.000
## specialty fat                 0.000 0.000 0.000            0.000        0.000
## skin care                     0.000 0.000 0.000            0.000        0.000
## fish                          0.000 0.000 0.000            0.000        0.000
## potato products               0.000 0.000 0.000            0.000        0.000
## root vegetables               0.000 0.000 0.000            0.000        0.000
## snack products                0.000 0.000 0.000            0.000        0.000
## nut snack                     0.003 0.000 0.000            0.000        0.000
## soap                          0.000 0.003 0.000            0.000        0.000
## syrup                         0.000 0.000 0.003            0.000        0.000
## bathroom cleaner              0.000 0.000 0.000            0.003        0.000
## canned fruit                  0.000 0.000 0.000            0.000        0.003
## cookware                      0.000 0.000 0.000            0.000        0.000
## cooking chocolate             0.000 0.000 0.000            0.000        0.000
## tidbits                       0.000 0.000 0.000            0.000        0.000
## cocoa drinks                  0.000 0.000 0.000            0.000        0.000
## pudding powder                0.000 0.000 0.000            0.000        0.000
## ready soups                   0.000 0.000 0.000            0.000        0.000
## organic marinated meat        0.000 0.000 0.000            0.000        0.000
## flower soil/fertilizer        0.000 0.000 0.000            0.000        0.000
## organic products              0.000 0.000 0.000            0.000        0.000
## pot plants                    0.000 0.000 0.000            0.000        0.000
## prosecco                      0.000 0.000 0.000            0.000        0.000
## frankfurter                   0.000 0.000 0.000            0.000        0.000
## decalcifier                   0.000 0.000 0.000            0.000        0.000
## honey                         0.000 0.000 0.000            0.000        0.000
## specialty vegetables          0.000 0.000 0.000            0.000        0.000
## cream                         0.000 0.000 0.000            0.000        0.000
## hair spray                    0.000 0.000 0.000            0.000        0.000
## frozen fruits                 0.000 0.000 0.000            0.000        0.000
## rubbing alcohol               0.000 0.000 0.000            0.000        0.000
## liqueur                       0.000 0.000 0.000            0.000        0.000
## make up remover               0.000 0.000 0.000            0.000        0.000
## salad dressing                0.000 0.000 0.000            0.000        0.000
## frozen chicken                0.000 0.000 0.000            0.000        0.000
## whisky                        0.000 0.000 0.000            0.000        0.000
## baby cosmetics                0.000 0.000 0.000            0.000        0.000
## toilet cleaner                0.000 0.000 0.000            0.000        0.000
## bags                          0.000 0.000 0.000            0.000        0.000
## canned herbs                  0.000 0.000 0.000            0.000        0.000
## kitchen utensil               0.000 0.000 0.000            0.000        0.000
## preservation products         0.000 0.000 0.000            0.000        0.000
## baby food                     0.000 0.000 0.000            0.000        0.000
## frozen herbss                 0.000 0.000 0.000            0.000        0.000
## organic sausage               0.000 0.000 0.000            0.000        0.000
## sound storage medium          0.000 0.000 0.000            0.000        0.000
##                           cookware cooking chocolate tidbits cocoa drinks
## rice                         0.000             0.001   0.001        0.001
## veggies                      0.000             0.001   0.000        0.000
## loaf                         0.001             0.001   0.001        0.000
## coke                         0.001             0.000   0.001        0.000
## yogurt                       0.000             0.000   0.001        0.000
## vegetables                   0.000             0.000   0.000        0.000
## mineral water                0.000             0.001   0.000        0.000
## Plastic bags                 0.000             0.000   0.000        0.000
## tropical fruit               0.000             0.000   0.000        0.000
## marinated meat               0.000             0.000   0.000        0.000
## pies/pasties                 0.000             0.000   0.000        0.000
## newspapers                   0.000             0.000   0.000        0.000
## citrus                       0.001             0.000   0.000        0.000
## whipped/sour cream           0.000             0.000   0.000        0.000
## heinken                      0.000             0.000   0.000        0.000
## green tea                    0.000             0.000   0.000        0.000
## pip fruit                    0.001             0.000   0.000        0.000
## brown bread                  0.000             0.000   0.000        0.000
## fruit/vegetable juice        0.000             0.000   0.000        0.000
## domestic eggs                0.000             0.001   0.000        0.000
## coffee                       0.000             0.000   0.000        0.000
## margarine                    0.000             0.000   0.000        0.001
## beef                         0.001             0.000   0.000        0.000
## curd                         0.000             0.001   0.000        0.001
## butter                       0.000             0.000   0.000        0.000
## marinated meats              0.000             0.000   0.000        0.000
## napkins                      0.000             0.000   0.000        0.000
## halal meat                   0.000             0.000   0.000        0.000
## chocolate                    0.000             0.000   0.000        0.001
## frozen vegetables            0.000             0.000   0.000        0.000
## chicken                      0.000             0.000   0.000        0.000
## white bread                  0.000             0.000   0.000        0.000
## cream cheese                 0.000             0.000   0.000        0.000
## waffles                      0.000             0.000   0.001        0.000
## dessert                      0.000             0.000   0.000        0.000
## salty snack                  0.000             0.000   0.000        0.000
## long life bakery product     0.000             0.000   0.000        0.000
## berries                      0.000             0.000   0.000        0.000
## hamburger meat               0.000             0.000   0.000        0.000
## sugar                        0.000             0.000   0.000        0.000
## hygiene articles             0.000             0.000   0.000        0.000
## UHT-milk                     0.000             0.000   0.000        0.000
## onions                       0.000             0.000   0.000        0.000
## candy                        0.000             0.000   0.000        0.000
## specialty chocolate          0.000             0.000   0.000        0.000
## butter milk                  0.000             0.000   0.000        0.000
## oil                          0.000             0.000   0.000        0.000
## frozen meals                 0.000             0.000   0.000        0.000
## misc. beverages              0.000             0.000   0.000        0.000
## specialty bar                0.000             0.000   0.000        0.000
## ham                          0.000             0.000   0.000        0.000
## beverages                    0.000             0.000   0.000        0.000
## meat                         0.000             0.000   0.000        0.000
## ice cream                    0.000             0.000   0.000        0.000
## sliced cheese                0.000             0.000   0.000        0.000
## hard cheese                  0.000             0.000   0.000        0.000
## noodles                      0.000             0.000   0.000        0.000
## grapes                       0.000             0.000   0.000        0.000
## cat food                     0.000             0.000   0.000        0.000
## chewing gum                  0.000             0.000   0.000        0.000
## soda                         0.000             0.000   0.000        0.000
## detergent                    0.000             0.000   0.000        0.000
## red/blush wine               0.000             0.000   0.000        0.000
## white wine                   0.000             0.000   0.000        0.000
## turkey                       0.000             0.000   0.000        0.000
## dishes                       0.000             0.000   0.000        0.000
## bottled water                0.000             0.000   0.000        0.000
## flour                        0.000             0.000   0.000        0.000
## semi-finished bread          0.000             0.000   0.000        0.000
## baking powder                0.000             0.001   0.000        0.000
## pickled vegetables           0.000             0.000   0.000        0.000
## herbs                        0.000             0.000   0.000        0.000
## tropical herbs               0.000             0.000   0.000        0.000
## soft cheese                  0.000             0.000   0.000        0.000
## tea                          0.000             0.000   0.000        0.000
## processed cheese             0.000             0.000   0.000        0.000
## sausage                      0.000             0.000   0.000        0.000
## pasta                        0.000             0.000   0.000        0.000
## citrus herbs                 0.000             0.000   0.000        0.000
## potted plants                0.000             0.000   0.000        0.000
## canned fish                  0.000             0.000   0.000        0.000
## seasonal products            0.000             0.000   0.000        0.000
## cake bar                     0.000             0.000   0.000        0.000
## carrots                      0.000             0.000   0.000        0.000
## mustard                      0.000             0.000   0.000        0.000
## packaged fruit/vegetables    0.000             0.000   0.000        0.000
## spread cheese                0.000             0.000   0.000        0.000
## frozen dessert               0.000             0.000   0.000        0.000
## frozen fish                  0.000             0.000   0.000        0.000
## cling film/bags              0.000             0.000   0.000        0.000
## salt                         0.000             0.000   0.000        0.000
## liquor                       0.000             0.000   0.000        0.000
## canned vegetables            0.000             0.000   0.000        0.000
## bottled beer                 0.000             0.000   0.000        0.000
## flower (seeds)               0.000             0.000   0.000        0.000
## cooking oil                  0.000             0.000   0.000        0.000
## dish cleaner                 0.000             0.000   0.000        0.000
## condensed milk               0.000             0.000   0.000        0.000
## roll products                0.000             0.000   0.000        0.000
## photo/film                   0.000             0.000   0.000        0.000
## pet care                     0.000             0.000   0.000        0.000
## chocolate marshmallow        0.000             0.000   0.000        0.000
## herbs/vegetable juice        0.000             0.000   0.000        0.000
## whole milk                   0.000             0.000   0.000        0.000
## candles                      0.000             0.000   0.000        0.000
## mayonnaise                   0.000             0.000   0.000        0.000
## Instant food products        0.000             0.000   0.000        0.000
## sweet spreads                0.000             0.000   0.000        0.000
## liquor (appetizer)           0.000             0.000   0.000        0.000
## specialty cheese             0.000             0.000   0.000        0.000
## frozen potato products       0.000             0.000   0.000        0.000
## house keeping products       0.000             0.000   0.000        0.000
## dog food                     0.000             0.000   0.000        0.000
## soy                          0.000             0.000   0.000        0.000
## instant coffee               0.000             0.000   0.000        0.000
## pip herbs                    0.000             0.000   0.000        0.000
## zwieback                     0.000             0.000   0.000        0.000
## finished products            0.000             0.000   0.000        0.000
## popcorn                      0.000             0.000   0.000        0.000
## vinegar                      0.000             0.000   0.000        0.000
## soups                        0.000             0.000   0.000        0.000
## female sanitary products     0.000             0.000   0.000        0.000
## sparkling wine               0.000             0.000   0.000        0.000
## dental care                  0.000             0.000   0.000        0.000
## cereals                      0.000             0.000   0.000        0.000
## kitchen towels               0.000             0.000   0.000        0.000
## curd cheese                  0.000             0.000   0.000        0.000
## other vegetables             0.000             0.000   0.000        0.000
## rolls/buns                   0.000             0.000   0.000        0.000
## softener                     0.000             0.000   0.000        0.000
## cleaner                      0.000             0.000   0.000        0.000
## spices                       0.000             0.000   0.000        0.000
## jam                          0.000             0.000   0.000        0.000
## sauces                       0.000             0.000   0.000        0.000
## rum                          0.000             0.000   0.000        0.000
## liver loaf                   0.000             0.000   0.000        0.000
## male cosmetics               0.000             0.000   0.000        0.000
## meat spreads                 0.000             0.000   0.000        0.000
## packaged herbs/vegetables    0.000             0.000   0.000        0.000
## brandy                       0.000             0.000   0.000        0.000
## ketchup                      0.000             0.000   0.000        0.000
## abrasive cleaner             0.000             0.000   0.000        0.000
## light bulbs                  0.000             0.000   0.000        0.000
## artif. sweetener             0.000             0.000   0.000        0.000
## nuts/prunes                  0.000             0.000   0.000        0.000
## specialty fat                0.000             0.000   0.000        0.000
## skin care                    0.000             0.000   0.000        0.000
## fish                         0.000             0.000   0.000        0.000
## potato products              0.000             0.000   0.000        0.000
## root vegetables              0.000             0.000   0.000        0.000
## snack products               0.000             0.000   0.000        0.000
## nut snack                    0.000             0.000   0.000        0.000
## soap                         0.000             0.000   0.000        0.000
## syrup                        0.000             0.000   0.000        0.000
## bathroom cleaner             0.000             0.000   0.000        0.000
## canned fruit                 0.000             0.000   0.000        0.000
## cookware                     0.003             0.000   0.000        0.000
## cooking chocolate            0.000             0.002   0.000        0.000
## tidbits                      0.000             0.000   0.002        0.000
## cocoa drinks                 0.000             0.000   0.000        0.002
## pudding powder               0.000             0.000   0.000        0.000
## ready soups                  0.000             0.000   0.000        0.000
## organic marinated meat       0.000             0.000   0.000        0.000
## flower soil/fertilizer       0.000             0.000   0.000        0.000
## organic products             0.000             0.000   0.000        0.000
## pot plants                   0.000             0.000   0.000        0.000
## prosecco                     0.000             0.000   0.000        0.000
## frankfurter                  0.000             0.000   0.000        0.000
## decalcifier                  0.000             0.000   0.000        0.000
## honey                        0.000             0.000   0.000        0.000
## specialty vegetables         0.000             0.000   0.000        0.000
## cream                        0.000             0.000   0.000        0.000
## hair spray                   0.000             0.000   0.000        0.000
## frozen fruits                0.000             0.000   0.000        0.000
## rubbing alcohol              0.000             0.000   0.000        0.000
## liqueur                      0.000             0.000   0.000        0.000
## make up remover              0.000             0.000   0.000        0.000
## salad dressing               0.000             0.000   0.000        0.000
## frozen chicken               0.000             0.000   0.000        0.000
## whisky                       0.000             0.000   0.000        0.000
## baby cosmetics               0.000             0.000   0.000        0.000
## toilet cleaner               0.000             0.000   0.000        0.000
## bags                         0.000             0.000   0.000        0.000
## canned herbs                 0.000             0.000   0.000        0.000
## kitchen utensil              0.000             0.000   0.000        0.000
## preservation products        0.000             0.000   0.000        0.000
## baby food                    0.000             0.000   0.000        0.000
## frozen herbss                0.000             0.000   0.000        0.000
## organic sausage              0.000             0.000   0.000        0.000
## sound storage medium         0.000             0.000   0.000        0.000
##                           pudding powder ready soups organic marinated meat
## rice                               0.001       0.001                  0.001
## veggies                            0.001       0.001                  0.000
## loaf                               0.000       0.001                  0.000
## coke                               0.000       0.001                  0.000
## yogurt                             0.001       0.000                  0.001
## vegetables                         0.001       0.001                  0.000
## mineral water                      0.000       0.001                  0.000
## Plastic bags                       0.000       0.001                  0.000
## tropical fruit                     0.000       0.000                  0.000
## marinated meat                     0.000       0.000                  0.000
## pies/pasties                       0.000       0.001                  0.000
## newspapers                         0.000       0.001                  0.000
## citrus                             0.000       0.000                  0.000
## whipped/sour cream                 0.001       0.000                  0.000
## heinken                            0.000       0.000                  0.000
## green tea                          0.000       0.000                  0.000
## pip fruit                          0.000       0.000                  0.000
## brown bread                        0.000       0.000                  0.000
## fruit/vegetable juice              0.000       0.000                  0.000
## domestic eggs                      0.000       0.000                  0.000
## coffee                             0.000       0.000                  0.000
## margarine                          0.000       0.001                  0.000
## beef                               0.000       0.000                  0.000
## curd                               0.001       0.000                  0.000
## butter                             0.000       0.000                  0.000
## marinated meats                    0.000       0.000                  0.000
## napkins                            0.000       0.000                  0.000
## halal meat                         0.000       0.000                  0.000
## chocolate                          0.000       0.000                  0.000
## frozen vegetables                  0.000       0.000                  0.000
## chicken                            0.000       0.000                  0.000
## white bread                        0.000       0.000                  0.000
## cream cheese                       0.000       0.000                  0.000
## waffles                            0.000       0.000                  0.000
## dessert                            0.000       0.000                  0.000
## salty snack                        0.000       0.000                  0.000
## long life bakery product           0.000       0.000                  0.000
## berries                            0.000       0.000                  0.000
## hamburger meat                     0.000       0.000                  0.000
## sugar                              0.000       0.000                  0.000
## hygiene articles                   0.000       0.000                  0.000
## UHT-milk                           0.000       0.000                  0.000
## onions                             0.000       0.000                  0.000
## candy                              0.000       0.000                  0.000
## specialty chocolate                0.000       0.000                  0.000
## butter milk                        0.000       0.000                  0.000
## oil                                0.000       0.000                  0.000
## frozen meals                       0.000       0.000                  0.000
## misc. beverages                    0.000       0.000                  0.000
## specialty bar                      0.000       0.000                  0.000
## ham                                0.000       0.000                  0.000
## beverages                          0.000       0.000                  0.000
## meat                               0.000       0.000                  0.000
## ice cream                          0.000       0.000                  0.000
## sliced cheese                      0.000       0.000                  0.000
## hard cheese                        0.000       0.000                  0.000
## noodles                            0.000       0.000                  0.000
## grapes                             0.000       0.000                  0.000
## cat food                           0.000       0.000                  0.000
## chewing gum                        0.000       0.000                  0.000
## soda                               0.000       0.000                  0.000
## detergent                          0.000       0.000                  0.000
## red/blush wine                     0.000       0.000                  0.000
## white wine                         0.000       0.000                  0.000
## turkey                             0.000       0.000                  0.000
## dishes                             0.000       0.000                  0.000
## bottled water                      0.000       0.000                  0.000
## flour                              0.000       0.000                  0.000
## semi-finished bread                0.000       0.001                  0.000
## baking powder                      0.000       0.000                  0.000
## pickled vegetables                 0.000       0.000                  0.000
## herbs                              0.000       0.000                  0.000
## tropical herbs                     0.000       0.000                  0.000
## soft cheese                        0.000       0.000                  0.000
## tea                                0.000       0.000                  0.000
## processed cheese                   0.000       0.000                  0.000
## sausage                            0.000       0.000                  0.000
## pasta                              0.000       0.000                  0.000
## citrus herbs                       0.000       0.000                  0.000
## potted plants                      0.000       0.000                  0.000
## canned fish                        0.000       0.000                  0.000
## seasonal products                  0.000       0.000                  0.000
## cake bar                           0.000       0.000                  0.000
## carrots                            0.000       0.000                  0.000
## mustard                            0.000       0.000                  0.000
## packaged fruit/vegetables          0.000       0.000                  0.000
## spread cheese                      0.000       0.000                  0.000
## frozen dessert                     0.000       0.000                  0.000
## frozen fish                        0.000       0.000                  0.000
## cling film/bags                    0.000       0.000                  0.000
## salt                               0.000       0.000                  0.000
## liquor                             0.000       0.000                  0.000
## canned vegetables                  0.000       0.000                  0.000
## bottled beer                       0.000       0.000                  0.000
## flower (seeds)                     0.000       0.000                  0.000
## cooking oil                        0.000       0.000                  0.000
## dish cleaner                       0.000       0.000                  0.000
## condensed milk                     0.000       0.000                  0.000
## roll products                      0.000       0.000                  0.000
## photo/film                         0.000       0.000                  0.000
## pet care                           0.000       0.000                  0.000
## chocolate marshmallow              0.000       0.000                  0.000
## herbs/vegetable juice              0.000       0.000                  0.000
## whole milk                         0.000       0.000                  0.000
## candles                            0.000       0.000                  0.000
## mayonnaise                         0.000       0.000                  0.000
## Instant food products              0.000       0.000                  0.000
## sweet spreads                      0.000       0.000                  0.000
## liquor (appetizer)                 0.000       0.000                  0.000
## specialty cheese                   0.000       0.000                  0.000
## frozen potato products             0.000       0.000                  0.000
## house keeping products             0.000       0.000                  0.000
## dog food                           0.000       0.000                  0.000
## soy                                0.000       0.000                  0.000
## instant coffee                     0.000       0.000                  0.000
## pip herbs                          0.000       0.000                  0.000
## zwieback                           0.000       0.000                  0.000
## finished products                  0.000       0.000                  0.000
## popcorn                            0.000       0.000                  0.000
## vinegar                            0.000       0.000                  0.000
## soups                              0.000       0.000                  0.000
## female sanitary products           0.000       0.000                  0.000
## sparkling wine                     0.000       0.000                  0.000
## dental care                        0.000       0.000                  0.000
## cereals                            0.000       0.000                  0.000
## kitchen towels                     0.000       0.000                  0.000
## curd cheese                        0.000       0.000                  0.000
## other vegetables                   0.000       0.000                  0.000
## rolls/buns                         0.000       0.000                  0.000
## softener                           0.000       0.000                  0.000
## cleaner                            0.000       0.000                  0.000
## spices                             0.000       0.000                  0.000
## jam                                0.000       0.000                  0.000
## sauces                             0.000       0.000                  0.000
## rum                                0.000       0.000                  0.000
## liver loaf                         0.000       0.000                  0.000
## male cosmetics                     0.000       0.000                  0.000
## meat spreads                       0.000       0.000                  0.000
## packaged herbs/vegetables          0.000       0.000                  0.000
## brandy                             0.000       0.000                  0.000
## ketchup                            0.000       0.000                  0.000
## abrasive cleaner                   0.000       0.000                  0.000
## light bulbs                        0.000       0.000                  0.000
## artif. sweetener                   0.000       0.000                  0.000
## nuts/prunes                        0.000       0.000                  0.000
## specialty fat                      0.000       0.000                  0.000
## skin care                          0.000       0.000                  0.000
## fish                               0.000       0.000                  0.000
## potato products                    0.000       0.000                  0.000
## root vegetables                    0.000       0.000                  0.000
## snack products                     0.000       0.000                  0.000
## nut snack                          0.000       0.000                  0.000
## soap                               0.000       0.000                  0.000
## syrup                              0.000       0.000                  0.000
## bathroom cleaner                   0.000       0.000                  0.000
## canned fruit                       0.000       0.000                  0.000
## cookware                           0.000       0.000                  0.000
## cooking chocolate                  0.000       0.000                  0.000
## tidbits                            0.000       0.000                  0.000
## cocoa drinks                       0.000       0.000                  0.000
## pudding powder                     0.002       0.000                  0.000
## ready soups                        0.000       0.002                  0.000
## organic marinated meat             0.000       0.000                  0.002
## flower soil/fertilizer             0.000       0.000                  0.000
## organic products                   0.000       0.000                  0.000
## pot plants                         0.000       0.000                  0.000
## prosecco                           0.000       0.000                  0.000
## frankfurter                        0.000       0.000                  0.000
## decalcifier                        0.000       0.000                  0.000
## honey                              0.000       0.000                  0.000
## specialty vegetables               0.000       0.000                  0.000
## cream                              0.000       0.000                  0.000
## hair spray                         0.000       0.000                  0.000
## frozen fruits                      0.000       0.000                  0.000
## rubbing alcohol                    0.000       0.000                  0.000
## liqueur                            0.000       0.000                  0.000
## make up remover                    0.000       0.000                  0.000
## salad dressing                     0.000       0.000                  0.000
## frozen chicken                     0.000       0.000                  0.000
## whisky                             0.000       0.000                  0.000
## baby cosmetics                     0.000       0.000                  0.000
## toilet cleaner                     0.000       0.000                  0.000
## bags                               0.000       0.000                  0.000
## canned herbs                       0.000       0.000                  0.000
## kitchen utensil                    0.000       0.000                  0.000
## preservation products              0.000       0.000                  0.000
## baby food                          0.000       0.000                  0.000
## frozen herbss                      0.000       0.000                  0.000
## organic sausage                    0.000       0.000                  0.000
## sound storage medium               0.000       0.000                  0.000
##                           flower soil/fertilizer organic products pot plants
## rice                                       0.000            0.001      0.001
## veggies                                    0.000            0.001      0.000
## loaf                                       0.000            0.000      0.000
## coke                                       0.000            0.000      0.000
## yogurt                                     0.000            0.000      0.000
## vegetables                                 0.000            0.001      0.000
## mineral water                              0.000            0.000      0.000
## Plastic bags                               0.000            0.000      0.000
## tropical fruit                             0.000            0.001      0.000
## marinated meat                             0.000            0.000      0.000
## pies/pasties                               0.000            0.000      0.000
## newspapers                                 0.000            0.000      0.000
## citrus                                     0.000            0.000      0.000
## whipped/sour cream                         0.000            0.000      0.000
## heinken                                    0.000            0.000      0.000
## green tea                                  0.000            0.000      0.000
## pip fruit                                  0.000            0.000      0.000
## brown bread                                0.000            0.000      0.000
## fruit/vegetable juice                      0.000            0.000      0.000
## domestic eggs                              0.000            0.000      0.000
## coffee                                     0.000            0.000      0.000
## margarine                                  0.000            0.001      0.000
## beef                                       0.000            0.000      0.000
## curd                                       0.000            0.000      0.000
## butter                                     0.000            0.000      0.000
## marinated meats                            0.000            0.000      0.000
## napkins                                    0.000            0.000      0.000
## halal meat                                 0.000            0.000      0.000
## chocolate                                  0.000            0.000      0.000
## frozen vegetables                          0.000            0.000      0.000
## chicken                                    0.000            0.000      0.000
## white bread                                0.000            0.000      0.000
## cream cheese                               0.000            0.000      0.000
## waffles                                    0.000            0.000      0.000
## dessert                                    0.000            0.000      0.000
## salty snack                                0.000            0.000      0.000
## long life bakery product                   0.000            0.000      0.000
## berries                                    0.000            0.000      0.000
## hamburger meat                             0.000            0.000      0.000
## sugar                                      0.000            0.000      0.000
## hygiene articles                           0.000            0.000      0.000
## UHT-milk                                   0.000            0.000      0.000
## onions                                     0.000            0.000      0.000
## candy                                      0.000            0.000      0.000
## specialty chocolate                        0.000            0.000      0.000
## butter milk                                0.000            0.000      0.000
## oil                                        0.000            0.000      0.000
## frozen meals                               0.000            0.000      0.000
## misc. beverages                            0.000            0.000      0.000
## specialty bar                              0.000            0.000      0.000
## ham                                        0.000            0.000      0.000
## beverages                                  0.000            0.000      0.000
## meat                                       0.000            0.000      0.000
## ice cream                                  0.000            0.000      0.000
## sliced cheese                              0.000            0.000      0.000
## hard cheese                                0.000            0.000      0.000
## noodles                                    0.000            0.000      0.000
## grapes                                     0.000            0.000      0.000
## cat food                                   0.000            0.000      0.000
## chewing gum                                0.000            0.000      0.000
## soda                                       0.000            0.000      0.000
## detergent                                  0.000            0.000      0.000
## red/blush wine                             0.000            0.000      0.000
## white wine                                 0.000            0.000      0.000
## turkey                                     0.000            0.000      0.000
## dishes                                     0.000            0.000      0.000
## bottled water                              0.000            0.000      0.000
## flour                                      0.000            0.000      0.000
## semi-finished bread                        0.000            0.000      0.000
## baking powder                              0.000            0.000      0.000
## pickled vegetables                         0.000            0.000      0.000
## herbs                                      0.000            0.000      0.000
## tropical herbs                             0.000            0.000      0.000
## soft cheese                                0.000            0.000      0.000
## tea                                        0.000            0.000      0.000
## processed cheese                           0.000            0.000      0.000
## sausage                                    0.000            0.000      0.000
## pasta                                      0.000            0.000      0.000
## citrus herbs                               0.000            0.000      0.001
## potted plants                              0.000            0.000      0.000
## canned fish                                0.000            0.000      0.000
## seasonal products                          0.000            0.000      0.000
## cake bar                                   0.000            0.000      0.000
## carrots                                    0.000            0.000      0.000
## mustard                                    0.000            0.000      0.000
## packaged fruit/vegetables                  0.000            0.000      0.000
## spread cheese                              0.000            0.000      0.000
## frozen dessert                             0.000            0.000      0.000
## frozen fish                                0.000            0.000      0.000
## cling film/bags                            0.000            0.000      0.000
## salt                                       0.000            0.000      0.000
## liquor                                     0.000            0.000      0.000
## canned vegetables                          0.000            0.000      0.000
## bottled beer                               0.000            0.000      0.000
## flower (seeds)                             0.000            0.000      0.000
## cooking oil                                0.000            0.000      0.000
## dish cleaner                               0.000            0.000      0.000
## condensed milk                             0.000            0.000      0.000
## roll products                              0.000            0.000      0.000
## photo/film                                 0.000            0.000      0.000
## pet care                                   0.000            0.000      0.000
## chocolate marshmallow                      0.000            0.000      0.000
## herbs/vegetable juice                      0.000            0.000      0.000
## whole milk                                 0.000            0.000      0.000
## candles                                    0.000            0.000      0.000
## mayonnaise                                 0.000            0.000      0.000
## Instant food products                      0.000            0.000      0.000
## sweet spreads                              0.000            0.000      0.000
## liquor (appetizer)                         0.000            0.000      0.000
## specialty cheese                           0.000            0.000      0.000
## frozen potato products                     0.000            0.000      0.000
## house keeping products                     0.000            0.000      0.000
## dog food                                   0.000            0.000      0.000
## soy                                        0.000            0.000      0.000
## instant coffee                             0.000            0.000      0.000
## pip herbs                                  0.000            0.000      0.000
## zwieback                                   0.000            0.000      0.000
## finished products                          0.000            0.000      0.000
## popcorn                                    0.000            0.000      0.000
## vinegar                                    0.000            0.000      0.000
## soups                                      0.000            0.000      0.000
## female sanitary products                   0.000            0.000      0.000
## sparkling wine                             0.000            0.000      0.000
## dental care                                0.000            0.000      0.000
## cereals                                    0.000            0.000      0.000
## kitchen towels                             0.000            0.000      0.000
## curd cheese                                0.000            0.000      0.000
## other vegetables                           0.000            0.000      0.000
## rolls/buns                                 0.000            0.000      0.000
## softener                                   0.000            0.000      0.000
## cleaner                                    0.000            0.000      0.000
## spices                                     0.000            0.000      0.000
## jam                                        0.000            0.000      0.000
## sauces                                     0.000            0.000      0.000
## rum                                        0.000            0.000      0.000
## liver loaf                                 0.000            0.000      0.000
## male cosmetics                             0.000            0.000      0.000
## meat spreads                               0.000            0.000      0.000
## packaged herbs/vegetables                  0.000            0.000      0.000
## brandy                                     0.000            0.000      0.000
## ketchup                                    0.000            0.000      0.000
## abrasive cleaner                           0.000            0.000      0.000
## light bulbs                                0.000            0.000      0.000
## artif. sweetener                           0.000            0.000      0.000
## nuts/prunes                                0.000            0.000      0.000
## specialty fat                              0.000            0.000      0.000
## skin care                                  0.000            0.000      0.000
## fish                                       0.000            0.000      0.000
## potato products                            0.000            0.000      0.000
## root vegetables                            0.000            0.000      0.000
## snack products                             0.000            0.000      0.000
## nut snack                                  0.000            0.000      0.000
## soap                                       0.000            0.000      0.000
## syrup                                      0.000            0.000      0.000
## bathroom cleaner                           0.000            0.000      0.000
## canned fruit                               0.000            0.000      0.000
## cookware                                   0.000            0.000      0.000
## cooking chocolate                          0.000            0.000      0.000
## tidbits                                    0.000            0.000      0.000
## cocoa drinks                               0.000            0.000      0.000
## pudding powder                             0.000            0.000      0.000
## ready soups                                0.000            0.000      0.000
## organic marinated meat                     0.000            0.000      0.000
## flower soil/fertilizer                     0.002            0.000      0.000
## organic products                           0.000            0.002      0.000
## pot plants                                 0.000            0.000      0.002
## prosecco                                   0.000            0.000      0.000
## frankfurter                                0.000            0.000      0.000
## decalcifier                                0.000            0.000      0.000
## honey                                      0.000            0.000      0.000
## specialty vegetables                       0.000            0.000      0.000
## cream                                      0.000            0.000      0.000
## hair spray                                 0.000            0.000      0.000
## frozen fruits                              0.000            0.000      0.000
## rubbing alcohol                            0.000            0.000      0.000
## liqueur                                    0.000            0.000      0.000
## make up remover                            0.000            0.000      0.000
## salad dressing                             0.000            0.000      0.000
## frozen chicken                             0.000            0.000      0.000
## whisky                                     0.000            0.000      0.000
## baby cosmetics                             0.000            0.000      0.000
## toilet cleaner                             0.000            0.000      0.000
## bags                                       0.000            0.000      0.000
## canned herbs                               0.000            0.000      0.000
## kitchen utensil                            0.000            0.000      0.000
## preservation products                      0.000            0.000      0.000
## baby food                                  0.000            0.000      0.000
## frozen herbss                              0.000            0.000      0.000
## organic sausage                            0.000            0.000      0.000
## sound storage medium                       0.000            0.000      0.000
##                           prosecco frankfurter decalcifier honey
## rice                         0.000       0.000       0.001 0.001
## veggies                      0.000       0.000       0.000 0.000
## loaf                         0.000       0.000       0.000 0.000
## coke                         0.000       0.000       0.000 0.000
## yogurt                       0.000       0.000       0.000 0.000
## vegetables                   0.000       0.000       0.000 0.000
## mineral water                0.000       0.000       0.000 0.000
## Plastic bags                 0.000       0.000       0.000 0.000
## tropical fruit               0.000       0.000       0.000 0.000
## marinated meat               0.000       0.000       0.000 0.000
## pies/pasties                 0.000       0.000       0.000 0.000
## newspapers                   0.000       0.000       0.000 0.000
## citrus                       0.000       0.000       0.000 0.000
## whipped/sour cream           0.000       0.000       0.000 0.000
## heinken                      0.001       0.000       0.000 0.000
## green tea                    0.000       0.000       0.000 0.000
## pip fruit                    0.000       0.000       0.000 0.000
## brown bread                  0.000       0.000       0.000 0.000
## fruit/vegetable juice        0.000       0.000       0.000 0.000
## domestic eggs                0.000       0.000       0.000 0.000
## coffee                       0.000       0.000       0.000 0.000
## margarine                    0.000       0.000       0.000 0.000
## beef                         0.000       0.000       0.000 0.000
## curd                         0.000       0.000       0.000 0.000
## butter                       0.000       0.000       0.000 0.000
## marinated meats              0.000       0.000       0.000 0.000
## napkins                      0.000       0.000       0.000 0.000
## halal meat                   0.000       0.000       0.000 0.000
## chocolate                    0.000       0.000       0.000 0.000
## frozen vegetables            0.000       0.000       0.000 0.000
## chicken                      0.000       0.000       0.000 0.000
## white bread                  0.000       0.000       0.000 0.000
## cream cheese                 0.000       0.000       0.000 0.000
## waffles                      0.000       0.000       0.000 0.000
## dessert                      0.000       0.000       0.000 0.000
## salty snack                  0.000       0.000       0.000 0.000
## long life bakery product     0.000       0.000       0.000 0.000
## berries                      0.000       0.000       0.000 0.000
## hamburger meat               0.000       0.000       0.000 0.000
## sugar                        0.000       0.000       0.000 0.000
## hygiene articles             0.000       0.000       0.000 0.000
## UHT-milk                     0.000       0.000       0.000 0.000
## onions                       0.000       0.000       0.000 0.000
## candy                        0.000       0.000       0.000 0.000
## specialty chocolate          0.000       0.000       0.000 0.000
## butter milk                  0.000       0.000       0.000 0.000
## oil                          0.000       0.000       0.000 0.000
## frozen meals                 0.000       0.000       0.000 0.000
## misc. beverages              0.000       0.000       0.000 0.000
## specialty bar                0.000       0.000       0.000 0.000
## ham                          0.000       0.000       0.000 0.000
## beverages                    0.000       0.000       0.000 0.000
## meat                         0.000       0.000       0.000 0.000
## ice cream                    0.000       0.000       0.000 0.000
## sliced cheese                0.000       0.000       0.000 0.000
## hard cheese                  0.000       0.000       0.000 0.000
## noodles                      0.000       0.000       0.000 0.000
## grapes                       0.000       0.000       0.000 0.000
## cat food                     0.000       0.000       0.000 0.000
## chewing gum                  0.000       0.000       0.000 0.000
## soda                         0.000       0.000       0.000 0.000
## detergent                    0.000       0.000       0.000 0.000
## red/blush wine               0.000       0.000       0.000 0.000
## white wine                   0.000       0.000       0.000 0.000
## turkey                       0.000       0.000       0.000 0.000
## dishes                       0.000       0.000       0.000 0.000
## bottled water                0.000       0.000       0.000 0.000
## flour                        0.000       0.000       0.000 0.000
## semi-finished bread          0.000       0.000       0.000 0.000
## baking powder                0.000       0.000       0.000 0.000
## pickled vegetables           0.000       0.000       0.000 0.000
## herbs                        0.000       0.000       0.000 0.000
## tropical herbs               0.000       0.001       0.000 0.000
## soft cheese                  0.000       0.000       0.000 0.000
## tea                          0.000       0.000       0.000 0.000
## processed cheese             0.000       0.000       0.000 0.000
## sausage                      0.000       0.000       0.000 0.000
## pasta                        0.000       0.000       0.000 0.000
## citrus herbs                 0.000       0.000       0.000 0.000
## potted plants                0.000       0.000       0.000 0.000
## canned fish                  0.000       0.000       0.000 0.000
## seasonal products            0.000       0.000       0.000 0.000
## cake bar                     0.000       0.000       0.000 0.000
## carrots                      0.000       0.000       0.000 0.000
## mustard                      0.000       0.000       0.000 0.000
## packaged fruit/vegetables    0.000       0.000       0.000 0.000
## spread cheese                0.000       0.000       0.000 0.000
## frozen dessert               0.000       0.000       0.000 0.000
## frozen fish                  0.000       0.000       0.000 0.000
## cling film/bags              0.000       0.000       0.000 0.000
## salt                         0.000       0.000       0.000 0.000
## liquor                       0.000       0.000       0.000 0.000
## canned vegetables            0.000       0.000       0.000 0.000
## bottled beer                 0.000       0.000       0.000 0.000
## flower (seeds)               0.000       0.000       0.000 0.000
## cooking oil                  0.000       0.000       0.000 0.000
## dish cleaner                 0.000       0.000       0.000 0.000
## condensed milk               0.000       0.000       0.000 0.000
## roll products                0.000       0.000       0.000 0.000
## photo/film                   0.000       0.000       0.000 0.000
## pet care                     0.000       0.000       0.000 0.000
## chocolate marshmallow        0.000       0.000       0.000 0.000
## herbs/vegetable juice        0.000       0.000       0.000 0.000
## whole milk                   0.000       0.001       0.000 0.000
## candles                      0.000       0.000       0.000 0.000
## mayonnaise                   0.000       0.000       0.000 0.000
## Instant food products        0.000       0.000       0.000 0.000
## sweet spreads                0.000       0.000       0.000 0.000
## liquor (appetizer)           0.000       0.000       0.000 0.000
## specialty cheese             0.000       0.000       0.000 0.000
## frozen potato products       0.000       0.000       0.000 0.000
## house keeping products       0.000       0.000       0.000 0.000
## dog food                     0.000       0.000       0.000 0.000
## soy                          0.000       0.000       0.000 0.000
## instant coffee               0.000       0.000       0.000 0.000
## pip herbs                    0.000       0.000       0.000 0.000
## zwieback                     0.000       0.000       0.000 0.000
## finished products            0.000       0.000       0.000 0.000
## popcorn                      0.000       0.000       0.000 0.000
## vinegar                      0.000       0.000       0.000 0.000
## soups                        0.000       0.000       0.000 0.000
## female sanitary products     0.000       0.000       0.000 0.000
## sparkling wine               0.000       0.000       0.000 0.000
## dental care                  0.000       0.000       0.000 0.000
## cereals                      0.000       0.000       0.000 0.000
## kitchen towels               0.000       0.000       0.000 0.000
## curd cheese                  0.000       0.000       0.000 0.000
## other vegetables             0.000       0.001       0.000 0.000
## rolls/buns                   0.000       0.001       0.000 0.000
## softener                     0.000       0.000       0.000 0.000
## cleaner                      0.000       0.000       0.000 0.000
## spices                       0.000       0.000       0.000 0.000
## jam                          0.000       0.000       0.000 0.000
## sauces                       0.000       0.000       0.000 0.000
## rum                          0.000       0.000       0.000 0.000
## liver loaf                   0.000       0.000       0.000 0.000
## male cosmetics               0.000       0.000       0.000 0.000
## meat spreads                 0.000       0.000       0.000 0.000
## packaged herbs/vegetables    0.000       0.000       0.000 0.000
## brandy                       0.000       0.000       0.000 0.000
## ketchup                      0.000       0.000       0.000 0.000
## abrasive cleaner             0.000       0.000       0.000 0.000
## light bulbs                  0.000       0.000       0.000 0.000
## artif. sweetener             0.000       0.000       0.000 0.000
## nuts/prunes                  0.000       0.000       0.000 0.000
## specialty fat                0.000       0.000       0.000 0.000
## skin care                    0.000       0.000       0.000 0.000
## fish                         0.000       0.000       0.000 0.000
## potato products              0.000       0.000       0.000 0.000
## root vegetables              0.000       0.000       0.000 0.000
## snack products               0.000       0.000       0.000 0.000
## nut snack                    0.000       0.000       0.000 0.000
## soap                         0.000       0.000       0.000 0.000
## syrup                        0.000       0.000       0.000 0.000
## bathroom cleaner             0.000       0.000       0.000 0.000
## canned fruit                 0.000       0.000       0.000 0.000
## cookware                     0.000       0.000       0.000 0.000
## cooking chocolate            0.000       0.000       0.000 0.000
## tidbits                      0.000       0.000       0.000 0.000
## cocoa drinks                 0.000       0.000       0.000 0.000
## pudding powder               0.000       0.000       0.000 0.000
## ready soups                  0.000       0.000       0.000 0.000
## organic marinated meat       0.000       0.000       0.000 0.000
## flower soil/fertilizer       0.000       0.000       0.000 0.000
## organic products             0.000       0.000       0.000 0.000
## pot plants                   0.000       0.000       0.000 0.000
## prosecco                     0.002       0.000       0.000 0.000
## frankfurter                  0.000       0.002       0.000 0.000
## decalcifier                  0.000       0.000       0.002 0.000
## honey                        0.000       0.000       0.000 0.002
## specialty vegetables         0.000       0.000       0.000 0.000
## cream                        0.000       0.000       0.000 0.000
## hair spray                   0.000       0.000       0.000 0.000
## frozen fruits                0.000       0.000       0.000 0.000
## rubbing alcohol              0.000       0.000       0.000 0.000
## liqueur                      0.000       0.000       0.000 0.000
## make up remover              0.000       0.000       0.000 0.000
## salad dressing               0.000       0.000       0.000 0.000
## frozen chicken               0.000       0.000       0.000 0.000
## whisky                       0.000       0.000       0.000 0.000
## baby cosmetics               0.000       0.000       0.000 0.000
## toilet cleaner               0.000       0.000       0.000 0.000
## bags                         0.000       0.000       0.000 0.000
## canned herbs                 0.000       0.000       0.000 0.000
## kitchen utensil              0.000       0.000       0.000 0.000
## preservation products        0.000       0.000       0.000 0.000
## baby food                    0.000       0.000       0.000 0.000
## frozen herbss                0.000       0.000       0.000 0.000
## organic sausage              0.000       0.000       0.000 0.000
## sound storage medium         0.000       0.000       0.000 0.000
##                           specialty vegetables cream hair spray frozen fruits
## rice                                     0.000 0.000      0.000         0.000
## veggies                                  0.001 0.001      0.000         0.001
## loaf                                     0.000 0.000      0.000         0.000
## coke                                     0.001 0.000      0.000         0.000
## yogurt                                   0.000 0.000      0.000         0.000
## vegetables                               0.000 0.000      0.000         0.000
## mineral water                            0.000 0.000      0.000         0.000
## Plastic bags                             0.000 0.000      0.000         0.000
## tropical fruit                           0.001 0.000      0.000         0.000
## marinated meat                           0.000 0.001      0.000         0.000
## pies/pasties                             0.000 0.000      0.000         0.000
## newspapers                               0.000 0.000      0.000         0.000
## citrus                                   0.000 0.000      0.000         0.000
## whipped/sour cream                       0.000 0.000      0.000         0.001
## heinken                                  0.001 0.000      0.000         0.000
## green tea                                0.000 0.000      0.000         0.000
## pip fruit                                0.000 0.000      0.000         0.000
## brown bread                              0.000 0.000      0.000         0.000
## fruit/vegetable juice                    0.000 0.000      0.000         0.000
## domestic eggs                            0.000 0.000      0.000         0.000
## coffee                                   0.000 0.000      0.000         0.000
## margarine                                0.000 0.000      0.000         0.000
## beef                                     0.000 0.000      0.000         0.000
## curd                                     0.000 0.000      0.000         0.000
## butter                                   0.000 0.000      0.000         0.000
## marinated meats                          0.000 0.000      0.000         0.000
## napkins                                  0.000 0.000      0.000         0.000
## halal meat                               0.000 0.000      0.000         0.000
## chocolate                                0.000 0.000      0.000         0.000
## frozen vegetables                        0.000 0.000      0.000         0.000
## chicken                                  0.000 0.000      0.000         0.000
## white bread                              0.001 0.000      0.000         0.000
## cream cheese                             0.000 0.000      0.000         0.000
## waffles                                  0.000 0.000      0.000         0.000
## dessert                                  0.000 0.000      0.000         0.000
## salty snack                              0.000 0.000      0.000         0.000
## long life bakery product                 0.000 0.000      0.000         0.000
## berries                                  0.000 0.000      0.000         0.000
## hamburger meat                           0.000 0.000      0.000         0.000
## sugar                                    0.000 0.000      0.000         0.000
## hygiene articles                         0.000 0.000      0.000         0.000
## UHT-milk                                 0.000 0.000      0.000         0.000
## onions                                   0.000 0.000      0.000         0.000
## candy                                    0.000 0.000      0.000         0.000
## specialty chocolate                      0.000 0.000      0.000         0.000
## butter milk                              0.000 0.000      0.000         0.000
## oil                                      0.000 0.000      0.000         0.000
## frozen meals                             0.000 0.000      0.000         0.000
## misc. beverages                          0.000 0.000      0.000         0.000
## specialty bar                            0.000 0.000      0.000         0.000
## ham                                      0.000 0.000      0.000         0.000
## beverages                                0.000 0.000      0.000         0.000
## meat                                     0.000 0.000      0.000         0.000
## ice cream                                0.000 0.000      0.000         0.000
## sliced cheese                            0.000 0.000      0.000         0.000
## hard cheese                              0.000 0.000      0.000         0.000
## noodles                                  0.000 0.000      0.000         0.000
## grapes                                   0.000 0.000      0.000         0.000
## cat food                                 0.000 0.000      0.000         0.000
## chewing gum                              0.000 0.000      0.000         0.000
## soda                                     0.000 0.000      0.000         0.000
## detergent                                0.000 0.000      0.000         0.000
## red/blush wine                           0.000 0.000      0.000         0.000
## white wine                               0.000 0.000      0.000         0.000
## turkey                                   0.000 0.000      0.000         0.000
## dishes                                   0.000 0.000      0.000         0.000
## bottled water                            0.000 0.000      0.000         0.000
## flour                                    0.000 0.000      0.000         0.000
## semi-finished bread                      0.000 0.000      0.000         0.000
## baking powder                            0.000 0.000      0.000         0.000
## pickled vegetables                       0.000 0.000      0.000         0.000
## herbs                                    0.000 0.000      0.000         0.000
## tropical herbs                           0.000 0.000      0.000         0.000
## soft cheese                              0.000 0.000      0.000         0.000
## tea                                      0.000 0.000      0.000         0.000
## processed cheese                         0.000 0.000      0.000         0.000
## sausage                                  0.000 0.000      0.000         0.000
## pasta                                    0.000 0.000      0.000         0.000
## citrus herbs                             0.000 0.000      0.000         0.000
## potted plants                            0.000 0.000      0.000         0.000
## canned fish                              0.000 0.000      0.000         0.000
## seasonal products                        0.000 0.000      0.000         0.000
## cake bar                                 0.000 0.000      0.000         0.000
## carrots                                  0.000 0.000      0.000         0.000
## mustard                                  0.000 0.000      0.000         0.000
## packaged fruit/vegetables                0.000 0.000      0.000         0.000
## spread cheese                            0.000 0.000      0.000         0.000
## frozen dessert                           0.000 0.000      0.000         0.000
## frozen fish                              0.000 0.000      0.000         0.000
## cling film/bags                          0.000 0.000      0.000         0.000
## salt                                     0.000 0.000      0.000         0.000
## liquor                                   0.000 0.000      0.000         0.000
## canned vegetables                        0.000 0.000      0.000         0.000
## bottled beer                             0.000 0.000      0.000         0.000
## flower (seeds)                           0.000 0.000      0.000         0.000
## cooking oil                              0.000 0.000      0.000         0.000
## dish cleaner                             0.000 0.000      0.000         0.000
## condensed milk                           0.000 0.000      0.000         0.000
## roll products                            0.000 0.000      0.000         0.000
## photo/film                               0.000 0.000      0.000         0.000
## pet care                                 0.000 0.000      0.000         0.000
## chocolate marshmallow                    0.000 0.000      0.000         0.000
## herbs/vegetable juice                    0.000 0.000      0.000         0.000
## whole milk                               0.000 0.000      0.000         0.000
## candles                                  0.000 0.000      0.000         0.000
## mayonnaise                               0.000 0.000      0.000         0.000
## Instant food products                    0.000 0.000      0.000         0.000
## sweet spreads                            0.000 0.000      0.000         0.000
## liquor (appetizer)                       0.000 0.000      0.000         0.000
## specialty cheese                         0.000 0.000      0.000         0.000
## frozen potato products                   0.000 0.000      0.000         0.000
## house keeping products                   0.000 0.000      0.000         0.000
## dog food                                 0.000 0.000      0.000         0.000
## soy                                      0.000 0.000      0.000         0.000
## instant coffee                           0.000 0.000      0.000         0.000
## pip herbs                                0.000 0.000      0.000         0.000
## zwieback                                 0.000 0.000      0.000         0.000
## finished products                        0.000 0.000      0.000         0.000
## popcorn                                  0.000 0.000      0.000         0.000
## vinegar                                  0.000 0.000      0.000         0.000
## soups                                    0.000 0.000      0.000         0.000
## female sanitary products                 0.000 0.000      0.000         0.000
## sparkling wine                           0.000 0.000      0.000         0.000
## dental care                              0.000 0.000      0.000         0.000
## cereals                                  0.000 0.000      0.000         0.000
## kitchen towels                           0.000 0.000      0.000         0.000
## curd cheese                              0.000 0.000      0.000         0.000
## other vegetables                         0.000 0.000      0.000         0.000
## rolls/buns                               0.000 0.000      0.000         0.000
## softener                                 0.000 0.000      0.000         0.000
## cleaner                                  0.000 0.000      0.000         0.000
## spices                                   0.000 0.000      0.000         0.000
## jam                                      0.000 0.000      0.000         0.000
## sauces                                   0.000 0.000      0.000         0.000
## rum                                      0.000 0.000      0.000         0.000
## liver loaf                               0.000 0.000      0.000         0.000
## male cosmetics                           0.000 0.000      0.000         0.000
## meat spreads                             0.000 0.000      0.000         0.000
## packaged herbs/vegetables                0.000 0.000      0.000         0.000
## brandy                                   0.000 0.000      0.000         0.000
## ketchup                                  0.000 0.000      0.000         0.000
## abrasive cleaner                         0.000 0.000      0.000         0.000
## light bulbs                              0.000 0.000      0.000         0.000
## artif. sweetener                         0.000 0.000      0.000         0.000
## nuts/prunes                              0.000 0.000      0.000         0.000
## specialty fat                            0.000 0.000      0.000         0.000
## skin care                                0.000 0.000      0.000         0.000
## fish                                     0.000 0.000      0.000         0.000
## potato products                          0.000 0.000      0.000         0.000
## root vegetables                          0.000 0.000      0.000         0.000
## snack products                           0.000 0.000      0.000         0.000
## nut snack                                0.000 0.000      0.000         0.000
## soap                                     0.000 0.000      0.000         0.000
## syrup                                    0.000 0.000      0.000         0.000
## bathroom cleaner                         0.000 0.000      0.000         0.000
## canned fruit                             0.000 0.000      0.000         0.000
## cookware                                 0.000 0.000      0.000         0.000
## cooking chocolate                        0.000 0.000      0.000         0.000
## tidbits                                  0.000 0.000      0.000         0.000
## cocoa drinks                             0.000 0.000      0.000         0.000
## pudding powder                           0.000 0.000      0.000         0.000
## ready soups                              0.000 0.000      0.000         0.000
## organic marinated meat                   0.000 0.000      0.000         0.000
## flower soil/fertilizer                   0.000 0.000      0.000         0.000
## organic products                         0.000 0.000      0.000         0.000
## pot plants                               0.000 0.000      0.000         0.000
## prosecco                                 0.000 0.000      0.000         0.000
## frankfurter                              0.000 0.000      0.000         0.000
## decalcifier                              0.000 0.000      0.000         0.000
## honey                                    0.000 0.000      0.000         0.000
## specialty vegetables                     0.002 0.000      0.000         0.000
## cream                                    0.000 0.001      0.000         0.000
## hair spray                               0.000 0.000      0.001         0.000
## frozen fruits                            0.000 0.000      0.000         0.001
## rubbing alcohol                          0.000 0.000      0.000         0.000
## liqueur                                  0.000 0.000      0.000         0.000
## make up remover                          0.000 0.000      0.000         0.000
## salad dressing                           0.000 0.000      0.000         0.000
## frozen chicken                           0.000 0.000      0.000         0.000
## whisky                                   0.000 0.000      0.000         0.000
## baby cosmetics                           0.000 0.000      0.000         0.000
## toilet cleaner                           0.000 0.000      0.000         0.000
## bags                                     0.000 0.000      0.000         0.000
## canned herbs                             0.000 0.000      0.000         0.000
## kitchen utensil                          0.000 0.000      0.000         0.000
## preservation products                    0.000 0.000      0.000         0.000
## baby food                                0.000 0.000      0.000         0.000
## frozen herbss                            0.000 0.000      0.000         0.000
## organic sausage                          0.000 0.000      0.000         0.000
## sound storage medium                     0.000 0.000      0.000         0.000
##                           rubbing alcohol liqueur make up remover
## rice                                0.001   0.000           0.000
## veggies                             0.000   0.000           0.000
## loaf                                0.000   0.000           0.000
## coke                                0.000   0.000           0.000
## yogurt                              0.000   0.000           0.000
## vegetables                          0.000   0.000           0.000
## mineral water                       0.000   0.000           0.000
## Plastic bags                        0.000   0.000           0.000
## tropical fruit                      0.000   0.000           0.000
## marinated meat                      0.000   0.000           0.000
## pies/pasties                        0.000   0.000           0.000
## newspapers                          0.000   0.000           0.000
## citrus                              0.000   0.000           0.000
## whipped/sour cream                  0.000   0.000           0.000
## heinken                             0.000   0.000           0.000
## green tea                           0.000   0.000           0.000
## pip fruit                           0.000   0.000           0.000
## brown bread                         0.000   0.000           0.000
## fruit/vegetable juice               0.000   0.000           0.000
## domestic eggs                       0.000   0.000           0.000
## coffee                              0.000   0.000           0.000
## margarine                           0.000   0.000           0.000
## beef                                0.000   0.000           0.000
## curd                                0.000   0.000           0.000
## butter                              0.001   0.000           0.000
## marinated meats                     0.000   0.000           0.000
## napkins                             0.000   0.000           0.000
## halal meat                          0.000   0.000           0.000
## chocolate                           0.000   0.000           0.000
## frozen vegetables                   0.000   0.000           0.000
## chicken                             0.000   0.000           0.000
## white bread                         0.000   0.000           0.000
## cream cheese                        0.000   0.000           0.000
## waffles                             0.000   0.000           0.000
## dessert                             0.000   0.000           0.000
## salty snack                         0.000   0.000           0.000
## long life bakery product            0.000   0.000           0.000
## berries                             0.000   0.000           0.000
## hamburger meat                      0.000   0.000           0.000
## sugar                               0.000   0.000           0.000
## hygiene articles                    0.000   0.000           0.000
## UHT-milk                            0.000   0.000           0.000
## onions                              0.000   0.000           0.000
## candy                               0.000   0.000           0.000
## specialty chocolate                 0.000   0.000           0.000
## butter milk                         0.000   0.000           0.000
## oil                                 0.000   0.000           0.000
## frozen meals                        0.000   0.000           0.000
## misc. beverages                     0.000   0.000           0.000
## specialty bar                       0.000   0.000           0.000
## ham                                 0.000   0.000           0.000
## beverages                           0.000   0.000           0.000
## meat                                0.000   0.000           0.000
## ice cream                           0.000   0.000           0.000
## sliced cheese                       0.000   0.000           0.000
## hard cheese                         0.000   0.000           0.000
## noodles                             0.000   0.000           0.000
## grapes                              0.000   0.000           0.000
## cat food                            0.000   0.000           0.000
## chewing gum                         0.000   0.000           0.000
## soda                                0.000   0.000           0.000
## detergent                           0.000   0.000           0.000
## red/blush wine                      0.000   0.000           0.000
## white wine                          0.000   0.000           0.000
## turkey                              0.000   0.000           0.000
## dishes                              0.000   0.000           0.000
## bottled water                       0.000   0.000           0.000
## flour                               0.000   0.000           0.000
## semi-finished bread                 0.000   0.000           0.000
## baking powder                       0.000   0.000           0.000
## pickled vegetables                  0.000   0.000           0.000
## herbs                               0.000   0.000           0.000
## tropical herbs                      0.000   0.000           0.000
## soft cheese                         0.000   0.000           0.000
## tea                                 0.000   0.000           0.000
## processed cheese                    0.000   0.000           0.000
## sausage                             0.000   0.000           0.000
## pasta                               0.000   0.000           0.000
## citrus herbs                        0.000   0.000           0.000
## potted plants                       0.000   0.000           0.000
## canned fish                         0.000   0.000           0.000
## seasonal products                   0.000   0.000           0.000
## cake bar                            0.000   0.000           0.000
## carrots                             0.000   0.000           0.000
## mustard                             0.000   0.000           0.000
## packaged fruit/vegetables           0.000   0.000           0.000
## spread cheese                       0.000   0.000           0.000
## frozen dessert                      0.000   0.000           0.000
## frozen fish                         0.000   0.000           0.000
## cling film/bags                     0.000   0.000           0.000
## salt                                0.000   0.000           0.000
## liquor                              0.000   0.000           0.000
## canned vegetables                   0.000   0.000           0.000
## bottled beer                        0.000   0.000           0.000
## flower (seeds)                      0.000   0.000           0.000
## cooking oil                         0.000   0.000           0.000
## dish cleaner                        0.000   0.000           0.000
## condensed milk                      0.000   0.000           0.000
## roll products                       0.000   0.000           0.000
## photo/film                          0.000   0.000           0.000
## pet care                            0.000   0.000           0.000
## chocolate marshmallow               0.000   0.000           0.000
## herbs/vegetable juice               0.000   0.000           0.000
## whole milk                          0.000   0.000           0.000
## candles                             0.000   0.000           0.000
## mayonnaise                          0.000   0.000           0.000
## Instant food products               0.000   0.000           0.000
## sweet spreads                       0.000   0.000           0.000
## liquor (appetizer)                  0.000   0.000           0.000
## specialty cheese                    0.000   0.000           0.000
## frozen potato products              0.000   0.000           0.000
## house keeping products              0.000   0.000           0.000
## dog food                            0.000   0.000           0.000
## soy                                 0.000   0.000           0.000
## instant coffee                      0.000   0.000           0.000
## pip herbs                           0.000   0.000           0.000
## zwieback                            0.000   0.000           0.000
## finished products                   0.000   0.000           0.000
## popcorn                             0.000   0.000           0.000
## vinegar                             0.000   0.000           0.000
## soups                               0.000   0.000           0.000
## female sanitary products            0.000   0.000           0.000
## sparkling wine                      0.000   0.000           0.000
## dental care                         0.000   0.000           0.000
## cereals                             0.000   0.000           0.000
## kitchen towels                      0.000   0.000           0.000
## curd cheese                         0.000   0.000           0.000
## other vegetables                    0.000   0.000           0.000
## rolls/buns                          0.000   0.000           0.000
## softener                            0.000   0.000           0.000
## cleaner                             0.000   0.000           0.000
## spices                              0.000   0.000           0.000
## jam                                 0.000   0.000           0.000
## sauces                              0.000   0.000           0.000
## rum                                 0.000   0.000           0.000
## liver loaf                          0.000   0.000           0.000
## male cosmetics                      0.000   0.000           0.000
## meat spreads                        0.000   0.000           0.000
## packaged herbs/vegetables           0.000   0.000           0.000
## brandy                              0.000   0.000           0.000
## ketchup                             0.000   0.000           0.000
## abrasive cleaner                    0.000   0.000           0.000
## light bulbs                         0.000   0.000           0.000
## artif. sweetener                    0.000   0.000           0.000
## nuts/prunes                         0.000   0.000           0.000
## specialty fat                       0.000   0.000           0.000
## skin care                           0.000   0.000           0.000
## fish                                0.000   0.000           0.000
## potato products                     0.000   0.000           0.000
## root vegetables                     0.000   0.000           0.000
## snack products                      0.000   0.000           0.000
## nut snack                           0.000   0.000           0.000
## soap                                0.000   0.000           0.000
## syrup                               0.000   0.000           0.000
## bathroom cleaner                    0.000   0.000           0.000
## canned fruit                        0.000   0.000           0.000
## cookware                            0.000   0.000           0.000
## cooking chocolate                   0.000   0.000           0.000
## tidbits                             0.000   0.000           0.000
## cocoa drinks                        0.000   0.000           0.000
## pudding powder                      0.000   0.000           0.000
## ready soups                         0.000   0.000           0.000
## organic marinated meat              0.000   0.000           0.000
## flower soil/fertilizer              0.000   0.000           0.000
## organic products                    0.000   0.000           0.000
## pot plants                          0.000   0.000           0.000
## prosecco                            0.000   0.000           0.000
## frankfurter                         0.000   0.000           0.000
## decalcifier                         0.000   0.000           0.000
## honey                               0.000   0.000           0.000
## specialty vegetables                0.000   0.000           0.000
## cream                               0.000   0.000           0.000
## hair spray                          0.000   0.000           0.000
## frozen fruits                       0.000   0.000           0.000
## rubbing alcohol                     0.001   0.000           0.000
## liqueur                             0.000   0.001           0.000
## make up remover                     0.000   0.000           0.001
## salad dressing                      0.000   0.000           0.000
## frozen chicken                      0.000   0.000           0.000
## whisky                              0.000   0.000           0.000
## baby cosmetics                      0.000   0.000           0.000
## toilet cleaner                      0.000   0.000           0.000
## bags                                0.000   0.000           0.000
## canned herbs                        0.000   0.000           0.000
## kitchen utensil                     0.000   0.000           0.000
## preservation products               0.000   0.000           0.000
## baby food                           0.000   0.000           0.000
## frozen herbss                       0.000   0.000           0.000
## organic sausage                     0.000   0.000           0.000
## sound storage medium                0.000   0.000           0.000
##                           salad dressing frozen chicken whisky baby cosmetics
## rice                               0.000          0.000  0.000          0.000
## veggies                            0.000          0.000  0.000          0.000
## loaf                               0.000          0.000  0.000          0.000
## coke                               0.000          0.000  0.000          0.000
## yogurt                             0.000          0.000  0.000          0.000
## vegetables                         0.000          0.000  0.000          0.000
## mineral water                      0.000          0.000  0.000          0.000
## Plastic bags                       0.000          0.000  0.000          0.000
## tropical fruit                     0.000          0.000  0.000          0.000
## marinated meat                     0.000          0.000  0.000          0.000
## pies/pasties                       0.000          0.000  0.000          0.000
## newspapers                         0.000          0.000  0.000          0.000
## citrus                             0.000          0.000  0.000          0.000
## whipped/sour cream                 0.000          0.000  0.000          0.000
## heinken                            0.000          0.000  0.000          0.000
## green tea                          0.000          0.000  0.000          0.000
## pip fruit                          0.000          0.000  0.000          0.000
## brown bread                        0.000          0.000  0.000          0.000
## fruit/vegetable juice              0.000          0.000  0.000          0.000
## domestic eggs                      0.000          0.000  0.000          0.000
## coffee                             0.000          0.000  0.000          0.000
## margarine                          0.000          0.000  0.000          0.000
## beef                               0.000          0.000  0.000          0.000
## curd                               0.000          0.000  0.000          0.000
## butter                             0.000          0.000  0.000          0.000
## marinated meats                    0.000          0.000  0.000          0.000
## napkins                            0.000          0.000  0.000          0.000
## halal meat                         0.000          0.000  0.000          0.000
## chocolate                          0.000          0.000  0.000          0.000
## frozen vegetables                  0.000          0.000  0.000          0.000
## chicken                            0.000          0.000  0.000          0.000
## white bread                        0.000          0.000  0.000          0.000
## cream cheese                       0.000          0.000  0.000          0.000
## waffles                            0.000          0.000  0.000          0.000
## dessert                            0.000          0.000  0.000          0.000
## salty snack                        0.000          0.000  0.000          0.000
## long life bakery product           0.000          0.000  0.000          0.000
## berries                            0.000          0.000  0.000          0.000
## hamburger meat                     0.000          0.000  0.000          0.000
## sugar                              0.000          0.000  0.000          0.000
## hygiene articles                   0.000          0.000  0.000          0.000
## UHT-milk                           0.000          0.000  0.000          0.000
## onions                             0.000          0.000  0.000          0.000
## candy                              0.000          0.000  0.000          0.000
## specialty chocolate                0.000          0.000  0.000          0.000
## butter milk                        0.000          0.000  0.000          0.000
## oil                                0.000          0.000  0.000          0.000
## frozen meals                       0.000          0.000  0.000          0.000
## misc. beverages                    0.000          0.000  0.000          0.000
## specialty bar                      0.000          0.000  0.000          0.000
## ham                                0.000          0.000  0.000          0.000
## beverages                          0.000          0.000  0.000          0.000
## meat                               0.000          0.000  0.000          0.000
## ice cream                          0.000          0.000  0.000          0.000
## sliced cheese                      0.000          0.000  0.000          0.000
## hard cheese                        0.000          0.000  0.000          0.000
## noodles                            0.000          0.000  0.000          0.000
## grapes                             0.000          0.000  0.000          0.000
## cat food                           0.000          0.000  0.000          0.000
## chewing gum                        0.000          0.000  0.000          0.000
## soda                               0.000          0.000  0.000          0.000
## detergent                          0.000          0.000  0.000          0.000
## red/blush wine                     0.000          0.000  0.000          0.000
## white wine                         0.000          0.000  0.000          0.000
## turkey                             0.000          0.000  0.000          0.000
## dishes                             0.000          0.000  0.000          0.000
## bottled water                      0.000          0.000  0.000          0.000
## flour                              0.000          0.000  0.000          0.000
## semi-finished bread                0.000          0.000  0.000          0.000
## baking powder                      0.000          0.000  0.000          0.000
## pickled vegetables                 0.000          0.000  0.000          0.000
## herbs                              0.000          0.000  0.000          0.000
## tropical herbs                     0.000          0.000  0.000          0.000
## soft cheese                        0.000          0.000  0.000          0.000
## tea                                0.000          0.000  0.000          0.000
## processed cheese                   0.000          0.000  0.000          0.000
## sausage                            0.000          0.000  0.000          0.000
## pasta                              0.000          0.000  0.000          0.000
## citrus herbs                       0.000          0.000  0.000          0.000
## potted plants                      0.000          0.000  0.000          0.000
## canned fish                        0.000          0.000  0.000          0.000
## seasonal products                  0.000          0.000  0.000          0.000
## cake bar                           0.000          0.000  0.000          0.000
## carrots                            0.000          0.000  0.000          0.000
## mustard                            0.000          0.000  0.000          0.000
## packaged fruit/vegetables          0.000          0.000  0.000          0.000
## spread cheese                      0.000          0.000  0.000          0.000
## frozen dessert                     0.000          0.000  0.000          0.000
## frozen fish                        0.000          0.000  0.000          0.000
## cling film/bags                    0.000          0.000  0.000          0.000
## salt                               0.000          0.000  0.000          0.000
## liquor                             0.000          0.000  0.000          0.000
## canned vegetables                  0.000          0.000  0.000          0.000
## bottled beer                       0.000          0.000  0.000          0.000
## flower (seeds)                     0.000          0.000  0.000          0.000
## cooking oil                        0.000          0.000  0.000          0.000
## dish cleaner                       0.000          0.000  0.000          0.000
## condensed milk                     0.000          0.000  0.000          0.000
## roll products                      0.000          0.000  0.000          0.000
## photo/film                         0.000          0.000  0.000          0.000
## pet care                           0.000          0.000  0.000          0.000
## chocolate marshmallow              0.000          0.000  0.000          0.000
## herbs/vegetable juice              0.000          0.000  0.000          0.000
## whole milk                         0.000          0.000  0.000          0.000
## candles                            0.000          0.000  0.000          0.000
## mayonnaise                         0.000          0.000  0.000          0.000
## Instant food products              0.000          0.000  0.000          0.000
## sweet spreads                      0.000          0.000  0.000          0.000
## liquor (appetizer)                 0.000          0.000  0.000          0.000
## specialty cheese                   0.000          0.000  0.000          0.000
## frozen potato products             0.000          0.000  0.000          0.000
## house keeping products             0.000          0.000  0.000          0.000
## dog food                           0.000          0.000  0.000          0.000
## soy                                0.000          0.000  0.000          0.000
## instant coffee                     0.000          0.000  0.000          0.000
## pip herbs                          0.000          0.000  0.000          0.000
## zwieback                           0.000          0.000  0.000          0.000
## finished products                  0.000          0.000  0.000          0.000
## popcorn                            0.000          0.000  0.000          0.000
## vinegar                            0.000          0.000  0.000          0.000
## soups                              0.000          0.000  0.000          0.000
## female sanitary products           0.000          0.000  0.000          0.000
## sparkling wine                     0.000          0.000  0.000          0.000
## dental care                        0.000          0.000  0.000          0.000
## cereals                            0.000          0.000  0.000          0.000
## kitchen towels                     0.000          0.000  0.000          0.000
## curd cheese                        0.000          0.000  0.000          0.000
## other vegetables                   0.000          0.000  0.000          0.000
## rolls/buns                         0.000          0.000  0.000          0.000
## softener                           0.000          0.000  0.000          0.000
## cleaner                            0.000          0.000  0.000          0.000
## spices                             0.000          0.000  0.000          0.000
## jam                                0.000          0.000  0.000          0.000
## sauces                             0.000          0.000  0.000          0.000
## rum                                0.000          0.000  0.000          0.000
## liver loaf                         0.000          0.000  0.000          0.000
## male cosmetics                     0.000          0.000  0.000          0.000
## meat spreads                       0.000          0.000  0.000          0.000
## packaged herbs/vegetables          0.000          0.000  0.000          0.000
## brandy                             0.000          0.000  0.000          0.000
## ketchup                            0.000          0.000  0.000          0.000
## abrasive cleaner                   0.000          0.000  0.000          0.000
## light bulbs                        0.000          0.000  0.000          0.000
## artif. sweetener                   0.000          0.000  0.000          0.000
## nuts/prunes                        0.000          0.000  0.000          0.000
## specialty fat                      0.000          0.000  0.000          0.000
## skin care                          0.000          0.000  0.000          0.000
## fish                               0.000          0.000  0.000          0.000
## potato products                    0.000          0.000  0.000          0.000
## root vegetables                    0.000          0.000  0.000          0.000
## snack products                     0.000          0.000  0.000          0.000
## nut snack                          0.000          0.000  0.000          0.000
## soap                               0.000          0.000  0.000          0.000
## syrup                              0.000          0.000  0.000          0.000
## bathroom cleaner                   0.000          0.000  0.000          0.000
## canned fruit                       0.000          0.000  0.000          0.000
## cookware                           0.000          0.000  0.000          0.000
## cooking chocolate                  0.000          0.000  0.000          0.000
## tidbits                            0.000          0.000  0.000          0.000
## cocoa drinks                       0.000          0.000  0.000          0.000
## pudding powder                     0.000          0.000  0.000          0.000
## ready soups                        0.000          0.000  0.000          0.000
## organic marinated meat             0.000          0.000  0.000          0.000
## flower soil/fertilizer             0.000          0.000  0.000          0.000
## organic products                   0.000          0.000  0.000          0.000
## pot plants                         0.000          0.000  0.000          0.000
## prosecco                           0.000          0.000  0.000          0.000
## frankfurter                        0.000          0.000  0.000          0.000
## decalcifier                        0.000          0.000  0.000          0.000
## honey                              0.000          0.000  0.000          0.000
## specialty vegetables               0.000          0.000  0.000          0.000
## cream                              0.000          0.000  0.000          0.000
## hair spray                         0.000          0.000  0.000          0.000
## frozen fruits                      0.000          0.000  0.000          0.000
## rubbing alcohol                    0.000          0.000  0.000          0.000
## liqueur                            0.000          0.000  0.000          0.000
## make up remover                    0.000          0.000  0.000          0.000
## salad dressing                     0.001          0.000  0.000          0.000
## frozen chicken                     0.000          0.001  0.000          0.000
## whisky                             0.000          0.000  0.001          0.000
## baby cosmetics                     0.000          0.000  0.000          0.001
## toilet cleaner                     0.000          0.000  0.000          0.000
## bags                               0.000          0.000  0.000          0.000
## canned herbs                       0.000          0.000  0.000          0.000
## kitchen utensil                    0.000          0.000  0.000          0.000
## preservation products              0.000          0.000  0.000          0.000
## baby food                          0.000          0.000  0.000          0.000
## frozen herbss                      0.000          0.000  0.000          0.000
## organic sausage                    0.000          0.000  0.000          0.000
## sound storage medium               0.000          0.000  0.000          0.000
##                           toilet cleaner bags canned herbs kitchen utensil
## rice                               0.000    0            0               0
## veggies                            0.000    0            0               0
## loaf                               0.000    0            0               0
## coke                               0.000    0            0               0
## yogurt                             0.000    0            0               0
## vegetables                         0.000    0            0               0
## mineral water                      0.000    0            0               0
## Plastic bags                       0.000    0            0               0
## tropical fruit                     0.000    0            0               0
## marinated meat                     0.000    0            0               0
## pies/pasties                       0.000    0            0               0
## newspapers                         0.000    0            0               0
## citrus                             0.000    0            0               0
## whipped/sour cream                 0.000    0            0               0
## heinken                            0.000    0            0               0
## green tea                          0.000    0            0               0
## pip fruit                          0.000    0            0               0
## brown bread                        0.000    0            0               0
## fruit/vegetable juice              0.000    0            0               0
## domestic eggs                      0.000    0            0               0
## coffee                             0.000    0            0               0
## margarine                          0.000    0            0               0
## beef                               0.000    0            0               0
## curd                               0.000    0            0               0
## butter                             0.000    0            0               0
## marinated meats                    0.000    0            0               0
## napkins                            0.000    0            0               0
## halal meat                         0.000    0            0               0
## chocolate                          0.000    0            0               0
## frozen vegetables                  0.000    0            0               0
## chicken                            0.000    0            0               0
## white bread                        0.000    0            0               0
## cream cheese                       0.000    0            0               0
## waffles                            0.000    0            0               0
## dessert                            0.000    0            0               0
## salty snack                        0.000    0            0               0
## long life bakery product           0.000    0            0               0
## berries                            0.000    0            0               0
## hamburger meat                     0.000    0            0               0
## sugar                              0.000    0            0               0
## hygiene articles                   0.000    0            0               0
## UHT-milk                           0.000    0            0               0
## onions                             0.000    0            0               0
## candy                              0.000    0            0               0
## specialty chocolate                0.000    0            0               0
## butter milk                        0.000    0            0               0
## oil                                0.000    0            0               0
## frozen meals                       0.000    0            0               0
## misc. beverages                    0.000    0            0               0
## specialty bar                      0.000    0            0               0
## ham                                0.000    0            0               0
## beverages                          0.000    0            0               0
## meat                               0.000    0            0               0
## ice cream                          0.000    0            0               0
## sliced cheese                      0.000    0            0               0
## hard cheese                        0.000    0            0               0
## noodles                            0.000    0            0               0
## grapes                             0.000    0            0               0
## cat food                           0.000    0            0               0
## chewing gum                        0.000    0            0               0
## soda                               0.000    0            0               0
## detergent                          0.000    0            0               0
## red/blush wine                     0.000    0            0               0
## white wine                         0.000    0            0               0
## turkey                             0.000    0            0               0
## dishes                             0.000    0            0               0
## bottled water                      0.000    0            0               0
## flour                              0.000    0            0               0
## semi-finished bread                0.000    0            0               0
## baking powder                      0.000    0            0               0
## pickled vegetables                 0.000    0            0               0
## herbs                              0.000    0            0               0
## tropical herbs                     0.000    0            0               0
## soft cheese                        0.000    0            0               0
## tea                                0.000    0            0               0
## processed cheese                   0.000    0            0               0
## sausage                            0.000    0            0               0
## pasta                              0.000    0            0               0
## citrus herbs                       0.000    0            0               0
## potted plants                      0.000    0            0               0
## canned fish                        0.000    0            0               0
## seasonal products                  0.000    0            0               0
## cake bar                           0.000    0            0               0
## carrots                            0.000    0            0               0
## mustard                            0.000    0            0               0
## packaged fruit/vegetables          0.000    0            0               0
## spread cheese                      0.000    0            0               0
## frozen dessert                     0.000    0            0               0
## frozen fish                        0.000    0            0               0
## cling film/bags                    0.000    0            0               0
## salt                               0.000    0            0               0
## liquor                             0.000    0            0               0
## canned vegetables                  0.000    0            0               0
## bottled beer                       0.000    0            0               0
## flower (seeds)                     0.000    0            0               0
## cooking oil                        0.000    0            0               0
## dish cleaner                       0.000    0            0               0
## condensed milk                     0.000    0            0               0
## roll products                      0.000    0            0               0
## photo/film                         0.000    0            0               0
## pet care                           0.000    0            0               0
## chocolate marshmallow              0.000    0            0               0
## herbs/vegetable juice              0.000    0            0               0
## whole milk                         0.000    0            0               0
## candles                            0.000    0            0               0
## mayonnaise                         0.000    0            0               0
## Instant food products              0.000    0            0               0
## sweet spreads                      0.000    0            0               0
## liquor (appetizer)                 0.000    0            0               0
## specialty cheese                   0.000    0            0               0
## frozen potato products             0.000    0            0               0
## house keeping products             0.000    0            0               0
## dog food                           0.000    0            0               0
## soy                                0.000    0            0               0
## instant coffee                     0.000    0            0               0
## pip herbs                          0.000    0            0               0
## zwieback                           0.000    0            0               0
## finished products                  0.000    0            0               0
## popcorn                            0.000    0            0               0
## vinegar                            0.000    0            0               0
## soups                              0.000    0            0               0
## female sanitary products           0.000    0            0               0
## sparkling wine                     0.000    0            0               0
## dental care                        0.000    0            0               0
## cereals                            0.000    0            0               0
## kitchen towels                     0.000    0            0               0
## curd cheese                        0.000    0            0               0
## other vegetables                   0.000    0            0               0
## rolls/buns                         0.000    0            0               0
## softener                           0.000    0            0               0
## cleaner                            0.000    0            0               0
## spices                             0.000    0            0               0
## jam                                0.000    0            0               0
## sauces                             0.000    0            0               0
## rum                                0.000    0            0               0
## liver loaf                         0.000    0            0               0
## male cosmetics                     0.000    0            0               0
## meat spreads                       0.000    0            0               0
## packaged herbs/vegetables          0.000    0            0               0
## brandy                             0.000    0            0               0
## ketchup                            0.000    0            0               0
## abrasive cleaner                   0.000    0            0               0
## light bulbs                        0.000    0            0               0
## artif. sweetener                   0.000    0            0               0
## nuts/prunes                        0.000    0            0               0
## specialty fat                      0.000    0            0               0
## skin care                          0.000    0            0               0
## fish                               0.000    0            0               0
## potato products                    0.000    0            0               0
## root vegetables                    0.000    0            0               0
## snack products                     0.000    0            0               0
## nut snack                          0.000    0            0               0
## soap                               0.000    0            0               0
## syrup                              0.000    0            0               0
## bathroom cleaner                   0.000    0            0               0
## canned fruit                       0.000    0            0               0
## cookware                           0.000    0            0               0
## cooking chocolate                  0.000    0            0               0
## tidbits                            0.000    0            0               0
## cocoa drinks                       0.000    0            0               0
## pudding powder                     0.000    0            0               0
## ready soups                        0.000    0            0               0
## organic marinated meat             0.000    0            0               0
## flower soil/fertilizer             0.000    0            0               0
## organic products                   0.000    0            0               0
## pot plants                         0.000    0            0               0
## prosecco                           0.000    0            0               0
## frankfurter                        0.000    0            0               0
## decalcifier                        0.000    0            0               0
## honey                              0.000    0            0               0
## specialty vegetables               0.000    0            0               0
## cream                              0.000    0            0               0
## hair spray                         0.000    0            0               0
## frozen fruits                      0.000    0            0               0
## rubbing alcohol                    0.000    0            0               0
## liqueur                            0.000    0            0               0
## make up remover                    0.000    0            0               0
## salad dressing                     0.000    0            0               0
## frozen chicken                     0.000    0            0               0
## whisky                             0.000    0            0               0
## baby cosmetics                     0.000    0            0               0
## toilet cleaner                     0.001    0            0               0
## bags                               0.000    0            0               0
## canned herbs                       0.000    0            0               0
## kitchen utensil                    0.000    0            0               0
## preservation products              0.000    0            0               0
## baby food                          0.000    0            0               0
## frozen herbss                      0.000    0            0               0
## organic sausage                    0.000    0            0               0
## sound storage medium               0.000    0            0               0
##                           preservation products baby food frozen herbss
## rice                                          0         0             0
## veggies                                       0         0             0
## loaf                                          0         0             0
## coke                                          0         0             0
## yogurt                                        0         0             0
## vegetables                                    0         0             0
## mineral water                                 0         0             0
## Plastic bags                                  0         0             0
## tropical fruit                                0         0             0
## marinated meat                                0         0             0
## pies/pasties                                  0         0             0
## newspapers                                    0         0             0
## citrus                                        0         0             0
## whipped/sour cream                            0         0             0
## heinken                                       0         0             0
## green tea                                     0         0             0
## pip fruit                                     0         0             0
## brown bread                                   0         0             0
## fruit/vegetable juice                         0         0             0
## domestic eggs                                 0         0             0
## coffee                                        0         0             0
## margarine                                     0         0             0
## beef                                          0         0             0
## curd                                          0         0             0
## butter                                        0         0             0
## marinated meats                               0         0             0
## napkins                                       0         0             0
## halal meat                                    0         0             0
## chocolate                                     0         0             0
## frozen vegetables                             0         0             0
## chicken                                       0         0             0
## white bread                                   0         0             0
## cream cheese                                  0         0             0
## waffles                                       0         0             0
## dessert                                       0         0             0
## salty snack                                   0         0             0
## long life bakery product                      0         0             0
## berries                                       0         0             0
## hamburger meat                                0         0             0
## sugar                                         0         0             0
## hygiene articles                              0         0             0
## UHT-milk                                      0         0             0
## onions                                        0         0             0
## candy                                         0         0             0
## specialty chocolate                           0         0             0
## butter milk                                   0         0             0
## oil                                           0         0             0
## frozen meals                                  0         0             0
## misc. beverages                               0         0             0
## specialty bar                                 0         0             0
## ham                                           0         0             0
## beverages                                     0         0             0
## meat                                          0         0             0
## ice cream                                     0         0             0
## sliced cheese                                 0         0             0
## hard cheese                                   0         0             0
## noodles                                       0         0             0
## grapes                                        0         0             0
## cat food                                      0         0             0
## chewing gum                                   0         0             0
## soda                                          0         0             0
## detergent                                     0         0             0
## red/blush wine                                0         0             0
## white wine                                    0         0             0
## turkey                                        0         0             0
## dishes                                        0         0             0
## bottled water                                 0         0             0
## flour                                         0         0             0
## semi-finished bread                           0         0             0
## baking powder                                 0         0             0
## pickled vegetables                            0         0             0
## herbs                                         0         0             0
## tropical herbs                                0         0             0
## soft cheese                                   0         0             0
## tea                                           0         0             0
## processed cheese                              0         0             0
## sausage                                       0         0             0
## pasta                                         0         0             0
## citrus herbs                                  0         0             0
## potted plants                                 0         0             0
## canned fish                                   0         0             0
## seasonal products                             0         0             0
## cake bar                                      0         0             0
## carrots                                       0         0             0
## mustard                                       0         0             0
## packaged fruit/vegetables                     0         0             0
## spread cheese                                 0         0             0
## frozen dessert                                0         0             0
## frozen fish                                   0         0             0
## cling film/bags                               0         0             0
## salt                                          0         0             0
## liquor                                        0         0             0
## canned vegetables                             0         0             0
## bottled beer                                  0         0             0
## flower (seeds)                                0         0             0
## cooking oil                                   0         0             0
## dish cleaner                                  0         0             0
## condensed milk                                0         0             0
## roll products                                 0         0             0
## photo/film                                    0         0             0
## pet care                                      0         0             0
## chocolate marshmallow                         0         0             0
## herbs/vegetable juice                         0         0             0
## whole milk                                    0         0             0
## candles                                       0         0             0
## mayonnaise                                    0         0             0
## Instant food products                         0         0             0
## sweet spreads                                 0         0             0
## liquor (appetizer)                            0         0             0
## specialty cheese                              0         0             0
## frozen potato products                        0         0             0
## house keeping products                        0         0             0
## dog food                                      0         0             0
## soy                                           0         0             0
## instant coffee                                0         0             0
## pip herbs                                     0         0             0
## zwieback                                      0         0             0
## finished products                             0         0             0
## popcorn                                       0         0             0
## vinegar                                       0         0             0
## soups                                         0         0             0
## female sanitary products                      0         0             0
## sparkling wine                                0         0             0
## dental care                                   0         0             0
## cereals                                       0         0             0
## kitchen towels                                0         0             0
## curd cheese                                   0         0             0
## other vegetables                              0         0             0
## rolls/buns                                    0         0             0
## softener                                      0         0             0
## cleaner                                       0         0             0
## spices                                        0         0             0
## jam                                           0         0             0
## sauces                                        0         0             0
## rum                                           0         0             0
## liver loaf                                    0         0             0
## male cosmetics                                0         0             0
## meat spreads                                  0         0             0
## packaged herbs/vegetables                     0         0             0
## brandy                                        0         0             0
## ketchup                                       0         0             0
## abrasive cleaner                              0         0             0
## light bulbs                                   0         0             0
## artif. sweetener                              0         0             0
## nuts/prunes                                   0         0             0
## specialty fat                                 0         0             0
## skin care                                     0         0             0
## fish                                          0         0             0
## potato products                               0         0             0
## root vegetables                               0         0             0
## snack products                                0         0             0
## nut snack                                     0         0             0
## soap                                          0         0             0
## syrup                                         0         0             0
## bathroom cleaner                              0         0             0
## canned fruit                                  0         0             0
## cookware                                      0         0             0
## cooking chocolate                             0         0             0
## tidbits                                       0         0             0
## cocoa drinks                                  0         0             0
## pudding powder                                0         0             0
## ready soups                                   0         0             0
## organic marinated meat                        0         0             0
## flower soil/fertilizer                        0         0             0
## organic products                              0         0             0
## pot plants                                    0         0             0
## prosecco                                      0         0             0
## frankfurter                                   0         0             0
## decalcifier                                   0         0             0
## honey                                         0         0             0
## specialty vegetables                          0         0             0
## cream                                         0         0             0
## hair spray                                    0         0             0
## frozen fruits                                 0         0             0
## rubbing alcohol                               0         0             0
## liqueur                                       0         0             0
## make up remover                               0         0             0
## salad dressing                                0         0             0
## frozen chicken                                0         0             0
## whisky                                        0         0             0
## baby cosmetics                                0         0             0
## toilet cleaner                                0         0             0
## bags                                          0         0             0
## canned herbs                                  0         0             0
## kitchen utensil                               0         0             0
## preservation products                         0         0             0
## baby food                                     0         0             0
## frozen herbss                                 0         0             0
## organic sausage                               0         0             0
## sound storage medium                          0         0             0
##                           organic sausage sound storage medium
## rice                                    0                    0
## veggies                                 0                    0
## loaf                                    0                    0
## coke                                    0                    0
## yogurt                                  0                    0
## vegetables                              0                    0
## mineral water                           0                    0
## Plastic bags                            0                    0
## tropical fruit                          0                    0
## marinated meat                          0                    0
## pies/pasties                            0                    0
## newspapers                              0                    0
## citrus                                  0                    0
## whipped/sour cream                      0                    0
## heinken                                 0                    0
## green tea                               0                    0
## pip fruit                               0                    0
## brown bread                             0                    0
## fruit/vegetable juice                   0                    0
## domestic eggs                           0                    0
## coffee                                  0                    0
## margarine                               0                    0
## beef                                    0                    0
## curd                                    0                    0
## butter                                  0                    0
## marinated meats                         0                    0
## napkins                                 0                    0
## halal meat                              0                    0
## chocolate                               0                    0
## frozen vegetables                       0                    0
## chicken                                 0                    0
## white bread                             0                    0
## cream cheese                            0                    0
## waffles                                 0                    0
## dessert                                 0                    0
## salty snack                             0                    0
## long life bakery product                0                    0
## berries                                 0                    0
## hamburger meat                          0                    0
## sugar                                   0                    0
## hygiene articles                        0                    0
## UHT-milk                                0                    0
## onions                                  0                    0
## candy                                   0                    0
## specialty chocolate                     0                    0
## butter milk                             0                    0
## oil                                     0                    0
## frozen meals                            0                    0
## misc. beverages                         0                    0
## specialty bar                           0                    0
## ham                                     0                    0
## beverages                               0                    0
## meat                                    0                    0
## ice cream                               0                    0
## sliced cheese                           0                    0
## hard cheese                             0                    0
## noodles                                 0                    0
## grapes                                  0                    0
## cat food                                0                    0
## chewing gum                             0                    0
## soda                                    0                    0
## detergent                               0                    0
## red/blush wine                          0                    0
## white wine                              0                    0
## turkey                                  0                    0
## dishes                                  0                    0
## bottled water                           0                    0
## flour                                   0                    0
## semi-finished bread                     0                    0
## baking powder                           0                    0
## pickled vegetables                      0                    0
## herbs                                   0                    0
## tropical herbs                          0                    0
## soft cheese                             0                    0
## tea                                     0                    0
## processed cheese                        0                    0
## sausage                                 0                    0
## pasta                                   0                    0
## citrus herbs                            0                    0
## potted plants                           0                    0
## canned fish                             0                    0
## seasonal products                       0                    0
## cake bar                                0                    0
## carrots                                 0                    0
## mustard                                 0                    0
## packaged fruit/vegetables               0                    0
## spread cheese                           0                    0
## frozen dessert                          0                    0
## frozen fish                             0                    0
## cling film/bags                         0                    0
## salt                                    0                    0
## liquor                                  0                    0
## canned vegetables                       0                    0
## bottled beer                            0                    0
## flower (seeds)                          0                    0
## cooking oil                             0                    0
## dish cleaner                            0                    0
## condensed milk                          0                    0
## roll products                           0                    0
## photo/film                              0                    0
## pet care                                0                    0
## chocolate marshmallow                   0                    0
## herbs/vegetable juice                   0                    0
## whole milk                              0                    0
## candles                                 0                    0
## mayonnaise                              0                    0
## Instant food products                   0                    0
## sweet spreads                           0                    0
## liquor (appetizer)                      0                    0
## specialty cheese                        0                    0
## frozen potato products                  0                    0
## house keeping products                  0                    0
## dog food                                0                    0
## soy                                     0                    0
## instant coffee                          0                    0
## pip herbs                               0                    0
## zwieback                                0                    0
## finished products                       0                    0
## popcorn                                 0                    0
## vinegar                                 0                    0
## soups                                   0                    0
## female sanitary products                0                    0
## sparkling wine                          0                    0
## dental care                             0                    0
## cereals                                 0                    0
## kitchen towels                          0                    0
## curd cheese                             0                    0
## other vegetables                        0                    0
## rolls/buns                              0                    0
## softener                                0                    0
## cleaner                                 0                    0
## spices                                  0                    0
## jam                                     0                    0
## sauces                                  0                    0
## rum                                     0                    0
## liver loaf                              0                    0
## male cosmetics                          0                    0
## meat spreads                            0                    0
## packaged herbs/vegetables               0                    0
## brandy                                  0                    0
## ketchup                                 0                    0
## abrasive cleaner                        0                    0
## light bulbs                             0                    0
## artif. sweetener                        0                    0
## nuts/prunes                             0                    0
## specialty fat                           0                    0
## skin care                               0                    0
## fish                                    0                    0
## potato products                         0                    0
## root vegetables                         0                    0
## snack products                          0                    0
## nut snack                               0                    0
## soap                                    0                    0
## syrup                                   0                    0
## bathroom cleaner                        0                    0
## canned fruit                            0                    0
## cookware                                0                    0
## cooking chocolate                       0                    0
## tidbits                                 0                    0
## cocoa drinks                            0                    0
## pudding powder                          0                    0
## ready soups                             0                    0
## organic marinated meat                  0                    0
## flower soil/fertilizer                  0                    0
## organic products                        0                    0
## pot plants                              0                    0
## prosecco                                0                    0
## frankfurter                             0                    0
## decalcifier                             0                    0
## honey                                   0                    0
## specialty vegetables                    0                    0
## cream                                   0                    0
## hair spray                              0                    0
## frozen fruits                           0                    0
## rubbing alcohol                         0                    0
## liqueur                                 0                    0
## make up remover                         0                    0
## salad dressing                          0                    0
## frozen chicken                          0                    0
## whisky                                  0                    0
## baby cosmetics                          0                    0
## toilet cleaner                          0                    0
## bags                                    0                    0
## canned herbs                            0                    0
## kitchen utensil                         0                    0
## preservation products                   0                    0
## baby food                               0                    0
## frozen herbss                           0                    0
## organic sausage                         0                    0
## sound storage medium                    0                    0
ltab<-crossTable(shopping, measure="lift", sort=TRUE)
round(ltab,2)
##                           rice veggies loaf coke yogurt vegetables
## rice                        NA    1.53 1.21 0.91   1.55       1.73
## veggies                   1.53      NA 1.37 1.11   1.60       2.10
## loaf                      1.21    1.37   NA 1.36   1.33       1.14
## coke                      0.91    1.11 1.36   NA   1.12       0.92
## yogurt                    1.55    1.60 1.33 1.12     NA       1.63
## vegetables                1.73    2.10 1.14 0.92   1.63         NA
## mineral water             1.22    1.32 1.36 1.71   1.48       1.22
## Plastic bags              1.00    1.24 1.10 1.46   1.12       1.19
## tropical fruit            1.59    2.02 1.45 1.30   1.99       1.72
## marinated meat            1.25    1.69 2.02 1.69   1.49       1.37
## pies/pasties              1.40    1.43 1.39 1.47   1.44       1.01
## newspapers                1.32    1.23 1.32 1.04   1.32       1.19
## citrus                    1.48    2.06 1.26 1.01   1.87       1.84
## whipped/sour cream        1.75    2.07 1.11 0.92   2.04       2.11
## heinken                   1.00    1.18 1.05 1.38   0.82       1.03
## green tea                 0.46    0.69 0.90 1.16   0.50       0.45
## pip fruit                 1.57    2.04 1.14 1.15   1.70       1.77
## brown bread               1.48    1.51 1.07 1.13   1.66       1.42
## fruit/vegetable juice     1.47    1.72 1.25 1.66   1.85       1.43
## domestic eggs             1.85    1.83 1.35 1.13   1.58       1.96
## coffee                    1.29    1.13 0.97 0.93   1.30       1.11
## margarine                 1.62    1.75 1.38 1.00   1.66       1.76
## beef                      1.57    1.78 1.29 0.81   1.51       2.68
## curd                      1.84    1.56 0.96 0.82   2.28       1.83
## butter                    1.92    1.88 1.32 0.92   1.86       2.00
## marinated meats           1.36    1.65 2.02 1.25   1.35       1.48
## napkins                   1.46    1.46 1.24 1.34   1.66       1.67
## halal meat                1.55    2.21 1.21 1.35   1.18       2.03
## chocolate                 1.33    1.35 1.32 1.60   1.30       1.20
## frozen vegetables         1.67    1.92 1.15 1.04   1.82       2.16
## chicken                   1.59    2.08 1.18 1.07   1.36       2.22
## white bread               1.52    1.70 0.85 1.41   1.50       1.64
## cream cheese              1.61    1.76 1.35 0.97   2.11       1.70
## waffles                   1.26    1.38 1.32 1.45   1.37       1.42
## dessert                   1.50    1.61 1.00 1.52   1.93       1.42
## salty snack               1.20    1.50 0.73 1.44   1.16       1.20
## long life bakery product  1.38    1.52 1.19 1.21   1.67       1.29
## berries                   1.43    1.47 0.99 1.16   2.13       1.80
## hamburger meat            1.70    2.02 1.33 0.94   1.31       1.73
## sugar                     1.68    1.60 1.10 1.21   1.35       1.72
## hygiene articles          1.46    1.44 0.93 1.17   1.50       1.58
## UHT-milk                  0.46    1.27 1.06 1.33   1.56       1.32
## onions                    1.47    2.26 1.14 0.93   1.60       2.57
## candy                     1.09    1.22 1.32 1.69   1.35       1.31
## specialty chocolate       1.00    1.08 1.04 1.24   1.09       0.97
## butter milk               1.55    1.86 1.44 0.91   2.19       1.73
## oil                       1.53    1.80 0.97 0.94   1.27       2.09
## frozen meals              1.32    1.36 0.93 1.25   1.54       1.18
## misc. beverages           1.01    1.03 0.90 1.49   1.06       1.06
## specialty bar             0.90    1.04 1.10 1.49   1.10       0.72
## ham                       1.61    1.73 1.37 1.04   1.72       1.37
## beverages                 1.06    0.99 1.08 1.01   1.47       1.10
## meat                      1.50    1.94 1.41 1.18   1.32       1.85
## ice cream                 0.90    1.01 0.70 1.35   1.03       1.00
## sliced cheese             1.66    1.85 1.64 1.15   2.39       1.88
## hard cheese               1.61    2.00 1.31 0.95   1.80       2.20
## noodles                   1.38    0.00 0.00 0.00   1.04       2.12
## grapes                    1.23    2.03 1.13 1.01   1.49       1.69
## cat food                  1.45    1.52 0.97 1.19   1.81       1.70
## chewing gum               0.88    1.13 1.00 1.47   0.76       0.80
## soda                      1.00    0.00 0.00 0.00   1.18       1.68
## detergent                 1.84    1.66 0.83 1.00   1.34       1.89
## red/blush wine            0.93    1.33 1.11 1.36   0.82       1.27
## white wine                0.56    0.61 0.75 1.10   0.87       0.92
## turkey                    1.62    1.15 0.59 0.39   1.43       2.58
## dishes                    1.22    1.76 1.00 0.69   1.55       1.43
## bottled water             0.95    0.00 0.00 0.00   1.70       1.88
## flour                     1.92    1.85 1.16 0.93   1.96       2.27
## semi-finished bread       1.51    1.53 1.08 1.33   1.38       1.23
## baking powder             2.07    2.19 1.12 0.78   1.80       1.86
## pickled vegetables        1.54    1.93 1.36 1.36   1.56       1.92
## herbs                     1.86    2.37 0.98 0.66   1.59       3.32
## tropical herbs            1.16    0.00 0.00 0.00   1.62       2.05
## soft cheese               1.74    2.24 1.79 0.96   2.56       1.91
## tea                       1.44    0.48 0.37 0.11   0.97       1.63
## processed cheese          1.60    1.77 1.58 1.89   1.07       1.53
## sausage                   1.01    0.00 0.00 0.00   1.39       1.58
## pasta                     1.59    1.44 0.87 1.52   1.49       2.20
## citrus herbs              1.46    0.00 0.00 0.00   1.29       1.96
## potted plants             1.55    1.48 1.02 1.03   1.63       1.11
## canned fish               1.33    1.83 1.54 1.18   1.51       1.60
## seasonal products         1.08    1.40 1.10 1.12   1.64       1.19
## cake bar                  1.59    1.48 1.31 1.96   1.26       1.17
## carrots                   1.91    0.00 0.00 0.00   1.62       3.23
## mustard                   1.73    1.42 1.96 1.13   1.45       2.33
## packaged fruit/vegetables 1.22    1.43 1.26 1.07   1.39       2.28
## spread cheese             1.10    1.38 1.99 1.58   2.23       1.41
## frozen dessert            1.54    1.67 1.42 1.29   1.24       1.96
## frozen fish               1.69    2.13 1.17 0.62   1.97       2.17
## cling film/bags           1.27    1.50 0.93 1.19   1.64       1.16
## salt                      1.27    1.68 1.03 0.83   1.47       1.98
## liquor                    0.20    0.65 0.58 1.16   0.48       0.87
## canned vegetables         1.40    2.32 1.11 1.68   2.01       1.98
## bottled beer              1.01    0.00 0.00 0.00   0.68       1.41
## flower (seeds)            1.48    1.88 0.96 0.90   0.98       1.48
## cooking oil               0.54    0.00 0.00 0.00   0.68       1.05
## dish cleaner              1.19    1.18 1.19 1.36   1.49       1.57
## condensed milk            0.86    1.30 1.21 1.22   1.07       1.29
## roll products             1.79    2.54 1.19 0.96   1.57       2.76
## photo/film                0.94    0.60 0.63 0.67   0.79       0.72
## pet care                  0.98    1.05 0.52 1.28   1.00       1.20
## chocolate marshmallow     1.38    1.16 1.34 1.54   1.12       1.18
## herbs/vegetable juice     1.20    0.00 0.00 0.00   1.77       1.87
## whole milk                0.04    0.00 0.00 0.00   1.14       0.00
## candles                   1.46    1.37 0.81 0.79   0.87       1.65
## mayonnaise                1.53    2.13 1.73 1.62   2.21       2.39
## Instant food products     1.41    1.69 1.52 1.32   1.22       2.01
## sweet spreads             1.58    1.50 1.06 1.74   1.82       2.01
## liquor (appetizer)        0.75    0.89 0.60 1.69   0.92       0.83
## specialty cheese          1.64    2.66 0.73 0.98   2.38       2.22
## frozen potato products    1.78    1.67 1.35 1.92   1.78       1.96
## house keeping products    1.61    1.73 1.15 1.21   1.47       1.59
## dog food                  1.41    1.42 0.89 1.29   1.57       1.42
## soy                       1.52    0.00 0.00 0.00   1.43       1.81
## instant coffee            1.08    1.35 1.34 1.89   1.98       1.66
## pip herbs                 1.32    0.00 0.00 0.00   1.38       1.76
## zwieback                  0.88    1.25 1.08 0.90   1.34       1.29
## finished products         0.81    1.53 0.72 1.44   1.02       1.00
## popcorn                   1.47    1.22 0.89 1.61   1.21       1.90
## vinegar                   1.62    1.84 1.29 0.76   2.13       2.34
## soups                     1.84    2.47 1.09 1.06   1.06       2.32
## female sanitary products  1.20    1.21 1.46 1.35   1.89       1.26
## sparkling wine            0.87    1.32 0.56 0.88   1.28       1.54
## dental care               1.22    1.84 1.36 1.12   1.34       1.07
## cereals                   2.60    1.87 1.08 1.04   2.83       1.77
## kitchen towels            1.67    2.06 1.18 1.25   1.36       1.91
## curd cheese               1.76    2.00 1.60 0.42   1.84       1.94
## other vegetables          0.06    0.00 0.00 0.00   1.27       0.00
## rolls/buns                0.00    0.00 0.00 0.00   1.15       0.00
## softener                  1.56    1.57 0.93 1.20   1.78       1.29
## cleaner                   1.68    1.63 0.75 1.24   2.46       1.48
## spices                    1.01    1.93 1.18 0.79   1.48       1.48
## jam                       2.05    1.86 1.41 1.49   1.63       2.86
## sauces                    1.57    1.55 0.87 1.15   0.88       1.21
## rum                       1.35    1.61 1.01 0.95   1.04       1.56
## liver loaf                1.57    1.70 1.79 1.38   2.06       2.64
## male cosmetics            0.64    0.96 0.89 1.20   1.60       1.05
## meat spreads              1.22    1.10 1.68 1.91   2.83       1.25
## packaged herbs/vegetables 1.71    0.00 0.00 0.00   1.78       2.51
## brandy                    0.50    0.75 1.45 0.97   1.52       1.28
## ketchup                   1.36    1.92 0.67 1.85   1.71       1.68
## abrasive cleaner          1.99    2.10 0.69 0.87   2.06       3.06
## light bulbs               0.89    1.74 0.99 1.19   2.11       1.17
## artif. sweetener          1.24    1.44 1.06 0.96   2.61       1.68
## nuts/prunes               1.33    1.29 1.51 1.28   0.87       1.68
## specialty fat             1.36    1.62 1.08 0.65   1.78       2.15
## skin care                 1.74    1.86 2.28 1.20   2.25       1.58
## fish                      1.26    1.11 0.50 0.53   1.54       1.39
## potato products           1.78    1.35 1.06 1.49   2.04       1.72
## root vegetables           0.11    0.00 0.00 0.00   0.61       0.00
## snack products            1.15    1.56 2.01 2.12   0.42       1.26
## nut snack                 0.59    1.43 1.13 1.98   1.51       1.56
## soap                      1.77    0.89 1.13 1.59   0.87       1.30
## syrup                     1.06    1.96 1.13 1.78   1.30       1.56
## bathroom cleaner          0.97    1.84 1.16 2.04   1.78       2.69
## canned fruit              1.71    2.03 1.16 1.23   0.89       1.88
## cookware                  0.67    1.02 1.28 1.35   0.98       1.48
## cooking chocolate         1.95    1.59 1.43 0.75   1.10       0.99
## tidbits                   1.35    0.91 2.86 2.52   1.65       0.00
## cocoa drinks              2.34    1.18 1.24 0.52   1.43       1.72
## pudding powder            2.11    1.96 0.52 0.82   2.08       2.51
## ready soups               1.46    1.47 2.32 1.63   1.49       2.15
## organic marinated meat    1.60    1.34 1.41 1.19   1.95       1.17
## flower soil/fertilizer    0.56    0.56 0.59 0.62   0.34       0.00
## organic products          1.30    1.68 1.18 1.56   1.70       2.46
## pot plants                1.49    0.00 0.00 0.00   1.02       1.64
## prosecco                  0.93    0.84 1.48 1.56   0.34       0.82
## frankfurter               0.00    0.00 0.00 0.00   0.71       0.00
## decalcifier               1.44    1.55 0.98 0.69   1.50       1.36
## honey                     2.82    0.98 1.38 0.36   1.98       2.39
## specialty vegetables      0.69    2.43 0.73 2.69   2.10       2.02
## cream                     1.04    2.75 0.41 1.31   1.43       2.29
## hair spray                1.39    0.84 0.89 0.47   1.53       0.00
## frozen fruits             0.97    3.93 1.03 1.63   1.19       2.15
## rubbing alcohol           2.27    1.96 0.52 0.54   0.00       3.58
## liqueur                   0.71    0.54 1.69 0.59   0.65       0.78
## make up remover           0.87    0.65 1.38 2.91   1.59       0.00
## salad dressing            0.43    3.27 0.69 1.45   0.00       0.95
## frozen chicken            1.46    0.00 0.77 0.82   2.68       1.07
## whisky                    0.49    1.47 1.55 0.00   0.89       1.07
## baby cosmetics            2.23    0.84 1.77 1.87   0.00       1.23
## toilet cleaner            1.11    1.68 0.00 0.93   1.02       2.46
## bags                      0.78    0.00 1.24 0.00   2.86       1.72
## canned herbs              1.95    0.00 0.00 0.00   1.78       0.00
## kitchen utensil           2.92    1.47 1.55 1.63   3.57       0.00
## preservation products     1.95    2.95 0.00 0.00   3.57       0.00
## baby food                 0.00    5.89 6.20 0.00   7.14       0.00
## frozen herbss             0.00    0.00 0.00 0.00   0.00       0.00
## organic sausage           0.00    0.00 0.00 0.00   0.00       0.00
## sound storage medium      0.00    0.00 0.00 6.54   0.00       0.00
##                           mineral water Plastic bags tropical fruit
## rice                               1.22         1.00           1.59
## veggies                            1.32         1.24           2.02
## loaf                               1.36         1.10           1.45
## coke                               1.71         1.46           1.30
## yogurt                             1.48         1.12           1.99
## vegetables                         1.22         1.19           1.72
## mineral water                        NA         1.03           1.82
## Plastic bags                       1.03           NA           1.33
## tropical fruit                     1.82         1.33             NA
## marinated meat                     1.32         1.72           1.61
## pies/pasties                       0.99         1.35           1.54
## newspapers                         1.26         0.85           1.39
## citrus                             1.69         1.22           2.62
## whipped/sour cream                 1.10         1.09           1.83
## heinken                            2.02         0.72           1.11
## green tea                          1.07         1.51           0.43
## pip fruit                          1.44         1.28           2.94
## brown bread                        1.16         1.51           1.59
## fruit/vegetable juice              2.03         1.53           2.06
## domestic eggs                      1.32         1.44           1.73
## coffee                             1.08         1.60           1.10
## margarine                          1.60         1.03           1.53
## beef                               0.98         0.90           1.27
## curd                               0.97         1.03           1.72
## butter                             1.47         0.87           1.72
## marinated meats                    1.28         1.44           1.74
## napkins                            1.53         1.36           1.87
## halal meat                         1.33         1.15           1.61
## chocolate                          1.08         1.67           1.60
## frozen vegetables                  1.17         0.83           1.74
## chicken                            1.08         1.14           1.37
## white bread                        0.95         1.77           2.00
## cream cheese                       1.33         1.35           1.71
## waffles                            1.02         1.51           1.54
## dessert                            1.26         1.71           1.62
## salty snack                        1.06         1.66           1.43
## long life bakery product           1.06         1.47           1.66
## berries                            1.02         1.42           1.77
## hamburger meat                     0.75         1.20           1.15
## sugar                              1.24         1.03           1.31
## hygiene articles                   1.50         1.50           1.86
## UHT-milk                           2.01         1.42           1.44
## onions                             1.64         1.30           1.67
## candy                              1.13         1.48           1.76
## specialty chocolate                1.23         1.52           1.10
## butter milk                        1.18         1.37           1.82
## oil                                1.32         1.03           1.56
## frozen meals                       1.00         1.77           1.83
## misc. beverages                    1.70         1.47           1.55
## specialty bar                      0.90         1.20           1.12
## ham                                0.97         1.55           1.88
## beverages                          1.01         1.19           1.50
## meat                               1.04         1.21           1.20
## ice cream                          0.92         1.21           1.49
## sliced cheese                      1.38         1.78           1.99
## hard cheese                        1.32         1.36           1.59
## noodles                            0.00         0.79           0.00
## grapes                             1.71         1.12           2.52
## cat food                           1.83         1.96           2.06
## chewing gum                        1.19         1.49           1.16
## soda                               0.00         1.44           0.00
## detergent                          1.06         1.34           1.61
## red/blush wine                     1.52         1.38           1.25
## white wine                         1.88         1.88           0.61
## turkey                             0.83         0.93           1.41
## dishes                             1.09         0.99           1.04
## bottled water                      0.00         0.68           0.00
## flour                              1.41         0.94           1.77
## semi-finished bread                1.32         1.79           2.33
## baking powder                      1.49         0.90           2.07
## pickled vegetables                 1.61         1.13           2.09
## herbs                              1.64         1.53           1.61
## tropical herbs                     0.00         1.09           0.00
## soft cheese                        1.18         1.68           1.89
## tea                                0.45         0.90           0.77
## processed cheese                   1.32         1.20           2.54
## sausage                            0.00         1.19           0.00
## pasta                              1.20         1.26           1.39
## citrus herbs                       0.00         0.85           0.00
## potted plants                      1.51         1.09           1.91
## canned fish                        1.03         1.86           1.62
## seasonal products                  0.95         1.83           1.64
## cake bar                           1.26         2.46           1.40
## carrots                            0.00         0.88           0.00
## mustard                            1.55         1.63           2.12
## packaged fruit/vegetables          2.10         0.73           1.61
## spread cheese                      1.77         1.86           1.70
## frozen dessert                     1.22         1.06           2.22
## frozen fish                        0.57         1.06           2.14
## cling film/bags                    1.56         1.31           1.64
## salt                               1.23         1.07           1.21
## liquor                             0.87         2.28           0.37
## canned vegetables                  0.88         1.41           2.51
## bottled beer                       0.00         0.53           0.00
## flower (seeds)                     1.33         1.07           1.12
## cooking oil                        0.00         0.99           0.00
## dish cleaner                       1.35         1.44           1.32
## condensed milk                     1.28         1.64           1.44
## roll products                      1.33         1.04           1.99
## photo/film                         0.48         0.48           0.40
## pet care                           1.25         1.06           1.32
## chocolate marshmallow              1.21         0.51           1.92
## herbs/vegetable juice              0.00         1.64           0.00
## whole milk                         0.00         1.03           0.00
## candles                            0.73         0.31           1.65
## mayonnaise                         1.06         1.92           1.79
## Instant food products              1.10         1.54           1.73
## sweet spreads                      0.44         2.31           1.50
## liquor (appetizer)                 0.78         1.89           1.05
## specialty cheese                   1.89         1.00           1.87
## frozen potato products             1.23         1.01           1.30
## house keeping products             1.01         1.91           1.89
## dog food                           1.59         2.27           1.91
## soy                                0.00         1.03           0.00
## instant coffee                     1.24         1.24           1.57
## pip herbs                          0.00         1.24           0.00
## zwieback                           1.03         1.03           1.90
## finished products                  0.80         2.01           0.99
## popcorn                            1.34         2.15           1.55
## vinegar                            1.21         0.94           1.27
## soups                              1.39         0.98           1.32
## female sanitary products           1.52         2.13           1.28
## sparkling wine                     0.77         1.08           0.16
## dental care                        1.13         1.45           1.70
## cereals                            0.82         1.48           1.72
## kitchen towels                     0.49         1.64           2.24
## curd cheese                        1.00         0.67           2.63
## other vegetables                   0.00         1.33           0.00
## rolls/buns                         0.00         0.33           0.00
## softener                           1.55         2.07           1.63
## cleaner                            1.25         1.78           0.94
## spices                             1.25         1.25           2.06
## jam                                2.17         1.45           2.10
## sauces                             1.27         1.09           2.29
## rum                                1.69         0.38           1.78
## liver loaf                         0.79         1.39           1.25
## male cosmetics                     2.74         1.69           0.67
## meat spreads                       1.93         2.15           1.36
## packaged herbs/vegetables          0.00         0.43           0.00
## brandy                             1.10         3.08           0.23
## ketchup                            0.90         1.12           1.89
## abrasive cleaner                   0.69         0.92           1.45
## light bulbs                        0.94         1.17           1.23
## artif. sweetener                   1.76         1.76           1.33
## nuts/prunes                        0.25         1.76           2.12
## specialty fat                      1.29         0.52           1.36
## skin care                          2.17         1.63           2.00
## fish                               0.28         0.84           0.88
## potato products                    1.47         2.66           1.24
## root vegetables                    0.00         0.59           0.00
## snack products                     1.21         1.82           1.28
## nut snack                          0.94         1.88           1.98
## soap                               0.63         0.94           0.99
## syrup                              1.56         1.56           2.96
## bathroom cleaner                   1.29         0.32           2.04
## canned fruit                       1.61         2.58           2.38
## cookware                           0.00         1.07           1.50
## cooking chocolate                  2.38         0.79           1.67
## tidbits                            1.19         0.40           1.25
## cocoa drinks                       1.24         0.83           0.87
## pudding powder                     1.72         0.43           1.81
## ready soups                        2.58         3.01           1.36
## organic marinated meat             0.94         0.94           1.48
## flower soil/fertilizer             1.47         0.00           0.52
## organic products                   0.98         2.46           3.10
## pot plants                         0.00         1.48           0.00
## prosecco                           1.47         1.48           1.55
## frankfurter                        0.00         1.55           0.00
## decalcifier                        1.09         2.17           2.29
## honey                              0.00         0.00           3.02
## specialty vegetables               2.43         1.21           3.84
## cream                              0.00         0.69           1.45
## hair spray                         0.74         1.48           1.55
## frozen fruits                      0.00         3.44           0.00
## rubbing alcohol                    3.44         0.00           3.62
## liqueur                            0.94         0.94           0.99
## make up remover                    1.15         1.15           2.41
## salad dressing                     0.00         0.00           0.00
## frozen chicken                     0.00         1.29           1.36
## whisky                             2.58         2.58           0.00
## baby cosmetics                     0.00         1.48           1.55
## toilet cleaner                     0.00         2.95           1.55
## bags                               0.00         0.00           0.00
## canned herbs                       0.00         5.16           0.00
## kitchen utensil                    0.00         0.00           5.43
## preservation products              0.00         0.00           5.43
## baby food                          0.00        10.33          10.87
## frozen herbss                      0.00         0.00           0.00
## organic sausage                    0.00         0.00           0.00
## sound storage medium              10.32        10.33           0.00
##                           marinated meat pies/pasties newspapers citrus
## rice                                1.25         1.40       1.32   1.48
## veggies                             1.69         1.43       1.23   2.06
## loaf                                2.02         1.39       1.32   1.26
## coke                                1.69         1.47       1.04   1.01
## yogurt                              1.49         1.44       1.32   1.87
## vegetables                          1.37         1.01       1.19   1.84
## mineral water                       1.32         0.99       1.26   1.69
## Plastic bags                        1.72         1.35       0.85   1.22
## tropical fruit                      1.61         1.54       1.39   2.62
## marinated meat                        NA         1.63       1.06   1.66
## pies/pasties                        1.63           NA       1.20   1.44
## newspapers                          1.06         1.20         NA   1.24
## citrus                              1.66         1.44       1.24     NA
## whipped/sour cream                  1.34         1.12       1.21   1.83
## heinken                             1.18         0.69       0.76   1.04
## green tea                           0.98         0.70       0.79   0.76
## pip fruit                           1.73         1.72       1.10   2.52
## brown bread                         1.77         1.67       1.41   1.57
## fruit/vegetable juice               1.69         1.44       1.41   1.98
## domestic eggs                       1.62         1.58       1.35   1.99
## coffee                              1.19         1.26       1.02   1.26
## margarine                           1.30         1.27       1.53   1.65
## beef                                1.04         1.20       1.52   1.78
## curd                                1.42         1.49       1.30   1.51
## butter                              1.67         1.56       1.28   2.01
## marinated meats                     2.07         1.73       1.04   1.52
## napkins                             1.39         1.55       1.48   1.80
## halal meat                          1.37         1.34       1.42   1.56
## chocolate                           1.45         1.84       1.38   1.60
## frozen vegetables                   1.33         1.09       1.13   1.67
## chicken                             1.26         1.15       1.39   1.88
## white bread                         1.85         1.52       1.03   1.30
## cream cheese                        1.48         1.25       1.10   1.71
## waffles                             1.41         2.14       1.28   1.37
## dessert                             1.69         1.70       1.07   1.39
## salty snack                         1.51         1.55       0.89   1.19
## long life bakery product            1.58         1.80       1.12   1.39
## berries                             1.46         1.26       1.06   1.80
## hamburger meat                      1.56         1.45       1.12   1.35
## sugar                               1.12         1.69       1.11   1.66
## hygiene articles                    1.35         1.46       1.15   1.86
## UHT-milk                            1.12         1.22       1.57   1.68
## onions                              1.20         0.97       1.15   2.08
## candy                               1.33         1.38       0.94   1.60
## specialty chocolate                 0.89         1.42       0.79   0.97
## butter milk                         1.35         1.36       0.96   1.88
## oil                                 1.51         1.22       1.58   2.10
## frozen meals                        1.40         1.22       1.08   1.42
## misc. beverages                     0.85         0.77       0.82   0.96
## specialty bar                       0.90         1.69       0.75   1.20
## ham                                 1.94         1.71       1.09   1.26
## beverages                           1.07         1.36       1.21   0.95
## meat                                2.12         1.07       1.49   1.57
## ice cream                           0.83         0.92       1.44   0.76
## sliced cheese                       2.95         1.63       1.48   1.65
## hard cheese                         2.26         1.29       1.22   1.56
## noodles                             0.00         0.00       1.62   0.00
## grapes                              1.45         1.79       1.10   2.02
## cat food                            1.71         1.63       1.44   2.00
## chewing gum                         1.24         0.88       0.95   1.06
## soda                                0.00         0.48       1.07   0.00
## detergent                           1.36         1.26       1.33   1.42
## red/blush wine                      1.34         1.18       1.48   1.27
## white wine                          1.36         0.57       1.10   0.77
## turkey                              0.67         1.40       0.93   1.17
## dishes                              0.80         1.11       0.87   1.46
## bottled water                       0.00         0.25       1.57   0.00
## flour                               1.11         1.61       1.13   2.24
## semi-finished bread                 1.73         2.12       1.83   1.69
## baking powder                       1.50         1.01       1.15   2.41
## pickled vegetables                  1.90         1.27       1.48   2.15
## herbs                               0.96         0.45       0.72   2.11
## tropical herbs                      0.00         0.45       1.05   0.00
## soft cheese                         2.24         1.86       0.87   1.95
## tea                                 0.26         0.33       1.01   0.45
## processed cheese                    2.23         2.04       0.82   1.61
## sausage                             0.00         0.42       1.21   0.00
## pasta                               1.27         1.28       0.93   1.44
## citrus herbs                        0.00         0.14       0.87   0.00
## potted plants                       0.92         1.57       0.72   1.69
## canned fish                         1.43         1.67       1.30   1.37
## seasonal products                   1.52         1.53       0.65   1.72
## cake bar                            1.73         1.83       1.01   1.03
## carrots                             0.00         0.00       0.44   0.00
## mustard                             2.10         1.29       1.67   1.86
## packaged fruit/vegetables           1.71         1.62       0.87   1.83
## spread cheese                       2.28         1.62       1.93   1.72
## frozen dessert                      0.86         1.64       0.88   1.52
## frozen fish                         1.34         1.06       1.46   1.74
## cling film/bags                     1.16         0.78       0.78   1.75
## salt                                1.64         0.78       1.47   1.64
## liquor                              0.93         0.10       0.84   0.58
## canned vegetables                   1.66         0.73       1.27   2.47
## bottled beer                        0.00         0.00       0.75   0.00
## flower (seeds)                      1.05         1.16       1.06   1.43
## cooking oil                         0.00         0.00       1.07   0.00
## dish cleaner                        1.58         1.27       0.54   1.92
## condensed milk                      1.29         0.97       0.66   1.71
## roll products                       2.12         1.23       1.02   1.90
## photo/film                          0.45         0.23       0.80   0.51
## pet care                            0.79         0.57       1.50   0.77
## chocolate marshmallow               1.19         1.68       1.33   1.35
## herbs/vegetable juice               0.00         0.48       1.59   0.00
## whole milk                          0.00         1.59       1.24   0.00
## candles                             1.23         2.34       1.00   1.95
## mayonnaise                          2.63         1.64       1.02   1.56
## Instant food products               1.03         1.95       1.84   1.61
## sweet spreads                       1.03         1.43       1.58   1.47
## liquor (appetizer)                  0.78         0.39       2.52   0.44
## specialty cheese                    1.57         0.92       0.66   2.07
## frozen potato products              1.72         1.99       0.67   1.20
## house keeping products              2.11         1.46       1.07   1.95
## dog food                            0.93         1.07       1.36   2.12
## soy                                 0.00         0.00       1.10   0.00
## instant coffee                      1.32         1.62       1.93   1.33
## pip herbs                           0.00         0.74       0.60   0.00
## zwieback                            0.46         0.15       1.39   1.38
## finished products                   1.58         2.38       0.64   1.25
## popcorn                             1.89         1.43       0.80   1.43
## vinegar                             0.95         2.06       1.60   1.97
## soups                               1.48         1.65       1.84   2.98
## female sanitary products            0.71         1.62       0.91   2.63
## sparkling wine                      0.72         0.18       1.47   1.03
## dental care                         1.71         1.72       3.09   1.72
## cereals                             1.35         1.94       0.39   0.22
## kitchen towels                      1.35         1.75       1.76   1.09
## curd cheese                         1.37         0.99       0.00   1.56
## other vegetables                    0.00         1.18       1.20   0.00
## rolls/buns                          0.00         1.77       1.99   0.00
## softener                            2.02         0.61       1.24   1.84
## cleaner                             1.67         1.47       1.70   1.43
## spices                              2.72         0.00       0.85   2.38
## jam                                 1.70         1.50       1.08   1.45
## sauces                              1.49         1.71       1.95   0.97
## rum                                 0.88         1.11       0.67   1.00
## liver loaf                          2.33         1.88       0.48   1.32
## male cosmetics                      2.23         1.75       1.76   1.97
## meat spreads                        1.77         0.25       0.77   1.44
## packaged herbs/vegetables           0.00         0.00       0.51   0.00
## brandy                              1.29         0.26       0.00   0.59
## ketchup                             1.58         1.06       2.42   0.90
## abrasive cleaner                    2.70         1.09       1.65   2.45
## light bulbs                         1.10         1.67       1.68   0.63
## artif. sweetener                    0.89         2.09       1.81   1.68
## nuts/prunes                         0.89         1.19       2.71   0.67
## specialty fat                       1.21         0.61       0.93   2.07
## skin care                           2.24         1.29       0.65   2.54
## fish                                1.64         1.32       0.33   1.49
## potato products                     1.04         3.84       1.41   1.18
## root vegetables                     0.00         1.40       1.06   0.00
## snack products                      0.36         1.08       0.73   1.22
## nut snack                           2.21         1.48       1.12   2.09
## soap                                1.84         1.85       1.50   1.67
## syrup                               1.84         2.59       1.87   2.09
## bathroom cleaner                    1.90         1.53       2.32   1.29
## canned fruit                        1.90         2.29       0.77   4.74
## cookware                            1.26         1.69       0.85   2.85
## cooking chocolate                   0.93         1.41       0.95   2.12
## tidbits                             2.33         1.88       0.95   2.12
## cocoa drinks                        0.49         1.47       0.49   2.20
## pudding powder                      1.52         0.51       1.03   1.15
## ready soups                         1.52         3.05       3.09   1.72
## organic marinated meat              2.76         2.78       0.56   2.51
## flower soil/fertilizer              0.58         0.00       1.18   0.66
## organic products                    2.31         2.33       1.18   0.66
## pot plants                          0.00         0.00       0.59   0.00
## prosecco                            0.00         0.58       0.59   1.97
## frankfurter                         0.00         1.22       1.24   0.00
## decalcifier                         1.28         0.64       1.95   0.73
## honey                               0.67         0.68       1.37   1.53
## specialty vegetables                1.43         1.44       0.73   1.62
## cream                               5.66         0.81       0.00   0.92
## hair spray                          0.00         1.75       0.88   0.00
## frozen fruits                       0.00         1.02       0.00   0.00
## rubbing alcohol                     2.02         2.04       0.00   5.74
## liqueur                             0.00         0.00       0.00   0.00
## make up remover                     1.35         2.71       0.00   0.00
## salad dressing                      1.35         2.71       2.74   4.59
## frozen chicken                      0.00         0.00       3.09   1.72
## whisky                              0.00         0.00       0.00   0.00
## baby cosmetics                      0.00         0.00       0.00   3.94
## toilet cleaner                      0.00         0.00       5.29   0.00
## bags                                0.00         2.44       0.00   0.00
## canned herbs                        0.00         0.00       0.00   0.00
## kitchen utensil                     0.00         6.11       0.00   3.44
## preservation products               0.00         0.00       0.00  13.78
## baby food                          12.14        12.22       0.00   0.00
## frozen herbss                       0.00         0.00       0.00   0.00
## organic sausage                     0.00         0.00       0.00   0.00
## sound storage medium                0.00        12.22       0.00   0.00
##                           whipped/sour cream heinken green tea pip fruit
## rice                                    1.75    1.00      0.46      1.57
## veggies                                 2.07    1.18      0.69      2.04
## loaf                                    1.11    1.05      0.90      1.14
## coke                                    0.92    1.38      1.16      1.15
## yogurt                                  2.04    0.82      0.50      1.70
## vegetables                              2.11    1.03      0.45      1.77
## mineral water                           1.10    2.02      1.07      1.44
## Plastic bags                            1.09    0.72      1.51      1.28
## tropical fruit                          1.83    1.11      0.43      2.94
## marinated meat                          1.34    1.18      0.98      1.73
## pies/pasties                            1.12    0.69      0.70      1.72
## newspapers                              1.21    0.76      0.79      1.10
## citrus                                  1.83    1.04      0.76      2.52
## whipped/sour cream                        NA    0.68      0.33      1.70
## heinken                                 0.68      NA      0.48      1.10
## green tea                               0.33    0.48        NA      0.63
## pip fruit                               1.70    1.10      0.63        NA
## brown bread                             0.95    1.01      0.96      1.57
## fruit/vegetable juice                   1.74    1.37      0.81      1.99
## domestic eggs                           2.19    0.92      0.73      1.82
## coffee                                  1.47    1.00      0.87      1.48
## margarine                               1.57    1.30      0.67      1.94
## beef                                    1.77    0.88      0.48      1.12
## curd                                    2.65    0.84      0.46      1.82
## butter                                  2.61    1.31      0.45      1.76
## marinated meats                         1.46    1.29      0.71      1.85
## napkins                                 1.91    1.26      0.79      1.73
## halal meat                              1.99    1.27      0.75      1.60
## chocolate                               1.38    1.04      0.81      1.66
## frozen vegetables                       2.28    1.11      0.44      2.02
## chicken                                 2.34    0.68      0.94      1.42
## white bread                             1.85    1.18      0.31      2.10
## cream cheese                            2.31    0.57      0.39      2.01
## waffles                                 1.94    0.74      0.87      1.57
## dessert                                 1.87    0.65      0.84      1.77
## salty snack                             1.77    1.05      0.88      1.45
## long life bakery product                2.22    0.80      0.58      1.67
## berries                                 3.83    0.56      0.29      1.37
## hamburger meat                          1.82    0.75      0.70      1.67
## sugar                                   2.07    1.23      0.56      1.82
## hygiene articles                        1.69    1.03      0.91      1.84
## UHT-milk                                1.28    0.92      0.75      1.51
## onions                                  2.13    1.28      0.72      1.40
## candy                                   1.74    0.60      0.94      1.06
## specialty chocolate                     1.23    0.87      0.58      0.97
## butter milk                             1.85    0.39      0.18      2.33
## oil                                     2.16    1.50      0.73      1.36
## frozen meals                            1.39    1.15      0.55      2.12
## misc. beverages                         1.06    0.99      1.02      1.00
## specialty bar                           0.85    0.55      0.71      1.02
## ham                                     2.31    1.01      0.19      1.91
## beverages                               1.28    0.65      0.24      1.38
## meat                                    1.87    1.00      0.64      1.37
## ice cream                               1.43    0.88      0.55      1.24
## sliced cheese                           2.20    0.85      0.83      2.18
## hard cheese                             2.59    0.88      0.38      1.65
## noodles                                 1.23    0.00      0.00      0.00
## grapes                                  1.99    0.66      0.62      2.15
## cat food                                1.63    0.97      0.47      1.46
## chewing gum                             1.18    0.66      0.94      1.41
## soda                                    1.03    0.00      0.00      0.00
## detergent                               1.43    0.83      0.59      1.69
## red/blush wine                          0.70    3.13      1.69      1.04
## white wine                              0.39    1.46      1.17      0.92
## turkey                                  2.22    0.42      0.15      1.21
## dishes                                  1.40    1.00      0.30      0.76
## bottled water                           1.20    0.00      0.00      0.00
## flour                                   3.46    0.93      0.75      1.76
## semi-finished bread                     1.84    1.16      0.60      2.08
## baking powder                           3.80    0.66      0.61      1.94
## pickled vegetables                      1.30    1.40      0.54      1.88
## herbs                                   2.79    1.42      0.39      1.91
## tropical herbs                          1.40    0.00      0.00      0.00
## soft cheese                             2.49    0.92      0.64      2.38
## tea                                     1.28    0.85      0.16      0.66
## processed cheese                        1.54    1.26      0.41      1.93
## sausage                                 0.96    0.00      0.00      0.00
## pasta                                   2.10    0.66      0.60      2.02
## citrus herbs                            1.95    0.00      0.00      0.00
## potted plants                           1.54    1.32      0.43      1.85
## canned fish                             1.73    1.58      1.09      1.40
## seasonal products                       1.19    0.75      0.48      1.49
## cake bar                                1.04    0.58      0.40      1.85
## carrots                                 1.87    0.00      0.00      0.00
## mustard                                 1.15    1.38      0.99      1.25
## packaged fruit/vegetables               1.52    0.66      0.69      1.06
## spread cheese                           0.54    1.33      1.03      1.53
## frozen dessert                          1.86    1.34      0.12      1.42
## frozen fish                             0.98    0.78      0.81      2.49
## cling film/bags                         1.88    0.67      1.05      1.44
## salt                                    2.76    1.91      0.58      1.79
## liquor                                  0.59    5.52      1.00      0.51
## canned vegetables                       2.14    0.61      0.75      2.19
## bottled beer                            0.36    0.00      0.00      0.00
## flower (seeds)                          2.04    1.34      1.01      0.78
## cooking oil                             0.73    0.00      0.00      0.00
## dish cleaner                            2.54    0.37      0.77      1.70
## condensed milk                          1.11    1.50      0.52      1.87
## roll products                           2.55    2.34      0.94      1.66
## photo/film                              0.77    0.26      0.00      0.84
## pet care                                1.04    1.59      0.69      1.55
## chocolate marshmallow                   1.50    0.83      0.14      1.18
## herbs/vegetable juice                   0.96    0.00      0.00      0.00
## whole milk                              1.95    0.00      0.00      0.00
## candles                                 0.84    1.29      1.19      1.37
## mayonnaise                              2.29    0.58      0.76      1.86
## Instant food products                   1.03    0.90      0.31      1.60
## sweet spreads                           1.48    0.45      0.31      2.25
## liquor (appetizer)                      1.05    2.74      2.68      0.49
## specialty cheese                        2.39    0.76      0.32      2.27
## frozen potato products                  1.36    1.23      0.16      2.13
## house keeping products                  1.96    1.08      0.48      1.64
## dog food                                1.37    0.78      1.29      1.82
## soy                                     1.24    0.00      0.00      0.00
## instant coffee                          2.18    1.54      0.88      1.09
## pip herbs                               1.67    0.00      0.00      0.00
## zwieback                                1.04    0.89      0.37      1.70
## finished products                       1.08    0.55      0.00      1.57
## popcorn                                 1.26    1.84      0.38      1.57
## vinegar                                 1.99    1.10      0.38      1.37
## soups                                   3.57    2.30      0.60      2.85
## female sanitary products                1.63    0.62      0.22      1.11
## sparkling wine                          1.24    1.69      1.10      1.12
## dental care                             1.09    1.55      0.46      1.88
## cereals                                 2.65    1.35      0.00      2.15
## kitchen towels                          1.99    1.12      0.23      2.39
## curd cheese                             1.79    1.37      0.24      1.46
## other vegetables                        1.79    0.00      0.00      0.00
## rolls/buns                              1.12    0.00      0.00      0.00
## softener                                2.08    1.42      1.47      2.76
## cleaner                                 2.40    0.49      0.51      0.00
## spices                                  1.92    1.46      0.76      2.86
## jam                                     2.19    0.75      0.26      2.12
## sauces                                  1.22    0.75      0.77      2.38
## rum                                     0.76    1.54      0.80      1.37
## liver loaf                              1.34    0.00      0.85      2.61
## male cosmetics                          0.57    0.87      2.70      1.23
## meat spreads                            1.45    0.30      0.61      1.57
## packaged herbs/vegetables               1.74    0.00      0.00      0.00
## brandy                                  0.00    2.71      1.87      0.96
## ketchup                                 2.11    1.54      0.64      2.62
## abrasive cleaner                        3.09    1.89      0.00      1.34
## light bulbs                             0.63    0.97      1.00      2.06
## artif. sweetener                        0.68    0.35      0.36      0.74
## nuts/prunes                             0.68    1.04      0.72      2.21
## specialty fat                           3.47    1.42      0.00      1.51
## skin care                               2.56    1.49      0.77      0.79
## fish                                    1.50    0.38      0.00      0.41
## potato products                         1.19    2.43      0.00      2.15
## root vegetables                         2.78    0.00      0.00      0.00
## snack products                          0.41    0.83      0.43      0.44
## nut snack                               1.68    2.57      0.44      0.91
## soap                                    0.84    0.86      0.00      0.46
## syrup                                   1.68    0.43      1.78      2.28
## bathroom cleaner                        1.74    1.33      0.92      0.00
## canned fruit                            1.74    0.44      0.46      1.88
## cookware                                1.92    0.00      1.52      3.64
## cooking chocolate                       2.67    2.18      1.13      1.74
## tidbits                                 0.53    1.63      0.56      2.32
## cocoa drinks                            2.78    1.70      0.59      2.41
## pudding powder                          5.21    0.59      1.22      1.26
## ready soups                             0.58    0.00      1.22      2.51
## organic marinated meat                  2.53    1.93      0.00      2.74
## flower soil/fertilizer                  0.66    0.00      0.00      1.44
## organic products                        1.99    0.67      0.00      2.87
## pot plants                              1.99    0.00      0.00      0.00
## prosecco                                0.00    5.39      0.00      0.72
## frankfurter                             1.39    0.00      0.00      0.00
## decalcifier                             2.93    0.75      0.77      0.79
## honey                                   0.00    0.00      0.00      1.67
## specialty vegetables                    4.09    5.00      0.00      3.55
## cream                                   1.85    0.94      1.96      1.00
## hair spray                              0.99    0.00      0.00      0.00
## frozen fruits                           6.95    0.00      1.22      1.26
## rubbing alcohol                         0.00    0.00      1.22      3.77
## liqueur                                 1.26    0.00      2.67      1.37
## make up remover                         0.00    0.00      0.00      1.67
## salad dressing                          3.09    1.57      1.63      5.02
## frozen chicken                          0.00    1.77      0.00      0.00
## whisky                                  0.00    1.77      1.83      1.88
## baby cosmetics                          3.97    0.00      4.19      2.15
## toilet cleaner                          0.00    0.00      0.00      0.00
## bags                                    0.00    0.00      0.00      3.01
## canned herbs                            0.00    0.00      0.00      0.00
## kitchen utensil                         3.47    0.00      0.00      3.77
## preservation products                  13.90    0.00      0.00      0.00
## baby food                              13.90    0.00      0.00     15.07
## frozen herbss                           0.00    0.00      0.00      0.00
## organic sausage                         0.00    0.00      0.00      0.00
## sound storage medium                    0.00    0.00      0.00      0.00
##                           brown bread fruit/vegetable juice domestic eggs
## rice                             1.48                  1.47          1.85
## veggies                          1.51                  1.72          1.83
## loaf                             1.07                  1.25          1.35
## coke                             1.13                  1.66          1.13
## yogurt                           1.66                  1.85          1.58
## vegetables                       1.42                  1.43          1.96
## mineral water                    1.16                  2.03          1.32
## Plastic bags                     1.51                  1.53          1.44
## tropical fruit                   1.59                  2.06          1.73
## marinated meat                   1.77                  1.69          1.62
## pies/pasties                     1.67                  1.44          1.58
## newspapers                       1.41                  1.41          1.35
## citrus                           1.57                  1.98          1.99
## whipped/sour cream               0.95                  1.74          2.19
## heinken                          1.01                  1.37          0.92
## green tea                        0.96                  0.81          0.73
## pip fruit                        1.57                  1.99          1.82
## brown bread                        NA                  1.80          1.73
## fruit/vegetable juice            1.80                    NA          1.77
## domestic eggs                    1.73                  1.77            NA
## coffee                           0.99                  1.35          1.34
## margarine                        1.70                  1.47          2.22
## beef                             1.31                  1.22          1.73
## curd                             1.37                  1.18          1.84
## butter                           1.54                  2.02          2.68
## marinated meats                  1.89                  1.41          1.89
## napkins                          1.33                  1.87          1.77
## halal meat                       1.52                  1.34          1.54
## chocolate                        1.15                  1.94          1.14
## frozen vegetables                1.16                  2.26          1.81
## chicken                          1.41                  1.14          2.23
## white bread                      1.81                  2.47          2.21
## cream cheese                     1.77                  1.96          2.01
## waffles                          1.00                  1.38          1.32
## dessert                          1.95                  2.23          1.60
## salty snack                      1.01                  2.23          1.41
## long life bakery product         1.46                  2.36          1.60
## berries                          1.46                  1.40          1.68
## hamburger meat                   1.42                  1.39          1.96
## sugar                            1.60                  1.90          2.24
## hygiene articles                 1.42                  1.55          2.35
## UHT-milk                         1.94                  1.66          1.85
## onions                           1.45                  1.60          2.53
## candy                            1.14                  1.88          1.60
## specialty chocolate              1.19                  1.25          1.26
## butter milk                      2.08                  2.25          1.23
## oil                              1.36                  1.82          2.03
## frozen meals                     1.51                  1.92          1.69
## misc. beverages                  0.94                  1.95          1.66
## specialty bar                    0.65                  1.32          0.87
## ham                              1.53                  1.95          2.28
## beverages                        1.18                  1.45          0.89
## meat                             2.04                  1.59          1.81
## ice cream                        0.97                  1.14          0.87
## sliced cheese                    1.70                  2.28          2.07
## hard cheese                      1.31                  2.36          2.73
## noodles                          0.90                  0.00          1.10
## grapes                           1.45                  1.95          1.47
## cat food                         1.45                  1.46          1.80
## chewing gum                      0.27                  1.34          0.68
## soda                             0.88                  0.00          1.18
## detergent                        0.98                  0.92          1.14
## red/blush wine                   1.22                  1.31          1.10
## white wine                       1.02                  1.18          1.04
## turkey                           1.87                  1.18          1.43
## dishes                           0.87                  1.04          1.61
## bottled water                    1.03                  0.00          1.13
## flour                            1.27                  1.92          2.83
## semi-finished bread              1.43                  1.93          1.46
## baking powder                    1.13                  1.79          2.95
## pickled vegetables               1.63                  1.97          2.07
## herbs                            1.32                  1.25          1.77
## tropical herbs                   1.32                  0.00          1.43
## soft cheese                      1.78                  2.31          2.94
## tea                              0.93                  0.60          1.82
## processed cheese                 1.56                  2.54          1.94
## sausage                          0.99                  0.00          1.01
## pasta                            1.36                  1.93          1.66
## citrus herbs                     0.91                  0.00          0.93
## potted plants                    1.46                  2.31          1.30
## canned fish                      2.43                  1.57          1.78
## seasonal products                1.64                  0.93          1.67
## cake bar                         1.17                  1.39          1.30
## carrots                          1.55                  0.00          1.92
## mustard                          1.41                  2.02          2.39
## packaged fruit/vegetables        1.95                  1.48          1.37
## spread cheese                    2.44                  1.73          0.75
## frozen dessert                   0.86                  1.37          2.38
## frozen fish                      1.23                  1.49          1.88
## cling film/bags                  0.99                  1.63          1.26
## salt                             1.24                  1.88          2.53
## liquor                           1.19                  0.27          0.54
## canned vegetables                1.87                  2.02          2.45
## bottled beer                     1.08                  0.00          0.69
## flower (seeds)                   2.02                  0.54          1.65
## cooking oil                      0.68                  0.00          0.14
## dish cleaner                     1.49                  0.41          1.80
## condensed milk                   0.83                  2.23          0.84
## roll products                    1.43                  2.03          2.48
## photo/film                       0.72                  0.58          1.18
## pet care                         1.02                  1.62          0.74
## chocolate marshmallow            0.46                  0.62          2.96
## herbs/vegetable juice            1.86                  0.00          1.73
## whole milk                       2.19                  0.00          0.64
## candles                          0.32                  1.12          1.45
## mayonnaise                       1.93                  1.95          2.30
## Instant food products            1.33                  1.51          1.69
## sweet spreads                    1.99                  2.52          2.03
## liquor (appetizer)               0.34                  0.68          0.68
## specialty cheese                 0.84                  1.19          2.22
## frozen potato products           1.19                  2.74          0.86
## house keeping products           1.70                  1.20          1.90
## dog food                         1.89                  2.60          1.75
## soy                              1.21                  0.00          1.77
## instant coffee                   0.56                  1.33          1.72
## pip herbs                        0.94                  0.00          1.72
## zwieback                         0.59                  1.38          1.99
## finished products                1.83                  2.05          1.45
## popcorn                          1.22                  2.66          1.45
## vinegar                          1.22                  1.64          1.45
## soups                            1.27                  1.07          2.79
## female sanitary products         0.69                  0.70          1.40
## sparkling wine                   0.70                  1.88          2.14
## dental care                      1.95                  1.73          1.74
## cereals                          2.23                  2.00          3.03
## kitchen towels                   2.73                  2.25          1.77
## curd cheese                      1.01                  1.78          2.05
## other vegetables                 2.02                  0.00          2.57
## rolls/buns                       1.01                  0.00          1.03
## softener                         1.04                  1.05          2.65
## cleaner                          0.54                  1.90          1.92
## spices                           0.81                  0.82          1.65
## jam                              1.92                  2.21          2.51
## sauces                           3.29                  1.94          0.28
## rum                              1.14                  1.15          1.74
## liver loaf                       1.50                  2.43          1.53
## male cosmetics                   0.64                  0.97          0.32
## meat spreads                     3.58                  1.97          2.98
## packaged herbs/vegetables        1.63                  0.00          1.66
## brandy                           1.33                  0.67          0.34
## ketchup                          2.72                  0.69          5.19
## abrasive cleaner                 2.08                  1.40          0.71
## light bulbs                      1.42                  1.43          1.45
## artif. sweetener                 1.52                  1.15          1.16
## nuts/prunes                      1.14                  1.15          1.55
## specialty fat                    0.39                  1.97          2.78
## skin care                        0.00                  1.66          2.51
## fish                             0.84                  0.85          0.43
## potato products                  1.34                  3.15          0.45
## root vegetables                  1.79                  0.00          1.82
## snack products                   0.46                  1.39          0.94
## nut snack                        0.95                  2.39          0.48
## soap                             0.00                  2.87          1.93
## syrup                            2.37                  1.91          1.45
## bathroom cleaner                 0.49                  1.97          0.99
## canned fruit                     2.44                  2.46          4.47
## cookware                         1.08                  1.09          2.19
## cooking chocolate                0.00                  3.03          4.28
## tidbits                          0.60                  1.21          1.84
## cocoa drinks                     1.25                  1.89          2.55
## pudding powder                   1.30                  1.31          1.33
## ready soups                      1.30                  0.66          0.66
## organic marinated meat           1.42                  2.87          1.45
## flower soil/fertilizer           0.00                  0.00          1.52
## organic products                 2.23                  2.25          3.03
## pot plants                       0.74                  0.00          0.76
## prosecco                         0.00                  1.50          0.00
## frankfurter                      0.78                  0.00          0.80
## decalcifier                      0.82                  3.32          2.51
## honey                            0.00                  0.88          1.77
## specialty vegetables             1.84                  0.00          4.68
## cream                            1.04                  4.21          3.18
## hair spray                       2.23                  2.25          0.00
## frozen fruits                    0.00                  1.31          5.30
## rubbing alcohol                  0.00                  0.00          1.33
## liqueur                          0.00                  0.00          1.45
## make up remover                  1.74                  5.26          0.00
## salad dressing                   0.00                  0.00          1.77
## frozen chicken                   0.00                  3.94          0.00
## whisky                           0.00                  3.94          0.00
## baby cosmetics                   0.00                  0.00          0.00
## toilet cleaner                   0.00                  0.00          2.27
## bags                             0.00                  3.15          0.00
## canned herbs                     3.90                  0.00          3.98
## kitchen utensil                  0.00                  0.00          0.00
## preservation products            0.00                  0.00          0.00
## baby food                       15.62                 15.77          0.00
## frozen herbss                    0.00                  0.00          0.00
## organic sausage                  0.00                  0.00          0.00
## sound storage medium             0.00                  0.00          0.00
##                           coffee margarine beef  curd butter marinated meats
## rice                        1.29      1.62 1.57  1.84   1.92            1.36
## veggies                     1.13      1.75 1.78  1.56   1.88            1.65
## loaf                        0.97      1.38 1.29  0.96   1.32            2.02
## coke                        0.93      1.00 0.81  0.82   0.92            1.25
## yogurt                      1.30      1.66 1.51  2.28   1.86            1.35
## vegetables                  1.11      1.76 2.68  1.83   2.00            1.48
## mineral water               1.08      1.60 0.98  0.97   1.47            1.28
## Plastic bags                1.60      1.03 0.90  1.03   0.87            1.44
## tropical fruit              1.10      1.53 1.27  1.72   1.72            1.74
## marinated meat              1.19      1.30 1.04  1.42   1.67            2.07
## pies/pasties                1.26      1.27 1.20  1.49   1.56            1.73
## newspapers                  1.02      1.53 1.52  1.30   1.28            1.04
## citrus                      1.26      1.65 1.78  1.51   2.01            1.52
## whipped/sour cream          1.47      1.57 1.77  2.65   2.61            1.46
## heinken                     1.00      1.30 0.88  0.84   1.31            1.29
## green tea                   0.87      0.67 0.48  0.46   0.45            0.71
## pip fruit                   1.48      1.94 1.12  1.82   1.76            1.85
## brown bread                 0.99      1.70 1.31  1.37   1.54            1.89
## fruit/vegetable juice       1.35      1.47 1.22  1.18   2.02            1.41
## domestic eggs               1.34      2.22 1.73  1.84   2.68            1.89
## coffee                        NA      1.22 1.26  1.07   1.44            1.40
## margarine                   1.22        NA 1.89  1.94   2.00            1.87
## beef                        1.26      1.89   NA  1.58   1.89            1.41
## curd                        1.07      1.94 1.58    NA   2.24            1.30
## butter                      1.44      2.00 1.89  2.24     NA            1.50
## marinated meats             1.40      1.87 1.41  1.30   1.50              NA
## napkins                     1.35      1.37 1.33  1.74   1.67            1.31
## halal meat                  1.00      1.91 2.30  1.30   1.73            1.98
## chocolate                   1.28      1.07 1.18  1.03   2.17            1.42
## frozen vegetables           1.57      1.79 1.72  1.67   2.06            1.80
## chicken                     1.53      1.76 1.81  1.37   2.51            1.39
## white bread                 1.29      1.51 1.27  1.50   1.90            2.11
## cream cheese                1.66      2.09 1.62  2.30   1.77            1.41
## waffles                     1.34      1.58 1.28  1.62   1.59            1.42
## dessert                     1.13      1.36 1.29  2.57   1.31            1.62
## salty snack                 1.32      1.28 1.25  1.47   1.39            1.44
## long life bakery product    1.67      1.52 0.86  1.72   2.14            1.28
## berries                     1.48      1.35 2.53  1.64   2.10            1.05
## hamburger meat              1.43      1.64 2.02  1.59   2.33            1.61
## sugar                       2.25      2.69 1.56  1.89   1.77            1.83
## hygiene articles            1.68      1.87 1.67  2.09   2.26            1.55
## UHT-milk                    2.15      2.04 0.89  1.23   1.18            1.62
## onions                      1.47      1.22 1.86  1.49   2.39            1.96
## candy                       1.73      1.78 0.64  1.55   1.66            1.30
## specialty chocolate         1.09      0.79 1.44  1.07   1.11            1.01
## butter milk                 1.51      1.38 1.35  2.34   1.40            1.92
## oil                         2.07      2.25 2.17  1.80   2.26            1.51
## frozen meals                1.37      0.86 1.25  1.59   1.70            1.75
## misc. beverages             0.72      0.98 0.77  1.39   1.67            0.73
## specialty bar               0.89      0.94 0.56  1.19   0.93            1.06
## ham                         1.11      1.62 1.65  1.66   2.07            1.57
## beverages                   0.69      0.68 0.69  1.15   0.83            0.89
## meat                        1.42      1.44 1.34  1.47   2.25            2.08
## ice cream                   1.28      0.65 1.20  1.03   1.31            0.80
## sliced cheese               1.83      2.12 1.84  2.41   2.62            1.57
## hard cheese                 1.24      1.32 1.14  1.67   3.18            1.55
## noodles                     1.37      1.39 2.28  1.82   1.19            0.00
## grapes                      1.38      1.13 2.29  1.49   1.89            1.57
## cat food                    2.03      2.08 2.67  1.91   1.83            0.70
## chewing gum                 0.97      0.73 0.67  1.19   0.70            1.48
## soda                        1.13      0.67 1.14  0.92   0.63            0.00
## detergent                   1.38      1.93 1.72  1.89   1.87            1.73
## red/blush wine              1.94      1.19 1.04  0.24   0.75            0.71
## white wine                  0.61      0.48 1.14  0.25   0.93            0.54
## turkey                      1.22      1.55 2.70  2.11   1.91            0.77
## dishes                      1.39      1.04 1.67  0.80   1.65            0.88
## bottled water               1.24      1.31 1.41  1.87   1.66            0.00
## flour                       1.98      3.49 3.18  3.56   2.49            1.86
## semi-finished bread         1.16      2.28 1.60  2.15   1.20            1.97
## baking powder               1.17      3.01 1.53  1.99   2.81            1.40
## pickled vegetables          2.03      1.79 2.27  1.28   1.61            2.72
## herbs                       0.94      1.64 3.22  2.60   2.69            0.92
## tropical herbs              1.29      1.45 1.66  2.32   1.73            0.00
## soft cheese                 2.29      2.24 2.65  2.48   2.96            2.31
## tea                         0.88      1.96 1.70  2.19   1.97            0.42
## processed cheese            1.17      2.10 0.97  1.27   2.92            2.15
## sausage                     1.40      1.28 2.00  1.61   1.36            0.00
## pasta                       1.42      1.80 2.02  1.94   3.27            1.46
## citrus herbs                0.85      1.61 2.24  2.26   1.49            0.00
## potted plants               1.14      1.61 1.73  1.23   1.49            0.68
## canned fish                 1.81      1.81 1.62  1.42   1.80            2.16
## seasonal products           1.82      1.13 1.03  1.73   0.96            1.91
## cake bar                    0.77      1.29 0.95  2.98   1.23            1.32
## carrots                     1.96      1.22 3.09  1.99   2.45            0.00
## mustard                     2.07      2.07 2.23  1.98   1.50            3.63
## packaged fruit/vegetables   1.01      1.48 2.04  1.37   1.42            1.81
## spread cheese               1.65      1.34 1.77  1.10   1.13            1.36
## frozen dessert              2.04      2.03 1.51  2.21   1.57            1.98
## frozen fish                 0.38      3.11 1.37  1.38   2.00            2.59
## cling film/bags             2.83      2.04 1.52  1.25   1.30            1.38
## salt                        1.29      2.18 1.11  1.11   2.45            1.53
## liquor                      0.69      0.15 0.74  0.00   1.08            0.82
## canned vegetables           0.83      2.06 1.64  1.95   1.40            1.16
## bottled beer                1.12      0.44 1.65  1.36   0.78            0.00
## flower (seeds)              0.98      2.37 1.50  0.76   2.82            1.67
## cooking oil                 0.99      0.15 0.76  1.53   0.00            0.00
## dish cleaner                2.12      1.49 1.97  2.14   1.26            1.85
## condensed milk              4.17      0.76 1.08  0.93   1.61            1.37
## roll products               2.08      3.31 2.24  2.74   2.33            1.77
## photo/film                  1.35      0.32 0.97  0.98   0.50            0.54
## pet care                    1.37      0.80 0.65  0.33   0.85            0.72
## chocolate marshmallow       2.23      2.53 1.20  1.20   1.60            1.52
## herbs/vegetable juice       1.93      1.87 2.07  1.39   1.62            0.00
## whole milk                  1.62      0.69 1.74  2.46   1.45            0.00
## candles                     2.13      3.99 2.11  1.06   2.38            0.98
## mayonnaise                  2.18      3.01 2.33  1.81   1.68            2.79
## Instant food products       1.04      1.28 2.04  2.61   2.32            2.06
## sweet spreads               1.90      1.28 1.85  1.49   1.35            1.44
## liquor (appetizer)          1.75      0.92 0.37  1.70   0.39            0.42
## specialty cheese            1.40      1.48 1.31  1.32   2.34            1.25
## frozen potato products      1.94      1.87 2.65  2.10   1.38            3.15
## house keeping products      1.59      1.31 1.51  2.29   1.58            1.68
## dog food                    1.07      0.57 2.30  1.54   1.00            0.64
## soy                         2.52      1.14 2.71  1.76   1.01            0.00
## instant coffee              1.37      1.03 1.47  1.69   1.31            1.40
## pip herbs                   1.56      1.66 1.89  1.90   1.97            0.00
## zwieback                    0.81      1.93 0.87  1.54   1.36            1.93
## finished products           0.42      0.67 1.58  1.14   1.41            0.75
## popcorn                     1.05      0.67 0.68  1.82   1.18            0.75
## vinegar                     1.90      2.45 2.49  1.60   1.89            2.76
## soups                       3.07      3.25 2.35  1.66   2.45            2.87
## female sanitary products    2.39      2.27 0.26  1.03   1.33            0.85
## sparkling wine              1.94      0.51 1.30  0.00   1.90            1.15
## dental care                 2.03      2.42 1.90  1.92   2.84            1.21
## cereals                     1.29      2.45 0.83  3.62   2.30            0.92
## kitchen towels              3.86      1.91 1.38  1.39   1.73            2.15
## curd cheese                 1.83      3.05 0.56  2.83   0.88            1.56
## other vegetables            1.05      0.28 1.69  1.70   1.76            0.00
## rolls/buns                  1.57      0.83 0.84  1.42   2.63            0.00
## softener                    1.35      2.29 0.29  0.88   2.72            0.00
## cleaner                     1.68      0.89 1.20  3.33   1.56            1.00
## spices                      1.40      1.48 1.80  2.42   3.13            1.67
## jam                         2.85      2.71 3.67  2.16   3.82            2.04
## sauces                      1.14      1.51 0.92  1.54   1.27            1.36
## rum                         0.30      3.12 0.00  1.91   3.96            0.70
## liver loaf                  0.94      1.98 1.67  3.04   1.05            2.60
## male cosmetics              1.66      1.05 0.36  1.43   1.11            1.58
## meat spreads                0.68      0.72 0.73  1.10   0.76            1.21
## packaged herbs/vegetables   1.01      1.07 2.54  1.83   1.89            0.00
## brandy                      2.07      0.00 0.74  0.75   0.39            0.82
## ketchup                     1.41      2.61 1.14  1.91   1.58            3.36
## abrasive cleaner            1.44      1.14 3.48  1.95   2.82            0.43
## light bulbs                 2.58      1.17 1.58  1.99   0.41            1.32
## artif. sweetener            2.38      2.93 1.27  2.14   0.44            3.30
## nuts/prunes                 0.40      0.84 1.70  1.28   0.44            0.94
## specialty fat               1.62      5.58 2.18  1.32   5.44            2.90
## skin care                   1.28      3.16 2.75  1.85   1.43            2.04
## fish                        3.51      1.86 1.41  1.90   1.47            1.05
## potato products             2.78      0.98 2.49  2.51   2.07            4.97
## root vegetables             0.93      0.98 1.99  1.50   2.07            0.00
## snack products              0.48      1.52 1.54  0.00   0.53            0.57
## nut snack                   0.98      1.56 0.53  1.06   1.10            3.52
## soap                        1.97      0.00 3.69  2.66   0.55            1.76
## syrup                       2.46      2.08 1.06  1.06   3.30            2.93
## bathroom cleaner            1.01      2.68 1.09  0.55   0.57            0.60
## canned fruit                0.51      2.68 1.63  1.65   1.70            3.02
## cookware                    1.68      0.59 4.20  1.21   1.25            0.67
## cooking chocolate           1.25      3.30 1.34  4.05   2.09            1.49
## tidbits                     1.25      0.66 0.67  2.03   1.40            1.49
## cocoa drinks                3.25      4.12 0.00  4.21   1.45            1.55
## pudding powder              1.35      2.15 2.90  5.12   3.02            0.00
## ready soups                 0.00      5.01 1.45  0.73   2.27            3.22
## organic marinated meat      0.00      1.56 0.00  2.39   4.12            2.64
## flower soil/fertilizer      0.00      0.82 1.66  0.00   0.00            0.00
## organic products            1.55      6.54 3.32  2.51   0.86            2.76
## pot plants                  2.32      0.82 3.32  1.67   0.00            0.00
## prosecco                    0.00      0.00 0.00  0.84   0.00            0.92
## frankfurter                 2.43      1.72 1.74  0.00   0.91            0.00
## decalcifier                 0.00      0.90 0.92  0.92   1.91            3.05
## honey                       2.71      0.95 0.00  1.95   2.02            1.07
## specialty vegetables        4.77      0.00 3.07  1.03   1.07            2.27
## cream                       0.00      1.14 3.48  2.34   3.63            0.00
## hair spray                  2.32      2.45 1.24  0.00   1.30            0.00
## frozen fruits               0.00      2.86 2.90  1.46   3.02            0.00
## rubbing alcohol             0.00      0.00 1.45  1.46   9.07            1.61
## liqueur                     0.00      0.00 0.00  0.00   1.65            0.00
## make up remover             1.80      0.00 0.00  0.00   4.03            2.15
## salad dressing              1.80      0.00 0.00  3.90   4.03            6.45
## frozen chicken              2.03      2.15 2.18  0.00   4.54            0.00
## whisky                      2.03      2.15 2.18  2.19   2.27            0.00
## baby cosmetics              4.64      0.00 0.00  5.01   0.00            0.00
## toilet cleaner              2.32      0.00 4.98  0.00   2.59            0.00
## bags                        0.00      0.00 0.00  0.00   0.00            0.00
## canned herbs                0.00      4.29 0.00  4.39   0.00            0.00
## kitchen utensil             0.00      4.29 0.00  4.39   0.00            4.83
## preservation products       8.12      0.00 0.00  0.00   0.00            0.00
## baby food                   0.00      0.00 0.00 17.55  18.15            0.00
## frozen herbss               0.00      0.00 0.00  0.00   0.00            0.00
## organic sausage             0.00      0.00 0.00  0.00   0.00            0.00
## sound storage medium        0.00      0.00 0.00  0.00   0.00            0.00
##                           napkins halal meat chocolate frozen vegetables
## rice                         1.46       1.55      1.33              1.67
## veggies                      1.46       2.21      1.35              1.92
## loaf                         1.24       1.21      1.32              1.15
## coke                         1.34       1.35      1.60              1.04
## yogurt                       1.66       1.18      1.30              1.82
## vegetables                   1.67       2.03      1.20              2.16
## mineral water                1.53       1.33      1.08              1.17
## Plastic bags                 1.36       1.15      1.67              0.83
## tropical fruit               1.87       1.61      1.60              1.74
## marinated meat               1.39       1.37      1.45              1.33
## pies/pasties                 1.55       1.34      1.84              1.09
## newspapers                   1.48       1.42      1.38              1.13
## citrus                       1.80       1.56      1.60              1.67
## whipped/sour cream           1.91       1.99      1.38              2.28
## heinken                      1.26       1.27      1.04              1.11
## green tea                    0.79       0.75      0.81              0.44
## pip fruit                    1.73       1.60      1.66              2.02
## brown bread                  1.33       1.52      1.15              1.16
## fruit/vegetable juice        1.87       1.34      1.94              2.26
## domestic eggs                1.77       1.54      1.14              1.81
## coffee                       1.35       1.00      1.28              1.57
## margarine                    1.37       1.91      1.07              1.79
## beef                         1.33       2.30      1.18              1.72
## curd                         1.74       1.30      1.03              1.67
## butter                       1.67       1.73      2.17              2.06
## marinated meats              1.31       1.98      1.42              1.80
## napkins                        NA       1.75      1.79              1.82
## halal meat                   1.75         NA      1.53              2.32
## chocolate                    1.79       1.53        NA              1.07
## frozen vegetables            1.82       2.32      1.07                NA
## chicken                      1.60       2.26      1.24              3.06
## white bread                  1.50       1.74      2.07              1.65
## cream cheese                 1.86       1.27      1.87              1.44
## waffles                      1.66       1.59      3.07              1.04
## dessert                      1.87       1.47      2.08              1.70
## salty snack                  2.01       1.52      1.88              1.65
## long life bakery product     2.35       0.78      2.74              2.05
## berries                      1.54       1.56      1.52              1.49
## hamburger meat               1.52       1.59      1.45              1.79
## sugar                        1.85       2.23      1.43              1.77
## hygiene articles             3.74       1.74      1.44              1.84
## UHT-milk                     1.37       1.71      0.89              1.69
## onions                       1.92       2.06      1.36              2.17
## candy                        1.07       1.33      3.33              1.66
## specialty chocolate          1.49       0.97      2.02              1.09
## butter milk                  1.15       1.29      1.53              1.42
## oil                          1.82       1.91      2.06              1.50
## frozen meals                 1.65       1.36      1.68              2.48
## misc. beverages              1.48       0.63      1.63              1.59
## specialty bar                1.51       1.14      1.99              0.67
## ham                          1.72       1.10      2.28              1.77
## beverages                    0.90       1.04      1.35              1.37
## meat                         1.77       1.79      0.97              1.54
## ice cream                    1.27       0.88      0.92              1.51
## sliced cheese                2.20       1.95      1.38              1.76
## hard cheese                  2.70       1.59      1.66              2.13
## noodles                      1.05       0.00      0.79              0.96
## grapes                       1.81       1.68      1.99              1.77
## cat food                     2.83       1.91      2.66              1.18
## chewing gum                  1.99       0.93      1.05              1.16
## soda                         1.36       0.00      1.25              0.73
## detergent                    1.92       1.51      0.92              2.72
## red/blush wine               1.35       0.55      1.52              1.25
## white wine                   1.09       0.65      1.06              0.98
## turkey                       1.27       0.30      1.55              2.09
## dishes                       2.76       1.70      1.04              1.05
## bottled water                1.58       0.00      0.63              1.27
## flour                        1.68       2.01      2.09              1.27
## semi-finished bread          1.39       1.82      1.47              2.56
## baking powder                2.01       1.73      2.02              2.91
## pickled vegetables           1.63       1.75      1.61              2.94
## herbs                        1.65       2.20      0.55              3.32
## tropical herbs               1.14       0.00      0.87              1.33
## soft cheese                  1.48       1.18      2.35              2.84
## tea                          1.27       0.00      1.12              0.91
## processed cheese             1.73       1.65      1.49              2.09
## sausage                      0.90       0.00      0.83              0.72
## pasta                        1.59       1.61      1.08              1.94
## citrus herbs                 1.14       0.00      1.21              1.10
## potted plants                1.37       0.93      1.45              1.59
## canned fish                  2.42       1.35      1.92              2.21
## seasonal products            1.41       1.69      1.22              2.47
## cake bar                     1.46       1.21      2.38              1.70
## carrots                      1.24       0.00      0.58              1.93
## mustard                      2.35       1.04      2.64              1.10
## packaged fruit/vegetables    1.52       1.85      0.81              2.77
## spread cheese                0.91       2.01      1.77              0.98
## frozen dessert               1.84       2.02      1.30              3.29
## frozen fish                  1.54       3.11      1.95              3.29
## cling film/bags              2.63       0.63      1.31              3.15
## salt                         1.55       0.94      1.47              1.49
## liquor                       1.32       1.17      0.35              0.53
## canned vegetables            1.50       1.69      2.11              2.68
## bottled beer                 1.68       0.00      0.36              1.80
## flower (seeds)               1.35       1.53      1.78              2.34
## cooking oil                  1.02       0.00      0.36              0.73
## dish cleaner                 3.05       1.03      1.97              1.09
## condensed milk               1.21       0.53      0.55              2.22
## roll products                2.15       2.90      1.51              2.30
## photo/film                   1.81       0.37      0.00              1.74
## pet care                     1.82       1.11      1.35              0.98
## chocolate marshmallow        2.49       2.71      3.84              2.66
## herbs/vegetable juice        0.97       0.00      1.02              1.65
## whole milk                   1.76       0.00      1.44              0.84
## candles                      0.99       1.60      1.67              1.27
## mayonnaise                   1.61       1.43      3.83              2.15
## Instant food products        2.07       2.10      0.88              1.56
## sweet spreads                1.45       1.26      2.19              2.22
## liquor (appetizer)           1.68       1.28      0.44              3.14
## specialty cheese             0.63       0.85      1.11              2.92
## frozen potato products       2.54       2.79      2.91              2.50
## house keeping products       3.39       1.72      2.91              2.27
## dog food                     2.14       1.30      1.36              2.30
## soy                          1.08       0.00      0.92              0.70
## instant coffee               1.88       0.95      0.99              3.52
## pip herbs                    0.70       0.00      0.99              1.01
## zwieback                     1.46       0.99      0.77              1.83
## finished products            0.76       1.03      3.21              1.90
## popcorn                      1.01       1.28      1.61              2.17
## vinegar                      3.29       1.28      1.34              2.44
## soups                        2.11       1.07      2.23              3.67
## female sanitary products     2.29       1.75      2.73              1.23
## sparkling wine               1.46       1.48      1.54              1.56
## dental care                  2.44       2.16      3.54              1.96
## cereals                      2.48       1.57      1.31              1.33
## kitchen towels               3.41       2.51      0.98              2.65
## curd cheese                  1.26       2.55      0.33              2.36
## other vegetables             1.89       0.00      1.33              2.36
## rolls/buns                   1.57       0.00      1.66              0.34
## softener                     3.25       1.32      1.03              1.74
## cleaner                      2.02       1.36      1.42              3.24
## spices                       1.68       1.36      2.49              2.52
## jam                          2.74       1.74      1.45              2.56
## sauces                       2.40       1.39      1.45              1.10
## rum                          0.71       1.44      1.50              1.90
## liver loaf                   1.13       1.52      1.19              4.42
## male cosmetics               1.59       0.81      0.42              0.00
## meat spreads                 0.41       0.82      3.01              1.31
## packaged herbs/vegetables    0.81       0.00      1.29              3.05
## brandy                       1.24       0.00      0.88              0.00
## ketchup                      2.54       3.44      2.69              2.27
## abrasive cleaner             1.73       2.20      1.83              0.46
## light bulbs                  3.99       0.45      0.47              0.00
## artif. sweetener             0.95       2.89      0.00              1.02
## nuts/prunes                  1.90       1.45      3.52              0.00
## specialty fat                4.39       3.46      1.55              5.22
## skin care                    3.59       2.08      0.00              4.95
## fish                         1.58       2.14      1.11              0.56
## potato products              2.23       2.26      1.18              1.79
## root vegetables              2.23       0.00      2.95              1.79
## snack products               0.00       0.58      1.82              1.23
## nut snack                    1.18       1.20      0.62              2.53
## soap                         1.18       1.80      0.00              1.27
## syrup                        2.36       3.00      1.87              1.90
## bathroom cleaner             3.66       1.85      0.00              1.96
## canned fruit                 1.22       0.00      1.93              1.31
## cookware                     1.35       1.36      1.42              1.44
## cooking chocolate            1.50       0.00      3.17              3.21
## tidbits                      2.25       2.28      2.38              0.80
## cocoa drinks                 1.56       2.37      4.95              0.84
## pudding powder               0.00       3.30      0.86              0.00
## ready soups                  0.00       3.30      1.72              0.87
## organic marinated meat       1.77       0.90      1.87              1.90
## flower soil/fertilizer       0.93       0.00      0.00              0.00
## organic products             3.72       0.94      0.98              0.00
## pot plants                   0.00       0.00      0.00              0.00
## prosecco                     1.86       0.00      1.96              0.99
## frankfurter                  1.95       0.00      1.03              1.04
## decalcifier                  5.13       2.08      0.00              3.30
## honey                        3.25       1.10      1.15              4.64
## specialty vegetables         3.44       2.33      1.21              3.69
## cream                        2.60       1.32      1.37              2.78
## hair spray                   0.00       0.00      1.47              0.00
## frozen fruits                1.63       1.65      0.00              3.48
## rubbing alcohol              8.13       0.00      3.44              3.48
## liqueur                      0.00       0.00      0.00              0.00
## make up remover              2.17       2.20      4.58              0.00
## salad dressing               0.00       6.59      0.00              2.32
## frozen chicken               0.00       2.47      5.15              5.22
## whisky                       2.44       2.47      2.58              0.00
## baby cosmetics               0.00       0.00      8.84              0.00
## toilet cleaner               2.79       5.65      0.00              2.98
## bags                         3.90       3.96      0.00              4.18
## canned herbs                 0.00       0.00      0.00              0.00
## kitchen utensil              0.00       4.94      5.15              5.22
## preservation products        0.00       0.00     10.31             10.44
## baby food                    0.00       0.00     20.62             20.88
## frozen herbss                0.00       0.00      0.00              0.00
## organic sausage              0.00       0.00      0.00              0.00
## sound storage medium         0.00       0.00      0.00              0.00
##                           chicken white bread cream cheese waffles dessert
## rice                         1.59        1.52         1.61    1.26    1.50
## veggies                      2.08        1.70         1.76    1.38    1.61
## loaf                         1.18        0.85         1.35    1.32    1.00
## coke                         1.07        1.41         0.97    1.45    1.52
## yogurt                       1.36        1.50         2.11    1.37    1.93
## vegetables                   2.22        1.64         1.70    1.42    1.42
## mineral water                1.08        0.95         1.33    1.02    1.26
## Plastic bags                 1.14        1.77         1.35    1.51    1.71
## tropical fruit               1.37        2.00         1.71    1.54    1.62
## marinated meat               1.26        1.85         1.48    1.41    1.69
## pies/pasties                 1.15        1.52         1.25    2.14    1.70
## newspapers                   1.39        1.03         1.10    1.28    1.07
## citrus                       1.88        1.30         1.71    1.37    1.39
## whipped/sour cream           2.34        1.85         2.31    1.94    1.87
## heinken                      0.68        1.18         0.57    0.74    0.65
## green tea                    0.94        0.31         0.39    0.87    0.84
## pip fruit                    1.42        2.10         2.01    1.57    1.77
## brown bread                  1.41        1.81         1.77    1.00    1.95
## fruit/vegetable juice        1.14        2.47         1.96    1.38    2.23
## domestic eggs                2.23        2.21         2.01    1.32    1.60
## coffee                       1.53        1.29         1.66    1.34    1.13
## margarine                    1.76        1.51         2.09    1.58    1.36
## beef                         1.81        1.27         1.62    1.28    1.29
## curd                         1.37        1.50         2.30    1.62    2.57
## butter                       2.51        1.90         1.77    1.59    1.31
## marinated meats              1.39        2.11         1.41    1.42    1.62
## napkins                      1.60        1.50         1.86    1.66    1.87
## halal meat                   2.26        1.74         1.27    1.59    1.47
## chocolate                    1.24        2.07         1.87    3.07    2.08
## frozen vegetables            3.06        1.65         1.44    1.04    1.70
## chicken                        NA        1.49         1.54    1.43    1.40
## white bread                  1.49          NA         2.13    2.21    2.53
## cream cheese                 1.54        2.13           NA    2.12    2.33
## waffles                      1.43        2.21         2.12      NA    2.16
## dessert                      1.40        2.53         2.33    2.16      NA
## salty snack                  1.13        1.61         1.61    2.61    1.61
## long life bakery product     2.04        2.66         1.96    2.74    2.11
## berries                      1.99        1.48         1.41    1.37    1.85
## hamburger meat               2.66        1.81         1.69    1.40    1.76
## sugar                        1.67        1.91         1.98    1.36    1.59
## hygiene articles             1.16        1.56         1.48    1.58    1.25
## UHT-milk                     1.58        0.97         2.08    1.58    2.25
## onions                       2.16        1.84         1.50    1.09    1.25
## candy                        1.58        2.12         1.82    2.83    1.23
## specialty chocolate          1.31        0.81         1.14    1.78    1.15
## butter milk                  1.32        1.71         3.00    1.40    2.75
## oil                          2.03        1.72         1.55    1.40    2.09
## frozen meals                 1.47        1.95         1.24    2.32    1.68
## misc. beverages              0.64        1.22         1.81    1.17    1.36
## specialty bar                0.51        1.85         1.44    2.64    1.21
## ham                          1.46        4.46         2.02    1.99    2.72
## beverages                    1.25        1.34         1.55    1.65    1.23
## meat                         1.81        1.77         1.75    1.07    1.35
## ice cream                    1.31        1.32         0.94    0.82    1.39
## sliced cheese                1.27        2.20         2.36    1.31    2.27
## hard cheese                  1.23        1.93         2.00    1.64    1.28
## noodles                      1.38        0.46         1.05    0.71    1.03
## grapes                       1.74        1.21         1.34    1.84    1.56
## cat food                     0.91        1.36         1.70    1.82    2.06
## chewing gum                  0.96        1.33         1.48    0.90    0.92
## soda                         1.17        1.15         0.97    1.61    1.64
## detergent                    1.41        1.83         1.34    1.19    1.33
## red/blush wine               1.76        0.77         0.57    1.47    0.99
## white wine                   1.37        0.79         0.46    0.25    1.01
## turkey                       2.02        1.92         1.49    1.33    0.94
## dishes                       1.25        0.61         2.14    1.87    1.49
## bottled water                0.91        1.58         1.77    0.81    1.50
## flour                        2.28        1.71         1.51    1.62    1.77
## semi-finished bread          1.38        1.72         1.27    1.89    1.51
## baking powder                1.27        2.10         2.82    2.05    0.97
## pickled vegetables           2.22        1.75         1.68    1.80    2.38
## herbs                        2.62        0.64         1.58    1.26    1.00
## tropical herbs               1.43        1.40         1.18    0.84    0.85
## soft cheese                  2.44        2.48         3.11    1.59    3.22
## tea                          0.98        1.04         2.70    0.58    1.75
## processed cheese             1.37        5.87         2.21    2.21    1.64
## sausage                      1.29        1.10         1.00    0.61    1.08
## pasta                        2.48        2.23         1.16    2.62    2.50
## citrus herbs                 1.58        1.54         2.04    0.62    1.10
## potted plants                1.84        1.26         1.89    0.78    0.79
## canned fish                  0.84        1.34         3.40    2.47    1.84
## seasonal products            1.18        0.79         1.96    2.09    2.65
## cake bar                     1.38        2.12         1.86    1.98    4.39
## carrots                      2.23        1.02         1.59    0.75    1.53
## mustard                      1.69        1.08         1.68    1.40    2.02
## packaged fruit/vegetables    2.63        1.69         0.97    1.04    2.10
## spread cheese                1.58        2.06         2.72    1.66    1.89
## frozen dessert               2.30        2.08         1.76    1.25    1.91
## frozen fish                  1.77        1.51         2.55    2.09    1.06
## cling film/bags              1.43        1.52         2.17    0.84    1.71
## salt                         2.32        1.91         2.17    1.26    2.56
## liquor                       0.57        1.02         0.00    0.45    0.23
## canned vegetables            1.54        2.26         1.49    1.36    2.76
## bottled beer                 0.77        0.62         0.21    0.23    0.46
## flower (seeds)               2.32        1.04         0.43    0.69    2.09
## cooking oil                  1.56        0.21         0.65    0.92    0.94
## dish cleaner                 2.15        1.46         1.08    2.07    1.17
## condensed milk               1.39        2.55         0.88    1.64    1.19
## roll products                2.68        1.54         2.05    1.46    0.99
## photo/film                   0.83        0.89         0.46    0.74    0.50
## pet care                     0.84        1.35         1.63    1.49    0.50
## chocolate marshmallow        1.98        1.18         1.71    4.16    1.85
## herbs/vegetable juice        2.00        2.38         1.97    1.58    1.07
## whole milk                   1.35        1.44         1.49    2.39    1.88
## candles                      1.82        0.97         1.26    1.34    2.72
## mayonnaise                   2.55        1.49         2.82    1.91    2.50
## Instant food products        1.20        2.55         0.79    0.85    1.14
## sweet spreads                1.20        4.09         2.91    3.10    1.43
## liquor (appetizer)           2.17        0.52         0.27    1.71    0.29
## specialty cheese             1.21        2.32         2.41    1.14    1.16
## frozen potato products       1.71        2.87         1.35    0.86    1.75
## house keeping products       2.44        1.57         0.81    0.86    0.88
## dog food                     1.48        1.85         1.91    0.58    0.89
## soy                          1.25        0.80         1.11    0.88    0.90
## instant coffee               1.35        2.03         1.50    2.24    1.30
## pip herbs                    1.62        1.74         3.00    2.24    1.62
## zwieback                     0.56        0.90         1.55    1.99    0.67
## finished products            1.46        2.18         1.61    2.41    1.75
## popcorn                      1.46        1.87         0.65    1.72    3.14
## vinegar                      3.79        1.25         3.88    1.72    0.70
## soups                        2.13        0.65         2.35    1.43    0.73
## female sanitary products     1.32        1.41         1.46    1.95    1.19
## sparkling wine               1.34        2.15         0.37    0.79    0.00
## dental care                  0.70        2.25         1.94    2.07    2.52
## cereals                      1.78        1.14         3.55    3.37    2.13
## kitchen towels               1.78        1.52         2.37    2.10    2.13
## curd cheese                  1.45        0.39         1.60    1.28    0.87
## other vegetables             2.54        2.32         1.60    0.86    1.74
## rolls/buns                   1.45        1.55         1.20    3.42    0.00
## softener                     3.75        3.20         0.83    0.88    1.79
## cleaner                      2.71        0.83         2.14    3.66    3.25
## spices                       3.87        0.83         1.29    1.83    2.78
## jam                          1.97        1.26         2.62    3.26    0.94
## sauces                       0.79        1.26         2.18    3.26    2.36
## rum                          1.63        2.18         0.90    1.93    0.98
## liver loaf                   1.73        1.85         4.30    1.53    1.55
## male cosmetics               0.92        0.98         0.00    0.00    1.65
## meat spreads                 0.00        1.50         6.22    1.10    1.12
## packaged herbs/vegetables    2.34        1.50         0.52    1.10    2.80
## brandy                       0.96        2.55         0.53    0.56    0.00
## ketchup                      0.98        2.09         1.62    1.73    1.75
## abrasive cleaner             4.00        1.60         2.21    1.18    1.20
## light bulbs                  2.04        0.55         1.70    2.41    2.44
## artif. sweetener             2.74        1.17         1.21    0.65    1.97
## nuts/prunes                  1.10        1.76         1.21    2.59    1.31
## specialty fat                3.37        3.60         1.87    2.65    3.36
## skin care                    3.55        0.63         0.65    2.09    2.83
## fish                         0.61        1.95         2.69    0.00    2.18
## potato products              1.28        3.43         0.71    1.52    2.31
## root vegetables              3.85        3.43         2.13    2.27    1.54
## snack products               0.00        2.12         0.00    3.90    0.79
## nut snack                    0.68        1.46         0.00    3.21    2.44
## soap                         1.36        2.91         1.51    1.61    0.00
## syrup                        0.00        3.64         0.75    1.61    2.44
## bathroom cleaner             2.11        0.75         1.55    3.31    0.84
## canned fruit                 1.40        0.75         3.11    1.66    4.20
## cookware                     0.77        1.66         1.71    2.74    0.93
## cooking chocolate            0.00        2.77         1.91    1.02    1.03
## tidbits                      0.86        0.92         2.87    6.12    3.10
## cocoa drinks                 1.80        4.80         3.98    4.24    1.08
## pudding powder               1.87        1.00         1.04    2.21    2.24
## ready soups                  1.87        1.00         3.11    2.21    2.24
## organic marinated meat       2.04        3.27         2.26    3.62    1.22
## flower soil/fertilizer       0.00        2.29         0.00    1.26    3.84
## organic products             0.00        0.00         1.18    1.26    0.00
## pot plants                   1.07        1.14         1.18    0.00    0.00
## prosecco                     0.00        1.14         0.00    2.53    1.28
## frankfurter                  0.00        2.40         1.24    0.00    0.00
## decalcifier                  0.00        3.79         2.62    2.79    1.42
## honey                        0.00        2.67         0.00    2.95    1.49
## specialty vegetables         0.00        8.48         0.00    1.56    3.16
## cream                        0.00        1.60         1.66    0.00    0.00
## hair spray                   3.21        3.43         1.78    1.89    0.00
## frozen fruits                3.75        0.00         6.22    2.21    0.00
## rubbing alcohol              0.00        2.00         2.07    0.00    0.00
## liqueur                      0.00        0.00         0.00    0.00    0.00
## make up remover              0.00        2.67         2.76    0.00    0.00
## salad dressing               4.99        2.67         0.00    0.00    0.00
## frozen chicken               0.00        0.00         0.00    0.00    3.36
## whisky                       0.00        0.00         3.11    0.00    3.36
## baby cosmetics               3.21        6.86         7.10    3.79    7.68
## toilet cleaner               0.00        0.00         0.00    3.79    7.68
## bags                         0.00        0.00         0.00    0.00    0.00
## canned herbs                 0.00        0.00         6.22    0.00    0.00
## kitchen utensil              5.62        0.00         0.00    0.00    0.00
## preservation products        0.00        0.00        12.43   13.26    0.00
## baby food                    0.00       24.01         0.00   26.51   26.89
## frozen herbss                0.00        0.00         0.00    0.00    0.00
## organic sausage              0.00       24.01         0.00    0.00    0.00
## sound storage medium         0.00       24.01         0.00    0.00    0.00
##                           salty snack long life bakery product berries
## rice                             1.20                     1.38    1.43
## veggies                          1.50                     1.52    1.47
## loaf                             0.73                     1.19    0.99
## coke                             1.44                     1.21    1.16
## yogurt                           1.16                     1.67    2.13
## vegetables                       1.20                     1.29    1.80
## mineral water                    1.06                     1.06    1.02
## Plastic bags                     1.66                     1.47    1.42
## tropical fruit                   1.43                     1.66    1.77
## marinated meat                   1.51                     1.58    1.46
## pies/pasties                     1.55                     1.80    1.26
## newspapers                       0.89                     1.12    1.06
## citrus                           1.19                     1.39    1.80
## whipped/sour cream               1.77                     2.22    3.83
## heinken                          1.05                     0.80    0.56
## green tea                        0.88                     0.58    0.29
## pip fruit                        1.45                     1.67    1.37
## brown bread                      1.01                     1.46    1.46
## fruit/vegetable juice            2.23                     2.36    1.40
## domestic eggs                    1.41                     1.60    1.68
## coffee                           1.32                     1.67    1.48
## margarine                        1.28                     1.52    1.35
## beef                             1.25                     0.86    2.53
## curd                             1.47                     1.72    1.64
## butter                           1.39                     2.14    2.10
## marinated meats                  1.44                     1.28    1.05
## napkins                          2.01                     2.35    1.54
## halal meat                       1.52                     0.78    1.56
## chocolate                        1.88                     2.74    1.52
## frozen vegetables                1.65                     2.05    1.49
## chicken                          1.13                     2.04    1.99
## white bread                      1.61                     2.66    1.48
## cream cheese                     1.61                     1.96    1.41
## waffles                          2.61                     2.74    1.37
## dessert                          1.61                     2.11    1.85
## salty snack                        NA                     2.25    1.52
## long life bakery product         2.25                       NA    1.56
## berries                          1.52                     1.56      NA
## hamburger meat                   1.76                     1.04    1.53
## sugar                            1.93                     1.48    2.12
## hygiene articles                 1.11                     1.50    2.08
## UHT-milk                         1.45                     1.27    1.49
## onions                           1.25                     1.06    1.44
## candy                            2.30                     2.35    0.93
## specialty chocolate              1.97                     2.11    1.18
## butter milk                      1.58                     2.05    1.97
## oil                              1.51                     1.20    1.89
## frozen meals                     2.27                     2.32    1.21
## misc. beverages                  1.28                     1.40    1.05
## specialty bar                    2.16                     1.95    2.04
## ham                              1.40                     1.97    1.53
## beverages                        0.44                     1.45    1.36
## meat                             1.17                     1.94    1.85
## ice cream                        2.31                     1.70    0.95
## sliced cheese                    1.14                     1.75    1.75
## hard cheese                      1.57                     2.01    1.71
## noodles                          0.83                     1.17    1.38
## grapes                           1.87                     1.70    3.09
## cat food                         1.30                     0.78    1.89
## chewing gum                      2.17                     0.82    0.47
## soda                             0.82                     0.48    1.68
## detergent                        1.57                     1.73    2.48
## red/blush wine                   1.24                     1.52    1.53
## white wine                       1.01                     1.16    0.90
## turkey                           0.81                     1.24    1.66
## dishes                           0.95                     0.70    0.84
## bottled water                    0.96                     0.98    1.82
## flour                            2.73                     1.68    1.54
## semi-finished bread              1.65                     1.41    1.55
## baking powder                    1.80                     2.70    1.85
## pickled vegetables               1.96                     2.30    1.29
## herbs                            0.85                     1.02    0.88
## tropical herbs                   1.00                     1.02    1.75
## soft cheese                      0.58                     2.70    2.10
## tea                              0.73                     1.20    1.50
## processed cheese                 1.49                     2.91    1.23
## sausage                          1.08                     0.79    1.27
## pasta                            1.56                     0.80    0.96
## citrus herbs                     1.42                     0.97    2.91
## potted plants                    1.26                     2.09    1.94
## canned fish                      1.67                     1.71    1.37
## seasonal products                1.95                     0.91    1.82
## cake bar                         2.20                     1.50    3.19
## carrots                          0.76                     0.78    3.72
## mustard                          1.42                     2.49    2.49
## packaged fruit/vegetables        0.84                     1.08    3.02
## spread cheese                    1.47                     1.29    1.94
## frozen dessert                   1.91                     2.17    0.65
## frozen fish                      2.54                     2.39    1.96
## cling film/bags                  0.85                     2.41    2.19
## salt                             1.71                     1.31    1.10
## liquor                           0.68                     0.70    1.40
## canned vegetables                1.84                     0.47    0.71
## bottled beer                     1.16                     0.48    0.00
## flower (seeds)                   0.70                     1.19    1.91
## cooking oil                      0.23                     0.72    1.20
## dish cleaner                     1.17                     1.92    2.16
## condensed milk                   2.38                     2.19    1.22
## roll products                    1.48                     1.26    2.28
## photo/film                       1.00                     0.77    0.26
## pet care                         1.26                     0.52    2.07
## chocolate marshmallow            1.32                     2.97    0.81
## herbs/vegetable juice            1.60                     1.36    1.91
## whole milk                       0.00                     0.83    0.83
## candles                          1.09                     1.95    1.40
## mayonnaise                       2.50                     2.84    2.28
## Instant food products            2.29                     0.59    0.88
## sweet spreads                    2.29                     3.22    0.88
## liquor (appetizer)               0.87                     1.19    0.89
## specialty cheese                 1.74                     1.19    1.78
## frozen potato products           2.63                     2.40    1.80
## house keeping products           1.17                     3.59    2.10
## dog food                         1.77                     2.42    0.91
## soy                              0.60                     0.92    2.46
## instant coffee                   1.94                     1.66    1.33
## pip herbs                        0.97                     1.33    1.66
## zwieback                         1.34                     1.38    1.73
## finished products                3.49                     2.51    1.08
## popcorn                          8.38                     0.72    2.51
## vinegar                          1.05                     1.79    1.08
## soups                            0.36                     1.49    2.99
## female sanitary products         1.58                     2.43    1.62
## sparkling wine                   0.40                     0.41    0.82
## dental care                      3.36                     2.15    0.86
## cereals                          2.13                     3.50    3.07
## kitchen towels                   4.27                     0.44    1.75
## curd cheese                      0.43                     1.33    1.78
## other vegetables                 0.87                     1.33    1.34
## rolls/buns                       0.00                     0.89    1.34
## softener                         0.00                     0.92    0.46
## cleaner                          0.93                     1.90    0.48
## spices                           0.46                     2.85    1.43
## jam                              1.42                     1.93    1.94
## sauces                           2.83                     0.97    1.45
## rum                              0.49                     3.01    0.50
## liver loaf                       2.59                     2.12    0.53
## male cosmetics                   0.55                     1.12    1.13
## meat spreads                     0.56                     0.00    1.15
## packaged herbs/vegetables        1.12                     1.72    4.60
## brandy                           1.72                     0.59    0.59
## ketchup                          2.34                     1.20    1.20
## abrasive cleaner                 1.20                     2.45    6.14
## light bulbs                      1.83                     1.88    0.00
## artif. sweetener                 0.66                     0.00    2.02
## nuts/prunes                      1.31                     0.00    0.00
## specialty fat                    1.34                     2.76    2.07
## skin care                        1.42                     0.00    2.18
## fish                             0.00                     2.98    3.73
## potato products                  2.31                     3.15    0.79
## root vegetables                  0.00                     1.57    0.79
## snack products                   0.00                     0.81    0.81
## nut snack                        4.89                     2.51    1.67
## soap                             0.00                     0.00    1.67
## syrup                            0.81                     0.84    2.51
## bathroom cleaner                 1.68                     0.86    3.45
## canned fruit                     0.00                     0.86    1.73
## cookware                         2.78                     2.85    0.95
## cooking chocolate                1.03                     2.12    2.12
## tidbits                          3.10                     2.12    0.00
## cocoa drinks                     5.38                     2.20    0.00
## pudding powder                   2.24                     3.44    0.00
## ready soups                      1.12                     2.30    3.45
## organic marinated meat           2.44                     1.25    2.51
## flower soil/fertilizer           0.00                     1.31    0.00
## organic products                 0.00                     0.00    3.95
## pot plants                       0.00                     0.00    1.32
## prosecco                         2.56                     1.31    0.00
## frankfurter                      1.34                     0.00    0.00
## decalcifier                      1.42                     1.45    1.45
## honey                            0.00                     0.00    4.60
## specialty vegetables             0.00                     6.48    4.87
## cream                            3.59                     0.00    0.00
## hair spray                       0.00                     1.97    0.00
## frozen fruits                    4.48                     6.89    2.30
## rubbing alcohol                  2.24                     6.89    6.91
## liqueur                          0.00                     0.00    0.00
## make up remover                  5.98                     0.00    3.07
## salad dressing                   2.99                     0.00    0.00
## frozen chicken                   3.36                     0.00    3.45
## whisky                           0.00                     0.00    0.00
## baby cosmetics                   0.00                     7.87    0.00
## toilet cleaner                   0.00                     3.94    0.00
## bags                             0.00                     0.00    0.00
## canned herbs                     0.00                     0.00    0.00
## kitchen utensil                  0.00                     0.00   13.81
## preservation products            0.00                    13.78    0.00
## baby food                       26.89                     0.00    0.00
## frozen herbss                    0.00                     0.00    0.00
## organic sausage                  0.00                     0.00    0.00
## sound storage medium             0.00                     0.00    0.00
##                           hamburger meat sugar hygiene articles UHT-milk onions
## rice                                1.70  1.68             1.46     0.46   1.47
## veggies                             2.02  1.60             1.44     1.27   2.26
## loaf                                1.33  1.10             0.93     1.06   1.14
## coke                                0.94  1.21             1.17     1.33   0.93
## yogurt                              1.31  1.35             1.50     1.56   1.60
## vegetables                          1.73  1.72             1.58     1.32   2.57
## mineral water                       0.75  1.24             1.50     2.01   1.64
## Plastic bags                        1.20  1.03             1.50     1.42   1.30
## tropical fruit                      1.15  1.31             1.86     1.44   1.67
## marinated meat                      1.56  1.12             1.35     1.12   1.20
## pies/pasties                        1.45  1.69             1.46     1.22   0.97
## newspapers                          1.12  1.11             1.15     1.57   1.15
## citrus                              1.35  1.66             1.86     1.68   2.08
## whipped/sour cream                  1.82  2.07             1.69     1.28   2.13
## heinken                             0.75  1.23             1.03     0.92   1.28
## green tea                           0.70  0.56             0.91     0.75   0.72
## pip fruit                           1.67  1.82             1.84     1.51   1.40
## brown bread                         1.42  1.60             1.42     1.94   1.45
## fruit/vegetable juice               1.39  1.90             1.55     1.66   1.60
## domestic eggs                       1.96  2.24             2.35     1.85   2.53
## coffee                              1.43  2.25             1.68     2.15   1.47
## margarine                           1.64  2.69             1.87     2.04   1.22
## beef                                2.02  1.56             1.67     0.89   1.86
## curd                                1.59  1.89             2.09     1.23   1.49
## butter                              2.33  1.77             2.26     1.18   2.39
## marinated meats                     1.61  1.83             1.55     1.62   1.96
## napkins                             1.52  1.85             3.74     1.37   1.92
## halal meat                          1.59  2.23             1.74     1.71   2.06
## chocolate                           1.45  1.43             1.44     0.89   1.36
## frozen vegetables                   1.79  1.77             1.84     1.69   2.17
## chicken                             2.66  1.67             1.16     1.58   2.16
## white bread                         1.81  1.91             1.56     0.97   1.84
## cream cheese                        1.69  1.98             1.48     2.08   1.50
## waffles                             1.40  1.36             1.58     1.58   1.09
## dessert                             1.76  1.59             1.25     2.25   1.25
## salty snack                         1.76  1.93             1.11     1.45   1.25
## long life bakery product            1.04  1.48             1.50     1.27   1.06
## berries                             1.53  2.12             2.08     1.49   1.44
## hamburger meat                        NA  1.52             2.27     1.53   2.40
## sugar                               1.52    NA             2.46     1.79   1.50
## hygiene articles                    2.27  2.46               NA     1.49   1.99
## UHT-milk                            1.53  1.79             1.49       NA   1.25
## onions                              2.40  1.50             1.99     1.25     NA
## candy                               0.95  1.67             0.97     1.29   1.03
## specialty chocolate                 1.04  0.70             1.33     1.02   0.94
## butter milk                         1.49  1.42             1.26     1.88   1.62
## oil                                 2.02  2.24             3.08     1.23   1.82
## frozen meals                        1.59  0.99             1.54     0.76   1.34
## misc. beverages                     1.16  1.00             1.65     0.48   0.78
## specialty bar                       1.00  0.74             1.12     1.36   0.69
## ham                                 1.47  2.25             1.61     1.28   1.80
## beverages                           0.93  1.04             0.57     1.09   1.11
## meat                                1.99  1.16             0.58     1.42   1.75
## ice cream                           0.87  1.38             1.50     0.83   1.37
## sliced cheese                       1.59  1.52             1.33     1.17   2.27
## hard cheese                         2.58  1.99             2.01     1.44   2.92
## noodles                             1.52  1.33             2.01     1.05   1.65
## grapes                              1.75  1.11             1.23     1.52   1.66
## cat food                            2.05  1.97             2.69     1.96   1.49
## chewing gum                         0.84  1.47             1.61     0.77   1.05
## soda                                1.60  1.63             1.01     1.58   1.34
## detergent                           1.77  0.90             2.08     0.82   1.52
## red/blush wine                      0.91  0.66             0.80     0.84   1.13
## white wine                          1.06  0.81             0.81     0.42   1.15
## turkey                              1.41  1.73             1.74     1.67   2.46
## dishes                              1.43  1.74             0.44     1.07   2.33
## bottled water                       1.86  0.88             2.06     2.15   1.72
## flour                               2.01  8.03             2.65     1.08   1.87
## semi-finished bread                 1.44  1.32             1.78     1.39   1.88
## baking powder                       2.04  5.48             0.90     1.41   1.27
## pickled vegetables                  1.62  1.05             2.12     2.21   1.76
## herbs                               2.54  0.61             2.46     1.12   2.76
## tropical herbs                      1.05  1.67             2.15     0.64   2.60
## soft cheese                         1.84  1.88             1.89     0.82   3.17
## tea                                 1.38  2.19             1.89     1.15   2.00
## processed cheese                    1.26  1.76             1.61     1.35   1.37
## sausage                             1.79  1.32             1.34     0.70   1.24
## pasta                               5.75  1.84             2.03     1.76   2.32
## citrus herbs                        1.98  3.03             1.19     1.95   2.34
## potted plants                       1.49  1.18             1.53     1.42   1.44
## canned fish                         2.11  1.96             2.35     1.69   1.72
## seasonal products                   0.93  0.76             1.53     1.20   1.42
## cake bar                            1.73  1.37             0.59     2.06   1.46
## carrots                             2.20  1.02             1.85     0.86   2.40
## mustard                             2.34  1.73             1.97     2.96   3.47
## packaged fruit/vegetables           1.54  1.80             0.91     1.42   1.68
## spread cheese                       1.77  1.35             1.36     1.66   1.92
## frozen dessert                      0.89  2.72             2.06     1.91   2.42
## frozen fish                         0.67  2.94             2.29     1.43   2.42
## cling film/bags                     2.02  2.05             2.31     1.92   1.95
## salt                                1.35  4.79             1.84     2.41   3.90
## liquor                              0.00  0.49             0.49     0.00   0.52
## canned vegetables                   4.10  1.72             2.48     2.33   2.89
## bottled beer                        0.73  0.99             0.50     0.78   1.59
## flower (seeds)                      1.95  0.74             1.25     1.05   1.32
## cooking oil                         1.23  0.50             1.26     1.05   1.87
## dish cleaner                        3.44  2.25             3.54     1.85   1.87
## condensed milk                      0.75  2.80             0.51     2.68   1.36
## roll products                       3.11  3.43             1.60     0.56   1.69
## photo/film                          1.05  0.53             2.42     0.00   0.00
## pet care                            1.06  1.08             1.09     1.98   2.01
## chocolate marshmallow               2.22  2.54             1.71     0.30   0.60
## herbs/vegetable juice               1.40  1.99             1.44     1.50   0.91
## whole milk                          2.26  1.15             1.74     0.61   1.84
## candles                             1.43  2.61             1.17     1.22   0.31
## mayonnaise                          2.91  1.78             1.80     2.81   3.17
## Instant food products              10.82  1.53             2.47     1.61   1.31
## sweet spreads                       3.61  1.53             1.85     1.93   0.98
## liquor (appetizer)                  0.30  0.62             2.19     1.96   3.30
## specialty cheese                    2.13  0.62             2.19     2.28   3.96
## frozen potato products              2.15  0.31             2.21     1.32   1.00
## house keeping products              1.54  1.88             3.79     2.31   2.00
## dog food                            1.55  0.95             1.60     1.00   1.69
## soy                                 0.63  2.24             1.61     0.67   1.37
## instant coffee                      1.70  1.73             2.10     1.83   2.59
## pip herbs                           2.04  3.12             2.10     1.46   1.48
## zwieback                            0.71  0.72             1.82     3.03   0.38
## finished products                   0.73  0.75             1.13     0.39   2.39
## popcorn                             2.57  1.87             0.38     1.18   2.79
## vinegar                             1.47  2.61             1.51     1.97   3.99
## soups                               3.44  5.05             3.14     2.05   4.15
## female sanitary products            0.42  0.42             2.56     2.23   1.36
## sparkling wine                      1.26  1.29             2.17     0.90   0.92
## dental care                         3.09  1.35             3.18     2.37   3.36
## cereals                             2.69  4.11             1.84     0.96   0.98
## kitchen towels                      3.59  2.74             2.31     1.92   0.98
## curd cheese                         1.37  2.32             4.22     0.49   2.48
## other vegetables                    3.65  1.39             1.41     1.47   3.47
## rolls/buns                          2.28  1.39             0.47     0.49   0.50
## softener                            3.77  0.48             3.87     2.53   0.00
## cleaner                             1.46  1.98             1.50     0.52   2.12
## spices                              2.92  0.50             2.50     1.57   3.18
## jam                                 0.50  3.03             3.57     0.53   4.85
## sauces                              5.95  3.03             0.51     2.66   1.08
## rum                                 1.54  1.57             2.64     0.00   2.79
## liver loaf                          0.00  1.66             2.23     1.17   2.36
## male cosmetics                      1.15  1.17             1.78     0.62   2.51
## meat spreads                        4.71  2.40             0.61     0.63   1.92
## packaged herbs/vegetables           1.18  2.40             0.61     2.53   3.84
## brandy                              1.20  0.00             1.24     2.58   1.96
## ketchup                             3.07  3.13             4.42     2.64   2.67
## abrasive cleaner                    1.88  2.56             2.58     0.00   3.41
## light bulbs                         0.64  2.61             2.64     2.07   1.40
## artif. sweetener                    2.07  2.10             2.83     5.18   1.50
## nuts/prunes                         1.38  0.00             0.71     0.00   2.25
## specialty fat                       1.41  3.59             1.45     2.27   3.84
## skin care                           0.74  4.54             6.88     1.60   4.04
## fish                                0.00  2.33             0.00     1.64   0.00
## potato products                     4.84  0.00             0.00     2.60   3.51
## root vegetables                     4.04  1.64             1.66     1.73   3.51
## snack products                      0.83  1.69             1.71     0.89   0.00
## nut snack                           1.71  0.87             1.76     1.84   0.00
## soap                                3.42  2.61             0.88     0.00   0.00
## syrup                               2.57  0.87             0.88     2.76   2.79
## bathroom cleaner                    3.53  0.90             1.82     2.84   2.88
## canned fruit                        2.65  1.80             5.45     1.89   0.96
## cookware                            1.95  0.99             0.00     1.05   1.06
## cooking chocolate                   1.09  2.21             4.47     0.00   1.18
## tidbits                             1.09  2.21             0.00     0.00   0.00
## cocoa drinks                        1.13  4.60             1.16     3.64   2.46
## pudding powder                      3.53  4.79             2.42     2.53   5.12
## ready soups                         0.00  1.20             3.63     1.26   1.28
## organic marinated meat              0.00  0.00             2.64     1.38   1.40
## flower soil/fertilizer              0.00  0.00             4.15     0.00   0.00
## organic products                    2.69  1.37             1.38     4.33   1.46
## pot plants                          0.00  1.37             0.00     1.44   0.00
## prosecco                            0.00  0.00             2.77     0.00   0.00
## frankfurter                         1.41  2.88             1.45     3.03   1.54
## decalcifier                         1.49  4.54             4.59     4.79   0.00
## honey                               4.71  0.00             1.61     0.00   0.00
## specialty vegetables                3.32  0.00             1.71     0.00   5.42
## cream                               3.77  1.92             1.94     2.02   4.10
## hair spray                          2.02  2.05             0.00     0.00   2.19
## frozen fruits                       0.00  2.40             0.00     0.00   2.56
## rubbing alcohol                     4.71  0.00            12.11     0.00   2.56
## liqueur                             0.00  0.00             0.00     0.00   0.00
## make up remover                     0.00  3.20             6.46     0.00   0.00
## salad dressing                      3.14  0.00             0.00     3.37  10.24
## frozen chicken                      3.53  0.00             0.00     0.00   0.00
## whisky                              0.00  0.00             0.00     0.00   3.84
## baby cosmetics                      4.04  4.11             0.00     0.00   0.00
## toilet cleaner                      8.07  0.00             0.00     4.33   0.00
## bags                                0.00  0.00             0.00     0.00   0.00
## canned herbs                        0.00  7.19             7.26     0.00   0.00
## kitchen utensil                     0.00  0.00             0.00     0.00  15.36
## preservation products               0.00  0.00            14.53     0.00  15.36
## baby food                           0.00  0.00             0.00     0.00   0.00
## frozen herbss                       0.00  0.00             0.00     0.00   0.00
## organic sausage                     0.00  0.00             0.00     0.00   0.00
## sound storage medium                0.00  0.00             0.00     0.00   0.00
##                           candy specialty chocolate butter milk  oil
## rice                       1.09                1.00        1.55 1.53
## veggies                    1.22                1.08        1.86 1.80
## loaf                       1.32                1.04        1.44 0.97
## coke                       1.69                1.24        0.91 0.94
## yogurt                     1.35                1.09        2.19 1.27
## vegetables                 1.31                0.97        1.73 2.09
## mineral water              1.13                1.23        1.18 1.32
## Plastic bags               1.48                1.52        1.37 1.03
## tropical fruit             1.76                1.10        1.82 1.56
## marinated meat             1.33                0.89        1.35 1.51
## pies/pasties               1.38                1.42        1.36 1.22
## newspapers                 0.94                0.79        0.96 1.58
## citrus                     1.60                0.97        1.88 2.10
## whipped/sour cream         1.74                1.23        1.85 2.16
## heinken                    0.60                0.87        0.39 1.50
## green tea                  0.94                0.58        0.18 0.73
## pip fruit                  1.06                0.97        2.33 1.36
## brown bread                1.14                1.19        2.08 1.36
## fruit/vegetable juice      1.88                1.25        2.25 1.82
## domestic eggs              1.60                1.26        1.23 2.03
## coffee                     1.73                1.09        1.51 2.07
## margarine                  1.78                0.79        1.38 2.25
## beef                       0.64                1.44        1.35 2.17
## curd                       1.55                1.07        2.34 1.80
## butter                     1.66                1.11        1.40 2.26
## marinated meats            1.30                1.01        1.92 1.51
## napkins                    1.07                1.49        1.15 1.82
## halal meat                 1.33                0.97        1.29 1.91
## chocolate                  3.33                2.02        1.53 2.06
## frozen vegetables          1.66                1.09        1.42 1.50
## chicken                    1.58                1.31        1.32 2.03
## white bread                2.12                0.81        1.71 1.72
## cream cheese               1.82                1.14        3.00 1.55
## waffles                    2.83                1.78        1.40 1.40
## dessert                    1.23                1.15        2.75 2.09
## salty snack                2.30                1.97        1.58 1.51
## long life bakery product   2.35                2.11        2.05 1.20
## berries                    0.93                1.18        1.97 1.89
## hamburger meat             0.95                1.04        1.49 2.02
## sugar                      1.67                0.70        1.42 2.24
## hygiene articles           0.97                1.33        1.26 3.08
## UHT-milk                   1.29                1.02        1.88 1.23
## onions                     1.03                0.94        1.62 1.82
## candy                        NA                2.51        1.06 1.70
## specialty chocolate        2.51                  NA        1.27 1.28
## butter milk                1.06                1.27          NA 1.51
## oil                        1.70                1.28        1.51   NA
## frozen meals               1.50                1.07        1.30 0.98
## misc. beverages            2.38                1.85        0.77 1.00
## specialty bar              1.65                2.21        0.67 1.12
## ham                        1.67                1.79        2.60 1.93
## beverages                  0.78                1.12        1.94 0.80
## meat                       0.80                1.15        0.93 1.99
## ice cream                  1.06                1.77        1.31 1.20
## sliced cheese              0.96                1.33        3.55 1.97
## hard cheese                2.75                1.88        1.90 1.53
## noodles                    1.05                0.40        1.60 1.21
## grapes                     1.72                1.06        1.34 2.29
## cat food                   1.10                1.80        0.84 2.11
## chewing gum                0.58                1.61        0.74 1.19
## soda                       1.19                0.60        0.91 1.22
## detergent                  0.77                1.69        1.25 3.45
## red/blush wine             1.42                1.26        0.32 0.81
## white wine                 0.48                0.80        0.16 1.31
## turkey                     1.20                1.37        2.08 2.45
## dishes                     0.69                0.87        0.35 2.12
## bottled water              1.56                0.00        1.76 1.06
## flour                      1.56                1.22        1.76 3.90
## semi-finished bread        1.92                1.57        1.24 1.78
## baking powder              1.59                1.06        1.61 3.24
## pickled vegetables         1.60                1.79        1.81 3.09
## herbs                      1.45                1.09        1.29 3.88
## tropical herbs             1.99                0.36        1.10 0.92
## soft cheese                0.93                2.61        1.70 2.47
## tea                        0.93                0.37        1.89 1.90
## processed cheese           3.42                1.14        1.74 1.55
## sausage                    0.98                0.20        1.20 0.80
## pasta                      1.59                1.40        1.61 3.25
## citrus herbs               1.80                0.60        2.23 2.04
## potted plants              0.40                1.20        0.81 1.23
## canned fish                1.27                0.85        1.51 2.17
## seasonal products          2.70                2.03        0.46 1.84
## cake bar                   2.33                1.40        1.18 2.14
## carrots                    1.70                1.22        0.99 1.24
## mustard                    1.29                2.06        2.09 4.47
## packaged fruit/vegetables  2.14                0.80        0.81 1.64
## spread cheese              0.27                0.27        1.90 0.55
## frozen dessert             2.15                0.81        1.37 1.93
## frozen fish                2.69                0.54        1.37 1.65
## cling film/bags            2.44                1.09        1.10 2.50
## salt                       0.54                0.82        1.93 3.33
## liquor                     1.74                0.29        0.29 0.30
## canned vegetables          1.46                1.76        1.19 2.69
## bottled beer               0.00                0.59        0.30 1.20
## flower (seeds)             1.47                1.48        0.00 1.81
## cooking oil                0.59                0.60        0.30 0.30
## dish cleaner               2.08                1.79        2.72 3.95
## condensed milk             0.91                1.21        0.31 2.47
## roll products              0.63                1.89        2.23 4.49
## photo/film                 0.63                0.64        1.93 0.32
## pet care                   0.96                0.32        1.30 0.98
## chocolate marshmallow      5.70                2.35        0.68 2.40
## herbs/vegetable juice      0.68                0.68        2.06 1.04
## whole milk                 0.00                0.69        1.74 2.45
## candles                    1.38                1.73        0.35 3.18
## mayonnaise                 2.47                1.41        2.15 2.88
## Instant food products      0.73                1.46        0.00 2.23
## sweet spreads              1.45                1.46        2.59 0.37
## liquor (appetizer)         2.57                0.37        0.75 1.50
## specialty cheese           1.47                0.74        2.61 0.75
## frozen potato products     3.34                1.12        0.38 4.18
## house keeping products     1.86                2.24        1.89 2.28
## dog food                   0.38                2.26        0.76 3.46
## soy                        1.52                0.38        1.16 0.78
## instant coffee             0.41                1.65        2.09 1.68
## pip herbs                  1.24                0.83        3.35 0.42
## zwieback                   0.43                0.43        0.87 0.87
## finished products          3.11                2.23        1.80 0.45
## popcorn                    2.66                0.89        3.16 2.27
## vinegar                    0.00                1.34        1.80 5.44
## soups                      1.39                0.46        2.35 4.25
## female sanitary products   1.01                2.02        2.04 1.03
## sparkling wine             1.02                3.58        1.04 2.09
## dental care                2.67                2.14        2.71 3.82
## cereals                    1.63                3.27        2.20 0.55
## kitchen towels             1.63                3.27        1.65 2.77
## curd cheese                2.21                1.11        3.92 1.13
## other vegetables           1.10                1.11        1.68 2.25
## rolls/buns                 0.55                0.55        1.68 1.69
## softener                   0.57                0.57        2.31 1.16
## cleaner                    2.36                1.77        1.80 2.41
## spices                     1.77                0.00        1.80 3.01
## jam                        3.00                0.60        0.00 1.84
## sauces                     1.80                2.41        2.44 1.84
## rum                        1.24                0.62        0.00 0.64
## liver loaf                 0.00                1.32        0.67 1.34
## male cosmetics             0.70                2.10        2.13 1.43
## meat spreads               1.42                2.14        1.45 0.73
## packaged herbs/vegetables  1.42                0.00        0.00 2.18
## brandy                     0.73                2.19        0.00 2.23
## ketchup                    1.49                0.75        0.75 6.08
## abrasive cleaner           3.04                2.29        1.54 3.11
## light bulbs                1.55                1.56        0.00 2.38
## artif. sweetener           0.83                0.84        0.00 1.70
## nuts/prunes                0.00                3.35        0.00 0.85
## specialty fat              2.56                2.57        0.00 3.49
## skin care                  1.80                0.90        0.00 0.00
## fish                       0.00                1.85        0.00 1.89
## potato products            1.95                1.96        0.00 0.00
## root vegetables            0.98                0.98        1.98 2.99
## snack products             4.02                0.00        0.00 3.08
## nut snack                  1.04                1.04        1.05 0.00
## soap                       1.04                1.04        0.00 1.06
## syrup                      3.11                1.04        2.10 2.12
## bathroom cleaner           3.21                0.00        1.09 4.37
## canned fruit               2.14                0.00        1.09 3.28
## cookware                   2.36                2.37        3.59 3.61
## cooking chocolate          0.00                1.32        1.34 4.03
## tidbits                    1.32                0.00        5.34 0.00
## cocoa drinks               4.10                2.74        2.78 2.80
## pudding powder             1.42                1.43        0.00 5.82
## ready soups                0.00                0.00        1.45 0.00
## organic marinated meat     1.55                0.00        1.58 1.59
## flower soil/fertilizer     0.00                1.63        0.00 0.00
## organic products           1.63                3.27        4.96 1.66
## pot plants                 0.00                1.63        0.00 1.66
## prosecco                   1.63                3.27        0.00 0.00
## frankfurter                0.00                1.71        1.74 1.75
## decalcifier                0.00                3.61        0.00 0.00
## honey                      1.90                1.91        3.86 0.00
## specialty vegetables       2.01                4.03        0.00 4.11
## cream                      0.00                6.86        2.31 4.66
## hair spray                 4.88                2.45        0.00 0.00
## frozen fruits              2.85                5.72        0.00 0.00
## rubbing alcohol            2.85                2.86        0.00 0.00
## liqueur                    0.00                3.12        0.00 3.18
## make up remover            3.80                0.00        0.00 0.00
## salad dressing             7.60                3.81        0.00 3.88
## frozen chicken             0.00                0.00        4.34 0.00
## whisky                     0.00                4.29        0.00 0.00
## baby cosmetics             0.00                0.00       14.88 9.98
## toilet cleaner             4.88                0.00        0.00 0.00
## bags                       0.00                0.00        0.00 0.00
## canned herbs               8.55                0.00        0.00 8.73
## kitchen utensil            0.00                0.00        0.00 0.00
## preservation products     17.10                0.00        0.00 0.00
## baby food                  0.00                0.00       34.72 0.00
## frozen herbss              0.00                0.00        0.00 0.00
## organic sausage            0.00                0.00        0.00 0.00
## sound storage medium      34.19                0.00        0.00 0.00
##                           frozen meals misc. beverages specialty bar   ham
## rice                              1.32            1.01          0.90  1.61
## veggies                           1.36            1.03          1.04  1.73
## loaf                              0.93            0.90          1.10  1.37
## coke                              1.25            1.49          1.49  1.04
## yogurt                            1.54            1.06          1.10  1.72
## vegetables                        1.18            1.06          0.72  1.37
## mineral water                     1.00            1.70          0.90  0.97
## Plastic bags                      1.77            1.47          1.20  1.55
## tropical fruit                    1.83            1.55          1.12  1.88
## marinated meat                    1.40            0.85          0.90  1.94
## pies/pasties                      1.22            0.77          1.69  1.71
## newspapers                        1.08            0.82          0.75  1.09
## citrus                            1.42            0.96          1.20  1.26
## whipped/sour cream                1.39            1.06          0.85  2.31
## heinken                           1.15            0.99          0.55  1.01
## green tea                         0.55            1.02          0.71  0.19
## pip fruit                         2.12            1.00          1.02  1.91
## brown bread                       1.51            0.94          0.65  1.53
## fruit/vegetable juice             1.92            1.95          1.32  1.95
## domestic eggs                     1.69            1.66          0.87  2.28
## coffee                            1.37            0.72          0.89  1.11
## margarine                         0.86            0.98          0.94  1.62
## beef                              1.25            0.77          0.56  1.65
## curd                              1.59            1.39          1.19  1.66
## butter                            1.70            1.67          0.93  2.07
## marinated meats                   1.75            0.73          1.06  1.57
## napkins                           1.65            1.48          1.51  1.72
## halal meat                        1.36            0.63          1.14  1.10
## chocolate                         1.68            1.63          1.99  2.28
## frozen vegetables                 2.48            1.59          0.67  1.77
## chicken                           1.47            0.64          0.51  1.46
## white bread                       1.95            1.22          1.85  4.46
## cream cheese                      1.24            1.81          1.44  2.02
## waffles                           2.32            1.17          2.64  1.99
## dessert                           1.68            1.36          1.21  2.72
## salty snack                       2.27            1.28          2.16  1.40
## long life bakery product          2.32            1.40          1.95  1.97
## berries                           1.21            1.05          2.04  1.53
## hamburger meat                    1.59            1.16          1.00  1.47
## sugar                             0.99            1.00          0.74  2.25
## hygiene articles                  1.54            1.65          1.12  1.61
## UHT-milk                          0.76            0.48          1.36  1.28
## onions                            1.34            0.78          0.69  1.80
## candy                             1.50            2.38          1.65  1.67
## specialty chocolate               1.07            1.85          2.21  1.79
## butter milk                       1.30            0.77          0.67  2.60
## oil                               0.98            1.00          1.12  1.93
## frozen meals                        NA            1.33          1.58  2.40
## misc. beverages                   1.33              NA          0.68  1.39
## specialty bar                     1.58            0.68            NA  1.53
## ham                               2.40            1.39          1.53    NA
## beverages                         1.38            1.28          1.66  1.08
## meat                              2.00            0.83          1.09  1.10
## ice cream                         1.69            1.22          1.12  1.51
## sliced cheese                     2.71            1.00          1.27  3.99
## hard cheese                       2.43            2.20          0.92  3.87
## noodles                           0.54            1.23          1.39  2.11
## grapes                            1.76            2.06          2.09  2.12
## cat food                          1.70            1.57          1.74  2.21
## chewing gum                       0.60            1.66          1.53  1.40
## soda                              0.91            1.54          1.41  1.91
## detergent                         1.73            1.59          1.78  1.31
## red/blush wine                    1.62            1.14          0.66  1.35
## white wine                        0.33            1.00          0.34  1.19
## turkey                            1.58            0.89          1.08  1.64
## dishes                            0.35            0.90          1.27  0.92
## bottled water                     1.25            1.98          0.92  0.93
## flour                             0.53            2.16          0.18  0.93
## semi-finished bread               2.15            1.09          1.47  2.98
## baking powder                     1.08            1.28          0.93  2.07
## pickled vegetables                1.64            2.22          1.50  0.95
## herbs                             0.37            1.88          0.38  1.55
## tropical herbs                    1.30            1.31          0.38  1.55
## soft cheese                       2.29            1.35          1.96  3.97
## tea                               0.57            0.58          1.18  1.79
## processed cheese                  0.97            1.38          1.80  6.29
## sausage                           0.60            1.22          1.45  1.47
## pasta                             4.28            2.06          1.05  2.12
## citrus herbs                      0.61            1.25          0.42  1.28
## potted plants                     1.23            1.25          0.42  1.71
## canned fish                       2.18            1.98          1.12  1.82
## seasonal products                 1.61            0.70          1.90  1.44
## cake bar                          2.38            1.93          2.94  1.99
## carrots                           0.25            1.26          1.02  0.52
## mustard                           1.32            1.60          1.63  1.65
## packaged fruit/vegetables         0.82            1.11          1.13  0.29
## spread cheese                     0.27            1.94          1.13  2.85
## frozen dessert                    4.69            1.12          0.57  1.15
## frozen fish                       4.42            0.56          1.42  2.88
## cling film/bags                   0.56            1.41          0.86  1.16
## salt                              0.83            1.41          0.86  1.16
## liquor                            0.00            1.50          1.22  0.00
## canned vegetables                 0.90            2.73          0.62  1.87
## bottled beer                      0.91            1.22          0.31  0.31
## flower (seeds)                    1.21            0.31          0.93  0.63
## cooking oil                       0.91            0.62          0.31  0.95
## dish cleaner                      0.30            0.62          2.51  0.00
## condensed milk                    0.62            1.26          0.32  0.97
## roll products                     1.29            1.95          0.33  1.68
## photo/film                        0.97            0.66          0.33  0.00
## pet care                          0.66            1.33          1.01  1.37
## chocolate marshmallow             0.69            0.70          1.41  3.94
## herbs/vegetable juice             1.73            1.76          0.71  1.81
## whole milk                        2.45            1.42          1.44  2.92
## candles                           0.71            0.00          0.73  0.37
## mayonnaise                        1.08            1.46          0.00  2.26
## Instant food products             1.49            0.76          1.15  0.78
## sweet spreads                     2.24            1.51          2.69  3.89
## liquor (appetizer)                0.38            0.76          1.16  1.57
## specialty cheese                  1.13            1.53          1.16  1.96
## frozen potato products            3.81            1.54          3.14  2.78
## house keeping products            3.05            1.93          0.39  0.79
## dog food                          2.31            1.17          1.19  1.20
## soy                               0.39            0.39          2.00  2.03
## instant coffee                    2.96            2.57          1.30  0.88
## pip herbs                         2.53            0.86          0.87  2.64
## zwieback                          1.31            1.77          3.16  2.74
## finished products                 1.37            0.92          1.87  0.95
## popcorn                           2.73            0.92          1.87  1.90
## vinegar                           1.37            0.46          0.47  0.95
## soups                             0.95            0.48          1.46  0.99
## female sanitary products          1.55            3.13          1.59  3.22
## sparkling wine                    0.52            3.18          1.08  0.55
## dental care                       0.55            1.66          2.25  1.14
## cereals                           4.45            0.56          1.14  1.16
## kitchen towels                    5.01            0.56          0.57  1.16
## curd cheese                       0.57            0.00          1.16  2.36
## other vegetables                  2.83            1.14          1.74  2.95
## rolls/buns                        2.26            0.57          1.16  1.77
## softener                          2.92            0.00          1.20  3.04
## cleaner                           3.02            1.22          0.62  0.63
## spices                            1.21            0.61          1.24  0.63
## jam                               2.46            2.49          0.00  2.56
## sauces                            0.61            0.62          1.27  1.92
## rum                               0.64            0.65          0.00  1.33
## liver loaf                        2.02            2.73          0.00  2.11
## male cosmetics                    1.43            0.00          0.00  0.00
## meat spreads                      1.46            2.22          0.75  0.76
## packaged herbs/vegetables         0.00            0.74          1.50  1.52
## brandy                            0.00            3.02          1.53  0.78
## ketchup                           1.52            3.09          0.00  0.79
## abrasive cleaner                  0.00            1.58          0.00  2.44
## light bulbs                       1.59            0.81          1.64  3.32
## artif. sweetener                  0.00            0.00          1.76  0.89
## nuts/prunes                       2.56            0.00          1.76  0.00
## specialty fat                     0.88            0.00          2.70  0.91
## skin care                         3.69            2.80          0.95  2.88
## fish                              0.95            0.00          0.00  0.00
## potato products                   4.01            1.01          1.03  5.22
## root vegetables                   2.00            1.01          1.03  2.09
## snack products                    1.03            0.00          2.12  1.07
## nut snack                         1.06            0.00          2.19  0.00
## soap                              2.12            0.00          0.00  0.00
## syrup                             2.12            1.08          3.28  2.21
## bathroom cleaner                  0.00            1.11          2.25  0.00
## canned fruit                      2.19            6.65          1.13  0.00
## cookware                          2.42            1.22          2.49  2.52
## cooking chocolate                 2.70            1.37          0.00  0.00
## tidbits                           0.00            1.37          1.39  0.00
## cocoa drinks                      0.00            0.00          0.00  0.00
## pudding powder                    2.92            0.00          3.01  3.04
## ready soups                       7.30            1.48          1.50  1.52
## organic marinated meat            0.00            0.00          0.00  1.66
## flower soil/fertilizer            0.00            1.69          0.00  0.00
## organic products                  1.67            5.07          0.00  0.00
## pot plants                        3.34            0.00          1.72  1.74
## prosecco                          0.00            1.69          3.43  0.00
## frankfurter                       5.26            0.00          0.00  3.65
## decalcifier                       0.00            0.00          0.00  5.77
## honey                             0.00            0.00          0.00  6.09
## specialty vegetables              0.00            2.09          0.00  4.30
## cream                             0.00            2.37          4.81  0.00
## hair spray                        2.50            0.00          0.00  5.22
## frozen fruits                     2.92            0.00          3.01  0.00
## rubbing alcohol                   0.00            0.00          0.00  0.00
## liqueur                           3.19            9.68          0.00  0.00
## make up remover                   0.00            0.00          0.00  0.00
## salad dressing                    0.00            0.00          0.00  0.00
## frozen chicken                    4.38            0.00          0.00  0.00
## whisky                            0.00            0.00          0.00  0.00
## baby cosmetics                    0.00            0.00          5.15 10.44
## toilet cleaner                    0.00            5.07          0.00  0.00
## bags                              0.00            0.00          0.00  0.00
## canned herbs                      0.00           17.75          0.00  0.00
## kitchen utensil                   0.00            0.00          0.00  0.00
## preservation products             0.00            0.00          0.00  0.00
## baby food                         0.00            0.00          0.00  0.00
## frozen herbss                     0.00            0.00          0.00  0.00
## organic sausage                   0.00            0.00          0.00  0.00
## sound storage medium              0.00            0.00          0.00 36.53
##                           beverages meat ice cream sliced cheese hard cheese
## rice                           1.06 1.50      0.90          1.66        1.61
## veggies                        0.99 1.94      1.01          1.85        2.00
## loaf                           1.08 1.41      0.70          1.64        1.31
## coke                           1.01 1.18      1.35          1.15        0.95
## yogurt                         1.47 1.32      1.03          2.39        1.80
## vegetables                     1.10 1.85      1.00          1.88        2.20
## mineral water                  1.01 1.04      0.92          1.38        1.32
## Plastic bags                   1.19 1.21      1.21          1.78        1.36
## tropical fruit                 1.50 1.20      1.49          1.99        1.59
## marinated meat                 1.07 2.12      0.83          2.95        2.26
## pies/pasties                   1.36 1.07      0.92          1.63        1.29
## newspapers                     1.21 1.49      1.44          1.48        1.22
## citrus                         0.95 1.57      0.76          1.65        1.56
## whipped/sour cream             1.28 1.87      1.43          2.20        2.59
## heinken                        0.65 1.00      0.88          0.85        0.88
## green tea                      0.24 0.64      0.55          0.83        0.38
## pip fruit                      1.38 1.37      1.24          2.18        1.65
## brown bread                    1.18 2.04      0.97          1.70        1.31
## fruit/vegetable juice          1.45 1.59      1.14          2.28        2.36
## domestic eggs                  0.89 1.81      0.87          2.07        2.73
## coffee                         0.69 1.42      1.28          1.83        1.24
## margarine                      0.68 1.44      0.65          2.12        1.32
## beef                           0.69 1.34      1.20          1.84        1.14
## curd                           1.15 1.47      1.03          2.41        1.67
## butter                         0.83 2.25      1.31          2.62        3.18
## marinated meats                0.89 2.08      0.80          1.57        1.55
## napkins                        0.90 1.77      1.27          2.20        2.70
## halal meat                     1.04 1.79      0.88          1.95        1.59
## chocolate                      1.35 0.97      0.92          1.38        1.66
## frozen vegetables              1.37 1.54      1.51          1.76        2.13
## chicken                        1.25 1.81      1.31          1.27        1.23
## white bread                    1.34 1.77      1.32          2.20        1.93
## cream cheese                   1.55 1.75      0.94          2.36        2.00
## waffles                        1.65 1.07      0.82          1.31        1.64
## dessert                        1.23 1.35      1.39          2.27        1.28
## salty snack                    0.44 1.17      2.31          1.14        1.57
## long life bakery product       1.45 1.94      1.70          1.75        2.01
## berries                        1.36 1.85      0.95          1.75        1.71
## hamburger meat                 0.93 1.99      0.87          1.59        2.58
## sugar                          1.04 1.16      1.38          1.52        1.99
## hygiene articles               0.57 0.58      1.50          1.33        2.01
## UHT-milk                       1.09 1.42      0.83          1.17        1.44
## onions                         1.11 1.75      1.37          2.27        2.92
## candy                          0.78 0.80      1.06          0.96        2.75
## specialty chocolate            1.12 1.15      1.77          1.33        1.88
## butter milk                    1.94 0.93      1.31          3.55        1.90
## oil                            0.80 1.99      1.20          1.97        1.53
## frozen meals                   1.38 2.00      1.69          2.71        2.43
## misc. beverages                1.28 0.83      1.22          1.00        2.20
## specialty bar                  1.66 1.09      1.12          1.27        0.92
## ham                            1.08 1.10      1.51          3.99        3.87
## beverages                        NA 1.23      0.38          1.68        2.28
## meat                           1.23   NA      1.81          2.25        2.33
## ice cream                      0.38 1.81        NA          2.04        0.98
## sliced cheese                  1.68 2.25      2.04            NA        3.31
## hard cheese                    2.28 2.33      0.98          3.31          NA
## noodles                        1.84 1.74      1.04          2.28        1.42
## grapes                         0.99 0.87      2.53          1.83        1.90
## cat food                       0.59 1.82      1.09          1.91        1.82
## chewing gum                    1.10 0.48      1.48          1.34        0.70
## soda                           1.76 1.15      1.01          1.55        1.07
## detergent                      0.99 2.03      1.56          1.42        1.28
## red/blush wine                 0.51 0.17      1.07          1.27        0.19
## white wine                     0.17 0.88      0.00          0.37        0.38
## turkey                         1.65 1.88      1.16          0.79        2.66
## dishes                         0.93 1.71      1.17          1.40        1.03
## bottled water                  1.68 1.72      0.59          1.40        1.45
## flour                          2.05 2.10      0.78          0.80        1.66
## semi-finished bread            0.38 2.11      0.98          1.81        1.67
## baking powder                  0.38 1.55      1.39          2.04        2.95
## pickled vegetables             0.77 2.74      1.41          2.06        1.71
## herbs                          0.78 1.99      1.63          2.30        2.17
## tropical herbs                 0.39 1.39      1.63          1.88        1.95
## soft cheese                    1.40 2.66      1.26          4.72        4.45
## tea                            1.20 1.43      0.84          1.72        1.33
## processed cheese               1.63 1.05      0.86          1.97        2.05
## sausage                        1.69 1.73      1.55          2.72        2.35
## pasta                          1.28 0.88      0.90          1.38        3.81
## citrus herbs                   1.51 1.98      0.23          1.15        0.96
## potted plants                  1.29 0.88      0.90          1.62        0.96
## canned fish                    0.46 2.10      1.92          1.47        1.78
## seasonal products              0.24 2.48      1.01          1.04        2.42
## cake bar                       2.00 1.54      1.05          0.54        1.11
## carrots                        1.56 2.14      1.09          2.24        2.90
## mustard                        1.11 1.13      0.87          3.27        2.46
## packaged fruit/vegetables      1.15 1.18      1.20          1.85        1.28
## spread cheese                  0.29 0.59      1.51          1.23        2.56
## frozen dessert                 1.16 1.19      2.43          3.11        4.19
## frozen fish                    0.87 1.48      1.52          4.04        1.61
## cling film/bags                0.88 1.49      2.45          1.25        1.95
## salt                           1.17 0.90      1.22          2.51        1.95
## liquor                         0.31 0.96      0.98          0.33        0.35
## canned vegetables              0.31 0.32      0.33          3.38        4.20
## bottled beer                   1.27 1.62      0.66          0.34        1.06
## flower (seeds)                 1.90 0.65      1.00          1.36        0.71
## cooking oil                    0.32 0.33      0.34          0.69        0.00
## dish cleaner                   1.28 1.96      2.35          0.69        2.49
## condensed milk                 0.00 0.67      1.36          1.05        1.09
## roll products                  0.67 2.42      0.71          2.17        1.50
## photo/film                     0.68 1.05      0.36          0.73        0.38
## pet care                       0.69 1.06      0.00          1.48        2.30
## chocolate marshmallow          2.16 0.74      2.64          1.55        0.80
## herbs/vegetable juice          1.46 0.37      2.29          3.13        2.43
## whole milk                     0.74 1.51      1.54          3.55        0.82
## candles                        0.74 1.90      1.56          0.00        2.48
## mayonnaise                     1.14 1.55      1.19          3.66        2.95
## Instant food products          1.96 2.40      2.46          2.10        1.74
## sweet spreads                  3.13 1.20      1.64          2.52        2.61
## liquor (appetizer)             1.58 0.81      0.41          0.42        0.88
## specialty cheese               0.79 1.62      1.66          3.82        3.52
## frozen potato products         0.40 0.82      2.51          2.15        0.44
## house keeping products         1.20 1.64      1.68          3.00        2.22
## dog food                       0.40 0.41      0.00          2.17        4.05
## soy                            0.82 0.84      1.71          3.07        1.82
## instant coffee                 0.00 1.36      0.00          0.95        0.99
## pip herbs                      1.33 0.91      0.93          2.85        2.96
## zwieback                       0.46 0.00      0.00          2.47        1.53
## finished products              1.43 0.98      1.00          1.03        1.59
## popcorn                        1.43 0.49      1.00          1.03        3.19
## vinegar                        0.48 0.98      0.00          0.00        0.53
## soups                          1.49 1.02      1.04          1.60        1.11
## female sanitary products       0.00 1.66      0.57          2.32        2.41
## sparkling wine                 1.65 0.56      0.58          0.00        3.67
## dental care                    1.72 1.18      1.81          2.47        2.56
## cereals                        1.75 0.00      0.61          2.51        4.55
## kitchen towels                 1.75 2.99      3.06          3.13        1.95
## curd cheese                    0.00 0.00      1.86          2.55        3.30
## other vegetables               2.37 0.61      1.24          0.64        1.98
## rolls/buns                     0.00 1.82      0.00          0.64        0.66
## softener                       0.00 0.00      0.00          0.66        2.05
## cleaner                        1.27 0.65      0.66          2.04        3.53
## spices                         1.90 2.60      1.33          2.04        2.12
## jam                            0.65 1.98      1.35          3.46        0.00
## sauces                         1.94 1.32      1.35          2.08        5.03
## rum                            0.00 0.68      0.70          4.31        0.74
## liver loaf                     1.41 0.00      0.74          2.28        1.57
## male cosmetics                 0.75 2.30      0.79          0.81        0.84
## meat spreads                   0.00 3.14      0.00          1.65        0.85
## packaged herbs/vegetables      2.30 1.57      2.41          3.29        2.56
## brandy                         1.56 0.80      0.82          0.84        0.87
## ketchup                        0.00 1.64      0.00          2.58        2.67
## abrasive cleaner               1.63 2.51      1.71          0.88        1.82
## light bulbs                    0.84 0.86      0.88          1.79        0.93
## artif. sweetener               0.00 2.75      0.00          2.89        1.00
## nuts/prunes                    0.00 0.92      1.88          3.85        2.99
## specialty fat                  0.92 0.94      0.96          0.99        7.16
## skin care                      0.97 1.98      1.01          0.00        3.23
## fish                           0.00 1.02      1.04          0.00        0.00
## potato products                1.05 3.23      0.00          0.00        1.17
## root vegetables                1.05 0.00      1.10          0.00        1.17
## snack products                 2.16 0.00      0.00          0.00        1.20
## nut snack                      1.11 2.28      3.50          3.59        4.96
## soap                           0.00 0.00      0.00          1.20        4.96
## syrup                          0.00 3.42      3.50          3.59        2.48
## bathroom cleaner               0.00 0.00      0.00          2.47        0.00
## canned fruit                   1.15 1.18      1.20          2.47        3.84
## cookware                       5.07 2.60      0.00          0.00        2.82
## cooking chocolate              0.00 2.89      0.00          1.52        3.15
## tidbits                        1.41 1.45      2.96          1.52        0.00
## cocoa drinks                   0.00 1.51      1.54          0.00        1.64
## pudding powder                 1.53 1.57      4.82          3.29        0.00
## ready soups                    0.00 1.57      1.61          1.65        1.71
## organic marinated meat         0.00 3.42      0.00          3.59        1.86
## flower soil/fertilizer         0.00 0.00      0.00          0.00        1.95
## organic products               1.75 0.00      0.00          1.88        5.85
## pot plants                     1.75 5.38      1.84          0.00        0.00
## prosecco                       0.00 0.00      3.67          0.00        0.00
## frankfurter                    0.00 1.88      0.00          0.00        2.05
## decalcifier                    1.94 0.00      2.03          0.00        0.00
## honey                          0.00 2.09      0.00          0.00        2.27
## specialty vegetables           0.00 2.21      0.00          6.97        0.00
## cream                          0.00 0.00      2.57          7.90        8.19
## hair spray                     0.00 0.00      0.00          5.64        0.00
## frozen fruits                  0.00 3.14      3.21          0.00        3.41
## rubbing alcohol                0.00 6.27      3.21          0.00        0.00
## liqueur                        6.69 0.00      3.50          0.00        0.00
## make up remover                4.09 0.00      0.00          0.00        0.00
## salad dressing                 0.00 4.18      0.00          0.00        4.55
## frozen chicken                 0.00 4.70      0.00          4.94        0.00
## whisky                         0.00 4.70      0.00          0.00        0.00
## baby cosmetics                 0.00 0.00      0.00         11.28        0.00
## toilet cleaner                 0.00 0.00      5.51          5.64        5.85
## bags                           0.00 0.00      0.00          0.00        0.00
## canned herbs                   0.00 0.00      0.00          0.00       10.23
## kitchen utensil                0.00 9.41      0.00          0.00        0.00
## preservation products          0.00 0.00     19.27          0.00        0.00
## baby food                      0.00 0.00      0.00          0.00        0.00
## frozen herbss                  0.00 0.00      0.00          0.00        0.00
## organic sausage                0.00 0.00      0.00         39.49        0.00
## sound storage medium           0.00 0.00      0.00          0.00        0.00
##                           noodles grapes cat food chewing gum  soda detergent
## rice                         1.38   1.23     1.45        0.88  1.00      1.84
## veggies                      0.00   2.03     1.52        1.13  0.00      1.66
## loaf                         0.00   1.13     0.97        1.00  0.00      0.83
## coke                         0.00   1.01     1.19        1.47  0.00      1.00
## yogurt                       1.04   1.49     1.81        0.76  1.18      1.34
## vegetables                   2.12   1.69     1.70        0.80  1.68      1.89
## mineral water                0.00   1.71     1.83        1.19  0.00      1.06
## Plastic bags                 0.79   1.12     1.96        1.49  1.44      1.34
## tropical fruit               0.00   2.52     2.06        1.16  0.00      1.61
## marinated meat               0.00   1.45     1.71        1.24  0.00      1.36
## pies/pasties                 0.00   1.79     1.63        0.88  0.48      1.26
## newspapers                   1.62   1.10     1.44        0.95  1.07      1.33
## citrus                       0.00   2.02     2.00        1.06  0.00      1.42
## whipped/sour cream           1.23   1.99     1.63        1.18  1.03      1.43
## heinken                      0.00   0.66     0.97        0.66  0.00      0.83
## green tea                    0.00   0.62     0.47        0.94  0.00      0.59
## pip fruit                    0.00   2.15     1.46        1.41  0.00      1.69
## brown bread                  0.90   1.45     1.45        0.27  0.88      0.98
## fruit/vegetable juice        0.00   1.95     1.46        1.34  0.00      0.92
## domestic eggs                1.10   1.47     1.80        0.68  1.18      1.14
## coffee                       1.37   1.38     2.03        0.97  1.13      1.38
## margarine                    1.39   1.13     2.08        0.73  0.67      1.93
## beef                         2.28   2.29     2.67        0.67  1.14      1.72
## curd                         1.82   1.49     1.91        1.19  0.92      1.89
## butter                       1.19   1.89     1.83        0.70  0.63      1.87
## marinated meats              0.00   1.57     0.70        1.48  0.00      1.73
## napkins                      1.05   1.81     2.83        1.99  1.36      1.92
## halal meat                   0.00   1.68     1.91        0.93  0.00      1.51
## chocolate                    0.79   1.99     2.66        1.05  1.25      0.92
## frozen vegetables            0.96   1.77     1.18        1.16  0.73      2.72
## chicken                      1.38   1.74     0.91        0.96  1.17      1.41
## white bread                  0.46   1.21     1.36        1.33  1.15      1.83
## cream cheese                 1.05   1.34     1.70        1.48  0.97      1.34
## waffles                      0.71   1.84     1.82        0.90  1.61      1.19
## dessert                      1.03   1.56     2.06        0.92  1.64      1.33
## salty snack                  0.83   1.87     1.30        2.17  0.82      1.57
## long life bakery product     1.17   1.70     0.78        0.82  0.48      1.73
## berries                      1.38   3.09     1.89        0.47  1.68      2.48
## hamburger meat               1.52   1.75     2.05        0.84  1.60      1.77
## sugar                        1.33   1.11     1.97        1.47  1.63      0.90
## hygiene articles             2.01   1.23     2.69        1.61  1.01      2.08
## UHT-milk                     1.05   1.52     1.96        0.77  1.58      0.82
## onions                       1.65   1.66     1.49        1.05  1.34      1.52
## candy                        1.05   1.72     1.10        0.58  1.19      0.77
## specialty chocolate          0.40   1.06     1.80        1.61  0.60      1.69
## butter milk                  1.60   1.34     0.84        0.74  0.91      1.25
## oil                          1.21   2.29     2.11        1.19  1.22      3.45
## frozen meals                 0.54   1.76     1.70        0.60  0.91      1.73
## misc. beverages              1.23   2.06     1.57        1.66  1.54      1.59
## specialty bar                1.39   2.09     1.74        1.53  1.41      1.78
## ham                          2.11   2.12     2.21        1.40  1.91      1.31
## beverages                    1.84   0.99     0.59        1.10  1.76      0.99
## meat                         1.74   0.87     1.82        0.48  1.15      2.03
## ice cream                    1.04   2.53     1.09        1.48  1.01      1.56
## sliced cheese                2.28   1.83     1.91        1.34  1.55      1.42
## hard cheese                  1.42   1.90     1.82        0.70  1.07      1.28
## noodles                        NA   1.50     0.70        0.92 10.88      1.55
## grapes                       1.50     NA     1.57        1.47  1.51      2.52
## cat food                     0.70   1.57       NA        1.15  0.59      2.03
## chewing gum                  0.92   1.47     1.15          NA  1.66      0.86
## soda                        10.88   1.51     0.59        1.66    NA      0.66
## detergent                    1.55   2.52     2.03        0.86  0.66        NA
## red/blush wine               1.19   1.80     0.42        0.22  0.90      0.23
## white wine                   0.40   2.02     1.90        1.12  0.46      1.65
## turkey                       4.53   3.68     2.26        0.72  5.36      1.26
## dishes                       0.87   2.19     2.74        2.65  1.48      2.03
## bottled water                9.63   1.54     1.15        0.97  9.65      0.00
## flour                        0.66   1.54     2.98        1.21  0.99      1.02
## semi-finished bread          1.32   1.77     2.54        1.22  0.75      2.05
## baking powder                1.33   2.90     2.10        2.21  0.25      2.33
## pickled vegetables           0.67   2.03     2.12        0.99  0.76      2.88
## herbs                        0.68   1.15     1.67        1.26  0.52      0.80
## tropical herbs               7.53   1.37     0.72        0.76  8.26      0.80
## soft cheese                  0.94   2.35     3.20        1.04  0.27      2.46
## tea                         11.96   1.41     0.74        0.78  6.89      1.37
## processed cheese             0.96   1.92     1.76        0.80  0.81      2.51
## sausage                     11.65   1.49     0.52        1.10 12.05      0.87
## pasta                        1.00   1.26     2.63        1.39  0.85      3.80
## citrus herbs                10.09   1.52     0.79        0.56  5.13      2.06
## potted plants                0.00   3.29     1.32        0.84  0.00      3.24
## canned fish                  1.07   0.54     2.25        0.89  0.61      1.25
## seasonal products            0.85   2.28     1.19        1.57  0.96      2.98
## cake bar                     0.88   1.18     1.85        1.30  2.65      2.74
## carrots                     12.85   2.46     0.96        0.34  6.57      3.21
## mustard                      1.62   2.28     2.72        1.44  0.37      1.13
## packaged fruit/vegetables    0.00   1.69     2.12        0.75  0.00      1.57
## spread cheese                2.02   1.01     1.06        0.37  1.90      0.00
## frozen dessert               1.70   3.07     1.07        1.13  1.15      1.58
## frozen fish                  1.02   1.36     1.42        1.50  0.77      1.58
## cling film/bags              0.68   2.75     1.79        1.52  1.55      1.20
## salt                         0.68   1.03     1.44        1.52  0.77      1.20
## liquor                       0.00   1.10     0.77        0.81  0.41      0.43
## canned vegetables            0.74   0.37     1.16        0.41  1.25      0.00
## bottled beer                 8.18   1.12     0.00        1.65  7.99      0.43
## flower (seeds)               1.12   0.75     0.78        1.23  1.26      3.03
## cooking oil                  8.63   0.75     0.39        0.41  7.21      0.44
## dish cleaner                 0.75   2.26     4.72        0.00  0.85      3.50
## condensed milk               0.38   0.38     1.60        0.00  0.43      1.34
## roll products                1.19   1.19     3.32        0.88  0.00      2.77
## photo/film                   1.20   1.60     0.00        1.77  1.81      2.33
## pet care                     0.40   1.21     5.49        0.00  0.91      1.41
## chocolate marshmallow        0.85   0.42     0.00        3.28  0.48      1.97
## herbs/vegetable juice        8.11   2.14     0.45        0.95 10.62      0.00
## whole milk                   0.00   1.73     0.90        1.91  4.39      1.01
## candles                      1.31   1.75     0.91        0.96  0.49      3.56
## mayonnaise                   0.44   2.68     2.33        0.98  2.01      1.04
## Instant food products        1.84   1.38     0.00        1.02  1.56      2.68
## sweet spreads                0.92   0.46     2.41        2.54  0.00      2.14
## liquor (appetizer)           0.93   1.40     0.49        2.57  1.05      2.16
## specialty cheese             0.00   0.93     2.92        2.05  1.57      1.62
## frozen potato products       0.94   2.82     2.46        1.56  2.12      2.19
## house keeping products       1.41   0.94     1.47        0.00  0.00      6.01
## dog food                     0.47   2.86     0.50        0.52  0.00      2.21
## soy                         12.46   2.89     0.50        0.53  9.75      1.68
## instant coffee               0.52   0.00     0.54        1.15  1.17      0.61
## pip herbs                    6.76   1.04     0.00        0.00  7.05      0.61
## zwieback                     1.62   2.71     1.13        0.60  1.83      0.63
## finished products            1.12   2.25     1.17        0.62  0.63      0.65
## popcorn                      0.00   1.69     2.35        1.86  0.00      1.96
## vinegar                      1.12   1.12     3.52        0.00  0.63      4.57
## soups                        0.58   2.34     2.44        1.29  1.98      3.40
## female sanitary products     1.27   3.18     5.99        1.40  2.87      0.74
## sparkling wine               1.29   0.65     1.35        1.42  0.73      0.00
## dental care                  1.35   1.35     2.12        0.00  0.00      0.79
## cereals                      0.68   0.00     3.59        0.76  1.55      1.60
## kitchen towels               0.68   2.06     5.74        3.79  1.55      1.60
## curd cheese                  2.09   0.00     8.02        0.77  0.00      1.62
## other vegetables             0.00   2.10     2.19        1.54  7.86      1.62
## rolls/buns                   0.00   0.70     0.00        0.77  5.51      0.81
## softener                     0.00   0.72     2.26        1.59  2.44      9.22
## cleaner                      0.74   2.24     2.34        1.65  0.00      6.07
## spices                       3.72   1.49     2.34        0.00  0.00      0.87
## jam                          0.00   3.04     1.59        0.84  0.86      0.88
## sauces                       0.00   0.76     2.38        0.00  0.00      0.00
## rum                          1.57   2.36     0.00        1.74  0.89      0.00
## liver loaf                   0.83   1.67     0.00        0.00  0.00      1.93
## male cosmetics               0.00   0.00     0.00        2.92  0.00      0.00
## meat spreads                 0.90   1.80     0.94        3.98  2.03      0.00
## packaged herbs/vegetables   11.68   0.00     2.83        0.99  9.14      2.10
## brandy                       1.84   1.84     0.00        1.02  0.00      3.21
## ketchup                      0.00   0.94     0.00        1.04  1.06      3.28
## abrasive cleaner             2.88   0.96     3.01        1.06  2.17      1.12
## light bulbs                  0.00   1.97     0.00        2.17  0.00      1.14
## artif. sweetener             1.05   0.00     2.21        0.00  3.57      2.45
## nuts/prunes                  1.05   2.11     1.10        0.00  4.76      0.00
## specialty fat                0.00   1.08     3.39        0.00  0.00      0.00
## skin care                    2.27   1.14     0.00        0.00  0.00      1.32
## fish                         0.00   1.17     1.22        0.00  1.32      2.72
## potato products              2.46   4.95     3.88        0.00  0.00      1.44
## root vegetables              0.00   1.24     1.29        0.00  6.97      0.00
## snack products               3.81   2.55     0.00        0.00  2.87      2.96
## nut snack                    0.00   1.31     5.48        0.00  0.00      1.52
## soap                         1.31   0.00     0.00        0.00  1.48      4.57
## syrup                        0.00   2.62     1.37        1.45  0.00      1.52
## bathroom cleaner             4.04   4.06     1.41        1.49  3.05      0.00
## canned fruit                 0.00   2.71     0.00        0.00  0.00      1.57
## cookware                     1.49   0.00     0.00        0.00  0.00      0.00
## cooking chocolate            0.00   0.00     1.74        0.00  0.00      0.00
## tidbits                      0.00   0.00     0.00        0.00  0.00      1.93
## cocoa drinks                 0.00   1.73     0.00        0.00  0.00      0.00
## pudding powder               0.00   5.41     0.00        0.00  0.00      2.10
## ready soups                  3.59   5.41     1.88        0.00  2.03      0.00
## organic marinated meat       0.00   1.97     2.06        4.34  0.00      2.29
## flower soil/fertilizer       0.00   0.00     2.15        0.00  0.00      4.79
## organic products             4.11   4.12     6.46        2.27  2.32      0.00
## pot plants                  10.27   6.19     0.00        2.27  2.32      2.39
## prosecco                     0.00   0.00     0.00        0.00  2.32      0.00
## frankfurter                  0.00   2.17     4.52        0.00  7.31      2.51
## decalcifier                  2.27   2.28     2.38        5.02  0.00      7.94
## honey                        0.00   2.41     0.00        2.65  2.71     11.18
## specialty vegetables         0.00   5.09     5.32        0.00  0.00      0.00
## cream                        2.88   5.77     6.03        0.00  0.00      0.00
## hair spray                   0.00   3.09     3.23        0.00  0.00      0.00
## frozen fruits                0.00   0.00     0.00        0.00  0.00      4.19
## rubbing alcohol              0.00   3.61     0.00        0.00  0.00      0.00
## liqueur                      3.92   3.94     0.00        0.00  4.43      0.00
## make up remover              0.00   0.00     0.00        0.00  5.42      5.59
## salad dressing               0.00   0.00     0.00        0.00  0.00      0.00
## frozen chicken               5.39   0.00     0.00        0.00 12.19      0.00
## whisky                       0.00   0.00     5.65        5.97  0.00      0.00
## baby cosmetics               0.00   0.00     0.00        0.00  0.00      0.00
## toilet cleaner               0.00   6.19     0.00        0.00  0.00      0.00
## bags                         0.00   0.00     0.00        0.00  0.00      0.00
## canned herbs                10.78  10.83     0.00        0.00 24.38      0.00
## kitchen utensil              0.00  10.83    11.31        0.00  0.00     12.57
## preservation products        0.00  21.65     0.00        0.00  0.00      0.00
## baby food                    0.00   0.00     0.00        0.00  0.00      0.00
## frozen herbss                0.00   0.00     0.00        0.00  0.00      0.00
## organic sausage              0.00   0.00     0.00        0.00  0.00      0.00
## sound storage medium         0.00   0.00    45.22        0.00  0.00      0.00
##                           red/blush wine white wine turkey dishes bottled water
## rice                                0.93       0.56   1.62   1.22          0.95
## veggies                             1.33       0.61   1.15   1.76          0.00
## loaf                                1.11       0.75   0.59   1.00          0.00
## coke                                1.36       1.10   0.39   0.69          0.00
## yogurt                              0.82       0.87   1.43   1.55          1.70
## vegetables                          1.27       0.92   2.58   1.43          1.88
## mineral water                       1.52       1.88   0.83   1.09          0.00
## Plastic bags                        1.38       1.88   0.93   0.99          0.68
## tropical fruit                      1.25       0.61   1.41   1.04          0.00
## marinated meat                      1.34       1.36   0.67   0.80          0.00
## pies/pasties                        1.18       0.57   1.40   1.11          0.25
## newspapers                          1.48       1.10   0.93   0.87          1.57
## citrus                              1.27       0.77   1.17   1.46          0.00
## whipped/sour cream                  0.70       0.39   2.22   1.40          1.20
## heinken                             3.13       1.46   0.42   1.00          0.00
## green tea                           1.69       1.17   0.15   0.30          0.00
## pip fruit                           1.04       0.92   1.21   0.76          0.00
## brown bread                         1.22       1.02   1.87   0.87          1.03
## fruit/vegetable juice               1.31       1.18   1.18   1.04          0.00
## domestic eggs                       1.10       1.04   1.43   1.61          1.13
## coffee                              1.94       0.61   1.22   1.39          1.24
## margarine                           1.19       0.48   1.55   1.04          1.31
## beef                                1.04       1.14   2.70   1.67          1.41
## curd                                0.24       0.25   2.11   0.80          1.87
## butter                              0.75       0.93   1.91   1.65          1.66
## marinated meats                     0.71       0.54   0.77   0.88          0.00
## napkins                             1.35       1.09   1.27   2.76          1.58
## halal meat                          0.55       0.65   0.30   1.70          0.00
## chocolate                           1.52       1.06   1.55   1.04          0.63
## frozen vegetables                   1.25       0.98   2.09   1.05          1.27
## chicken                             1.76       1.37   2.02   1.25          0.91
## white bread                         0.77       0.79   1.92   0.61          1.58
## cream cheese                        0.57       0.46   1.49   2.14          1.77
## waffles                             1.47       0.25   1.33   1.87          0.81
## dessert                             0.99       1.01   0.94   1.49          1.50
## salty snack                         1.24       1.01   0.81   0.95          0.96
## long life bakery product            1.52       1.16   1.24   0.70          0.98
## berries                             1.53       0.90   1.66   0.84          1.82
## hamburger meat                      0.91       1.06   1.41   1.43          1.86
## sugar                               0.66       0.81   1.73   1.74          0.88
## hygiene articles                    0.80       0.81   1.74   0.44          2.06
## UHT-milk                            0.84       0.42   1.67   1.07          2.15
## onions                              1.13       1.15   2.46   2.33          1.72
## candy                               1.42       0.48   1.20   0.69          1.56
## specialty chocolate                 1.26       0.80   1.37   0.87          0.00
## butter milk                         0.32       0.16   2.08   0.35          1.76
## oil                                 0.81       1.31   2.45   2.12          1.06
## frozen meals                        1.62       0.33   1.58   0.35          1.25
## misc. beverages                     1.14       1.00   0.89   0.90          1.98
## specialty bar                       0.66       0.34   1.08   1.27          0.92
## ham                                 1.35       1.19   1.64   0.92          0.93
## beverages                           0.51       0.17   1.65   0.93          1.68
## meat                                0.17       0.88   1.88   1.71          1.72
## ice cream                           1.07       0.00   1.16   1.17          0.59
## sliced cheese                       1.27       0.37   0.79   1.40          1.40
## hard cheese                         0.19       0.38   2.66   1.03          1.45
## noodles                             1.19       0.40   4.53   0.87          9.63
## grapes                              1.80       2.02   3.68   2.19          1.54
## cat food                            0.42       1.90   2.26   2.74          1.15
## chewing gum                         0.22       1.12   0.72   2.65          0.97
## soda                                0.90       0.46   5.36   1.48          9.65
## detergent                           0.23       1.65   1.26   2.03          0.00
## red/blush wine                        NA       2.17   1.03   1.31          1.84
## white wine                          2.17         NA   0.52   1.06          1.06
## turkey                              1.03       0.52     NA   2.55          4.84
## dishes                              1.31       1.06   2.55     NA          1.44
## bottled water                       1.84       1.06   4.84   1.44            NA
## flour                               1.31       0.53   2.85   1.73          1.44
## semi-finished bread                 0.53       1.07   4.01   0.29          0.87
## baking powder                       0.53       1.08   3.47   1.17          0.59
## pickled vegetables                  0.54       0.55   1.75   0.89          0.59
## herbs                               0.82       0.83   2.97   0.60          1.81
## tropical herbs                      1.37       0.55   3.56   1.20         10.84
## soft cheese                         0.56       0.57   1.52   0.92          0.62
## tea                                 0.28       0.85   3.66   1.23          4.33
## processed cheese                    2.30       0.29   1.87   0.31          0.32
## sausage                             1.49       0.30   3.54   1.95          7.20
## pasta                               0.30       0.61   0.65   1.98          1.32
## citrus herbs                        0.91       0.61   6.56   1.66          8.66
## potted plants                       0.60       0.31   1.31   0.33          0.00
## canned fish                         1.61       0.65   0.35   1.06          0.71
## seasonal products                   0.68       0.34   0.37   1.12          0.37
## cake bar                            0.00       0.00   1.14   0.77          0.77
## carrots                             1.10       0.74   7.56   1.61          8.88
## mustard                             0.78       0.39   2.11   2.13          1.71
## packaged fruit/vegetables           1.21       0.41   1.31   0.44          0.00
## spread cheese                       2.02       2.46   0.44   0.00          1.78
## frozen dessert                      0.00       0.41   2.21   1.34          2.24
## frozen fish                         2.03       1.24   0.88   0.89          0.45
## cling film/bags                     0.41       0.42   0.00   1.35          1.81
## salt                                0.41       1.25   1.34   0.00          2.71
## liquor                              9.64       0.44   0.00   3.36          0.00
## canned vegetables                   1.33       0.90   2.40   0.97          0.49
## bottled beer                        2.23       1.81   6.28   0.98         10.80
## flower (seeds)                      0.45       2.26   0.48   1.46          0.49
## cooking oil                         0.90       1.82   3.41   0.99          5.94
## dish cleaner                        0.90       1.37   0.98   2.96          0.99
## condensed milk                      0.91       0.93   0.50   2.01          1.01
## roll products                       0.47       1.44   1.03   1.56          1.04
## photo/film                          0.96       0.00   1.56   1.05          0.53
## pet care                            1.45       0.49   0.52   1.06          1.06
## chocolate marshmallow               1.52       0.00   2.20   0.56          1.67
## herbs/vegetable juice               0.51       2.59   5.00   1.12          9.58
## whole milk                          2.07       2.10   3.93   0.57          9.11
## candles                             0.52       2.12   1.13   2.86          0.58
## mayonnaise                          0.00       0.54   1.16   1.75          0.00
## Instant food products               1.65       0.00   2.39   1.81          1.21
## sweet spreads                       1.65       0.56   1.79   1.21          0.61
## liquor (appetizer)                  2.22       0.00   1.21   4.87          0.00
## specialty cheese                    0.56       1.13   2.41   1.22          1.22
## frozen potato products              1.69       1.14   3.66   0.00          0.62
## house keeping products              2.81       0.00   1.22   0.62          0.62
## dog food                            0.00       0.00   1.85   1.24          0.00
## soy                                 0.57       1.16   8.10   0.00         10.12
## instant coffee                      1.25       0.63   1.35   1.36          2.74
## pip herbs                           1.25       1.26   9.46   0.00         10.97
## zwieback                            1.29       0.00   0.70   5.66          1.42
## finished products                   0.00       2.72   0.73   0.00          0.74
## popcorn                             0.67       0.68   0.00   0.00          0.00
## vinegar                             1.34       0.68   2.18   1.47          1.48
## soups                               0.00       0.00   0.76   0.00          0.77
## female sanitary products            0.76       0.00   0.00   0.00          0.84
## sparkling wine                      3.09       0.78   0.84   2.54          1.70
## dental care                         1.62       0.82   0.88   0.89          1.78
## cereals                             0.00       0.00   2.67   0.00          0.90
## kitchen towels                      0.82       2.50   0.89   2.70          0.00
## curd cheese                         0.83       0.85   2.71   0.00          0.00
## other vegetables                    1.67       0.00   3.62   3.65          6.43
## rolls/buns                          1.67       0.00   3.62   0.91          8.26
## softener                            0.00       1.75   0.00   0.94          0.95
## cleaner                             0.00       0.90   0.00   0.98          0.00
## spices                              0.00       1.81   3.87   0.00          0.98
## jam                                 0.91       0.00   1.97   2.98          1.00
## sauces                              2.72       0.92   3.94   1.99          0.00
## rum                                 1.88       0.95   2.04   0.00          3.11
## liver loaf                          0.00       1.01   2.16   2.18          0.00
## male cosmetics                      0.00       2.14   0.00   0.00          3.49
## meat spreads                        0.00       0.00   0.00   0.00          1.19
## packaged herbs/vegetables           0.00       0.00   3.50   2.36         14.23
## brandy                              1.10       2.23   0.00   1.21          1.21
## ketchup                             0.00       1.14   1.22   2.46          0.00
## abrasive cleaner                    0.00       1.16   1.25   5.03          0.00
## light bulbs                         2.35       2.38   0.00   1.29          0.00
## artif. sweetener                    1.26       0.00   5.47   1.38          4.17
## nuts/prunes                         0.00       0.00   4.10   0.00          0.00
## specialty fat                       0.00       1.31   0.00   1.42          0.00
## skin care                           0.00       0.00   0.00   1.49          3.00
## fish                                4.19       4.25   1.52   1.53          0.00
## potato products                     0.00       0.00   1.60   0.00          3.25
## root vegetables                     1.48       1.50   6.41   0.00          6.51
## snack products                      1.52       0.00   0.00   1.67          0.00
## nut snack                           1.57       0.00   0.00   1.72          1.73
## soap                                0.00       0.00   3.40   1.72          1.73
## syrup                               1.57       0.00   0.00   0.00          0.00
## bathroom cleaner                    0.00       0.00   3.50   1.77          1.78
## canned fruit                        0.00       1.64   1.75   1.77          0.00
## cookware                            1.78       0.00   0.00   1.95          0.00
## cooking chocolate                   0.00       0.00   2.16   0.00          0.00
## tidbits                             1.99       2.02   4.31   0.00          0.00
## cocoa drinks                        2.07       0.00   4.49   0.00          0.00
## pudding powder                      0.00       0.00   2.34   0.00          0.00
## ready soups                         2.15       0.00  11.68   0.00          2.37
## organic marinated meat              2.35       0.00   2.55   2.57          0.00
## flower soil/fertilizer              0.00       2.50   0.00   2.70          0.00
## organic products                    0.00       0.00   8.01   0.00          2.71
## pot plants                          0.00       0.00  10.68   0.00          2.71
## prosecco                            4.92       9.98   2.67   2.70          0.00
## frankfurter                         0.00       0.00   8.41   0.00          8.54
## decalcifier                         0.00       2.76   0.00   2.98          3.00
## honey                               8.61       0.00   3.12   3.15          0.00
## specialty vegetables                0.00       3.08   0.00   0.00          0.00
## cream                               0.00       3.49   3.74   0.00          0.00
## hair spray                          3.69       0.00   0.00   0.00          0.00
## frozen fruits                       0.00       0.00   0.00   0.00          0.00
## rubbing alcohol                     8.61       0.00   4.67   0.00          4.74
## liqueur                             0.00       0.00   0.00   0.00          0.00
## make up remover                     0.00       0.00   0.00   0.00          6.33
## salad dressing                      0.00       0.00  12.46   0.00          0.00
## frozen chicken                      0.00       0.00   0.00   0.00          0.00
## whisky                              0.00       6.55   0.00   0.00          0.00
## baby cosmetics                      0.00       0.00   0.00   0.00          0.00
## toilet cleaner                      0.00       7.49   0.00   0.00          0.00
## bags                                0.00       0.00  11.21   0.00          0.00
## canned herbs                        0.00       0.00   0.00   0.00         14.23
## kitchen utensil                     0.00       0.00  14.02   0.00          0.00
## preservation products               0.00       0.00   0.00   0.00          0.00
## baby food                           0.00       0.00   0.00   0.00          0.00
## frozen herbss                       0.00       0.00   0.00   0.00          0.00
## organic sausage                     0.00       0.00   0.00   0.00          0.00
## sound storage medium                0.00       0.00   0.00   0.00          0.00
##                           flour semi-finished bread baking powder
## rice                       1.92                1.51          2.07
## veggies                    1.85                1.53          2.19
## loaf                       1.16                1.08          1.12
## coke                       0.93                1.33          0.78
## yogurt                     1.96                1.38          1.80
## vegetables                 2.27                1.23          1.86
## mineral water              1.41                1.32          1.49
## Plastic bags               0.94                1.79          0.90
## tropical fruit             1.77                2.33          2.07
## marinated meat             1.11                1.73          1.50
## pies/pasties               1.61                2.12          1.01
## newspapers                 1.13                1.83          1.15
## citrus                     2.24                1.69          2.41
## whipped/sour cream         3.46                1.84          3.80
## heinken                    0.93                1.16          0.66
## green tea                  0.75                0.60          0.61
## pip fruit                  1.76                2.08          1.94
## brown bread                1.27                1.43          1.13
## fruit/vegetable juice      1.92                1.93          1.79
## domestic eggs              2.83                1.46          2.95
## coffee                     1.98                1.16          1.17
## margarine                  3.49                2.28          3.01
## beef                       3.18                1.60          1.53
## curd                       3.56                2.15          1.99
## butter                     2.49                1.20          2.81
## marinated meats            1.86                1.97          1.40
## napkins                    1.68                1.39          2.01
## halal meat                 2.01                1.82          1.73
## chocolate                  2.09                1.47          2.02
## frozen vegetables          1.27                2.56          2.91
## chicken                    2.28                1.38          1.27
## white bread                1.71                1.72          2.10
## cream cheese               1.51                1.27          2.82
## waffles                    1.62                1.89          2.05
## dessert                    1.77                1.51          0.97
## salty snack                2.73                1.65          1.80
## long life bakery product   1.68                1.41          2.70
## berries                    1.54                1.55          1.85
## hamburger meat             2.01                1.44          2.04
## sugar                      8.03                1.32          5.48
## hygiene articles           2.65                1.78          0.90
## UHT-milk                   1.08                1.39          1.41
## onions                     1.87                1.88          1.27
## candy                      1.56                1.92          1.59
## specialty chocolate        1.22                1.57          1.06
## butter milk                1.76                1.24          1.61
## oil                        3.90                1.78          3.24
## frozen meals               0.53                2.15          1.08
## misc. beverages            2.16                1.09          1.28
## specialty bar              0.18                1.47          0.93
## ham                        0.93                2.98          2.07
## beverages                  2.05                0.38          0.38
## meat                       2.10                2.11          1.55
## ice cream                  0.78                0.98          1.39
## sliced cheese              0.80                1.81          2.04
## hard cheese                1.66                1.67          2.95
## noodles                    0.66                1.32          1.33
## grapes                     1.54                1.77          2.90
## cat food                   2.98                2.54          2.10
## chewing gum                1.21                1.22          2.21
## soda                       0.99                0.75          0.25
## detergent                  1.02                2.05          2.33
## red/blush wine             1.31                0.53          0.53
## white wine                 0.53                1.07          1.08
## turkey                     2.85                4.01          3.47
## dishes                     1.73                0.29          1.17
## bottled water              1.44                0.87          0.59
## flour                        NA                2.32          5.58
## semi-finished bread        2.32                  NA          2.95
## baking powder              5.58                2.95            NA
## pickled vegetables         2.37                2.09          1.81
## herbs                      3.01                1.51          1.84
## tropical herbs             2.71                2.42          2.75
## soft cheese                0.93                2.49          1.89
## tea                        0.93                1.24          1.89
## processed cheese           1.27                2.54          0.64
## sausage                    1.31                0.99          0.33
## pasta                      2.98                1.33          2.35
## citrus herbs               2.33                1.34          2.03
## potted plants              1.66                2.01          1.69
## canned fish                2.12                1.07          1.80
## seasonal products          1.50                3.39          3.42
## cake bar                   1.55                3.11          0.39
## carrots                    2.42                0.41          1.64
## mustard                    3.00                0.86          2.17
## packaged fruit/vegetables  2.22                0.45          1.35
## spread cheese              0.44                1.79          0.90
## frozen dessert             2.69                5.41          4.10
## frozen fish                3.14                1.80          3.19
## cling film/bags            2.26                0.91          2.75
## salt                       3.16                0.91          2.29
## liquor                     0.96                1.45          0.00
## canned vegetables          1.46                2.45          2.47
## bottled beer               0.98                1.48          0.50
## flower (seeds)             2.45                0.99          2.99
## cooking oil                0.00                0.50          0.00
## dish cleaner               2.48                0.50          1.51
## condensed milk             1.51                1.52          1.02
## roll products              5.22                2.62          1.59
## photo/film                 0.53                1.06          2.14
## pet care                   1.06                2.14          2.16
## chocolate marshmallow      3.35                4.49          1.70
## herbs/vegetable juice      1.13                1.70          2.29
## whole milk                 1.14                0.57          1.16
## candles                    1.15                0.58          2.92
## mayonnaise                 2.93                1.18          2.98
## Instant food products      2.42                1.22          1.84
## sweet spreads              2.42                3.04          1.84
## liquor (appetizer)         1.84                1.23          0.62
## specialty cheese           2.45                0.62          1.86
## frozen potato products     0.62                1.87          1.89
## house keeping products     1.86                1.24          3.77
## dog food                   2.50                2.52          3.81
## soy                        1.90                1.27          1.28
## instant coffee             0.69                2.76          2.09
## pip herbs                  0.00                1.38          2.09
## zwieback                   0.71                4.29          0.72
## finished products          1.48                1.49          3.00
## popcorn                    0.74                2.97          1.50
## vinegar                    3.70                4.46          4.50
## soups                      3.85                0.77          3.91
## female sanitary products   1.67                0.00          3.40
## sparkling wine             1.70                0.85          1.73
## dental care                1.78                0.00          0.00
## cereals                    2.71                0.00          2.75
## kitchen towels             1.81                1.82          0.92
## curd cheese                0.92                0.92          2.80
## other vegetables           0.92                1.85          0.93
## rolls/buns                 0.00                1.85          0.93
## softener                   0.95                2.86          0.00
## cleaner                    1.96                0.00          1.99
## spices                     0.98                2.96          1.99
## jam                        1.00                3.01          1.01
## sauces                     3.00                0.00          1.01
## rum                        3.11                0.00          4.20
## liver loaf                 1.09                4.40          3.34
## male cosmetics             1.16                1.17          1.18
## meat spreads               3.56                1.19          4.82
## packaged herbs/vegetables  1.19                1.19          2.41
## brandy                     1.21                1.22          1.23
## ketchup                    2.48                2.49          1.26
## abrasive cleaner           0.00                1.27          0.00
## light bulbs                0.00                1.30          1.31
## artif. sweetener           8.33                6.98          4.23
## nuts/prunes                1.39                4.19          1.41
## specialty fat              4.27                0.00          4.34
## skin care                  3.00                1.51          3.04
## fish                       3.08                1.55          0.00
## potato products            0.00                3.27          1.65
## root vegetables            4.88                0.00          1.65
## snack products             0.00                3.37          0.00
## nut snack                  1.73                0.00          5.26
## soap                       0.00                0.00          5.26
## syrup                      0.00                5.20          1.75
## bathroom cleaner           3.56                0.00          1.81
## canned fruit               1.78                1.79          1.81
## cookware                   0.00                1.97          0.00
## cooking chocolate          6.57                0.00         15.56
## tidbits                    0.00                0.00          2.22
## cocoa drinks               4.55                0.00          6.94
## pudding powder            11.86                2.38          7.23
## ready soups                0.00               14.30          2.41
## organic marinated meat     0.00                0.00          0.00
## flower soil/fertilizer     5.42                2.72          2.75
## organic products          13.55                8.17          2.75
## pot plants                 2.71                5.45          2.75
## prosecco                   0.00                2.72          0.00
## frankfurter                0.00                5.72          2.89
## decalcifier                3.00                0.00          3.04
## honey                      0.00                3.18          6.42
## specialty vegetables       0.00                0.00          3.40
## cream                      0.00                0.00          7.71
## hair spray                 4.07                0.00          0.00
## frozen fruits              0.00                0.00          4.82
## rubbing alcohol            0.00                0.00          0.00
## liqueur                    0.00                0.00          5.26
## make up remover            0.00                0.00          0.00
## salad dressing            12.65                6.36          0.00
## frozen chicken             0.00                0.00          0.00
## whisky                    14.23                0.00          0.00
## baby cosmetics             0.00                0.00          8.26
## toilet cleaner             0.00                0.00          0.00
## bags                       0.00                0.00          0.00
## canned herbs               0.00                0.00          0.00
## kitchen utensil            0.00               14.30          0.00
## preservation products      0.00                0.00          0.00
## baby food                  0.00                0.00          0.00
## frozen herbss              0.00                0.00          0.00
## organic sausage            0.00                0.00          0.00
## sound storage medium       0.00                0.00          0.00
##                           pickled vegetables herbs tropical herbs soft cheese
## rice                                    1.54  1.86           1.16        1.74
## veggies                                 1.93  2.37           0.00        2.24
## loaf                                    1.36  0.98           0.00        1.79
## coke                                    1.36  0.66           0.00        0.96
## yogurt                                  1.56  1.59           1.62        2.56
## vegetables                              1.92  3.32           2.05        1.91
## mineral water                           1.61  1.64           0.00        1.18
## Plastic bags                            1.13  1.53           1.09        1.68
## tropical fruit                          2.09  1.61           0.00        1.89
## marinated meat                          1.90  0.96           0.00        2.24
## pies/pasties                            1.27  0.45           0.45        1.86
## newspapers                              1.48  0.72           1.05        0.87
## citrus                                  2.15  2.11           0.00        1.95
## whipped/sour cream                      1.30  2.79           1.40        2.49
## heinken                                 1.40  1.42           0.00        0.92
## green tea                               0.54  0.39           0.00        0.64
## pip fruit                               1.88  1.91           0.00        2.38
## brown bread                             1.63  1.32           1.32        1.78
## fruit/vegetable juice                   1.97  1.25           0.00        2.31
## domestic eggs                           2.07  1.77           1.43        2.94
## coffee                                  2.03  0.94           1.29        2.29
## margarine                               1.79  1.64           1.45        2.24
## beef                                    2.27  3.22           1.66        2.65
## curd                                    1.28  2.60           2.32        2.48
## butter                                  1.61  2.69           1.73        2.96
## marinated meats                         2.72  0.92           0.00        2.31
## napkins                                 1.63  1.65           1.14        1.48
## halal meat                              1.75  2.20           0.00        1.18
## chocolate                               1.61  0.55           0.87        2.35
## frozen vegetables                       2.94  3.32           1.33        2.84
## chicken                                 2.22  2.62           1.43        2.44
## white bread                             1.75  0.64           1.40        2.48
## cream cheese                            1.68  1.58           1.18        3.11
## waffles                                 1.80  1.26           0.84        1.59
## dessert                                 2.38  1.00           0.85        3.22
## salty snack                             1.96  0.85           1.00        0.58
## long life bakery product                2.30  1.02           1.02        2.70
## berries                                 1.29  0.88           1.75        2.10
## hamburger meat                          1.62  2.54           1.05        1.84
## sugar                                   1.05  0.61           1.67        1.88
## hygiene articles                        2.12  2.46           2.15        1.89
## UHT-milk                                2.21  1.12           0.64        0.82
## onions                                  1.76  2.76           2.60        3.17
## candy                                   1.60  1.45           1.99        0.93
## specialty chocolate                     1.79  1.09           0.36        2.61
## butter milk                             1.81  1.29           1.10        1.70
## oil                                     3.09  3.88           0.92        2.47
## frozen meals                            1.64  0.37           1.30        2.29
## misc. beverages                         2.22  1.88           1.31        1.35
## specialty bar                           1.50  0.38           0.38        1.96
## ham                                     0.95  1.55           1.55        3.97
## beverages                               0.77  0.78           0.39        1.40
## meat                                    2.74  1.99           1.39        2.66
## ice cream                               1.41  1.63           1.63        1.26
## sliced cheese                           2.06  2.30           1.88        4.72
## hard cheese                             1.71  2.17           1.95        4.45
## noodles                                 0.67  0.68           7.53        0.94
## grapes                                  2.03  1.15           1.37        2.35
## cat food                                2.12  1.67           0.72        3.20
## chewing gum                             0.99  1.26           0.76        1.04
## soda                                    0.76  0.52           8.26        0.27
## detergent                               2.88  0.80           0.80        2.46
## red/blush wine                          0.54  0.82           1.37        0.56
## white wine                              0.55  0.83           0.55        0.57
## turkey                                  1.75  2.97           3.56        1.52
## dishes                                  0.89  0.60           1.20        0.92
## bottled water                           0.59  1.81          10.84        0.62
## flour                                   2.37  3.01           2.71        0.93
## semi-finished bread                     2.09  1.51           2.42        2.49
## baking powder                           1.81  1.84           2.75        1.89
## pickled vegetables                        NA  1.55           0.62        2.22
## herbs                                   1.55    NA           2.20        1.29
## tropical herbs                          0.62  2.20             NA        1.29
## soft cheese                             2.22  1.29           1.29          NA
## tea                                     1.90  0.64           7.74        1.33
## processed cheese                        3.89  1.98           2.31        2.37
## sausage                                 0.67  0.34           7.16        0.35
## pasta                                   2.04  0.69           1.03        3.54
## citrus herbs                            0.68  1.74          10.41        0.36
## potted plants                           1.71  3.82           0.00        1.43
## canned fish                             3.99  2.21           0.74        2.65
## seasonal products                       2.31  1.95           1.17        1.60
## cake bar                                0.79  1.21           0.81        1.24
## carrots                                 2.07  2.53          14.31        2.16
## mustard                                 5.27  0.00           1.34        4.58
## packaged fruit/vegetables               1.37  2.78           0.00        1.43
## spread cheese                           1.37  0.46           1.85        1.43
## frozen dessert                          0.92  2.34           1.87        0.96
## frozen fish                             3.68  0.47           2.34        2.88
## cling film/bags                         2.32  1.88           1.88        1.93
## salt                                    0.46  2.35           1.88        3.39
## liquor                                  3.96  0.50           0.50        0.00
## canned vegetables                       1.50  2.03           2.54        1.56
## bottled beer                            0.50  2.05           6.65        0.53
## flower (seeds)                          0.50  2.05           0.00        1.58
## cooking oil                             1.02  1.03           3.61        0.53
## dish cleaner                            1.52  4.13           0.52        3.71
## condensed milk                          2.07  1.05           0.53        2.16
## roll products                           1.61  3.81           0.00        3.91
## photo/film                              0.00  0.00           0.55        0.00
## pet care                                0.55  0.00           0.00        1.14
## chocolate marshmallow                   2.86  1.16           2.33        1.79
## herbs/vegetable juice                   1.73  1.18          11.75        3.02
## whole milk                              0.58  1.78           9.49        2.44
## candles                                 1.77  1.80           0.60        3.69
## mayonnaise                              3.61  3.06           1.84        2.51
## Instant food products                   1.86  2.53           1.26        0.00
## sweet spreads                           3.11  3.16           0.63        1.95
## liquor (appetizer)                      2.51  1.91           1.28        0.66
## specialty cheese                        1.88  1.28           1.28        3.28
## frozen potato products                  3.17  0.64           0.64        2.65
## house keeping products                  1.27  0.64           0.64        1.99
## dog food                                2.57  2.61           0.65        0.67
## soy                                     0.00  0.00           7.91        2.03
## instant coffee                          1.41  0.00           2.14        3.67
## pip herbs                               0.70  2.14          16.44        3.67
## zwieback                                2.19  0.74           1.48        0.76
## finished products                       0.76  0.00           0.00        0.79
## popcorn                                 0.76  0.00           0.00        1.58
## vinegar                                 2.28  1.54           2.31        1.58
## soups                                   2.37  4.01           0.80        3.29
## female sanitary products                2.58  1.75           0.87        0.00
## sparkling wine                          0.87  1.77           1.77        0.00
## dental care                             3.65  0.93           0.93        1.90
## cereals                                 2.78  1.88           2.83        1.93
## kitchen towels                          1.85  0.94           0.00        4.84
## curd cheese                             0.94  2.87           2.87        6.88
## other vegetables                        0.94  3.83          13.40        1.97
## rolls/buns                              1.88  0.96           8.61        0.00
## softener                                0.97  0.00           0.99        1.02
## cleaner                                 2.01  2.05           3.07        0.00
## spices                                  3.02  2.05           1.02        1.05
## jam                                     4.10  4.16           1.04        3.21
## sauces                                  2.05  1.04           0.00        2.14
## rum                                     3.19  4.32           5.39        5.54
## liver loaf                              0.00  0.00           0.00        3.52
## male cosmetics                          1.19  1.21           1.21        1.24
## meat spreads                            2.43  1.24           1.24        1.27
## packaged herbs/vegetables               3.65  2.47          11.13        0.00
## brandy                                  1.24  1.26           0.00        0.00
## ketchup                                 3.81  0.00           1.29        2.65
## abrasive cleaner                        1.30  2.64           2.64        2.71
## light bulbs                             2.66  2.70           0.00        0.00
## artif. sweetener                        0.00  0.00           2.89        0.00
## nuts/prunes                             2.85  0.00           1.45        2.97
## specialty fat                           1.46  0.00           1.48        4.57
## skin care                               4.61  1.56           1.56        1.60
## fish                                    0.00  0.00           0.00        0.00
## potato products                         0.00  0.00           1.70        1.74
## root vegetables                         1.67  3.39           5.09        1.74
## snack products                          0.00  0.00           1.75        0.00
## nut snack                               1.77  0.00           0.00        0.00
## soap                                    0.00  0.00           1.80        0.00
## syrup                                   1.77  0.00           0.00        1.85
## bathroom cleaner                        0.00  0.00           1.85        0.00
## canned fruit                            3.65  3.71           0.00        0.00
## cookware                                4.03  0.00           0.00        0.00
## cooking chocolate                       0.00  0.00           0.00        2.34
## tidbits                                 6.74  0.00           2.28        2.34
## cocoa drinks                            0.00  0.00           2.37        4.88
## pudding powder                          4.87  0.00           2.47        2.54
## ready soups                             0.00  0.00           2.47        0.00
## organic marinated meat                  2.66  0.00           0.00        5.54
## flower soil/fertilizer                  0.00  5.65           0.00        0.00
## organic products                        2.78  0.00           5.65        0.00
## pot plants                              0.00  8.48          11.30        2.90
## prosecco                                2.78  2.83           0.00        2.90
## frankfurter                             0.00  5.93          17.80        3.05
## decalcifier                             0.00  3.12           3.12        0.00
## honey                                   0.00  0.00           3.30        0.00
## specialty vegetables                   17.18  0.00           0.00       10.76
## cream                                   0.00  0.00           0.00        8.13
## hair spray                              0.00  0.00           4.24        0.00
## frozen fruits                           9.74  4.94           0.00        5.08
## rubbing alcohol                         4.87  9.89           4.94        0.00
## liqueur                                 0.00  0.00           0.00        0.00
## make up remover                         0.00  0.00           0.00        0.00
## salad dressing                          0.00  0.00           0.00        6.77
## frozen chicken                          0.00  0.00           0.00        7.62
## whisky                                  0.00  0.00           0.00        0.00
## baby cosmetics                          0.00  0.00           0.00        0.00
## toilet cleaner                          8.34  8.48           0.00        0.00
## bags                                   23.36  0.00           0.00        0.00
## canned herbs                            0.00  0.00          29.67        0.00
## kitchen utensil                         0.00  0.00           0.00        0.00
## preservation products                   0.00  0.00           0.00        0.00
## baby food                               0.00  0.00           0.00       60.95
## frozen herbss                           0.00  0.00           0.00        0.00
## organic sausage                         0.00  0.00           0.00        0.00
## sound storage medium                    0.00  0.00           0.00        0.00
##                             tea processed cheese sausage pasta citrus herbs
## rice                       1.44             1.60    1.01  1.59         1.46
## veggies                    0.48             1.77    0.00  1.44         0.00
## loaf                       0.37             1.58    0.00  0.87         0.00
## coke                       0.11             1.89    0.00  1.52         0.00
## yogurt                     0.97             1.07    1.39  1.49         1.29
## vegetables                 1.63             1.53    1.58  2.20         1.96
## mineral water              0.45             1.32    0.00  1.20         0.00
## Plastic bags               0.90             1.20    1.19  1.26         0.85
## tropical fruit             0.77             2.54    0.00  1.39         0.00
## marinated meat             0.26             2.23    0.00  1.27         0.00
## pies/pasties               0.33             2.04    0.42  1.28         0.14
## newspapers                 1.01             0.82    1.21  0.93         0.87
## citrus                     0.45             1.61    0.00  1.44         0.00
## whipped/sour cream         1.28             1.54    0.96  2.10         1.95
## heinken                    0.85             1.26    0.00  0.66         0.00
## green tea                  0.16             0.41    0.00  0.60         0.00
## pip fruit                  0.66             1.93    0.00  2.02         0.00
## brown bread                0.93             1.56    0.99  1.36         0.91
## fruit/vegetable juice      0.60             2.54    0.00  1.93         0.00
## domestic eggs              1.82             1.94    1.01  1.66         0.93
## coffee                     0.88             1.17    1.40  1.42         0.85
## margarine                  1.96             2.10    1.28  1.80         1.61
## beef                       1.70             0.97    2.00  2.02         2.24
## curd                       2.19             1.27    1.61  1.94         2.26
## butter                     1.97             2.92    1.36  3.27         1.49
## marinated meats            0.42             2.15    0.00  1.46         0.00
## napkins                    1.27             1.73    0.90  1.59         1.14
## halal meat                 0.00             1.65    0.00  1.61         0.00
## chocolate                  1.12             1.49    0.83  1.08         1.21
## frozen vegetables          0.91             2.09    0.72  1.94         1.10
## chicken                    0.98             1.37    1.29  2.48         1.58
## white bread                1.04             5.87    1.10  2.23         1.54
## cream cheese               2.70             2.21    1.00  1.16         2.04
## waffles                    0.58             2.21    0.61  2.62         0.62
## dessert                    1.75             1.64    1.08  2.50         1.10
## salty snack                0.73             1.49    1.08  1.56         1.42
## long life bakery product   1.20             2.91    0.79  0.80         0.97
## berries                    1.50             1.23    1.27  0.96         2.91
## hamburger meat             1.38             1.26    1.79  5.75         1.98
## sugar                      2.19             1.76    1.32  1.84         3.03
## hygiene articles           1.89             1.61    1.34  2.03         1.19
## UHT-milk                   1.15             1.35    0.70  1.76         1.95
## onions                     2.00             1.37    1.24  2.32         2.34
## candy                      0.93             3.42    0.98  1.59         1.80
## specialty chocolate        0.37             1.14    0.20  1.40         0.60
## butter milk                1.89             1.74    1.20  1.61         2.23
## oil                        1.90             1.55    0.80  3.25         2.04
## frozen meals               0.57             0.97    0.60  4.28         0.61
## misc. beverages            0.58             1.38    1.22  2.06         1.25
## specialty bar              1.18             1.80    1.45  1.05         0.42
## ham                        1.79             6.29    1.47  2.12         1.28
## beverages                  1.20             1.63    1.69  1.28         1.51
## meat                       1.43             1.05    1.73  0.88         1.98
## ice cream                  0.84             0.86    1.55  0.90         0.23
## sliced cheese              1.72             1.97    2.72  1.38         1.15
## hard cheese                1.33             2.05    2.35  3.81         0.96
## noodles                   11.96             0.96   11.65  1.00        10.09
## grapes                     1.41             1.92    1.49  1.26         1.52
## cat food                   0.74             1.76    0.52  2.63         0.79
## chewing gum                0.78             0.80    1.10  1.39         0.56
## soda                       6.89             0.81   12.05  0.85         5.13
## detergent                  1.37             2.51    0.87  3.80         2.06
## red/blush wine             0.28             2.30    1.49  0.30         0.91
## white wine                 0.85             0.29    0.30  0.61         0.61
## turkey                     3.66             1.87    3.54  0.65         6.56
## dishes                     1.23             0.31    1.95  1.98         1.66
## bottled water              4.33             0.32    7.20  1.32         8.66
## flour                      0.93             1.27    1.31  2.98         2.33
## semi-finished bread        1.24             2.54    0.99  1.33         1.34
## baking powder              1.89             0.64    0.33  2.35         2.03
## pickled vegetables         1.90             3.89    0.67  2.04         0.68
## herbs                      0.64             1.98    0.34  0.69         1.74
## tropical herbs             7.74             2.31    7.16  1.03        10.41
## soft cheese                1.33             2.37    0.35  3.54         0.36
## tea                          NA             1.69    9.81  0.35         8.91
## processed cheese           1.69               NA    0.36  0.36         1.09
## sausage                    9.81             0.36      NA  1.50        10.55
## pasta                      0.35             0.36    1.50    NA         1.53
## citrus herbs               8.91             1.09   10.55  1.53           NA
## potted plants              0.00             1.46    0.00  0.76         0.38
## canned fish                2.27             1.16    1.20  4.05         1.22
## seasonal products          0.80             0.82    1.70  1.72         1.29
## cake bar                   0.83             1.27    2.63  2.66         1.34
## carrots                   11.67             0.44    8.23  1.39        13.02
## mustard                    2.75             1.41    1.45  2.45         1.48
## packaged fruit/vegetables  0.48             0.97    0.00  2.04         0.00
## spread cheese              0.48             1.95    1.01  1.02         2.05
## frozen dessert             1.92             0.98    0.00  1.03         2.58
## frozen fish                1.92             0.49    1.02  0.51         1.03
## cling film/bags            2.90             1.98    0.00  2.59         1.56
## salt                       2.42             0.99    0.51  3.62         1.56
## liquor                     0.00             2.11    0.00  0.55         0.56
## canned vegetables          1.56             1.07    0.00  4.46         2.24
## bottled beer               6.83             1.07    5.56  0.00         7.92
## flower (seeds)             2.63             0.54    1.67  2.25         0.57
## cooking oil                5.30             0.00    8.41  1.13         5.13
## dish cleaner               1.06             0.54    1.68  1.70         1.71
## condensed milk             0.00             1.65    1.14  0.58         0.58
## roll products              2.24             2.29    0.59  3.59         0.60
## photo/film                 1.69             0.58    2.39  1.21         0.00
## pet care                   0.00             0.58    0.60  1.83         2.45
## chocolate marshmallow      2.39             2.44    0.63  1.28         0.64
## herbs/vegetable juice      6.03             1.85    4.47  0.65         9.74
## whole milk                 0.61             1.25    7.73  1.96         6.56
## candles                    1.23             0.00    1.30  3.29         1.99
## mayonnaise                 1.26             3.85    0.00  1.34         0.00
## Instant food products      2.59             3.31    0.69  4.86         1.40
## sweet spreads              0.00             0.00    0.69  4.16         0.00
## liquor (appetizer)         1.31             0.67    2.08  0.00         2.82
## specialty cheese           1.97             1.34    1.39  2.10         1.41
## frozen potato products     0.66             2.03    0.70  2.83         0.00
## house keeping products     0.66             2.71    1.40  1.42         2.14
## dog food                   0.00             2.74    2.12  4.30         0.72
## soy                       10.84             0.69    9.31  0.72        10.93
## instant coffee             2.20             0.75    0.78  2.36         0.79
## pip herbs                 10.28             2.25    6.21  2.36        10.27
## zwieback                   2.29             0.78    1.61  0.00         1.64
## finished products          0.79             1.62    0.00  5.08         0.85
## popcorn                    0.79             2.43    0.00  4.23         0.85
## vinegar                    1.58             0.00    0.84  3.39         0.85
## soups                      3.29             0.00    0.87  5.29         1.77
## female sanitary products   0.90             2.75    1.90  1.92         1.93
## sparkling wine             1.82             0.00    0.96  1.95         4.89
## dental care                1.90             1.95    0.00  3.06         1.02
## cereals                    0.00             2.97    1.02  2.07         1.04
## kitchen towels             0.97             0.99    0.00  3.10         1.04
## curd cheese                0.98             3.01    1.04  1.05         2.12
## other vegetables           0.00             3.01    5.20  1.05        12.69
## rolls/buns                 0.00             2.01    7.28  4.21         3.17
## softener                   0.00             1.04    2.15  5.43         2.19
## cleaner                    1.05             1.07    3.33  1.12         2.26
## spices                     3.15             1.07    2.22  0.00         1.13
## jam                        0.00             2.19    0.00  2.29         1.15
## sauces                     0.00             2.19    1.13  4.58         1.15
## rum                        0.00             1.13    0.00  0.00         2.38
## liver loaf                 1.17             1.20    2.48  2.51         0.00
## male cosmetics             1.24             1.27    0.00  2.66         0.00
## meat spreads               0.00             0.00    1.34  1.36         0.00
## packaged herbs/vegetables  7.62             0.00    8.06  2.72        10.93
## brandy                     0.00             0.00    2.74  1.39         1.40
## ketchup                    1.33             6.77    0.00  5.67         0.00
## abrasive cleaner           2.71             0.00    4.30  2.90         4.37
## light bulbs                1.39             1.42    0.00  1.48         1.49
## artif. sweetener           2.97             3.04    1.57  0.00         0.00
## nuts/prunes                2.97             1.52    1.57  0.00         3.20
## specialty fat              1.52             0.00    0.00  8.15         0.00
## skin care                  0.00             1.64    0.00  1.72         3.45
## fish                       1.65             1.68    0.00  0.00         0.00
## potato products            3.48            10.68    0.00  0.00         1.87
## root vegetables            1.74             1.78   12.89  1.86        11.24
## snack products             3.59             5.50    0.00  3.84         0.00
## nut snack                  0.00             0.00    0.00  1.98         1.99
## soap                       1.85             0.00    5.86  3.95         1.99
## syrup                      0.00             1.89    0.00  5.93         0.00
## bathroom cleaner           3.81             0.00    2.01  2.04         0.00
## canned fruit               1.90             1.95    0.00  2.04         0.00
## cookware                   0.00             4.30    2.22  2.25         2.26
## cooking chocolate          2.34             0.00    0.00  0.00         0.00
## tidbits                    0.00             0.00    0.00  0.00         0.00
## cocoa drinks               4.88             0.00    0.00  2.61         2.62
## pudding powder             0.00             2.60    0.00  5.43         2.73
## ready soups                5.08             2.60    2.69  0.00         8.20
## organic marinated meat     0.00             2.83    0.00  0.00         0.00
## flower soil/fertilizer     0.00             2.97    0.00  0.00         0.00
## organic products           2.90             0.00    3.07  3.10         0.00
## pot plants                 2.90             0.00    9.21  0.00        18.74
## prosecco                   0.00             0.00    0.00  0.00         0.00
## frankfurter                0.00             3.12    6.45  0.00         6.56
## decalcifier                0.00             9.84    0.00  0.00         0.00
## honey                      3.39             0.00    0.00  7.24         0.00
## specialty vegetables       0.00            11.00    0.00 11.51         0.00
## cream                      0.00             4.15    0.00  0.00         0.00
## hair spray                 0.00             0.00    4.60  0.00         0.00
## frozen fruits              0.00            15.58    0.00  0.00         0.00
## rubbing alcohol            0.00            10.38    5.37  0.00        10.93
## liqueur                    0.00             0.00    5.86  0.00         0.00
## make up remover            0.00             0.00    0.00  0.00         0.00
## salad dressing             0.00             6.92    0.00  0.00         0.00
## frozen chicken             0.00             0.00    8.06  0.00         0.00
## whisky                     0.00             0.00    0.00  0.00         0.00
## baby cosmetics             8.71             0.00    0.00  0.00         0.00
## toilet cleaner             0.00             0.00    0.00  0.00         0.00
## bags                       0.00             0.00    0.00  0.00         0.00
## canned herbs              15.24             0.00   32.23  0.00        32.79
## kitchen utensil            0.00             0.00    0.00  0.00         0.00
## preservation products      0.00             0.00    0.00  0.00         0.00
## baby food                  0.00             0.00    0.00 65.20         0.00
## frozen herbss              0.00             0.00    0.00  0.00         0.00
## organic sausage            0.00             0.00    0.00  0.00         0.00
## sound storage medium       0.00             0.00    0.00  0.00         0.00
##                           potted plants canned fish seasonal products cake bar
## rice                               1.55        1.33              1.08     1.59
## veggies                            1.48        1.83              1.40     1.48
## loaf                               1.02        1.54              1.10     1.31
## coke                               1.03        1.18              1.12     1.96
## yogurt                             1.63        1.51              1.64     1.26
## vegetables                         1.11        1.60              1.19     1.17
## mineral water                      1.51        1.03              0.95     1.26
## Plastic bags                       1.09        1.86              1.83     2.46
## tropical fruit                     1.91        1.62              1.64     1.40
## marinated meat                     0.92        1.43              1.52     1.73
## pies/pasties                       1.57        1.67              1.53     1.83
## newspapers                         0.72        1.30              0.65     1.01
## citrus                             1.69        1.37              1.72     1.03
## whipped/sour cream                 1.54        1.73              1.19     1.04
## heinken                            1.32        1.58              0.75     0.58
## green tea                          0.43        1.09              0.48     0.40
## pip fruit                          1.85        1.40              1.49     1.85
## brown bread                        1.46        2.43              1.64     1.17
## fruit/vegetable juice              2.31        1.57              0.93     1.39
## domestic eggs                      1.30        1.78              1.67     1.30
## coffee                             1.14        1.81              1.82     0.77
## margarine                          1.61        1.81              1.13     1.29
## beef                               1.73        1.62              1.03     0.95
## curd                               1.23        1.42              1.73     2.98
## butter                             1.49        1.80              0.96     1.23
## marinated meats                    0.68        2.16              1.91     1.32
## napkins                            1.37        2.42              1.41     1.46
## halal meat                         0.93        1.35              1.69     1.21
## chocolate                          1.45        1.92              1.22     2.38
## frozen vegetables                  1.59        2.21              2.47     1.70
## chicken                            1.84        0.84              1.18     1.38
## white bread                        1.26        1.34              0.79     2.12
## cream cheese                       1.89        3.40              1.96     1.86
## waffles                            0.78        2.47              2.09     1.98
## dessert                            0.79        1.84              2.65     4.39
## salty snack                        1.26        1.67              1.95     2.20
## long life bakery product           2.09        1.71              0.91     1.50
## berries                            1.94        1.37              1.82     3.19
## hamburger meat                     1.49        2.11              0.93     1.73
## sugar                              1.18        1.96              0.76     1.37
## hygiene articles                   1.53        2.35              1.53     0.59
## UHT-milk                           1.42        1.69              1.20     2.06
## onions                             1.44        1.72              1.42     1.46
## candy                              0.40        1.27              2.70     2.33
## specialty chocolate                1.20        0.85              2.03     1.40
## butter milk                        0.81        1.51              0.46     1.18
## oil                                1.23        2.17              1.84     2.14
## frozen meals                       1.23        2.18              1.61     2.38
## misc. beverages                    1.25        1.98              0.70     1.93
## specialty bar                      0.42        1.12              1.90     2.94
## ham                                1.71        1.82              1.44     1.99
## beverages                          1.29        0.46              0.24     2.00
## meat                               0.88        2.10              2.48     1.54
## ice cream                          0.90        1.92              1.01     1.05
## sliced cheese                      1.62        1.47              1.04     0.54
## hard cheese                        0.96        1.78              2.42     1.11
## noodles                            0.00        1.07              0.85     0.88
## grapes                             3.29        0.54              2.28     1.18
## cat food                           1.32        2.25              1.19     1.85
## chewing gum                        0.84        0.89              1.57     1.30
## soda                               0.00        0.61              0.96     2.65
## detergent                          3.24        1.25              2.98     2.74
## red/blush wine                     0.60        1.61              0.68     0.00
## white wine                         0.31        0.65              0.34     0.00
## turkey                             1.31        0.35              0.37     1.14
## dishes                             0.33        1.06              1.12     0.77
## bottled water                      0.00        0.71              0.37     0.77
## flour                              1.66        2.12              1.50     1.55
## semi-finished bread                2.01        1.07              3.39     3.11
## baking powder                      1.69        1.80              3.42     0.39
## pickled vegetables                 1.71        3.99              2.31     0.79
## herbs                              3.82        2.21              1.95     1.21
## tropical herbs                     0.00        0.74              1.17     0.81
## soft cheese                        1.43        2.65              1.60     1.24
## tea                                0.00        2.27              0.80     0.83
## processed cheese                   1.46        1.16              0.82     1.27
## sausage                            0.00        1.20              1.70     2.63
## pasta                              0.76        4.05              1.72     2.66
## citrus herbs                       0.38        1.22              1.29     1.34
## potted plants                        NA        0.81              2.59     1.78
## canned fish                        0.81          NA              3.21     0.00
## seasonal products                  2.59        3.21                NA     4.52
## cake bar                           1.78        0.00              4.52       NA
## carrots                            0.00        0.99              1.57     0.00
## mustard                            0.49        5.76              2.77     1.15
## packaged fruit/vegetables          2.05        1.63              1.15     0.60
## spread cheese                      1.02        2.18              2.31     0.60
## frozen dessert                     2.07        2.74              2.32     1.80
## frozen fish                        1.03        3.29              2.90     1.80
## cling film/bags                    1.04        3.87              0.59     0.00
## salt                               0.52        6.08              0.00     0.61
## liquor                             0.00        1.18              1.25     0.65
## canned vegetables                  2.24        2.38              1.26     3.91
## bottled beer                       0.00        0.60              1.91     0.66
## flower (seeds)                     0.57        1.20              2.54     0.00
## cooking oil                        0.00        0.61              0.00     0.00
## dish cleaner                       0.57        1.21              0.64     0.66
## condensed milk                     0.00        3.08              0.65     1.35
## roll products                      1.81        0.00              1.35     0.70
## photo/film                         0.61        0.00              1.37     0.00
## pet care                           1.84        1.95              0.69     1.43
## chocolate marshmallow              1.29        1.37              1.45     2.24
## herbs/vegetable juice              0.00        0.69              0.00     0.00
## whole milk                         0.00        0.00              0.74     2.29
## candles                            1.99        4.22              1.49     0.77
## mayonnaise                         1.35        6.46              3.04     1.57
## Instant food products              0.00        8.15              0.00     0.81
## sweet spreads                      0.70        2.96              0.78     2.43
## liquor (appetizer)                 0.00        1.50              2.38     1.64
## specialty cheese                   3.53        4.49              1.59     2.46
## frozen potato products             0.71        1.51              3.21     1.66
## house keeping products             1.43        3.03              2.41     4.98
## dog food                           5.77        1.53              0.81     0.00
## soy                                0.00        0.77              0.00     0.85
## instant coffee                     0.79        2.52              2.67     1.84
## pip herbs                          0.00        1.68              0.89     0.00
## zwieback                           1.64        0.87              0.92     2.86
## finished products                  5.11        0.90              3.83     2.97
## popcorn                            1.70        2.71              0.00     1.98
## vinegar                            1.70        1.81              0.00     0.99
## soups                              1.77        5.65              1.99     2.06
## female sanitary products           2.89        2.05              4.34     1.12
## sparkling wine                     0.98        1.04              1.10     0.00
## dental care                        1.02        3.27              2.31     0.00
## cereals                            4.16        5.53              1.17     4.84
## kitchen towels                     2.08        3.32              0.00     1.21
## curd cheese                        0.00        1.12              2.38     1.23
## other vegetables                   1.06        0.00              0.00     1.23
## rolls/buns                         0.00        0.00              0.00     0.00
## softener                           3.28        2.32              1.23     0.00
## cleaner                            1.13        2.40              2.54     3.95
## spices                             0.00        1.20              0.00     1.32
## jam                                5.75        4.89              1.29     0.00
## sauces                             1.15        2.44              0.00     2.68
## rum                                1.19        0.00              0.00     0.00
## liver loaf                         0.00        0.00              0.00     1.47
## male cosmetics                     0.00        2.84              1.51     0.00
## meat spreads                       0.00       10.16              1.54     4.77
## packaged herbs/vegetables          0.00        0.00              3.07     1.59
## brandy                             1.40        1.48              0.00     0.00
## ketchup                            0.00        9.09              3.21     0.00
## abrasive cleaner                   0.00        3.10              0.00     0.00
## light bulbs                        1.49        0.00              0.00     1.73
## artif. sweetener                   1.60        0.00              0.00     1.86
## nuts/prunes                        1.60        1.70              0.00     0.00
## specialty fat                      0.00        3.48              1.84     0.00
## skin care                          0.00        3.67              1.94     6.02
## fish                               1.77        0.00              0.00     4.12
## potato products                    3.75        0.00              2.11     0.00
## root vegetables                    0.00        1.99              0.00     2.18
## snack products                     1.93        2.05              2.17     6.73
## nut snack                          0.00        4.22              2.24     2.31
## soap                               0.00        0.00              2.24     0.00
## syrup                              0.00        0.00              4.47     0.00
## bathroom cleaner                   0.00        0.00              2.31     0.00
## canned fruit                       0.00        4.35              0.00     0.00
## cookware                           0.00        0.00              2.54     0.00
## cooking chocolate                  0.00        0.00              0.00     0.00
## tidbits                            0.00        0.00              0.00     5.87
## cocoa drinks                       0.00        2.79              2.95     0.00
## pudding powder                     0.00        2.90              0.00     0.00
## ready soups                        2.73        5.80              3.07     0.00
## organic marinated meat             0.00        0.00              3.35     0.00
## flower soil/fertilizer             0.00        0.00              3.51     0.00
## organic products                   3.12        0.00              3.51     0.00
## pot plants                         0.00        0.00              7.03     3.63
## prosecco                           9.37        0.00              3.51     0.00
## frankfurter                        0.00        3.48              0.00     0.00
## decalcifier                        0.00        3.67              0.00     0.00
## honey                              0.00        3.87              0.00     0.00
## specialty vegetables               3.86        4.10              0.00     4.49
## cream                              0.00        4.64              0.00    10.17
## hair spray                         0.00        0.00              5.27     0.00
## frozen fruits                      0.00        5.80              0.00     0.00
## rubbing alcohol                    0.00        5.80              0.00     0.00
## liqueur                            0.00        0.00              0.00    13.87
## make up remover                    0.00        7.74              0.00     0.00
## salad dressing                     0.00        0.00              0.00     0.00
## frozen chicken                     0.00        0.00              9.22     0.00
## whisky                             0.00        0.00              0.00     0.00
## baby cosmetics                     0.00        0.00              0.00    10.90
## toilet cleaner                     0.00        0.00              0.00     0.00
## bags                               0.00        0.00              0.00     0.00
## canned herbs                       0.00        0.00              0.00     0.00
## kitchen utensil                   16.40        0.00              0.00     0.00
## preservation products              0.00        0.00              0.00     0.00
## baby food                          0.00        0.00              0.00    76.29
## frozen herbss                      0.00        0.00              0.00     0.00
## organic sausage                    0.00        0.00              0.00     0.00
## sound storage medium               0.00        0.00              0.00     0.00
##                           carrots mustard packaged fruit/vegetables
## rice                         1.91    1.73                      1.22
## veggies                      0.00    1.42                      1.43
## loaf                         0.00    1.96                      1.26
## coke                         0.00    1.13                      1.07
## yogurt                       1.62    1.45                      1.39
## vegetables                   3.23    2.33                      2.28
## mineral water                0.00    1.55                      2.10
## Plastic bags                 0.88    1.63                      0.73
## tropical fruit               0.00    2.12                      1.61
## marinated meat               0.00    2.10                      1.71
## pies/pasties                 0.00    1.29                      1.62
## newspapers                   0.44    1.67                      0.87
## citrus                       0.00    1.86                      1.83
## whipped/sour cream           1.87    1.15                      1.52
## heinken                      0.00    1.38                      0.66
## green tea                    0.00    0.99                      0.69
## pip fruit                    0.00    1.25                      1.06
## brown bread                  1.55    1.41                      1.95
## fruit/vegetable juice        0.00    2.02                      1.48
## domestic eggs                1.92    2.39                      1.37
## coffee                       1.96    2.07                      1.01
## margarine                    1.22    2.07                      1.48
## beef                         3.09    2.23                      2.04
## curd                         1.99    1.98                      1.37
## butter                       2.45    1.50                      1.42
## marinated meats              0.00    3.63                      1.81
## napkins                      1.24    2.35                      1.52
## halal meat                   0.00    1.04                      1.85
## chocolate                    0.58    2.64                      0.81
## frozen vegetables            1.93    1.10                      2.77
## chicken                      2.23    1.69                      2.63
## white bread                  1.02    1.08                      1.69
## cream cheese                 1.59    1.68                      0.97
## waffles                      0.75    1.40                      1.04
## dessert                      1.53    2.02                      2.10
## salty snack                  0.76    1.42                      0.84
## long life bakery product     0.78    2.49                      1.08
## berries                      3.72    2.49                      3.02
## hamburger meat               2.20    2.34                      1.54
## sugar                        1.02    1.73                      1.80
## hygiene articles             1.85    1.97                      0.91
## UHT-milk                     0.86    2.96                      1.42
## onions                       2.40    3.47                      1.68
## candy                        1.70    1.29                      2.14
## specialty chocolate          1.22    2.06                      0.80
## butter milk                  0.99    2.09                      0.81
## oil                          1.24    4.47                      1.64
## frozen meals                 0.25    1.32                      0.82
## misc. beverages              1.26    1.60                      1.11
## specialty bar                1.02    1.63                      1.13
## ham                          0.52    1.65                      0.29
## beverages                    1.56    1.11                      1.15
## meat                         2.14    1.13                      1.18
## ice cream                    1.09    0.87                      1.20
## sliced cheese                2.24    3.27                      1.85
## hard cheese                  2.90    2.46                      1.28
## noodles                     12.85    1.62                      0.00
## grapes                       2.46    2.28                      1.69
## cat food                     0.96    2.72                      2.12
## chewing gum                  0.34    1.44                      0.75
## soda                         6.57    0.37                      0.00
## detergent                    3.21    1.13                      1.57
## red/blush wine               1.10    0.78                      1.21
## white wine                   0.74    0.39                      0.41
## turkey                       7.56    2.11                      1.31
## dishes                       1.61    2.13                      0.44
## bottled water                8.88    1.71                      0.00
## flour                        2.42    3.00                      2.22
## semi-finished bread          0.41    0.86                      0.45
## baking powder                1.64    2.17                      1.35
## pickled vegetables           2.07    5.27                      1.37
## herbs                        2.53    0.00                      2.78
## tropical herbs              14.31    1.34                      0.00
## soft cheese                  2.16    4.58                      1.43
## tea                         11.67    2.75                      0.48
## processed cheese             0.44    1.41                      0.97
## sausage                      8.23    1.45                      0.00
## pasta                        1.39    2.45                      2.04
## citrus herbs                13.02    1.48                      0.00
## potted plants                0.00    0.49                      2.05
## canned fish                  0.99    5.76                      1.63
## seasonal products            1.57    2.77                      1.15
## cake bar                     0.00    1.15                      0.60
## carrots                        NA    2.39                      0.00
## mustard                      2.39      NA                      1.98
## packaged fruit/vegetables    0.00    1.98                        NA
## spread cheese                2.49    0.66                      0.00
## frozen dessert               3.13    3.32                      2.07
## frozen fish                  3.13    2.66                      1.38
## cling film/bags              0.63    1.34                      0.70
## salt                         0.00    2.01                      2.78
## liquor                       0.00    0.00                      1.49
## canned vegetables            2.04    2.16                      1.50
## bottled beer                 9.60    1.45                      0.00
## flower (seeds)               0.69    0.73                      3.78
## cooking oil                  6.22    1.47                      0.00
## dish cleaner                 0.00    6.60                      1.52
## condensed milk               0.00    0.00                      2.33
## roll products                2.19    0.77                      0.00
## photo/film                   0.74    0.00                      0.81
## pet care                     1.49    0.00                      0.82
## chocolate marshmallow        1.56    4.96                      1.72
## herbs/vegetable juice       11.03    1.67                      0.00
## whole milk                   0.00    1.69                      0.00
## candles                      0.80    3.41                      2.66
## mayonnaise                   1.64   13.91                      2.71
## Instant food products        2.54    1.79                      0.00
## sweet spreads                1.69    3.59                      0.00
## liquor (appetizer)           0.00    0.91                      0.00
## specialty cheese             2.57    0.91                      1.88
## frozen potato products       0.86    3.67                      1.90
## house keeping products       0.86    0.92                      0.95
## dog food                     0.87    3.71                      1.93
## soy                         10.61    1.87                      0.00
## instant coffee               0.96    1.02                      2.11
## pip herbs                   12.46    1.02                      0.00
## zwieback                     0.99    2.11                      2.19
## finished products            1.03    0.00                      2.28
## popcorn                      0.00    4.38                      0.00
## vinegar                      1.03    3.29                      2.28
## soups                        2.15    4.56                      3.55
## female sanitary products     1.17    2.48                      1.29
## sparkling wine               1.19    0.00                      2.62
## dental care                  0.00    5.27                      1.37
## cereals                      1.26    2.68                      0.00
## kitchen towels               0.00    1.34                      0.00
## curd cheese                  2.57    0.00                      2.83
## other vegetables             0.00    1.36                      0.00
## rolls/buns                   0.00    1.36                      0.00
## softener                     1.33    0.00                      1.46
## cleaner                      1.37    2.91                      1.51
## spices                       1.37    1.45                      1.51
## jam                          0.00    2.96                      1.54
## sauces                       0.00    1.48                      0.00
## rum                          2.89    3.07                      1.59
## liver loaf                   1.53    1.62                      3.37
## male cosmetics               1.62    1.72                      0.00
## meat spreads                 0.00    5.27                      3.65
## packaged herbs/vegetables   23.20    3.51                      0.00
## brandy                       3.38    0.00                      0.00
## ketchup                      0.00   12.83                      1.90
## abrasive cleaner             7.07    3.75                      1.95
## light bulbs                  0.00    1.92                      1.99
## artif. sweetener             1.94    8.23                      4.27
## nuts/prunes                  3.88    4.11                      0.00
## specialty fat                3.98    6.32                      4.38
## skin care                    0.00    2.22                      0.00
## fish                         0.00    0.00                      2.37
## potato products              4.55    4.82                      0.00
## root vegetables              0.00    0.00                      0.00
## snack products               0.00    0.00                      5.15
## nut snack                    0.00    5.11                      0.00
## soap                         0.00   10.22                      0.00
## syrup                        0.00    2.56                      0.00
## bathroom cleaner             4.97    2.64                      2.74
## canned fruit                 0.00    2.64                      2.74
## cookware                     0.00    5.82                      0.00
## cooking chocolate            0.00    6.49                      3.37
## tidbits                      0.00    3.24                      0.00
## cocoa drinks                 3.18   10.12                      3.50
## pudding powder               0.00    0.00                      0.00
## ready soups                  6.63    7.03                      0.00
## organic marinated meat       0.00    3.83                      3.98
## flower soil/fertilizer       0.00    0.00                      0.00
## organic products             3.79    4.02                      0.00
## pot plants                  11.36    0.00                      0.00
## prosecco                     0.00    4.02                      0.00
## frankfurter                  0.00    4.22                      0.00
## decalcifier                  0.00    4.44                      0.00
## honey                        4.42    0.00                      0.00
## specialty vegetables         0.00    9.92                      0.00
## cream                        5.30   11.24                      0.00
## hair spray                   5.68    0.00                      0.00
## frozen fruits                0.00    0.00                      0.00
## rubbing alcohol              6.63    0.00                      0.00
## liqueur                      0.00    7.67                      0.00
## make up remover              0.00    0.00                      0.00
## salad dressing               0.00    0.00                      0.00
## frozen chicken               0.00    0.00                      0.00
## whisky                       0.00    0.00                      0.00
## baby cosmetics               0.00   12.05                      0.00
## toilet cleaner               0.00    0.00                      0.00
## bags                         0.00    0.00                      0.00
## canned herbs                 0.00    0.00                      0.00
## kitchen utensil              0.00    0.00                      0.00
## preservation products        0.00   42.16                      0.00
## baby food                    0.00    0.00                      0.00
## frozen herbss                0.00    0.00                      0.00
## organic sausage              0.00    0.00                      0.00
## sound storage medium         0.00    0.00                      0.00
##                           spread cheese frozen dessert frozen fish
## rice                               1.10           1.54        1.69
## veggies                            1.38           1.67        2.13
## loaf                               1.99           1.42        1.17
## coke                               1.58           1.29        0.62
## yogurt                             2.23           1.24        1.97
## vegetables                         1.41           1.96        2.17
## mineral water                      1.77           1.22        0.57
## Plastic bags                       1.86           1.06        1.06
## tropical fruit                     1.70           2.22        2.14
## marinated meat                     2.28           0.86        1.34
## pies/pasties                       1.62           1.64        1.06
## newspapers                         1.93           0.88        1.46
## citrus                             1.72           1.52        1.74
## whipped/sour cream                 0.54           1.86        0.98
## heinken                            1.33           1.34        0.78
## green tea                          1.03           0.12        0.81
## pip fruit                          1.53           1.42        2.49
## brown bread                        2.44           0.86        1.23
## fruit/vegetable juice              1.73           1.37        1.49
## domestic eggs                      0.75           2.38        1.88
## coffee                             1.65           2.04        0.38
## margarine                          1.34           2.03        3.11
## beef                               1.77           1.51        1.37
## curd                               1.10           2.21        1.38
## butter                             1.13           1.57        2.00
## marinated meats                    1.36           1.98        2.59
## napkins                            0.91           1.84        1.54
## halal meat                         2.01           2.02        3.11
## chocolate                          1.77           1.30        1.95
## frozen vegetables                  0.98           3.29        3.29
## chicken                            1.58           2.30        1.77
## white bread                        2.06           2.08        1.51
## cream cheese                       2.72           1.76        2.55
## waffles                            1.66           1.25        2.09
## dessert                            1.89           1.91        1.06
## salty snack                        1.47           1.91        2.54
## long life bakery product           1.29           2.17        2.39
## berries                            1.94           0.65        1.96
## hamburger meat                     1.77           0.89        0.67
## sugar                              1.35           2.72        2.94
## hygiene articles                   1.36           2.06        2.29
## UHT-milk                           1.66           1.91        1.43
## onions                             1.92           2.42        2.42
## candy                              0.27           2.15        2.69
## specialty chocolate                0.27           0.81        0.54
## butter milk                        1.90           1.37        1.37
## oil                                0.55           1.93        1.65
## frozen meals                       0.27           4.69        4.42
## misc. beverages                    1.94           1.12        0.56
## specialty bar                      1.13           0.57        1.42
## ham                                2.85           1.15        2.88
## beverages                          0.29           1.16        0.87
## meat                               0.59           1.19        1.48
## ice cream                          1.51           2.43        1.52
## sliced cheese                      1.23           3.11        4.04
## hard cheese                        2.56           4.19        1.61
## noodles                            2.02           1.70        1.02
## grapes                             1.01           3.07        1.36
## cat food                           1.06           1.07        1.42
## chewing gum                        0.37           1.13        1.50
## soda                               1.90           1.15        0.77
## detergent                          0.00           1.58        1.58
## red/blush wine                     2.02           0.00        2.03
## white wine                         2.46           0.41        1.24
## turkey                             0.44           2.21        0.88
## dishes                             0.00           1.34        0.89
## bottled water                      1.78           2.24        0.45
## flour                              0.44           2.69        3.14
## semi-finished bread                1.79           5.41        1.80
## baking powder                      0.90           4.10        3.19
## pickled vegetables                 1.37           0.92        3.68
## herbs                              0.46           2.34        0.47
## tropical herbs                     1.85           1.87        2.34
## soft cheese                        1.43           0.96        2.88
## tea                                0.48           1.92        1.92
## processed cheese                   1.95           0.98        0.49
## sausage                            1.01           0.00        1.02
## pasta                              1.02           1.03        0.51
## citrus herbs                       2.05           2.58        1.03
## potted plants                      1.02           2.07        1.03
## canned fish                        2.18           2.74        3.29
## seasonal products                  2.31           2.32        2.90
## cake bar                           0.60           1.80        1.80
## carrots                            2.49           3.13        3.13
## mustard                            0.66           3.32        2.66
## packaged fruit/vegetables          0.00           2.07        1.38
## spread cheese                        NA           1.38        0.69
## frozen dessert                     1.38             NA        3.48
## frozen fish                        0.69           3.48          NA
## cling film/bags                    0.70           3.50        2.80
## salt                               0.00           2.10        1.40
## liquor                             0.00           0.00        0.00
## canned vegetables                  3.00           2.26        1.51
## bottled beer                       1.51           1.52        0.00
## flower (seeds)                     1.51           1.52        0.76
## cooking oil                        1.52           0.00        0.00
## dish cleaner                       0.00           0.00        2.30
## condensed milk                     0.78           1.56        0.78
## roll products                      0.00           0.81        3.24
## photo/film                         0.00           0.00        0.00
## pet care                           1.64           0.00        1.65
## chocolate marshmallow              0.86           0.87        2.60
## herbs/vegetable juice              3.47           2.62        0.00
## whole milk                         1.75           0.00        0.00
## candles                            0.00           1.78        0.00
## mayonnaise                         2.71           1.82        2.73
## Instant food products              3.73           1.88        0.94
## sweet spreads                      0.00           5.64        0.94
## liquor (appetizer)                 0.94           0.95        0.95
## specialty cheese                   0.00           0.95        0.95
## frozen potato products             2.86           1.92        4.80
## house keeping products             2.86           0.00        2.88
## dog food                           0.96           0.97        3.88
## soy                                0.97           0.00        0.00
## instant coffee                     2.11           0.00        0.00
## pip herbs                          3.17           1.06        2.13
## zwieback                           2.19           1.10        3.31
## finished products                  2.28           1.15        1.15
## popcorn                            0.00           0.00        3.44
## vinegar                            0.00           3.44        1.15
## soups                              1.18           2.39        1.19
## female sanitary products           2.58           1.30        2.60
## sparkling wine                     0.00           0.00        0.00
## dental care                        2.74           1.38        5.52
## cereals                            1.39           7.01        4.21
## kitchen towels                     0.00           0.00        7.01
## curd cheese                        7.07           0.00        2.85
## other vegetables                   0.00           4.27        0.00
## rolls/buns                         4.24           1.42        0.00
## softener                           1.46           1.47        1.47
## cleaner                            3.02           1.52        1.52
## spices                             0.00           0.00        1.52
## jam                                0.00           3.10        3.10
## sauces                             0.00           0.00        6.20
## rum                                0.00           6.42        1.61
## liver loaf                         0.00           0.00        0.00
## male cosmetics                     0.00           0.00        1.80
## meat spreads                       0.00           1.84        0.00
## packaged herbs/vegetables          1.83           3.68        1.84
## brandy                             0.00           3.76        1.88
## ketchup                            0.00           0.00        0.00
## abrasive cleaner                   1.95           1.96        0.00
## light bulbs                        3.98           2.01        0.00
## artif. sweetener                   2.14           4.31        6.46
## nuts/prunes                        4.27           2.15        0.00
## specialty fat                      0.00           0.00        6.62
## skin care                          0.00           4.65        2.32
## fish                               4.74           0.00        0.00
## potato products                    2.50           5.05        0.00
## root vegetables                    2.50           2.52        0.00
## snack products                     0.00           5.19        2.60
## nut snack                          0.00           0.00        5.35
## soap                               0.00           5.35        0.00
## syrup                              2.66           2.68        2.68
## bathroom cleaner                   0.00           5.52        0.00
## canned fruit                       0.00           8.28        2.76
## cookware                           0.00           0.00        0.00
## cooking chocolate                  0.00           3.40        0.00
## tidbits                            3.37           0.00        6.79
## cocoa drinks                       0.00           0.00        0.00
## pudding powder                     3.65           0.00        0.00
## ready soups                        0.00           0.00        7.36
## organic marinated meat             0.00           0.00        0.00
## flower soil/fertilizer             0.00           0.00        0.00
## organic products                   0.00           0.00        4.21
## pot plants                         0.00           4.21        0.00
## prosecco                           0.00           0.00        0.00
## frankfurter                        0.00           4.42        0.00
## decalcifier                        4.61           9.30        4.65
## honey                              0.00           4.91        4.91
## specialty vegetables               0.00           0.00        0.00
## cream                              5.84           0.00        5.89
## hair spray                         6.26           0.00        0.00
## frozen fruits                      0.00           0.00        7.36
## rubbing alcohol                    7.30           0.00        0.00
## liqueur                            0.00           0.00        0.00
## make up remover                    0.00           0.00        0.00
## salad dressing                     9.74           9.81        9.81
## frozen chicken                     0.00           0.00        0.00
## whisky                             0.00           0.00        0.00
## baby cosmetics                     0.00           0.00        0.00
## toilet cleaner                    12.52           0.00        0.00
## bags                               0.00           0.00        0.00
## canned herbs                       0.00           0.00        0.00
## kitchen utensil                    0.00           0.00        0.00
## preservation products              0.00           0.00        0.00
## baby food                          0.00           0.00        0.00
## frozen herbss                      0.00           0.00        0.00
## organic sausage                    0.00           0.00        0.00
## sound storage medium               0.00           0.00        0.00
##                           cling film/bags  salt liquor canned vegetables
## rice                                 1.27  1.27   0.20              1.40
## veggies                              1.50  1.68   0.65              2.32
## loaf                                 0.93  1.03   0.58              1.11
## coke                                 1.19  0.83   1.16              1.68
## yogurt                               1.64  1.47   0.48              2.01
## vegetables                           1.16  1.98   0.87              1.98
## mineral water                        1.56  1.23   0.87              0.88
## Plastic bags                         1.31  1.07   2.28              1.41
## tropical fruit                       1.64  1.21   0.37              2.51
## marinated meat                       1.16  1.64   0.93              1.66
## pies/pasties                         0.78  0.78   0.10              0.73
## newspapers                           0.78  1.47   0.84              1.27
## citrus                               1.75  1.64   0.58              2.47
## whipped/sour cream                   1.88  2.76   0.59              2.14
## heinken                              0.67  1.91   5.52              0.61
## green tea                            1.05  0.58   1.00              0.75
## pip fruit                            1.44  1.79   0.51              2.19
## brown bread                          0.99  1.24   1.19              1.87
## fruit/vegetable juice                1.63  1.88   0.27              2.02
## domestic eggs                        1.26  2.53   0.54              2.45
## coffee                               2.83  1.29   0.69              0.83
## margarine                            2.04  2.18   0.15              2.06
## beef                                 1.52  1.11   0.74              1.64
## curd                                 1.25  1.11   0.00              1.95
## butter                               1.30  2.45   1.08              1.40
## marinated meats                      1.38  1.53   0.82              1.16
## napkins                              2.63  1.55   1.32              1.50
## halal meat                           0.63  0.94   1.17              1.69
## chocolate                            1.31  1.47   0.35              2.11
## frozen vegetables                    3.15  1.49   0.53              2.68
## chicken                              1.43  2.32   0.57              1.54
## white bread                          1.52  1.91   1.02              2.26
## cream cheese                         2.17  2.17   0.00              1.49
## waffles                              0.84  1.26   0.45              1.36
## dessert                              1.71  2.56   0.23              2.76
## salty snack                          0.85  1.71   0.68              1.84
## long life bakery product             2.41  1.31   0.70              0.47
## berries                              2.19  1.10   1.40              0.71
## hamburger meat                       2.02  1.35   0.00              4.10
## sugar                                2.05  4.79   0.49              1.72
## hygiene articles                     2.31  1.84   0.49              2.48
## UHT-milk                             1.92  2.41   0.00              2.33
## onions                               1.95  3.90   0.52              2.89
## candy                                2.44  0.54   1.74              1.46
## specialty chocolate                  1.09  0.82   0.29              1.76
## butter milk                          1.10  1.93   0.29              1.19
## oil                                  2.50  3.33   0.30              2.69
## frozen meals                         0.56  0.83   0.00              0.90
## misc. beverages                      1.41  1.41   1.50              2.73
## specialty bar                        0.86  0.86   1.22              0.62
## ham                                  1.16  1.16   0.00              1.87
## beverages                            0.88  1.17   0.31              0.31
## meat                                 1.49  0.90   0.96              0.32
## ice cream                            2.45  1.22   0.98              0.33
## sliced cheese                        1.25  2.51   0.33              3.38
## hard cheese                          1.95  1.95   0.35              4.20
## noodles                              0.68  0.68   0.00              0.74
## grapes                               2.75  1.03   1.10              0.37
## cat food                             1.79  1.44   0.77              1.16
## chewing gum                          1.52  1.52   0.81              0.41
## soda                                 1.55  0.77   0.41              1.25
## detergent                            1.20  1.20   0.43              0.00
## red/blush wine                       0.41  0.41   9.64              1.33
## white wine                           0.42  1.25   0.44              0.90
## turkey                               0.00  1.34   0.00              2.40
## dishes                               1.35  0.00   3.36              0.97
## bottled water                        1.81  2.71   0.00              0.49
## flour                                2.26  3.16   0.96              1.46
## semi-finished bread                  0.91  0.91   1.45              2.45
## baking powder                        2.75  2.29   0.00              2.47
## pickled vegetables                   2.32  0.46   3.96              1.50
## herbs                                1.88  2.35   0.50              2.03
## tropical herbs                       1.88  1.88   0.50              2.54
## soft cheese                          1.93  3.39   0.00              1.56
## tea                                  2.90  2.42   0.00              1.56
## processed cheese                     1.98  0.99   2.11              1.07
## sausage                              0.00  0.51   0.00              0.00
## pasta                                2.59  3.62   0.55              4.46
## citrus herbs                         1.56  1.56   0.56              2.24
## potted plants                        1.04  0.52   0.00              2.24
## canned fish                          3.87  6.08   1.18              2.38
## seasonal products                    0.59  0.00   1.25              1.26
## cake bar                             0.00  0.61   0.65              3.91
## carrots                              0.63  0.00   0.00              2.04
## mustard                              1.34  2.01   0.00              2.16
## packaged fruit/vegetables            0.70  2.78   1.49              1.50
## spread cheese                        0.70  0.00   0.00              3.00
## frozen dessert                       3.50  2.10   0.00              2.26
## frozen fish                          2.80  1.40   0.00              1.51
## cling film/bags                        NA  2.12   3.02              1.52
## salt                                 2.12    NA   0.75              6.85
## liquor                               3.02  0.75     NA              0.00
## canned vegetables                    1.52  6.85   0.00                NA
## bottled beer                         0.00  1.53   3.28              0.83
## flower (seeds)                       2.30  0.00   0.82              1.65
## cooking oil                          1.55  0.00   0.00              0.00
## dish cleaner                         6.97  1.55   1.65              2.50
## condensed milk                       4.73  3.94   0.84              0.00
## roll products                        1.63  1.63   0.00              1.76
## photo/film                           0.82  0.00   0.00              0.89
## pet care                             0.83  0.00   0.89              0.90
## chocolate marshmallow                0.87  0.00   2.80              0.94
## herbs/vegetable juice                2.64  3.53   0.94              2.85
## whole milk                           0.89  2.67   0.95              1.92
## candles                              2.70  1.80   0.00              0.00
## mayonnaise                           2.75  0.92   0.98              0.99
## Instant food products                0.95  2.84   0.00              1.02
## sweet spreads                        0.95  2.84   0.00              3.06
## liquor (appetizer)                   1.91  1.91   4.09              0.00
## specialty cheese                     0.00  3.83   1.02              8.25
## frozen potato products               0.00  2.90   0.00              2.08
## house keeping products               8.71  0.00   1.03              1.04
## dog food                             1.96  4.89   2.09              1.05
## soy                                  0.00  0.99   0.00              0.00
## instant coffee                       1.07  1.07   0.00              2.31
## pip herbs                            2.14  3.22   1.15              0.00
## zwieback                             0.00  0.00   0.00              0.00
## finished products                    0.00  1.16   0.00              2.49
## popcorn                              0.00  2.31   1.23              2.49
## vinegar                              3.47  5.78   0.00              2.49
## soups                                6.01  2.41   0.00              3.89
## female sanitary products             5.24  1.31   0.00              2.82
## sparkling wine                       0.00  3.99   1.42              1.43
## dental care                          1.39  1.39   0.00              1.50
## cereals                              2.83  2.83   0.00              6.09
## kitchen towels                       4.24  1.41   1.51              0.00
## curd cheese                          0.00  0.00   0.00              0.00
## other vegetables                     2.87  4.31   3.07              0.00
## rolls/buns                           1.44  2.87   0.00              1.55
## softener                             1.48  2.97   0.00              3.20
## cleaner                              0.00  3.07   0.00              1.65
## spices                               1.53  1.53   0.00              1.65
## jam                                  1.56  9.37   3.33              0.00
## sauces                               1.56  0.00   0.00              3.36
## rum                                  9.71  1.62   8.64              3.49
## liver loaf                           0.00  3.42   0.00              0.00
## male cosmetics                       3.63  3.63   0.00              1.96
## meat spreads                         1.85  0.00   1.98              2.00
## packaged herbs/vegetables            0.00  0.00   0.00              0.00
## brandy                               0.00  0.00   2.02              0.00
## ketchup                              5.80  3.87   0.00              6.25
## abrasive cleaner                     3.96  3.96   0.00              4.26
## light bulbs                          2.02  2.02   0.00              0.00
## artif. sweetener                     2.17  0.00   0.00              0.00
## nuts/prunes                          0.00  0.00   2.32              0.00
## specialty fat                        6.68  6.68   0.00              2.40
## skin care                            0.00  4.68   0.00              5.04
## fish                                 2.41  2.41   2.57              0.00
## potato products                      0.00  0.00   0.00              0.00
## root vegetables                      0.00 10.17   0.00              0.00
## snack products                       0.00  2.62   0.00              5.64
## nut snack                            0.00  5.39   2.88              0.00
## soap                                 0.00  0.00   0.00              0.00
## syrup                                8.09  0.00   0.00              2.90
## bathroom cleaner                     0.00  0.00   0.00              5.99
## canned fruit                         0.00  0.00   0.00              3.00
## cookware                             0.00  6.14   0.00              3.31
## cooking chocolate                    3.42  3.42   0.00              3.69
## tidbits                              0.00  0.00   0.00              0.00
## cocoa drinks                         7.12  3.56   0.00              0.00
## pudding powder                       3.71  0.00   0.00              0.00
## ready soups                          0.00  0.00   0.00              0.00
## organic marinated meat               0.00  4.05   0.00              4.36
## flower soil/fertilizer               8.48  0.00   0.00              4.56
## organic products                     0.00  4.24   0.00              4.56
## pot plants                           4.24  0.00   0.00              0.00
## prosecco                             0.00  0.00   0.00              0.00
## frankfurter                          0.00  0.00   0.00              0.00
## decalcifier                          0.00  0.00   0.00              0.00
## honey                                4.94  0.00   0.00              5.33
## specialty vegetables                 5.24  5.24   0.00              0.00
## cream                                0.00  0.00   0.00              0.00
## hair spray                           0.00  0.00   0.00              0.00
## frozen fruits                        0.00  0.00   0.00              0.00
## rubbing alcohol                      7.42  0.00   0.00              0.00
## liqueur                              0.00  0.00   0.00              0.00
## make up remover                      0.00  9.89   0.00              0.00
## salad dressing                       0.00  9.89   0.00              0.00
## frozen chicken                       0.00  0.00   0.00              0.00
## whisky                               0.00  0.00   0.00              0.00
## baby cosmetics                       0.00  0.00   0.00              0.00
## toilet cleaner                       0.00  0.00   0.00              0.00
## bags                                 0.00  0.00   0.00              0.00
## canned herbs                         0.00  0.00   0.00              0.00
## kitchen utensil                      0.00  0.00   0.00              0.00
## preservation products                0.00  0.00   0.00              0.00
## baby food                            0.00  0.00   0.00              0.00
## frozen herbss                        0.00  0.00   0.00              0.00
## organic sausage                      0.00 89.01   0.00              0.00
## sound storage medium                 0.00  0.00   0.00              0.00
##                           bottled beer flower (seeds) cooking oil dish cleaner
## rice                              1.01           1.48        0.54         1.19
## veggies                           0.00           1.88        0.00         1.18
## loaf                              0.00           0.96        0.00         1.19
## coke                              0.00           0.90        0.00         1.36
## yogurt                            0.68           0.98        0.68         1.49
## vegetables                        1.41           1.48        1.05         1.57
## mineral water                     0.00           1.33        0.00         1.35
## Plastic bags                      0.53           1.07        0.99         1.44
## tropical fruit                    0.00           1.12        0.00         1.32
## marinated meat                    0.00           1.05        0.00         1.58
## pies/pasties                      0.00           1.16        0.00         1.27
## newspapers                        0.75           1.06        1.07         0.54
## citrus                            0.00           1.43        0.00         1.92
## whipped/sour cream                0.36           2.04        0.73         2.54
## heinken                           0.00           1.34        0.00         0.37
## green tea                         0.00           1.01        0.00         0.77
## pip fruit                         0.00           0.78        0.00         1.70
## brown bread                       1.08           2.02        0.68         1.49
## fruit/vegetable juice             0.00           0.54        0.00         0.41
## domestic eggs                     0.69           1.65        0.14         1.80
## coffee                            1.12           0.98        0.99         2.12
## margarine                         0.44           2.37        0.15         1.49
## beef                              1.65           1.50        0.76         1.97
## curd                              1.36           0.76        1.53         2.14
## butter                            0.78           2.82        0.00         1.26
## marinated meats                   0.00           1.67        0.00         1.85
## napkins                           1.68           1.35        1.02         3.05
## halal meat                        0.00           1.53        0.00         1.03
## chocolate                         0.36           1.78        0.36         1.97
## frozen vegetables                 1.80           2.34        0.73         1.09
## chicken                           0.77           2.32        1.56         2.15
## white bread                       0.62           1.04        0.21         1.46
## cream cheese                      0.21           0.43        0.65         1.08
## waffles                           0.23           0.69        0.92         2.07
## dessert                           0.46           2.09        0.94         1.17
## salty snack                       1.16           0.70        0.23         1.17
## long life bakery product          0.48           1.19        0.72         1.92
## berries                           0.00           1.91        1.20         2.16
## hamburger meat                    0.73           1.95        1.23         3.44
## sugar                             0.99           0.74        0.50         2.25
## hygiene articles                  0.50           1.25        1.26         3.54
## UHT-milk                          0.78           1.05        1.05         1.85
## onions                            1.59           1.32        1.87         1.87
## candy                             0.00           1.47        0.59         2.08
## specialty chocolate               0.59           1.48        0.60         1.79
## butter milk                       0.30           0.00        0.30         2.72
## oil                               1.20           1.81        0.30         3.95
## frozen meals                      0.91           1.21        0.91         0.30
## misc. beverages                   1.22           0.31        0.62         0.62
## specialty bar                     0.31           0.93        0.31         2.51
## ham                               0.31           0.63        0.95         0.00
## beverages                         1.27           1.90        0.32         1.28
## meat                              1.62           0.65        0.33         1.96
## ice cream                         0.66           1.00        0.34         2.35
## sliced cheese                     0.34           1.36        0.69         0.69
## hard cheese                       1.06           0.71        0.00         2.49
## noodles                           8.18           1.12        8.63         0.75
## grapes                            1.12           0.75        0.75         2.26
## cat food                          0.00           0.78        0.39         4.72
## chewing gum                       1.65           1.23        0.41         0.00
## soda                              7.99           1.26        7.21         0.85
## detergent                         0.43           3.03        0.44         3.50
## red/blush wine                    2.23           0.45        0.90         0.90
## white wine                        1.81           2.26        1.82         1.37
## turkey                            6.28           0.48        3.41         0.98
## dishes                            0.98           1.46        0.99         2.96
## bottled water                    10.80           0.49        5.94         0.99
## flour                             0.98           2.45        0.00         2.48
## semi-finished bread               1.48           0.99        0.50         0.50
## baking powder                     0.50           2.99        0.00         1.51
## pickled vegetables                0.50           0.50        1.02         1.52
## herbs                             2.05           2.05        1.03         4.13
## tropical herbs                    6.65           0.00        3.61         0.52
## soft cheese                       0.53           1.58        0.53         3.71
## tea                               6.83           2.63        5.30         1.06
## processed cheese                  1.07           0.54        0.00         0.54
## sausage                           5.56           1.67        8.41         1.68
## pasta                             0.00           2.25        1.13         1.70
## citrus herbs                      7.92           0.57        5.13         1.71
## potted plants                     0.00           0.57        0.00         0.57
## canned fish                       0.60           1.20        0.61         1.21
## seasonal products                 1.91           2.54        0.00         0.64
## cake bar                          0.66           0.00        0.00         0.66
## carrots                           9.60           0.69        6.22         0.00
## mustard                           1.45           0.73        1.47         6.60
## packaged fruit/vegetables         0.00           3.78        0.00         1.52
## spread cheese                     1.51           1.51        1.52         0.00
## frozen dessert                    1.52           1.52        0.00         0.00
## frozen fish                       0.00           0.76        0.00         2.30
## cling film/bags                   0.00           2.30        1.55         6.97
## salt                              1.53           0.00        0.00         1.55
## liquor                            3.28           0.82        0.00         1.65
## canned vegetables                 0.83           1.65        0.00         2.50
## bottled beer                        NA           0.83        5.04         0.00
## flower (seeds)                    0.83             NA        0.00         0.00
## cooking oil                       5.04           0.00          NA         1.70
## dish cleaner                      0.00           0.00        1.70           NA
## condensed milk                    0.86           0.00        0.00         1.73
## roll products                     0.00           1.77        0.89         4.47
## photo/film                        0.90           0.90        0.00         1.81
## pet care                          2.71           0.00        0.00         0.91
## chocolate marshmallow             0.00           0.00        0.00         3.82
## herbs/vegetable juice            11.49           0.00        5.79         0.00
## whole milk                        6.77           2.90        0.00         0.00
## candles                           0.98           3.91        1.97         1.97
## mayonnaise                        0.00           1.99        0.00         6.03
## Instant food products             1.03           1.03        2.07         2.07
## sweet spreads                     0.00           1.03        0.00         3.11
## liquor (appetizer)                6.24           0.00        3.15         1.05
## specialty cheese                  1.04           2.08        1.05         2.10
## frozen potato products            1.05           2.10        1.06         5.30
## house keeping products            0.00           4.20        0.00         4.24
## dog food                          0.00           0.00        1.07         3.22
## soy                               3.22           0.00        4.33         0.00
## instant coffee                    0.00           1.16        0.00         1.17
## pip herbs                         2.33           0.00        4.70         0.00
## zwieback                          1.21           1.21        1.22         3.66
## finished products                 2.51           2.51        1.27         0.00
## popcorn                           1.26           0.00        0.00         1.27
## vinegar                           1.26           0.00        1.27         3.80
## soups                             2.61           2.61        2.64         6.59
## female sanitary products          0.00           0.00        0.00         4.30
## sparkling wine                    1.44           1.44        0.00         5.82
## dental care                       1.51           0.00        0.00         7.62
## cereals                           0.00           1.53        1.55         0.00
## kitchen towels                    1.53           0.00        1.55         4.64
## curd cheese                       0.00           1.56        0.00         0.00
## other vegetables                  3.12           3.12        0.00         0.00
## rolls/buns                       10.92           0.00        1.57         0.00
## softener                          1.61           6.45        0.00         1.63
## cleaner                           0.00           0.00        0.00         3.36
## spices                            0.00           6.67        0.00         3.36
## jam                               0.00           0.00        0.00         3.42
## sauces                            0.00           1.70        0.00         3.42
## rum                               1.76           1.76        1.77         0.00
## liver loaf                        0.00           1.86        0.00         0.00
## male cosmetics                    0.00           1.97        1.99         3.98
## meat spreads                      0.00           4.03        0.00         2.03
## packaged herbs/vegetables         8.06           4.03        6.10         2.03
## brandy                            4.11           0.00        2.07         4.15
## ketchup                           2.10           4.20        0.00         6.36
## abrasive cleaner                  0.00           4.30        0.00         8.67
## light bulbs                       0.00           0.00        0.00         0.00
## artif. sweetener                  0.00           0.00        0.00         4.76
## nuts/prunes                       2.36           0.00        0.00         0.00
## specialty fat                     0.00           7.25        0.00         2.44
## skin care                         0.00           5.09        0.00         0.00
## fish                              0.00           0.00        2.64         0.00
## potato products                   2.76           5.52        0.00         0.00
## root vegetables                   0.00           2.76        0.00         0.00
## snack products                    0.00           0.00        2.87         0.00
## nut snack                         2.93           2.93        0.00         0.00
## soap                              0.00           0.00        0.00         0.00
## syrup                             0.00           0.00        0.00         5.91
## bathroom cleaner                  0.00           0.00        3.05         6.10
## canned fruit                      0.00           6.04        0.00         0.00
## cookware                          0.00           3.33        0.00        10.09
## cooking chocolate                 0.00           0.00        0.00         0.00
## tidbits                           3.72           0.00        0.00         0.00
## cocoa drinks                      3.87           3.87        0.00         3.90
## pudding powder                    0.00           8.06        0.00         4.06
## ready soups                       0.00           0.00        0.00         0.00
## organic marinated meat            0.00           0.00        0.00         0.00
## flower soil/fertilizer            0.00           9.21        0.00         9.29
## organic products                  4.60           4.60        0.00         0.00
## pot plants                       13.81           0.00        4.64         0.00
## prosecco                          4.60           0.00        0.00         0.00
## frankfurter                       9.67           0.00        0.00         0.00
## decalcifier                       0.00           0.00        5.13         0.00
## honey                             0.00           5.37        0.00         0.00
## specialty vegetables              0.00           0.00        0.00         5.74
## cream                             0.00           6.45        0.00         0.00
## hair spray                        0.00           0.00        0.00         0.00
## frozen fruits                     0.00           0.00        0.00         0.00
## rubbing alcohol                   0.00           8.06        0.00         0.00
## liqueur                           0.00           0.00        0.00         0.00
## make up remover                   0.00           0.00        0.00         0.00
## salad dressing                    0.00           0.00        0.00         0.00
## frozen chicken                   12.09           0.00        0.00         0.00
## whisky                            0.00           0.00        0.00         0.00
## baby cosmetics                    0.00           0.00        0.00        27.86
## toilet cleaner                    0.00           0.00        0.00         0.00
## bags                              0.00           0.00        0.00         0.00
## canned herbs                      0.00           0.00        0.00         0.00
## kitchen utensil                   0.00           0.00        0.00         0.00
## preservation products             0.00           0.00        0.00        48.76
## baby food                         0.00           0.00        0.00         0.00
## frozen herbss                     0.00           0.00        0.00         0.00
## organic sausage                   0.00           0.00        0.00         0.00
## sound storage medium              0.00           0.00        0.00         0.00
##                           condensed milk roll products photo/film pet care
## rice                                0.86          1.79       0.94     0.98
## veggies                             1.30          2.54       0.60     1.05
## loaf                                1.21          1.19       0.63     0.52
## coke                                1.22          0.96       0.67     1.28
## yogurt                              1.07          1.57       0.79     1.00
## vegetables                          1.29          2.76       0.72     1.20
## mineral water                       1.28          1.33       0.48     1.25
## Plastic bags                        1.64          1.04       0.48     1.06
## tropical fruit                      1.44          1.99       0.40     1.32
## marinated meat                      1.29          2.12       0.45     0.79
## pies/pasties                        0.97          1.23       0.23     0.57
## newspapers                          0.66          1.02       0.80     1.50
## citrus                              1.71          1.90       0.51     0.77
## whipped/sour cream                  1.11          2.55       0.77     1.04
## heinken                             1.50          2.34       0.26     1.59
## green tea                           0.52          0.94       0.00     0.69
## pip fruit                           1.87          1.66       0.84     1.55
## brown bread                         0.83          1.43       0.72     1.02
## fruit/vegetable juice               2.23          2.03       0.58     1.62
## domestic eggs                       0.84          2.48       1.18     0.74
## coffee                              4.17          2.08       1.35     1.37
## margarine                           0.76          3.31       0.32     0.80
## beef                                1.08          2.24       0.97     0.65
## curd                                0.93          2.74       0.98     0.33
## butter                              1.61          2.33       0.50     0.85
## marinated meats                     1.37          1.77       0.54     0.72
## napkins                             1.21          2.15       1.81     1.82
## halal meat                          0.53          2.90       0.37     1.11
## chocolate                           0.55          1.51       0.00     1.35
## frozen vegetables                   2.22          2.30       1.74     0.98
## chicken                             1.39          2.68       0.83     0.84
## white bread                         2.55          1.54       0.89     1.35
## cream cheese                        0.88          2.05       0.46     1.63
## waffles                             1.64          1.46       0.74     1.49
## dessert                             1.19          0.99       0.50     0.50
## salty snack                         2.38          1.48       1.00     1.26
## long life bakery product            2.19          1.26       0.77     0.52
## berries                             1.22          2.28       0.26     2.07
## hamburger meat                      0.75          3.11       1.05     1.06
## sugar                               2.80          3.43       0.53     1.08
## hygiene articles                    0.51          1.60       2.42     1.09
## UHT-milk                            2.68          0.56       0.00     1.98
## onions                              1.36          1.69       0.00     2.01
## candy                               0.91          0.63       0.63     0.96
## specialty chocolate                 1.21          1.89       0.64     0.32
## butter milk                         0.31          2.23       1.93     1.30
## oil                                 2.47          4.49       0.32     0.98
## frozen meals                        0.62          1.29       0.97     0.66
## misc. beverages                     1.26          1.95       0.66     1.33
## specialty bar                       0.32          0.33       0.33     1.01
## ham                                 0.97          1.68       0.00     1.37
## beverages                           0.00          0.67       0.68     0.69
## meat                                0.67          2.42       1.05     1.06
## ice cream                           1.36          0.71       0.36     0.00
## sliced cheese                       1.05          2.17       0.73     1.48
## hard cheese                         1.09          1.50       0.38     2.30
## noodles                             0.38          1.19       1.20     0.40
## grapes                              0.38          1.19       1.60     1.21
## cat food                            1.60          3.32       0.00     5.49
## chewing gum                         0.00          0.88       1.77     0.00
## soda                                0.43          0.00       1.81     0.91
## detergent                           1.34          2.77       2.33     1.41
## red/blush wine                      0.91          0.47       0.96     1.45
## white wine                          0.93          1.44       0.00     0.49
## turkey                              0.50          1.03       1.56     0.52
## dishes                              2.01          1.56       1.05     1.06
## bottled water                       1.01          1.04       0.53     1.06
## flour                               1.51          5.22       0.53     1.06
## semi-finished bread                 1.52          2.62       1.06     2.14
## baking powder                       1.02          1.59       2.14     2.16
## pickled vegetables                  2.07          1.61       0.00     0.55
## herbs                               1.05          3.81       0.00     0.00
## tropical herbs                      0.53          0.00       0.55     0.00
## soft cheese                         2.16          3.91       0.00     1.14
## tea                                 0.00          2.24       1.69     0.00
## processed cheese                    1.65          2.29       0.58     0.58
## sausage                             1.14          0.59       2.39     0.60
## pasta                               0.58          3.59       1.21     1.83
## citrus herbs                        0.58          0.60       0.00     2.45
## potted plants                       0.00          1.81       0.61     1.84
## canned fish                         3.08          0.00       0.00     1.95
## seasonal products                   0.65          1.35       1.37     0.69
## cake bar                            1.35          0.70       0.00     1.43
## carrots                             0.00          2.19       0.74     1.49
## mustard                             0.00          0.77       0.00     0.00
## packaged fruit/vegetables           2.33          0.00       0.81     0.82
## spread cheese                       0.78          0.00       0.00     1.64
## frozen dessert                      1.56          0.81       0.00     0.00
## frozen fish                         0.78          3.24       0.00     1.65
## cling film/bags                     4.73          1.63       0.82     0.83
## salt                                3.94          1.63       0.00     0.00
## liquor                              0.84          0.00       0.00     0.89
## canned vegetables                   0.00          1.76       0.89     0.90
## bottled beer                        0.86          0.00       0.90     2.71
## flower (seeds)                      0.00          1.77       0.90     0.00
## cooking oil                         0.00          0.89       0.00     0.00
## dish cleaner                        1.73          4.47       1.81     0.91
## condensed milk                        NA          1.82       0.00     0.93
## roll products                       1.82            NA       0.00     2.88
## photo/film                          0.00          0.00         NA     0.00
## pet care                            0.93          2.88       0.00       NA
## chocolate marshmallow               0.00          0.00       0.00     1.03
## herbs/vegetable juice               1.97          1.02       1.03     2.08
## whole milk                          2.98          0.00       0.00     0.00
## candles                             3.01          4.16       2.10     0.00
## mayonnaise                          2.05          4.24       0.00     2.16
## Instant food products               1.06          1.09       1.10     0.00
## sweet spreads                       1.06          2.19       1.10     2.23
## liquor (appetizer)                  1.07          1.11       0.00     1.13
## specialty cheese                    3.20          1.11       1.12     0.00
## frozen potato products              0.00          2.24       1.13     2.28
## house keeping products              2.16          3.36       1.13     2.28
## dog food                            2.18          1.13       0.00     1.15
## soy                                 0.00          1.14       2.31     0.00
## instant coffee                      1.20          1.24       1.25     5.05
## pip herbs                           0.00          1.24       0.00     1.26
## zwieback                            0.00          1.29       0.00     0.00
## finished products                   0.00          1.34       0.00     2.72
## popcorn                             0.00          2.67       1.35     4.08
## vinegar                             1.29          6.68       0.00     2.72
## soups                               1.34          5.56       0.00     0.00
## female sanitary products            1.46          0.00       1.53     1.54
## sparkling wine                      1.48          1.54       0.00     1.56
## dental care                         0.00          1.61       3.25     3.28
## cereals                             0.00          1.63       1.65     3.33
## kitchen towels                      6.30          3.27       1.65     4.99
## curd cheese                         1.60          1.66       0.00     0.00
## other vegetables                    3.20          1.66       0.00     3.38
## rolls/buns                          4.80          1.66       0.00     3.38
## softener                            0.00          3.43       5.19     3.49
## cleaner                             0.00          0.00       0.00     0.00
## spices                              1.71          0.00       0.00     1.81
## jam                                 0.00          5.42       0.00     0.00
## sauces                              0.00          3.61       0.00     9.19
## rum                                 1.80          1.87       1.89     0.00
## liver loaf                          1.91          5.94       3.99     4.03
## male cosmetics                      4.05          0.00       0.00     0.00
## meat spreads                        4.14          2.14       0.00     0.00
## packaged herbs/vegetables           2.07          0.00       2.16     0.00
## brandy                              8.45          0.00       0.00     0.00
## ketchup                             0.00          0.00       2.26     0.00
## abrasive cleaner                    2.21          4.57       0.00     0.00
## light bulbs                         0.00          0.00       0.00     0.00
## artif. sweetener                    0.00          5.02       7.60     0.00
## nuts/prunes                         4.84          0.00       0.00     0.00
## specialty fat                       0.00          5.14       0.00     0.00
## skin care                           0.00          5.42       0.00     0.00
## fish                                2.68          5.56       0.00     5.67
## potato products                     2.84          0.00       2.97     0.00
## root vegetables                     2.84          2.94       0.00     5.99
## snack products                      0.00          0.00       0.00     3.08
## nut snack                           9.02          0.00       0.00     6.35
## soap                                0.00          0.00       0.00     0.00
## syrup                               3.01          3.12       3.15     0.00
## bathroom cleaner                    6.20          3.22       0.00     0.00
## canned fruit                        0.00          0.00       0.00     3.28
## cookware                            3.42          0.00       0.00     0.00
## cooking chocolate                   0.00          3.96       0.00     0.00
## tidbits                             3.82          0.00       0.00     0.00
## cocoa drinks                        3.97          4.12       0.00     0.00
## pudding powder                      4.14          0.00       0.00     0.00
## ready soups                         0.00          0.00       0.00     0.00
## organic marinated meat              0.00          0.00       0.00     0.00
## flower soil/fertilizer              0.00          0.00       9.89     0.00
## organic products                    0.00          4.90       0.00     0.00
## pot plants                          0.00          0.00       0.00     0.00
## prosecco                            0.00          0.00       0.00     0.00
## frankfurter                         9.92          0.00       0.00     0.00
## decalcifier                         0.00          0.00       0.00     0.00
## honey                               0.00          0.00       0.00     0.00
## specialty vegetables                5.84          0.00       0.00     0.00
## cream                               0.00         13.72       0.00     6.99
## hair spray                          0.00          0.00       0.00     0.00
## frozen fruits                       0.00          0.00       0.00     0.00
## rubbing alcohol                     0.00          0.00       0.00     0.00
## liqueur                             0.00          0.00       0.00     0.00
## make up remover                    11.03          0.00       0.00    11.65
## salad dressing                      0.00          0.00       0.00     0.00
## frozen chicken                      0.00          0.00       0.00     0.00
## whisky                              0.00          0.00       0.00     0.00
## baby cosmetics                      0.00          0.00       0.00     0.00
## toilet cleaner                      0.00          0.00       0.00     0.00
## bags                                0.00          0.00       0.00     0.00
## canned herbs                        0.00          0.00       0.00     0.00
## kitchen utensil                     0.00          0.00       0.00     0.00
## preservation products               0.00          0.00       0.00     0.00
## baby food                           0.00          0.00       0.00     0.00
## frozen herbss                       0.00          0.00       0.00     0.00
## organic sausage                     0.00          0.00       0.00     0.00
## sound storage medium                0.00          0.00       0.00     0.00
##                           chocolate marshmallow herbs/vegetable juice
## rice                                       1.38                  1.20
## veggies                                    1.16                  0.00
## loaf                                       1.34                  0.00
## coke                                       1.54                  0.00
## yogurt                                     1.12                  1.77
## vegetables                                 1.18                  1.87
## mineral water                              1.21                  0.00
## Plastic bags                               0.51                  1.64
## tropical fruit                             1.92                  0.00
## marinated meat                             1.19                  0.00
## pies/pasties                               1.68                  0.48
## newspapers                                 1.33                  1.59
## citrus                                     1.35                  0.00
## whipped/sour cream                         1.50                  0.96
## heinken                                    0.83                  0.00
## green tea                                  0.14                  0.00
## pip fruit                                  1.18                  0.00
## brown bread                                0.46                  1.86
## fruit/vegetable juice                      0.62                  0.00
## domestic eggs                              2.96                  1.73
## coffee                                     2.23                  1.93
## margarine                                  2.53                  1.87
## beef                                       1.20                  2.07
## curd                                       1.20                  1.39
## butter                                     1.60                  1.62
## marinated meats                            1.52                  0.00
## napkins                                    2.49                  0.97
## halal meat                                 2.71                  0.00
## chocolate                                  3.84                  1.02
## frozen vegetables                          2.66                  1.65
## chicken                                    1.98                  2.00
## white bread                                1.18                  2.38
## cream cheese                               1.71                  1.97
## waffles                                    4.16                  1.58
## dessert                                    1.85                  1.07
## salty snack                                1.32                  1.60
## long life bakery product                   2.97                  1.36
## berries                                    0.81                  1.91
## hamburger meat                             2.22                  1.40
## sugar                                      2.54                  1.99
## hygiene articles                           1.71                  1.44
## UHT-milk                                   0.30                  1.50
## onions                                     0.60                  0.91
## candy                                      5.70                  0.68
## specialty chocolate                        2.35                  0.68
## butter milk                                0.68                  2.06
## oil                                        2.40                  1.04
## frozen meals                               0.69                  1.73
## misc. beverages                            0.70                  1.76
## specialty bar                              1.41                  0.71
## ham                                        3.94                  1.81
## beverages                                  2.16                  1.46
## meat                                       0.74                  0.37
## ice cream                                  2.64                  2.29
## sliced cheese                              1.55                  3.13
## hard cheese                                0.80                  2.43
## noodles                                    0.85                  8.11
## grapes                                     0.42                  2.14
## cat food                                   0.00                  0.45
## chewing gum                                3.28                  0.95
## soda                                       0.48                 10.62
## detergent                                  1.97                  0.00
## red/blush wine                             1.52                  0.51
## white wine                                 0.00                  2.59
## turkey                                     2.20                  5.00
## dishes                                     0.56                  1.12
## bottled water                              1.67                  9.58
## flour                                      3.35                  1.13
## semi-finished bread                        4.49                  1.70
## baking powder                              1.70                  2.29
## pickled vegetables                         2.86                  1.73
## herbs                                      1.16                  1.18
## tropical herbs                             2.33                 11.75
## soft cheese                                1.79                  3.02
## tea                                        2.39                  6.03
## processed cheese                           2.44                  1.85
## sausage                                    0.63                  4.47
## pasta                                      1.28                  0.65
## citrus herbs                               0.64                  9.74
## potted plants                              1.29                  0.00
## canned fish                                1.37                  0.69
## seasonal products                          1.45                  0.00
## cake bar                                   2.24                  0.00
## carrots                                    1.56                 11.03
## mustard                                    4.96                  1.67
## packaged fruit/vegetables                  1.72                  0.00
## spread cheese                              0.86                  3.47
## frozen dessert                             0.87                  2.62
## frozen fish                                2.60                  0.00
## cling film/bags                            0.87                  2.64
## salt                                       0.00                  3.53
## liquor                                     2.80                  0.94
## canned vegetables                          0.94                  2.85
## bottled beer                               0.00                 11.49
## flower (seeds)                             0.00                  0.00
## cooking oil                                0.00                  5.79
## dish cleaner                               3.82                  0.00
## condensed milk                             0.00                  1.97
## roll products                              0.00                  1.02
## photo/film                                 0.00                  1.03
## pet care                                   1.03                  2.08
## chocolate marshmallow                        NA                  0.00
## herbs/vegetable juice                      0.00                    NA
## whole milk                                 1.10                 15.55
## candles                                    0.00                  1.12
## mayonnaise                                 2.27                  1.14
## Instant food products                      2.34                  2.36
## sweet spreads                              0.00                  1.18
## liquor (appetizer)                         2.36                  1.19
## specialty cheese                           0.00                  2.39
## frozen potato products                     0.00                  2.41
## house keeping products                     1.20                  0.00
## dog food                                   2.42                  0.00
## soy                                        0.00                 13.57
## instant coffee                             0.00                  1.34
## pip herbs                                  0.00                 14.72
## zwieback                                   6.87                  0.00
## finished products                          1.43                  2.88
## popcorn                                    2.86                  0.00
## vinegar                                    1.43                  2.88
## soups                                      0.00                  0.00
## female sanitary products                   0.00                  0.00
## sparkling wine                             0.00                  4.97
## dental care                                5.15                  0.00
## cereals                                    1.75                  1.76
## kitchen towels                             1.75                  0.00
## curd cheese                                0.00                  1.79
## other vegetables                           0.00                  8.95
## rolls/buns                                 1.77                 16.12
## softener                                   1.83                  1.85
## cleaner                                    0.00                  0.00
## spices                                     1.90                  0.00
## jam                                        1.93                  0.00
## sauces                                     1.93                  0.00
## rum                                        2.00                  6.06
## liver loaf                                 0.00                  0.00
## male cosmetics                             2.24                  0.00
## meat spreads                               0.00                  2.31
## packaged herbs/vegetables                  0.00                  9.25
## brandy                                     0.00                  2.36
## ketchup                                    2.39                  0.00
## abrasive cleaner                           0.00                  0.00
## light bulbs                                2.50                  0.00
## artif. sweetener                           5.36                  5.42
## nuts/prunes                                0.00                  5.42
## specialty fat                              0.00                  0.00
## skin care                                  0.00                  0.00
## fish                                       0.00                  0.00
## potato products                            9.42                  9.52
## root vegetables                            3.14                  6.35
## snack products                             6.47                  0.00
## nut snack                                  0.00                  0.00
## soap                                       6.66                  3.36
## syrup                                      0.00                  0.00
## bathroom cleaner                           6.87                  3.47
## canned fruit                               0.00                  0.00
## cookware                                   3.79                  0.00
## cooking chocolate                          0.00                  0.00
## tidbits                                    4.23                  0.00
## cocoa drinks                               0.00                  4.44
## pudding powder                             0.00                  0.00
## ready soups                                0.00                  0.00
## organic marinated meat                     0.00                  0.00
## flower soil/fertilizer                     0.00                  0.00
## organic products                          15.71                  5.29
## pot plants                                 0.00                  5.29
## prosecco                                   0.00                  0.00
## frankfurter                                0.00                 22.21
## decalcifier                                0.00                 11.69
## honey                                     18.33                  0.00
## specialty vegetables                       0.00                  0.00
## cream                                      0.00                  0.00
## hair spray                                 0.00                  0.00
## frozen fruits                             18.33                  0.00
## rubbing alcohol                            0.00                  0.00
## liqueur                                    0.00                  0.00
## make up remover                            0.00                  0.00
## salad dressing                             0.00                  0.00
## frozen chicken                             0.00                  0.00
## whisky                                     0.00                  0.00
## baby cosmetics                             0.00                  0.00
## toilet cleaner                            15.71                  0.00
## bags                                       0.00                  0.00
## canned herbs                               0.00                 55.52
## kitchen utensil                            0.00                  0.00
## preservation products                      0.00                  0.00
## baby food                                  0.00                  0.00
## frozen herbss                              0.00                  0.00
## organic sausage                            0.00                111.04
## sound storage medium                       0.00                  0.00
##                           whole milk candles mayonnaise Instant food products
## rice                            0.04    1.46       1.53                  1.41
## veggies                         0.00    1.37       2.13                  1.69
## loaf                            0.00    0.81       1.73                  1.52
## coke                            0.00    0.79       1.62                  1.32
## yogurt                          1.14    0.87       2.21                  1.22
## vegetables                      0.00    1.65       2.39                  2.01
## mineral water                   0.00    0.73       1.06                  1.10
## Plastic bags                    1.03    0.31       1.92                  1.54
## tropical fruit                  0.00    1.65       1.79                  1.73
## marinated meat                  0.00    1.23       2.63                  1.03
## pies/pasties                    1.59    2.34       1.64                  1.95
## newspapers                      1.24    1.00       1.02                  1.84
## citrus                          0.00    1.95       1.56                  1.61
## whipped/sour cream              1.95    0.84       2.29                  1.03
## heinken                         0.00    1.29       0.58                  0.90
## green tea                       0.00    1.19       0.76                  0.31
## pip fruit                       0.00    1.37       1.86                  1.60
## brown bread                     2.19    0.32       1.93                  1.33
## fruit/vegetable juice           0.00    1.12       1.95                  1.51
## domestic eggs                   0.64    1.45       2.30                  1.69
## coffee                          1.62    2.13       2.18                  1.04
## margarine                       0.69    3.99       3.01                  1.28
## beef                            1.74    2.11       2.33                  2.04
## curd                            2.46    1.06       1.81                  2.61
## butter                          1.45    2.38       1.68                  2.32
## marinated meats                 0.00    0.98       2.79                  2.06
## napkins                         1.76    0.99       1.61                  2.07
## halal meat                      0.00    1.60       1.43                  2.10
## chocolate                       1.44    1.67       3.83                  0.88
## frozen vegetables               0.84    1.27       2.15                  1.56
## chicken                         1.35    1.82       2.55                  1.20
## white bread                     1.44    0.97       1.49                  2.55
## cream cheese                    1.49    1.26       2.82                  0.79
## waffles                         2.39    1.34       1.91                  0.85
## dessert                         1.88    2.72       2.50                  1.14
## salty snack                     0.00    1.09       2.50                  2.29
## long life bakery product        0.83    1.95       2.84                  0.59
## berries                         0.83    1.40       2.28                  0.88
## hamburger meat                  2.26    1.43       2.91                 10.82
## sugar                           1.15    2.61       1.78                  1.53
## hygiene articles                1.74    1.17       1.80                  2.47
## UHT-milk                        0.61    1.22       2.81                  1.61
## onions                          1.84    0.31       3.17                  1.31
## candy                           0.00    1.38       2.47                  0.73
## specialty chocolate             0.69    1.73       1.41                  1.46
## butter milk                     1.74    0.35       2.15                  0.00
## oil                             2.45    3.18       2.88                  2.23
## frozen meals                    2.45    0.71       1.08                  1.49
## misc. beverages                 1.42    0.00       1.46                  0.76
## specialty bar                   1.44    0.73       0.00                  1.15
## ham                             2.92    0.37       2.26                  0.78
## beverages                       0.74    0.74       1.14                  1.96
## meat                            1.51    1.90       1.55                  2.40
## ice cream                       1.54    1.56       1.19                  2.46
## sliced cheese                   3.55    0.00       3.66                  2.10
## hard cheese                     0.82    2.48       2.95                  1.74
## noodles                         0.00    1.31       0.44                  1.84
## grapes                          1.73    1.75       2.68                  1.38
## cat food                        0.90    0.91       2.33                  0.00
## chewing gum                     1.91    0.96       0.98                  1.02
## soda                            4.39    0.49       2.01                  1.56
## detergent                       1.01    3.56       1.04                  2.68
## red/blush wine                  2.07    0.52       0.00                  1.65
## white wine                      2.10    2.12       0.54                  0.00
## turkey                          3.93    1.13       1.16                  2.39
## dishes                          0.57    2.86       1.75                  1.81
## bottled water                   9.11    0.58       0.00                  1.21
## flour                           1.14    1.15       2.93                  2.42
## semi-finished bread             0.57    0.58       1.18                  1.22
## baking powder                   1.16    2.92       2.98                  1.84
## pickled vegetables              0.58    1.77       3.61                  1.86
## herbs                           1.78    1.80       3.06                  2.53
## tropical herbs                  9.49    0.60       1.84                  1.26
## soft cheese                     2.44    3.69       2.51                  0.00
## tea                             0.61    1.23       1.26                  2.59
## processed cheese                1.25    0.00       3.85                  3.31
## sausage                         7.73    1.30       0.00                  0.69
## pasta                           1.96    3.29       1.34                  4.86
## citrus herbs                    6.56    1.99       0.00                  1.40
## potted plants                   0.00    1.99       1.35                  0.00
## canned fish                     0.00    4.22       6.46                  8.15
## seasonal products               0.74    1.49       3.04                  0.00
## cake bar                        2.29    0.77       1.57                  0.81
## carrots                         0.00    0.80       1.64                  2.54
## mustard                         1.69    3.41      13.91                  1.79
## packaged fruit/vegetables       0.00    2.66       2.71                  0.00
## spread cheese                   1.75    0.00       2.71                  3.73
## frozen dessert                  0.00    1.78       1.82                  1.88
## frozen fish                     0.00    0.00       2.73                  0.94
## cling film/bags                 0.89    2.70       2.75                  0.95
## salt                            2.67    1.80       0.92                  2.84
## liquor                          0.95    0.00       0.98                  0.00
## canned vegetables               1.92    0.00       0.99                  1.02
## bottled beer                    6.77    0.98       0.00                  1.03
## flower (seeds)                  2.90    3.91       1.99                  1.03
## cooking oil                     0.00    1.97       0.00                  2.07
## dish cleaner                    0.00    1.97       6.03                  2.07
## condensed milk                  2.98    3.01       2.05                  1.06
## roll products                   0.00    4.16       4.24                  1.09
## photo/film                      0.00    2.10       0.00                  1.10
## pet care                        0.00    0.00       2.16                  0.00
## chocolate marshmallow           1.10    0.00       2.27                  2.34
## herbs/vegetable juice          15.55    1.12       1.14                  2.36
## whole milk                        NA    0.00       1.16                  2.39
## candles                         0.00      NA       3.50                  2.41
## mayonnaise                      1.16    3.50         NA                  3.69
## Instant food products           2.39    2.41       3.69                    NA
## sweet spreads                   1.19    0.00       2.46                  2.54
## liquor (appetizer)              0.00    2.44       1.24                  0.00
## specialty cheese                1.21    0.00       1.24                  1.28
## frozen potato products          0.00    2.46       5.03                  2.59
## house keeping products          0.00    2.46       1.26                  5.19
## dog food                        0.00    0.00       0.00                  0.00
## soy                             0.00    5.03       1.28                  0.00
## instant coffee                  2.70    0.00       2.79                  0.00
## pip herbs                       8.11    1.36       0.00                  1.44
## zwieback                        1.40    0.00       2.89                  5.97
## finished products               1.46    0.00       0.00                  1.55
## popcorn                         0.00    0.00       3.00                  3.10
## vinegar                         1.46    4.41       0.00                  1.55
## soups                           1.52    4.59       4.69                  6.45
## female sanitary products        0.00    0.00       3.40                  1.75
## sparkling wine                  0.00    0.00       3.45                  0.00
## dental care                     0.00    0.00       5.42                  1.86
## cereals                         0.00    3.60       0.00                  0.00
## kitchen towels                  1.78    7.19       0.00                  1.89
## curd cheese                     1.81    1.83       0.00                  1.92
## other vegetables               43.41    0.00       0.00                  5.77
## rolls/buns                     45.22    0.00       0.00                  3.85
## softener                        0.00    0.00       0.00                  1.99
## cleaner                         0.00    0.00       1.99                  0.00
## spices                          0.00    1.95       5.98                  2.06
## jam                             1.97    3.97       2.03                  2.09
## sauces                          0.00    0.00       2.03                  0.00
## rum                             4.08    0.00       4.20                  0.00
## liver loaf                      0.00    4.36       4.45                  0.00
## male cosmetics                  0.00    0.00       0.00                  0.00
## meat spreads                    4.67    2.36       0.00                  0.00
## packaged herbs/vegetables       2.34    2.36       4.82                  0.00
## brandy                          2.39    0.00       0.00                  0.00
## ketchup                         2.44    0.00       7.54                  7.78
## abrasive cleaner                0.00    2.52       2.57                  0.00
## light bulbs                     0.00    0.00       0.00                  0.00
## artif. sweetener                0.00    8.29       2.82                  0.00
## nuts/prunes                     2.74    0.00       2.82                  5.82
## specialty fat                   0.00    8.50       5.78                  0.00
## skin care                       2.95    2.98       6.09                  6.28
## fish                            3.03    3.06       0.00                  0.00
## potato products                 3.20    0.00       0.00                  3.41
## root vegetables                44.86    0.00       0.00                  3.41
## snack products                  0.00    0.00       0.00                  3.51
## nut snack                       3.40    0.00       3.50                  7.23
## soap                            0.00    0.00       0.00                  0.00
## syrup                           0.00    0.00       0.00                  3.62
## bathroom cleaner                0.00    0.00       0.00                  0.00
## canned fruit                    0.00    3.54       7.23                  7.46
## cookware                        0.00    0.00       0.00                  0.00
## cooking chocolate               0.00    4.36       0.00                  0.00
## tidbits                         8.63    0.00       4.45                  0.00
## cocoa drinks                    0.00    0.00      13.87                  0.00
## pudding powder                  4.67    4.72       0.00                  4.97
## ready soups                     4.67    0.00       4.82                  0.00
## organic marinated meat          0.00   10.30       0.00                  0.00
## flower soil/fertilizer          0.00    0.00       0.00                  0.00
## organic products                0.00    0.00       0.00                  0.00
## pot plants                      0.00    5.39       0.00                  0.00
## prosecco                        0.00    0.00       0.00                  0.00
## frankfurter                    50.47    0.00       0.00                  0.00
## decalcifier                     5.90    5.96       0.00                  0.00
## honey                           0.00    0.00       0.00                  6.63
## specialty vegetables            0.00    0.00       6.80                  0.00
## cream                           0.00    0.00       0.00                  0.00
## hair spray                      0.00    0.00       0.00                  0.00
## frozen fruits                   0.00    0.00       0.00                  0.00
## rubbing alcohol                 0.00    0.00       0.00                  0.00
## liqueur                         0.00    0.00       0.00                  0.00
## make up remover                 0.00    0.00       0.00                  0.00
## salad dressing                  0.00    0.00       0.00                  0.00
## frozen chicken                  0.00    0.00       0.00                  0.00
## whisky                          0.00    0.00       0.00                  0.00
## baby cosmetics                  0.00    0.00       0.00                  0.00
## toilet cleaner                  0.00    0.00      16.52                  0.00
## bags                           22.43    0.00       0.00                  0.00
## canned herbs                    0.00    0.00       0.00                  0.00
## kitchen utensil                 0.00   28.32       0.00                 29.83
## preservation products           0.00    0.00      57.81                  0.00
## baby food                       0.00    0.00       0.00                  0.00
## frozen herbss                   0.00    0.00       0.00                  0.00
## organic sausage                 0.00    0.00       0.00                  0.00
## sound storage medium            0.00    0.00       0.00                  0.00
##                           sweet spreads liquor (appetizer) specialty cheese
## rice                               1.58               0.75             1.64
## veggies                            1.50               0.89             2.66
## loaf                               1.06               0.60             0.73
## coke                               1.74               1.69             0.98
## yogurt                             1.82               0.92             2.38
## vegetables                         2.01               0.83             2.22
## mineral water                      0.44               0.78             1.89
## Plastic bags                       2.31               1.89             1.00
## tropical fruit                     1.50               1.05             1.87
## marinated meat                     1.03               0.78             1.57
## pies/pasties                       1.43               0.39             0.92
## newspapers                         1.58               2.52             0.66
## citrus                             1.47               0.44             2.07
## whipped/sour cream                 1.48               1.05             2.39
## heinken                            0.45               2.74             0.76
## green tea                          0.31               2.68             0.32
## pip fruit                          2.25               0.49             2.27
## brown bread                        1.99               0.34             0.84
## fruit/vegetable juice              2.52               0.68             1.19
## domestic eggs                      2.03               0.68             2.22
## coffee                             1.90               1.75             1.40
## margarine                          1.28               0.92             1.48
## beef                               1.85               0.37             1.31
## curd                               1.49               1.70             1.32
## butter                             1.35               0.39             2.34
## marinated meats                    1.44               0.42             1.25
## napkins                            1.45               1.68             0.63
## halal meat                         1.26               1.28             0.85
## chocolate                          2.19               0.44             1.11
## frozen vegetables                  2.22               3.14             2.92
## chicken                            1.20               2.17             1.21
## white bread                        4.09               0.52             2.32
## cream cheese                       2.91               0.27             2.41
## waffles                            3.10               1.71             1.14
## dessert                            1.43               0.29             1.16
## salty snack                        2.29               0.87             1.74
## long life bakery product           3.22               1.19             1.19
## berries                            0.88               0.89             1.78
## hamburger meat                     3.61               0.30             2.13
## sugar                              1.53               0.62             0.62
## hygiene articles                   1.85               2.19             2.19
## UHT-milk                           1.93               1.96             2.28
## onions                             0.98               3.30             3.96
## candy                              1.45               2.57             1.47
## specialty chocolate                1.46               0.37             0.74
## butter milk                        2.59               0.75             2.61
## oil                                0.37               1.50             0.75
## frozen meals                       2.24               0.38             1.13
## misc. beverages                    1.51               0.76             1.53
## specialty bar                      2.69               1.16             1.16
## ham                                3.89               1.57             1.96
## beverages                          3.13               1.58             0.79
## meat                               1.20               0.81             1.62
## ice cream                          1.64               0.41             1.66
## sliced cheese                      2.52               0.42             3.82
## hard cheese                        2.61               0.88             3.52
## noodles                            0.92               0.93             0.00
## grapes                             0.46               1.40             0.93
## cat food                           2.41               0.49             2.92
## chewing gum                        2.54               2.57             2.05
## soda                               0.00               1.05             1.57
## detergent                          2.14               2.16             1.62
## red/blush wine                     1.65               2.22             0.56
## white wine                         0.56               0.00             1.13
## turkey                             1.79               1.21             2.41
## dishes                             1.21               4.87             1.22
## bottled water                      0.61               0.00             1.22
## flour                              2.42               1.84             2.45
## semi-finished bread                3.04               1.23             0.62
## baking powder                      1.84               0.62             1.86
## pickled vegetables                 3.11               2.51             1.88
## herbs                              3.16               1.91             1.28
## tropical herbs                     0.63               1.28             1.28
## soft cheese                        1.95               0.66             3.28
## tea                                0.00               1.31             1.97
## processed cheese                   0.00               0.67             1.34
## sausage                            0.69               2.08             1.39
## pasta                              4.16               0.00             2.10
## citrus herbs                       0.00               2.82             1.41
## potted plants                      0.70               0.00             3.53
## canned fish                        2.96               1.50             4.49
## seasonal products                  0.78               2.38             1.59
## cake bar                           2.43               1.64             2.46
## carrots                            1.69               0.00             2.57
## mustard                            3.59               0.91             0.91
## packaged fruit/vegetables          0.00               0.00             1.88
## spread cheese                      0.00               0.94             0.00
## frozen dessert                     5.64               0.95             0.95
## frozen fish                        0.94               0.95             0.95
## cling film/bags                    0.95               1.91             0.00
## salt                               2.84               1.91             3.83
## liquor                             0.00               4.09             1.02
## canned vegetables                  3.06               0.00             8.25
## bottled beer                       0.00               6.24             1.04
## flower (seeds)                     1.03               0.00             2.08
## cooking oil                        0.00               3.15             1.05
## dish cleaner                       3.11               1.05             2.10
## condensed milk                     1.06               1.07             3.20
## roll products                      2.19               1.11             1.11
## photo/film                         1.10               0.00             1.12
## pet care                           2.23               1.13             0.00
## chocolate marshmallow              0.00               2.36             0.00
## herbs/vegetable juice              1.18               1.19             2.39
## whole milk                         1.19               0.00             1.21
## candles                            0.00               2.44             0.00
## mayonnaise                         2.46               1.24             1.24
## Instant food products              2.54               0.00             1.28
## sweet spreads                        NA               0.00             1.28
## liquor (appetizer)                 0.00                 NA             0.00
## specialty cheese                   1.28               0.00               NA
## frozen potato products             2.59               1.31             0.00
## house keeping products             2.59               1.31             1.31
## dog food                           3.93               0.00             3.98
## soy                                0.00               0.00             1.34
## instant coffee                     0.00               1.45             1.45
## pip herbs                          1.44               0.00             1.45
## zwieback                           0.00               0.00             0.00
## finished products                  0.00               0.00             4.70
## popcorn                            3.10               0.00             0.00
## vinegar                            0.00               0.00             1.57
## soups                              4.84               0.00             0.00
## female sanitary products           1.75               0.00             0.00
## sparkling wine                     0.00               0.00             0.00
## dental care                        3.73               5.65             1.88
## cereals                            0.00               0.00             5.74
## kitchen towels                     1.89               0.00             1.91
## curd cheese                        0.00               0.00             0.00
## other vegetables                   0.00               0.00             0.00
## rolls/buns                         1.92               0.00             0.00
## softener                           5.97               0.00             2.01
## cleaner                            2.06               0.00             0.00
## spices                             2.06               0.00             0.00
## jam                                4.19               4.23             0.00
## sauces                             8.37               4.23             0.00
## rum                                0.00               4.39             0.00
## liver loaf                         0.00               0.00             4.64
## male cosmetics                     0.00               0.00             2.46
## meat spreads                       0.00               0.00             0.00
## packaged herbs/vegetables          0.00               2.51             2.51
## brandy                             5.08               7.70             5.13
## ketchup                            0.00               0.00             2.62
## abrasive cleaner                   0.00               0.00             5.36
## light bulbs                        2.71               8.22             0.00
## artif. sweetener                   0.00               0.00             0.00
## nuts/prunes                        2.91               2.94             2.94
## specialty fat                      2.98               3.01             0.00
## skin care                          3.14               3.17             3.17
## fish                               0.00               3.26             0.00
## potato products                    0.00               0.00             0.00
## root vegetables                    0.00               0.00             3.45
## snack products                     0.00               0.00             0.00
## nut snack                          3.62               7.31            10.96
## soap                               0.00               0.00             3.65
## syrup                             10.85               0.00             0.00
## bathroom cleaner                   7.46               7.54             0.00
## canned fruit                       0.00               0.00             0.00
## cookware                           4.11               0.00             0.00
## cooking chocolate                  0.00               4.64             0.00
## tidbits                            0.00               0.00             0.00
## cocoa drinks                       0.00               0.00             0.00
## pudding powder                     4.97               0.00             0.00
## ready soups                        0.00               0.00             0.00
## organic marinated meat             0.00               5.48             0.00
## flower soil/fertilizer             0.00               0.00             0.00
## organic products                   0.00               5.74             5.74
## pot plants                         0.00               5.74             0.00
## prosecco                           5.68               0.00             0.00
## frankfurter                        0.00               0.00             0.00
## decalcifier                        6.28               0.00             0.00
## honey                              0.00               0.00             0.00
## specialty vegetables               7.02               7.09             0.00
## cream                              0.00               0.00             0.00
## hair spray                         0.00               0.00             0.00
## frozen fruits                      9.94               0.00             0.00
## rubbing alcohol                    0.00               0.00             0.00
## liqueur                            0.00               0.00             0.00
## make up remover                    0.00               0.00             0.00
## salad dressing                     0.00              13.40             0.00
## frozen chicken                     0.00               0.00             0.00
## whisky                             0.00               0.00             0.00
## baby cosmetics                    17.04               0.00             0.00
## toilet cleaner                     0.00               0.00             0.00
## bags                               0.00               0.00             0.00
## canned herbs                       0.00               0.00             0.00
## kitchen utensil                    0.00               0.00             0.00
## preservation products              0.00               0.00             0.00
## baby food                          0.00               0.00             0.00
## frozen herbss                      0.00               0.00             0.00
## organic sausage                    0.00               0.00             0.00
## sound storage medium               0.00               0.00             0.00
##                           frozen potato products house keeping products
## rice                                        1.78                   1.61
## veggies                                     1.67                   1.73
## loaf                                        1.35                   1.15
## coke                                        1.92                   1.21
## yogurt                                      1.78                   1.47
## vegetables                                  1.96                   1.59
## mineral water                               1.23                   1.01
## Plastic bags                                1.01                   1.91
## tropical fruit                              1.30                   1.89
## marinated meat                              1.72                   2.11
## pies/pasties                                1.99                   1.46
## newspapers                                  0.67                   1.07
## citrus                                      1.20                   1.95
## whipped/sour cream                          1.36                   1.96
## heinken                                     1.23                   1.08
## green tea                                   0.16                   0.48
## pip fruit                                   2.13                   1.64
## brown bread                                 1.19                   1.70
## fruit/vegetable juice                       2.74                   1.20
## domestic eggs                               0.86                   1.90
## coffee                                      1.94                   1.59
## margarine                                   1.87                   1.31
## beef                                        2.65                   1.51
## curd                                        2.10                   2.29
## butter                                      1.38                   1.58
## marinated meats                             3.15                   1.68
## napkins                                     2.54                   3.39
## halal meat                                  2.79                   1.72
## chocolate                                   2.91                   2.91
## frozen vegetables                           2.50                   2.27
## chicken                                     1.71                   2.44
## white bread                                 2.87                   1.57
## cream cheese                                1.35                   0.81
## waffles                                     0.86                   0.86
## dessert                                     1.75                   0.88
## salty snack                                 2.63                   1.17
## long life bakery product                    2.40                   3.59
## berries                                     1.80                   2.10
## hamburger meat                              2.15                   1.54
## sugar                                       0.31                   1.88
## hygiene articles                            2.21                   3.79
## UHT-milk                                    1.32                   2.31
## onions                                      1.00                   2.00
## candy                                       3.34                   1.86
## specialty chocolate                         1.12                   2.24
## butter milk                                 0.38                   1.89
## oil                                         4.18                   2.28
## frozen meals                                3.81                   3.05
## misc. beverages                             1.54                   1.93
## specialty bar                               3.14                   0.39
## ham                                         2.78                   0.79
## beverages                                   0.40                   1.20
## meat                                        0.82                   1.64
## ice cream                                   2.51                   1.68
## sliced cheese                               2.15                   3.00
## hard cheese                                 0.44                   2.22
## noodles                                     0.94                   1.41
## grapes                                      2.82                   0.94
## cat food                                    2.46                   1.47
## chewing gum                                 1.56                   0.00
## soda                                        2.12                   0.00
## detergent                                   2.19                   6.01
## red/blush wine                              1.69                   2.81
## white wine                                  1.14                   0.00
## turkey                                      3.66                   1.22
## dishes                                      0.00                   0.62
## bottled water                               0.62                   0.62
## flour                                       0.62                   1.86
## semi-finished bread                         1.87                   1.24
## baking powder                               1.89                   3.77
## pickled vegetables                          3.17                   1.27
## herbs                                       0.64                   0.64
## tropical herbs                              0.64                   0.64
## soft cheese                                 2.65                   1.99
## tea                                         0.66                   0.66
## processed cheese                            2.03                   2.71
## sausage                                     0.70                   1.40
## pasta                                       2.83                   1.42
## citrus herbs                                0.00                   2.14
## potted plants                               0.71                   1.43
## canned fish                                 1.51                   3.03
## seasonal products                           3.21                   2.41
## cake bar                                    1.66                   4.98
## carrots                                     0.86                   0.86
## mustard                                     3.67                   0.92
## packaged fruit/vegetables                   1.90                   0.95
## spread cheese                               2.86                   2.86
## frozen dessert                              1.92                   0.00
## frozen fish                                 4.80                   2.88
## cling film/bags                             0.00                   8.71
## salt                                        2.90                   0.00
## liquor                                      0.00                   1.03
## canned vegetables                           2.08                   1.04
## bottled beer                                1.05                   0.00
## flower (seeds)                              2.10                   4.20
## cooking oil                                 1.06                   0.00
## dish cleaner                                5.30                   4.24
## condensed milk                              0.00                   2.16
## roll products                               2.24                   3.36
## photo/film                                  1.13                   1.13
## pet care                                    2.28                   2.28
## chocolate marshmallow                       0.00                   1.20
## herbs/vegetable juice                       2.41                   0.00
## whole milk                                  0.00                   0.00
## candles                                     2.46                   2.46
## mayonnaise                                  5.03                   1.26
## Instant food products                       2.59                   5.19
## sweet spreads                               2.59                   2.59
## liquor (appetizer)                          1.31                   1.31
## specialty cheese                            0.00                   1.31
## frozen potato products                        NA                   5.30
## house keeping products                      5.30                     NA
## dog food                                    0.00                   0.00
## soy                                         0.00                   0.00
## instant coffee                              4.41                   2.94
## pip herbs                                   2.94                   1.47
## zwieback                                    3.05                   0.00
## finished products                           3.17                   1.58
## popcorn                                     4.75                   1.58
## vinegar                                     0.00                   3.17
## soups                                       1.65                   1.65
## female sanitary products                    3.59                   7.17
## sparkling wine                              0.00                   1.82
## dental care                                 3.81                   0.00
## cereals                                     0.00                   3.87
## kitchen towels                              3.87                   1.93
## curd cheese                                 0.00                   3.93
## other vegetables                            0.00                   0.00
## rolls/buns                                  0.00                   0.00
## softener                                    0.00                   4.06
## cleaner                                     0.00                  10.51
## spices                                      0.00                   4.20
## jam                                         4.28                   0.00
## sauces                                      0.00                   0.00
## rum                                         0.00                   2.22
## liver loaf                                  4.69                   0.00
## male cosmetics                              0.00                   0.00
## meat spreads                                5.08                   0.00
## packaged herbs/vegetables                   2.54                   0.00
## brandy                                      0.00                   0.00
## ketchup                                     2.65                   2.65
## abrasive cleaner                            0.00                   8.13
## light bulbs                                 0.00                   2.77
## artif. sweetener                            0.00                   2.97
## nuts/prunes                                 5.95                   0.00
## specialty fat                               6.10                   3.05
## skin care                                   0.00                   6.42
## fish                                        0.00                   0.00
## potato products                             0.00                   3.48
## root vegetables                             0.00                   0.00
## snack products                              0.00                   0.00
## nut snack                                   7.39                   7.39
## soap                                        0.00                   0.00
## syrup                                       0.00                   3.69
## bathroom cleaner                            0.00                   0.00
## canned fruit                                0.00                   3.81
## cookware                                    0.00                   4.20
## cooking chocolate                           0.00                   0.00
## tidbits                                     4.69                   0.00
## cocoa drinks                                0.00                   0.00
## pudding powder                              5.08                  10.16
## ready soups                                 5.08                   0.00
## organic marinated meat                      0.00                   5.54
## flower soil/fertilizer                      0.00                   5.80
## organic products                            0.00                   0.00
## pot plants                                  0.00                   5.80
## prosecco                                    5.80                   0.00
## frankfurter                                 0.00                   0.00
## decalcifier                                 0.00                   0.00
## honey                                       6.77                   0.00
## specialty vegetables                        7.17                   7.17
## cream                                      16.25                   8.13
## hair spray                                  0.00                   0.00
## frozen fruits                               0.00                   0.00
## rubbing alcohol                             0.00                  10.16
## liqueur                                     0.00                   0.00
## make up remover                             0.00                   0.00
## salad dressing                             27.09                   0.00
## frozen chicken                              0.00                   0.00
## whisky                                      0.00                   0.00
## baby cosmetics                              0.00                   0.00
## toilet cleaner                              0.00                   0.00
## bags                                       24.38                   0.00
## canned herbs                                0.00                   0.00
## kitchen utensil                             0.00                   0.00
## preservation products                       0.00                   0.00
## baby food                                   0.00                   0.00
## frozen herbss                               0.00                   0.00
## organic sausage                             0.00                   0.00
## sound storage medium                      121.90                   0.00
##                           dog food   soy instant coffee pip herbs zwieback
## rice                          1.41  1.52           1.08      1.32     0.88
## veggies                       1.42  0.00           1.35      0.00     1.25
## loaf                          0.89  0.00           1.34      0.00     1.08
## coke                          1.29  0.00           1.89      0.00     0.90
## yogurt                        1.57  1.43           1.98      1.38     1.34
## vegetables                    1.42  1.81           1.66      1.76     1.29
## mineral water                 1.59  0.00           1.24      0.00     1.03
## Plastic bags                  2.27  1.03           1.24      1.24     1.03
## tropical fruit                1.91  0.00           1.57      0.00     1.90
## marinated meat                0.93  0.00           1.32      0.00     0.46
## pies/pasties                  1.07  0.00           1.62      0.74     0.15
## newspapers                    1.36  1.10           1.93      0.60     1.39
## citrus                        2.12  0.00           1.33      0.00     1.38
## whipped/sour cream            1.37  1.24           2.18      1.67     1.04
## heinken                       0.78  0.00           1.54      0.00     0.89
## green tea                     1.29  0.00           0.88      0.00     0.37
## pip fruit                     1.82  0.00           1.09      0.00     1.70
## brown bread                   1.89  1.21           0.56      0.94     0.59
## fruit/vegetable juice         2.60  0.00           1.33      0.00     1.38
## domestic eggs                 1.75  1.77           1.72      1.72     1.99
## coffee                        1.07  2.52           1.37      1.56     0.81
## margarine                     0.57  1.14           1.03      1.66     1.93
## beef                          2.30  2.71           1.47      1.89     0.87
## curd                          1.54  1.76           1.69      1.90     1.54
## butter                        1.00  1.01           1.31      1.97     1.36
## marinated meats               0.64  0.00           1.40      0.00     1.93
## napkins                       2.14  1.08           1.88      0.70     1.46
## halal meat                    1.30  0.00           0.95      0.00     0.99
## chocolate                     1.36  0.92           0.99      0.99     0.77
## frozen vegetables             2.30  0.70           3.52      1.01     1.83
## chicken                       1.48  1.25           1.35      1.62     0.56
## white bread                   1.85  0.80           2.03      1.74     0.90
## cream cheese                  1.91  1.11           1.50      3.00     1.55
## waffles                       0.58  0.88           2.24      2.24     1.99
## dessert                       0.89  0.90           1.30      1.62     0.67
## salty snack                   1.77  0.60           1.94      0.97     1.34
## long life bakery product      2.42  0.92           1.66      1.33     1.38
## berries                       0.91  2.46           1.33      1.66     1.73
## hamburger meat                1.55  0.63           1.70      2.04     0.71
## sugar                         0.95  2.24           1.73      3.12     0.72
## hygiene articles              1.60  1.61           2.10      2.10     1.82
## UHT-milk                      1.00  0.67           1.83      1.46     3.03
## onions                        1.69  1.37           2.59      1.48     0.38
## candy                         0.38  1.52           0.41      1.24     0.43
## specialty chocolate           2.26  0.38           1.65      0.83     0.43
## butter milk                   0.76  1.16           2.09      3.35     0.87
## oil                           3.46  0.78           1.68      0.42     0.87
## frozen meals                  2.31  0.39           2.96      2.53     1.31
## misc. beverages               1.17  0.39           2.57      0.86     1.77
## specialty bar                 1.19  2.00           1.30      0.87     3.16
## ham                           1.20  2.03           0.88      2.64     2.74
## beverages                     0.40  0.82           0.00      1.33     0.46
## meat                          0.41  0.84           1.36      0.91     0.00
## ice cream                     0.00  1.71           0.00      0.93     0.00
## sliced cheese                 2.17  3.07           0.95      2.85     2.47
## hard cheese                   4.05  1.82           0.99      2.96     1.53
## noodles                       0.47 12.46           0.52      6.76     1.62
## grapes                        2.86  2.89           0.00      1.04     2.71
## cat food                      0.50  0.50           0.54      0.00     1.13
## chewing gum                   0.52  0.53           1.15      0.00     0.60
## soda                          0.00  9.75           1.17      7.05     1.83
## detergent                     2.21  1.68           0.61      0.61     0.63
## red/blush wine                0.00  0.57           1.25      1.25     1.29
## white wine                    0.00  1.16           0.63      1.26     0.00
## turkey                        1.85  8.10           1.35      9.46     0.70
## dishes                        1.24  0.00           1.36      0.00     5.66
## bottled water                 0.00 10.12           2.74     10.97     1.42
## flour                         2.50  1.90           0.69      0.00     0.71
## semi-finished bread           2.52  1.27           2.76      1.38     4.29
## baking powder                 3.81  1.28           2.09      2.09     0.72
## pickled vegetables            2.57  0.00           1.41      0.70     2.19
## herbs                         2.61  0.00           0.00      2.14     0.74
## tropical herbs                0.65  7.91           2.14     16.44     1.48
## soft cheese                   0.67  2.03           3.67      3.67     0.76
## tea                           0.00 10.84           2.20     10.28     2.29
## processed cheese              2.74  0.69           0.75      2.25     0.78
## sausage                       2.12  9.31           0.78      6.21     1.61
## pasta                         4.30  0.72           2.36      2.36     0.00
## citrus herbs                  0.72 10.93           0.79     10.27     1.64
## potted plants                 5.77  0.00           0.79      0.00     1.64
## canned fish                   1.53  0.77           2.52      1.68     0.87
## seasonal products             0.81  0.00           2.67      0.89     0.92
## cake bar                      0.00  0.85           1.84      0.00     2.86
## carrots                       0.87 10.61           0.96     12.46     0.99
## mustard                       3.71  1.87           1.02      1.02     2.11
## packaged fruit/vegetables     1.93  0.00           2.11      0.00     2.19
## spread cheese                 0.96  0.97           2.11      3.17     2.19
## frozen dessert                0.97  0.00           0.00      1.06     1.10
## frozen fish                   3.88  0.00           0.00      2.13     3.31
## cling film/bags               1.96  0.00           1.07      2.14     0.00
## salt                          4.89  0.99           1.07      3.22     0.00
## liquor                        2.09  0.00           0.00      1.15     0.00
## canned vegetables             1.05  0.00           2.31      0.00     0.00
## bottled beer                  0.00  3.22           0.00      2.33     1.21
## flower (seeds)                0.00  0.00           1.16      0.00     1.21
## cooking oil                   1.07  4.33           0.00      4.70     1.22
## dish cleaner                  3.22  0.00           1.17      0.00     3.66
## condensed milk                2.18  0.00           1.20      0.00     0.00
## roll products                 1.13  1.14           1.24      1.24     1.29
## photo/film                    0.00  2.31           1.25      0.00     0.00
## pet care                      1.15  0.00           5.05      1.26     0.00
## chocolate marshmallow         2.42  0.00           0.00      0.00     6.87
## herbs/vegetable juice         0.00 13.57           1.34     14.72     0.00
## whole milk                    0.00  0.00           2.70      8.11     1.40
## candles                       0.00  5.03           0.00      1.36     0.00
## mayonnaise                    0.00  1.28           2.79      0.00     2.89
## Instant food products         0.00  0.00           0.00      1.44     5.97
## sweet spreads                 3.93  0.00           0.00      1.44     0.00
## liquor (appetizer)            0.00  0.00           1.45      0.00     0.00
## specialty cheese              3.98  1.34           1.45      1.45     0.00
## frozen potato products        0.00  0.00           4.41      2.94     3.05
## house keeping products        0.00  0.00           2.94      1.47     0.00
## dog food                        NA  0.00           0.00      0.00     0.00
## soy                           0.00    NA           1.50      7.51     0.00
## instant coffee                0.00  1.50             NA      0.00     0.00
## pip herbs                     0.00  7.51           0.00        NA     3.38
## zwieback                      0.00  0.00           0.00      3.38       NA
## finished products             0.00  1.62           0.00      0.00     0.00
## popcorn                       1.60  0.00           1.75      0.00     1.82
## vinegar                       1.60  3.24           3.51      1.75     3.64
## soups                         0.00  1.68           0.00      1.83     1.89
## female sanitary products      1.81  0.00           1.99      1.99     0.00
## sparkling wine                0.00  0.00           0.00      4.03     2.09
## dental care                   1.93  0.00           0.00      2.11     4.38
## cereals                       7.82  1.98           0.00      0.00     0.00
## kitchen towels                1.96  0.00           2.14      0.00     0.00
## curd cheese                   0.00  2.01           0.00      2.18     2.26
## other vegetables              0.00  0.00           2.18     23.97     6.78
## rolls/buns                    0.00  0.00           2.18      8.72     2.26
## softener                      4.11  0.00           0.00      2.25     2.34
## cleaner                       2.12  2.15           0.00      0.00     4.83
## spices                        0.00  0.00           0.00      2.33     7.25
## jam                           0.00  0.00           4.74      0.00     2.46
## sauces                        0.00  2.19           0.00      2.37     0.00
## rum                           2.24  4.53           0.00      7.37     0.00
## liver loaf                    2.37  2.40           0.00      0.00     0.00
## male cosmetics                0.00  5.09           0.00      0.00     0.00
## meat spreads                  0.00  0.00           5.63      2.82     0.00
## packaged herbs/vegetables     0.00 12.98           0.00      5.63     2.92
## brandy                        7.87  0.00           0.00      0.00     5.97
## ketchup                       5.36  0.00           2.94      0.00     6.10
## abrasive cleaner              2.74  2.77           3.00      3.00     0.00
## light bulbs                   0.00  5.66           0.00      3.07     0.00
## artif. sweetener              3.01  6.08           3.30      0.00     0.00
## nuts/prunes                   0.00  3.04           0.00      3.30     0.00
## specialty fat                 3.08  0.00           6.76      3.38     0.00
## skin care                     3.24  0.00           7.11      0.00     0.00
## fish                          0.00  3.37           3.65      0.00     0.00
## potato products               0.00  0.00           3.86      0.00     0.00
## root vegetables               0.00  0.00           3.86     19.30     0.00
## snack products                0.00  3.67           0.00      0.00     8.25
## nut snack                     0.00  0.00           0.00      0.00     0.00
## soap                          3.73  7.55           0.00      8.19     0.00
## syrup                         3.73  0.00           0.00      0.00     0.00
## bathroom cleaner              0.00  3.89           0.00      0.00     0.00
## canned fruit                  3.85  0.00           0.00      0.00     0.00
## cookware                      4.25  0.00           0.00      0.00     0.00
## cooking chocolate             4.74  0.00           0.00      0.00     0.00
## tidbits                       0.00  0.00           5.20      0.00     0.00
## cocoa drinks                  0.00  4.98           0.00      0.00     0.00
## pudding powder                0.00  0.00           0.00      0.00     0.00
## ready soups                   0.00 10.38          11.26      0.00     0.00
## organic marinated meat        0.00  0.00           0.00      0.00     0.00
## flower soil/fertilizer        5.87  0.00           6.43      0.00     0.00
## organic products              0.00  0.00           0.00      0.00    13.35
## pot plants                    0.00 11.87           0.00     19.30     0.00
## prosecco                      0.00  0.00           0.00      0.00     0.00
## frankfurter                   0.00  0.00           0.00     13.51     7.01
## decalcifier                   0.00  0.00           0.00      0.00     0.00
## honey                         0.00  0.00           0.00      0.00     0.00
## specialty vegetables          0.00  0.00           7.95      0.00     8.25
## cream                         0.00  8.31           0.00      0.00     0.00
## hair spray                    0.00  0.00           0.00      0.00     0.00
## frozen fruits                20.54  0.00           0.00      0.00     0.00
## rubbing alcohol               0.00  0.00           0.00      0.00     0.00
## liqueur                       0.00  0.00           0.00      0.00     0.00
## make up remover               0.00  0.00           0.00      0.00     0.00
## salad dressing                0.00 13.85           0.00     15.01     0.00
## frozen chicken                0.00  0.00           0.00      0.00     0.00
## whisky                        0.00  0.00           0.00      0.00     0.00
## baby cosmetics                0.00  0.00           0.00     19.30     0.00
## toilet cleaner                0.00  0.00           0.00      0.00    20.03
## bags                          0.00  0.00           0.00      0.00     0.00
## canned herbs                  0.00  0.00           0.00     33.78     0.00
## kitchen utensil               0.00  0.00           0.00      0.00     0.00
## preservation products         0.00  0.00           0.00      0.00     0.00
## baby food                     0.00  0.00           0.00      0.00     0.00
## frozen herbss                 0.00  0.00           0.00      0.00     0.00
## organic sausage               0.00  0.00           0.00      0.00     0.00
## sound storage medium          0.00  0.00           0.00      0.00     0.00
##                           finished products popcorn vinegar  soups
## rice                                   0.81    1.47    1.62   1.84
## veggies                                1.53    1.22    1.84   2.47
## loaf                                   0.72    0.89    1.29   1.09
## coke                                   1.44    1.61    0.76   1.06
## yogurt                                 1.02    1.21    2.13   1.06
## vegetables                             1.00    1.90    2.34   2.32
## mineral water                          0.80    1.34    1.21   1.39
## Plastic bags                           2.01    2.15    0.94   0.98
## tropical fruit                         0.99    1.55    1.27   1.32
## marinated meat                         1.58    1.89    0.95   1.48
## pies/pasties                           2.38    1.43    2.06   1.65
## newspapers                             0.64    0.80    1.60   1.84
## citrus                                 1.25    1.43    1.97   2.98
## whipped/sour cream                     1.08    1.26    1.99   3.57
## heinken                                0.55    1.84    1.10   2.30
## green tea                              0.00    0.38    0.38   0.60
## pip fruit                              1.57    1.57    1.37   2.85
## brown bread                            1.83    1.22    1.22   1.27
## fruit/vegetable juice                  2.05    2.66    1.64   1.07
## domestic eggs                          1.45    1.45    1.45   2.79
## coffee                                 0.42    1.05    1.90   3.07
## margarine                              0.67    0.67    2.45   3.25
## beef                                   1.58    0.68    2.49   2.35
## curd                                   1.14    1.82    1.60   1.66
## butter                                 1.41    1.18    1.89   2.45
## marinated meats                        0.75    0.75    2.76   2.87
## napkins                                0.76    1.01    3.29   2.11
## halal meat                             1.03    1.28    1.28   1.07
## chocolate                              3.21    1.61    1.34   2.23
## frozen vegetables                      1.90    2.17    2.44   3.67
## chicken                                1.46    1.46    3.79   2.13
## white bread                            2.18    1.87    1.25   0.65
## cream cheese                           1.61    0.65    3.88   2.35
## waffles                                2.41    1.72    1.72   1.43
## dessert                                1.75    3.14    0.70   0.73
## salty snack                            3.49    8.38    1.05   0.36
## long life bakery product               2.51    0.72    1.79   1.49
## berries                                1.08    2.51    1.08   2.99
## hamburger meat                         0.73    2.57    1.47   3.44
## sugar                                  0.75    1.87    2.61   5.05
## hygiene articles                       1.13    0.38    1.51   3.14
## UHT-milk                               0.39    1.18    1.97   2.05
## onions                                 2.39    2.79    3.99   4.15
## candy                                  3.11    2.66    0.00   1.39
## specialty chocolate                    2.23    0.89    1.34   0.46
## butter milk                            1.80    3.16    1.80   2.35
## oil                                    0.45    2.27    5.44   4.25
## frozen meals                           1.37    2.73    1.37   0.95
## misc. beverages                        0.92    0.92    0.46   0.48
## specialty bar                          1.87    1.87    0.47   1.46
## ham                                    0.95    1.90    0.95   0.99
## beverages                              1.43    1.43    0.48   1.49
## meat                                   0.98    0.49    0.98   1.02
## ice cream                              1.00    1.00    0.00   1.04
## sliced cheese                          1.03    1.03    0.00   1.60
## hard cheese                            1.59    3.19    0.53   1.11
## noodles                                1.12    0.00    1.12   0.58
## grapes                                 2.25    1.69    1.12   2.34
## cat food                               1.17    2.35    3.52   2.44
## chewing gum                            0.62    1.86    0.00   1.29
## soda                                   0.63    0.00    0.63   1.98
## detergent                              0.65    1.96    4.57   3.40
## red/blush wine                         0.00    0.67    1.34   0.00
## white wine                             2.72    0.68    0.68   0.00
## turkey                                 0.73    0.00    2.18   0.76
## dishes                                 0.00    0.00    1.47   0.00
## bottled water                          0.74    0.00    1.48   0.77
## flour                                  1.48    0.74    3.70   3.85
## semi-finished bread                    1.49    2.97    4.46   0.77
## baking powder                          3.00    1.50    4.50   3.91
## pickled vegetables                     0.76    0.76    2.28   2.37
## herbs                                  0.00    0.00    1.54   4.01
## tropical herbs                         0.00    0.00    2.31   0.80
## soft cheese                            0.79    1.58    1.58   3.29
## tea                                    0.79    0.79    1.58   3.29
## processed cheese                       1.62    2.43    0.00   0.00
## sausage                                0.00    0.00    0.84   0.87
## pasta                                  5.08    4.23    3.39   5.29
## citrus herbs                           0.85    0.85    0.85   1.77
## potted plants                          5.11    1.70    1.70   1.77
## canned fish                            0.90    2.71    1.81   5.65
## seasonal products                      3.83    0.00    0.00   1.99
## cake bar                               2.97    1.98    0.99   2.06
## carrots                                1.03    0.00    1.03   2.15
## mustard                                0.00    4.38    3.29   4.56
## packaged fruit/vegetables              2.28    0.00    2.28   3.55
## spread cheese                          2.28    0.00    0.00   1.18
## frozen dessert                         1.15    0.00    3.44   2.39
## frozen fish                            1.15    3.44    1.15   1.19
## cling film/bags                        0.00    0.00    3.47   6.01
## salt                                   1.16    2.31    5.78   2.41
## liquor                                 0.00    1.23    0.00   0.00
## canned vegetables                      2.49    2.49    2.49   3.89
## bottled beer                           2.51    1.26    1.26   2.61
## flower (seeds)                         2.51    0.00    0.00   2.61
## cooking oil                            1.27    0.00    1.27   2.64
## dish cleaner                           0.00    1.27    3.80   6.59
## condensed milk                         0.00    0.00    1.29   1.34
## roll products                          1.34    2.67    6.68   5.56
## photo/film                             0.00    1.35    0.00   0.00
## pet care                               2.72    4.08    2.72   0.00
## chocolate marshmallow                  1.43    2.86    1.43   0.00
## herbs/vegetable juice                  2.88    0.00    2.88   0.00
## whole milk                             1.46    0.00    1.46   1.52
## candles                                0.00    0.00    4.41   4.59
## mayonnaise                             0.00    3.00    0.00   4.69
## Instant food products                  1.55    3.10    1.55   6.45
## sweet spreads                          0.00    3.10    0.00   4.84
## liquor (appetizer)                     0.00    0.00    0.00   0.00
## specialty cheese                       4.70    0.00    1.57   0.00
## frozen potato products                 3.17    4.75    0.00   1.65
## house keeping products                 1.58    1.58    3.17   1.65
## dog food                               0.00    1.60    1.60   0.00
## soy                                    1.62    0.00    3.24   1.68
## instant coffee                         0.00    1.75    3.51   0.00
## pip herbs                              0.00    0.00    1.75   1.83
## zwieback                               0.00    1.82    3.64   1.89
## finished products                        NA    5.67    0.00   3.94
## popcorn                                5.67      NA    0.00   0.00
## vinegar                                0.00    0.00      NA   3.94
## soups                                  3.94    0.00    3.94     NA
## female sanitary products               0.00    0.00    2.14   8.91
## sparkling wine                         0.00    2.17    4.35   4.52
## dental care                            2.28    6.83    0.00   0.00
## cereals                                2.31    0.00    0.00   2.41
## kitchen towels                         0.00    2.31    0.00   0.00
## curd cheese                            2.35    0.00    4.70   2.44
## other vegetables                       2.35    0.00    4.70   0.00
## rolls/buns                             2.35    0.00    0.00   2.44
## softener                               2.43    0.00    2.43   2.53
## cleaner                                2.51    5.02   12.56   0.00
## spices                                 2.51    5.02    7.53   2.61
## jam                                    0.00    0.00    2.56   2.66
## sauces                                 0.00    2.56    0.00  10.64
## rum                                    0.00    0.00    0.00   0.00
## liver loaf                             0.00    0.00    2.80   2.91
## male cosmetics                         0.00    0.00    0.00   6.19
## meat spreads                           0.00    0.00    3.03   3.16
## packaged herbs/vegetables              3.03    0.00    3.03   3.16
## brandy                                 0.00    0.00    0.00   0.00
## ketchup                                0.00    6.33    3.17   6.59
## abrasive cleaner                       0.00    0.00    6.47   0.00
## light bulbs                            0.00    0.00    3.31   3.44
## artif. sweetener                       0.00    0.00    7.10   3.70
## nuts/prunes                            0.00    0.00    0.00   0.00
## specialty fat                          0.00    0.00    0.00   7.58
## skin care                              0.00    3.83    3.83   3.99
## fish                                   3.94    0.00    0.00   0.00
## potato products                       12.48    0.00    8.32   0.00
## root vegetables                        4.16    0.00    0.00   0.00
## snack products                         0.00    8.57    0.00   0.00
## nut snack                              0.00    4.41    0.00   0.00
## soap                                   0.00    0.00    0.00   4.59
## syrup                                  0.00    4.41    0.00   4.59
## bathroom cleaner                       0.00    0.00    0.00   0.00
## canned fruit                           4.55    9.10    0.00   0.00
## cookware                               0.00    0.00    0.00   5.23
## cooking chocolate                      0.00    0.00    5.60   0.00
## tidbits                                0.00    0.00    0.00   0.00
## cocoa drinks                           0.00   11.65    5.83   0.00
## pudding powder                         0.00    0.00    6.07   6.31
## ready soups                            0.00    6.07    0.00   0.00
## organic marinated meat                13.24    0.00    0.00   6.89
## flower soil/fertilizer                 0.00    0.00    6.94   0.00
## organic products                       6.94    6.94    0.00   0.00
## pot plants                             0.00    0.00    0.00   0.00
## prosecco                               0.00    0.00    0.00   0.00
## frankfurter                            0.00    0.00   14.56   7.58
## decalcifier                            0.00    0.00    0.00   0.00
## honey                                  0.00    0.00    0.00   0.00
## specialty vegetables                   0.00    0.00    0.00  17.83
## cream                                  0.00    0.00    0.00   0.00
## hair spray                            10.40    0.00    0.00   0.00
## frozen fruits                          0.00    0.00    0.00   0.00
## rubbing alcohol                        0.00    0.00    0.00   0.00
## liqueur                                0.00    0.00    0.00   0.00
## make up remover                        0.00   16.18    0.00   0.00
## salad dressing                         0.00    0.00    0.00   0.00
## frozen chicken                         0.00    0.00    0.00   0.00
## whisky                                 0.00    0.00    0.00   0.00
## baby cosmetics                         0.00    0.00    0.00  21.65
## toilet cleaner                         0.00    0.00    0.00   0.00
## bags                                   0.00    0.00    0.00   0.00
## canned herbs                           0.00    0.00    0.00   0.00
## kitchen utensil                        0.00    0.00    0.00   0.00
## preservation products                  0.00    0.00    0.00   0.00
## baby food                            145.65    0.00    0.00 151.55
## frozen herbss                          0.00    0.00    0.00   0.00
## organic sausage                      145.65    0.00    0.00   0.00
## sound storage medium                   0.00    0.00    0.00   0.00
##                           female sanitary products sparkling wine dental care
## rice                                          1.20           0.87        1.22
## veggies                                       1.21           1.32        1.84
## loaf                                          1.46           0.56        1.36
## coke                                          1.35           0.88        1.12
## yogurt                                        1.89           1.28        1.34
## vegetables                                    1.26           1.54        1.07
## mineral water                                 1.52           0.77        1.13
## Plastic bags                                  2.13           1.08        1.45
## tropical fruit                                1.28           0.16        1.70
## marinated meat                                0.71           0.72        1.71
## pies/pasties                                  1.62           0.18        1.72
## newspapers                                    0.91           1.47        3.09
## citrus                                        2.63           1.03        1.72
## whipped/sour cream                            1.63           1.24        1.09
## heinken                                       0.62           1.69        1.55
## green tea                                     0.22           1.10        0.46
## pip fruit                                     1.11           1.12        1.88
## brown bread                                   0.69           0.70        1.95
## fruit/vegetable juice                         0.70           1.88        1.73
## domestic eggs                                 1.40           2.14        1.74
## coffee                                        2.39           1.94        2.03
## margarine                                     2.27           0.51        2.42
## beef                                          0.26           1.30        1.90
## curd                                          1.03           0.00        1.92
## butter                                        1.33           1.90        2.84
## marinated meats                               0.85           1.15        1.21
## napkins                                       2.29           1.46        2.44
## halal meat                                    1.75           1.48        2.16
## chocolate                                     2.73           1.54        3.54
## frozen vegetables                             1.23           1.56        1.96
## chicken                                       1.32           1.34        0.70
## white bread                                   1.41           2.15        2.25
## cream cheese                                  1.46           0.37        1.94
## waffles                                       1.95           0.79        2.07
## dessert                                       1.19           0.00        2.52
## salty snack                                   1.58           0.40        3.36
## long life bakery product                      2.43           0.41        2.15
## berries                                       1.62           0.82        0.86
## hamburger meat                                0.42           1.26        3.09
## sugar                                         0.42           1.29        1.35
## hygiene articles                              2.56           2.17        3.18
## UHT-milk                                      2.23           0.90        2.37
## onions                                        1.36           0.92        3.36
## candy                                         1.01           1.02        2.67
## specialty chocolate                           2.02           3.58        2.14
## butter milk                                   2.04           1.04        2.71
## oil                                           1.03           2.09        3.82
## frozen meals                                  1.55           0.52        0.55
## misc. beverages                               3.13           3.18        1.66
## specialty bar                                 1.59           1.08        2.25
## ham                                           3.22           0.55        1.14
## beverages                                     0.00           1.65        1.72
## meat                                          1.66           0.56        1.18
## ice cream                                     0.57           0.58        1.81
## sliced cheese                                 2.32           0.00        2.47
## hard cheese                                   2.41           3.67        2.56
## noodles                                       1.27           1.29        1.35
## grapes                                        3.18           0.65        1.35
## cat food                                      5.99           1.35        2.12
## chewing gum                                   1.40           1.42        0.00
## soda                                          2.87           0.73        0.00
## detergent                                     0.74           0.00        0.79
## red/blush wine                                0.76           3.09        1.62
## white wine                                    0.00           0.78        0.82
## turkey                                        0.00           0.84        0.88
## dishes                                        0.00           2.54        0.89
## bottled water                                 0.84           1.70        1.78
## flour                                         1.67           1.70        1.78
## semi-finished bread                           0.00           0.85        0.00
## baking powder                                 3.40           1.73        0.00
## pickled vegetables                            2.58           0.87        3.65
## herbs                                         1.75           1.77        0.93
## tropical herbs                                0.87           1.77        0.93
## soft cheese                                   0.00           0.00        1.90
## tea                                           0.90           1.82        1.90
## processed cheese                              2.75           0.00        1.95
## sausage                                       1.90           0.96        0.00
## pasta                                         1.92           1.95        3.06
## citrus herbs                                  1.93           4.89        1.02
## potted plants                                 2.89           0.98        1.02
## canned fish                                   2.05           1.04        3.27
## seasonal products                             4.34           1.10        2.31
## cake bar                                      1.12           0.00        0.00
## carrots                                       1.17           1.19        0.00
## mustard                                       2.48           0.00        5.27
## packaged fruit/vegetables                     1.29           2.62        1.37
## spread cheese                                 2.58           0.00        2.74
## frozen dessert                                1.30           0.00        1.38
## frozen fish                                   2.60           0.00        5.52
## cling film/bags                               5.24           0.00        1.39
## salt                                          1.31           3.99        1.39
## liquor                                        0.00           1.42        0.00
## canned vegetables                             2.82           1.43        1.50
## bottled beer                                  0.00           1.44        1.51
## flower (seeds)                                0.00           1.44        0.00
## cooking oil                                   0.00           0.00        0.00
## dish cleaner                                  4.30           5.82        7.62
## condensed milk                                1.46           1.48        0.00
## roll products                                 0.00           1.54        1.61
## photo/film                                    1.53           0.00        3.25
## pet care                                      1.54           1.56        3.28
## chocolate marshmallow                         0.00           0.00        5.15
## herbs/vegetable juice                         0.00           4.97        0.00
## whole milk                                    0.00           0.00        0.00
## candles                                       0.00           0.00        0.00
## mayonnaise                                    3.40           3.45        5.42
## Instant food products                         1.75           0.00        1.86
## sweet spreads                                 1.75           0.00        3.73
## liquor (appetizer)                            0.00           0.00        5.65
## specialty cheese                              0.00           0.00        1.88
## frozen potato products                        3.59           0.00        3.81
## house keeping products                        7.17           1.82        0.00
## dog food                                      1.81           0.00        1.93
## soy                                           0.00           0.00        0.00
## instant coffee                                1.99           0.00        0.00
## pip herbs                                     1.99           4.03        2.11
## zwieback                                      0.00           2.09        4.38
## finished products                             0.00           0.00        2.28
## popcorn                                       0.00           2.17        6.83
## vinegar                                       2.14           4.35        0.00
## soups                                         8.91           4.52        0.00
## female sanitary products                        NA           4.92        0.00
## sparkling wine                                4.92             NA        5.23
## dental care                                   0.00           5.23          NA
## cereals                                       2.62           0.00        2.78
## kitchen towels                                2.62           2.66       11.13
## curd cheese                                   0.00           0.00        0.00
## other vegetables                              0.00           0.00        0.00
## rolls/buns                                    2.66           0.00        0.00
## softener                                      2.75           5.58        0.00
## cleaner                                      17.06           8.66        6.04
## spices                                        0.00           0.00        3.02
## jam                                           0.00           5.87        3.07
## sauces                                        0.00           2.94        3.07
## rum                                           0.00           0.00        0.00
## liver loaf                                    0.00           0.00        3.37
## male cosmetics                                0.00           3.42        7.15
## meat spreads                                  0.00           0.00        0.00
## packaged herbs/vegetables                     0.00           3.49        0.00
## brandy                                        3.51           3.56        0.00
## ketchup                                       0.00           0.00        3.81
## abrasive cleaner                              0.00           0.00        3.89
## light bulbs                                   0.00           0.00        7.97
## artif. sweetener                              0.00           0.00        8.55
## nuts/prunes                                   0.00           0.00        4.27
## specialty fat                                 4.12           0.00        0.00
## skin care                                     4.34           0.00        0.00
## fish                                          0.00           0.00        0.00
## potato products                               0.00           0.00        0.00
## root vegetables                               0.00           0.00        5.01
## snack products                                4.85           0.00        0.00
## nut snack                                    10.00           0.00        0.00
## soap                                          0.00           0.00        0.00
## syrup                                        10.00           0.00        5.31
## bathroom cleaner                              0.00           0.00        0.00
## canned fruit                                  5.15           5.23        5.48
## cookware                                      0.00           0.00        0.00
## cooking chocolate                             6.34           0.00        0.00
## tidbits                                       0.00           0.00        6.74
## cocoa drinks                                  0.00           0.00        0.00
## pudding powder                                0.00           0.00        0.00
## ready soups                                   0.00           0.00        0.00
## organic marinated meat                        7.50           0.00        0.00
## flower soil/fertilizer                        0.00           0.00        0.00
## organic products                              7.85           0.00        8.34
## pot plants                                    0.00           7.97        0.00
## prosecco                                      7.85           0.00        8.34
## frankfurter                                   0.00           0.00        0.00
## decalcifier                                   0.00           0.00        0.00
## honey                                         0.00           0.00        0.00
## specialty vegetables                          9.70           0.00       10.31
## cream                                        11.00           0.00       11.68
## hair spray                                    0.00           0.00        0.00
## frozen fruits                                 0.00          13.95       14.60
## rubbing alcohol                              13.74           0.00        0.00
## liqueur                                       0.00           0.00        0.00
## make up remover                               0.00           0.00       19.47
## salad dressing                                0.00           0.00        0.00
## frozen chicken                                0.00           0.00       21.90
## whisky                                        0.00           0.00        0.00
## baby cosmetics                                0.00           0.00        0.00
## toilet cleaner                                0.00           0.00       50.07
## bags                                          0.00           0.00        0.00
## canned herbs                                 41.23          41.85        0.00
## kitchen utensil                               0.00           0.00        0.00
## preservation products                         0.00           0.00        0.00
## baby food                                     0.00           0.00        0.00
## frozen herbss                                 0.00           0.00        0.00
## organic sausage                               0.00           0.00        0.00
## sound storage medium                          0.00           0.00        0.00
##                           cereals kitchen towels curd cheese other vegetables
## rice                         2.60           1.67        1.76             0.06
## veggies                      1.87           2.06        2.00             0.00
## loaf                         1.08           1.18        1.60             0.00
## coke                         1.04           1.25        0.42             0.00
## yogurt                       2.83           1.36        1.84             1.27
## vegetables                   1.77           1.91        1.94             0.00
## mineral water                0.82           0.49        1.00             0.00
## Plastic bags                 1.48           1.64        0.67             1.33
## tropical fruit               1.72           2.24        2.63             0.00
## marinated meat               1.35           1.35        1.37             0.00
## pies/pasties                 1.94           1.75        0.99             1.18
## newspapers                   0.39           1.76        0.00             1.20
## citrus                       0.22           1.09        1.56             0.00
## whipped/sour cream           2.65           1.99        1.79             1.79
## heinken                      1.35           1.12        1.37             0.00
## green tea                    0.00           0.23        0.24             0.00
## pip fruit                    2.15           2.39        1.46             0.00
## brown bread                  2.23           2.73        1.01             2.02
## fruit/vegetable juice        2.00           2.25        1.78             0.00
## domestic eggs                3.03           1.77        2.05             2.57
## coffee                       1.29           3.86        1.83             1.05
## margarine                    2.45           1.91        3.05             0.28
## beef                         0.83           1.38        0.56             1.69
## curd                         3.62           1.39        2.83             1.70
## butter                       2.30           1.73        0.88             1.76
## marinated meats              0.92           2.15        1.56             0.00
## napkins                      2.48           3.41        1.26             1.89
## halal meat                   1.57           2.51        2.55             0.00
## chocolate                    1.31           0.98        0.33             1.33
## frozen vegetables            1.33           2.65        2.36             2.36
## chicken                      1.78           1.78        1.45             2.54
## white bread                  1.14           1.52        0.39             2.32
## cream cheese                 3.55           2.37        1.60             1.60
## waffles                      3.37           2.10        1.28             0.86
## dessert                      2.13           2.13        0.87             1.74
## salty snack                  2.13           4.27        0.43             0.87
## long life bakery product     3.50           0.44        1.33             1.33
## berries                      3.07           1.75        1.78             1.34
## hamburger meat               2.69           3.59        1.37             3.65
## sugar                        4.11           2.74        2.32             1.39
## hygiene articles             1.84           2.31        4.22             1.41
## UHT-milk                     0.96           1.92        0.49             1.47
## onions                       0.98           0.98        2.48             3.47
## candy                        1.63           1.63        2.21             1.10
## specialty chocolate          3.27           3.27        1.11             1.11
## butter milk                  2.20           1.65        3.92             1.68
## oil                          0.55           2.77        1.13             2.25
## frozen meals                 4.45           5.01        0.57             2.83
## misc. beverages              0.56           0.56        0.00             1.14
## specialty bar                1.14           0.57        1.16             1.74
## ham                          1.16           1.16        2.36             2.95
## beverages                    1.75           1.75        0.00             2.37
## meat                         0.00           2.99        0.00             0.61
## ice cream                    0.61           3.06        1.86             1.24
## sliced cheese                2.51           3.13        2.55             0.64
## hard cheese                  4.55           1.95        3.30             1.98
## noodles                      0.68           0.68        2.09             0.00
## grapes                       0.00           2.06        0.00             2.10
## cat food                     3.59           5.74        8.02             2.19
## chewing gum                  0.76           3.79        0.77             1.54
## soda                         1.55           1.55        0.00             7.86
## detergent                    1.60           1.60        1.62             1.62
## red/blush wine               0.00           0.82        0.83             1.67
## white wine                   0.00           2.50        0.85             0.00
## turkey                       2.67           0.89        2.71             3.62
## dishes                       0.00           2.70        0.00             3.65
## bottled water                0.90           0.00        0.00             6.43
## flour                        2.71           1.81        0.92             0.92
## semi-finished bread          0.00           1.82        0.92             1.85
## baking powder                2.75           0.92        2.80             0.93
## pickled vegetables           2.78           1.85        0.94             0.94
## herbs                        1.88           0.94        2.87             3.83
## tropical herbs               2.83           0.00        2.87            13.40
## soft cheese                  1.93           4.84        6.88             1.97
## tea                          0.00           0.97        0.98             0.00
## processed cheese             2.97           0.99        3.01             3.01
## sausage                      1.02           0.00        1.04             5.20
## pasta                        2.07           3.10        1.05             1.05
## citrus herbs                 1.04           1.04        2.12            12.69
## potted plants                4.16           2.08        0.00             1.06
## canned fish                  5.53           3.32        1.12             0.00
## seasonal products            1.17           0.00        2.38             0.00
## cake bar                     4.84           1.21        1.23             1.23
## carrots                      1.26           0.00        2.57             0.00
## mustard                      2.68           1.34        0.00             1.36
## packaged fruit/vegetables    0.00           0.00        2.83             0.00
## spread cheese                1.39           0.00        7.07             0.00
## frozen dessert               7.01           0.00        0.00             4.27
## frozen fish                  4.21           7.01        2.85             0.00
## cling film/bags              2.83           4.24        0.00             2.87
## salt                         2.83           1.41        0.00             4.31
## liquor                       0.00           1.51        0.00             3.07
## canned vegetables            6.09           0.00        0.00             0.00
## bottled beer                 0.00           1.53        0.00             3.12
## flower (seeds)               1.53           0.00        1.56             3.12
## cooking oil                  1.55           1.55        0.00             0.00
## dish cleaner                 0.00           4.64        0.00             0.00
## condensed milk               0.00           6.30        1.60             3.20
## roll products                1.63           3.27        1.66             1.66
## photo/film                   1.65           1.65        0.00             0.00
## pet care                     3.33           4.99        0.00             3.38
## chocolate marshmallow        1.75           1.75        0.00             0.00
## herbs/vegetable juice        1.76           0.00        1.79             8.95
## whole milk                   0.00           1.78        1.81            43.41
## candles                      3.60           7.19        1.83             0.00
## mayonnaise                   0.00           0.00        0.00             0.00
## Instant food products        0.00           1.89        1.92             5.77
## sweet spreads                0.00           1.89        0.00             0.00
## liquor (appetizer)           0.00           0.00        0.00             0.00
## specialty cheese             5.74           1.91        0.00             0.00
## frozen potato products       0.00           3.87        0.00             0.00
## house keeping products       3.87           1.93        3.93             0.00
## dog food                     7.82           1.96        0.00             0.00
## soy                          1.98           0.00        2.01             0.00
## instant coffee               0.00           2.14        0.00             2.18
## pip herbs                    0.00           0.00        2.18            23.97
## zwieback                     0.00           0.00        2.26             6.78
## finished products            2.31           0.00        2.35             2.35
## popcorn                      0.00           2.31        0.00             0.00
## vinegar                      0.00           0.00        4.70             4.70
## soups                        2.41           0.00        2.44             0.00
## female sanitary products     2.62           2.62        0.00             0.00
## sparkling wine               0.00           2.66        0.00             0.00
## dental care                  2.78          11.13        0.00             0.00
## cereals                        NA           5.65        0.00             0.00
## kitchen towels               5.65             NA        0.00             0.00
## curd cheese                  0.00           0.00          NA             5.84
## other vegetables             0.00           0.00        5.84               NA
## rolls/buns                   0.00           0.00        0.00            37.93
## softener                     0.00           5.93        3.01             0.00
## cleaner                      6.14           6.14        6.24             0.00
## spices                       0.00           3.07        0.00             0.00
## jam                          3.12           0.00        3.17             3.17
## sauces                       0.00           9.37        0.00             0.00
## rum                          0.00           0.00        0.00             3.29
## liver loaf                   3.42           3.42        0.00             0.00
## male cosmetics               0.00           0.00        0.00             0.00
## meat spreads                 0.00           3.71        0.00             0.00
## packaged herbs/vegetables    0.00           0.00        3.77             7.54
## brandy                       0.00           0.00        0.00             3.85
## ketchup                      3.87           0.00        0.00             3.93
## abrasive cleaner             0.00           0.00       20.10             4.02
## light bulbs                  0.00           4.05        4.11             0.00
## artif. sweetener             4.34           0.00        0.00             0.00
## nuts/prunes                  0.00           0.00        0.00             4.41
## specialty fat                0.00           4.45        0.00             0.00
## skin care                   14.05           0.00        0.00             4.76
## fish                         0.00           0.00        0.00             0.00
## potato products              5.09           5.09        5.17             5.17
## root vegetables              0.00           0.00       10.34            67.19
## snack products               0.00           0.00        0.00             0.00
## nut snack                    5.39           0.00        0.00             5.48
## soap                        16.18           0.00        0.00             0.00
## syrup                        0.00           0.00        0.00             0.00
## bathroom cleaner             0.00           5.56        5.65             0.00
## canned fruit                 0.00           5.56        0.00             0.00
## cookware                     0.00           0.00        0.00             0.00
## cooking chocolate            0.00           0.00        6.96             0.00
## tidbits                      0.00           6.85        0.00             0.00
## cocoa drinks                 0.00           7.12        0.00             0.00
## pudding powder               0.00           0.00        0.00             7.54
## ready soups                  0.00           0.00        0.00             0.00
## organic marinated meat       0.00           0.00        8.22             0.00
## flower soil/fertilizer       0.00           0.00        8.61             0.00
## organic products             0.00           8.48        0.00             0.00
## pot plants                   0.00           0.00        0.00             0.00
## prosecco                     0.00           0.00        0.00             0.00
## frankfurter                  0.00           0.00        9.04            72.35
## decalcifier                  0.00           9.37        9.52             9.52
## honey                        0.00           0.00        0.00             0.00
## specialty vegetables         0.00           0.00        0.00             0.00
## cream                        0.00           0.00        0.00             0.00
## hair spray                   0.00           0.00        0.00             0.00
## frozen fruits               29.67          14.83        0.00             0.00
## rubbing alcohol              0.00           0.00        0.00             0.00
## liqueur                      0.00           0.00        0.00             0.00
## make up remover              0.00           0.00        0.00             0.00
## salad dressing               0.00           0.00        0.00             0.00
## frozen chicken               0.00          22.25        0.00             0.00
## whisky                       0.00           0.00        0.00             0.00
## baby cosmetics               0.00          25.43        0.00             0.00
## toilet cleaner               0.00           0.00        0.00             0.00
## bags                         0.00           0.00        0.00             0.00
## canned herbs                 0.00           0.00        0.00             0.00
## kitchen utensil              0.00           0.00        0.00             0.00
## preservation products        0.00           0.00        0.00             0.00
## baby food                    0.00           0.00        0.00             0.00
## frozen herbss                0.00           0.00        0.00             0.00
## organic sausage              0.00           0.00        0.00             0.00
## sound storage medium         0.00           0.00        0.00             0.00
##                           rolls/buns softener cleaner spices   jam sauces   rum
## rice                            0.00     1.56    1.68   1.01  2.05   1.57  1.35
## veggies                         0.00     1.57    1.63   1.93  1.86   1.55  1.61
## loaf                            0.00     0.93    0.75   1.18  1.41   0.87  1.01
## coke                            0.00     1.20    1.24   0.79  1.49   1.15  0.95
## yogurt                          1.15     1.78    2.46   1.48  1.63   0.88  1.04
## vegetables                      0.00     1.29    1.48   1.48  2.86   1.21  1.56
## mineral water                   0.00     1.55    1.25   1.25  2.17   1.27  1.69
## Plastic bags                    0.33     2.07    1.78   1.25  1.45   1.09  0.38
## tropical fruit                  0.00     1.63    0.94   2.06  2.10   2.29  1.78
## marinated meat                  0.00     2.02    1.67   2.72  1.70   1.49  0.88
## pies/pasties                    1.77     0.61    1.47   0.00  1.50   1.71  1.11
## newspapers                      1.99     1.24    1.70   0.85  1.08   1.95  0.67
## citrus                          0.00     1.84    1.43   2.38  1.45   0.97  1.00
## whipped/sour cream              1.12     2.08    2.40   1.92  2.19   1.22  0.76
## heinken                         0.00     1.42    0.49   1.46  0.75   0.75  1.54
## green tea                       0.00     1.47    0.51   0.76  0.26   0.77  0.80
## pip fruit                       0.00     2.76    0.00   2.86  2.12   2.38  1.37
## brown bread                     1.01     1.04    0.54   0.81  1.92   3.29  1.14
## fruit/vegetable juice           0.00     1.05    1.90   0.82  2.21   1.94  1.15
## domestic eggs                   1.03     2.65    1.92   1.65  2.51   0.28  1.74
## coffee                          1.57     1.35    1.68   1.40  2.85   1.14  0.30
## margarine                       0.83     2.29    0.89   1.48  2.71   1.51  3.12
## beef                            0.84     0.29    1.20   1.80  3.67   0.92  0.00
## curd                            1.42     0.88    3.33   2.42  2.16   1.54  1.91
## butter                          2.63     2.72    1.56   3.13  3.82   1.27  3.96
## marinated meats                 0.00     0.00    1.00   1.67  2.04   1.36  0.70
## napkins                         1.57     3.25    2.02   1.68  2.74   2.40  0.71
## halal meat                      0.00     1.32    1.36   1.36  1.74   1.39  1.44
## chocolate                       1.66     1.03    1.42   2.49  1.45   1.45  1.50
## frozen vegetables               0.34     1.74    3.24   2.52  2.56   1.10  1.90
## chicken                         1.45     3.75    2.71   3.87  1.97   0.79  1.63
## white bread                     1.55     3.20    0.83   0.83  1.26   1.26  2.18
## cream cheese                    1.20     0.83    2.14   1.29  2.62   2.18  0.90
## waffles                         3.42     0.88    3.66   1.83  3.26   3.26  1.93
## dessert                         0.00     1.79    3.25   2.78  0.94   2.36  0.98
## salty snack                     0.00     0.00    0.93   0.46  1.42   2.83  0.49
## long life bakery product        0.89     0.92    1.90   2.85  1.93   0.97  3.01
## berries                         1.34     0.46    0.48   1.43  1.94   1.45  0.50
## hamburger meat                  2.28     3.77    1.46   2.92  0.50   5.95  1.54
## sugar                           1.39     0.48    1.98   0.50  3.03   3.03  1.57
## hygiene articles                0.47     3.87    1.50   2.50  3.57   0.51  2.64
## UHT-milk                        0.49     2.53    0.52   1.57  0.53   2.66  0.00
## onions                          0.50     0.00    2.12   3.18  4.85   1.08  2.79
## candy                           0.55     0.57    2.36   1.77  3.00   1.80  1.24
## specialty chocolate             0.55     0.57    1.77   0.00  0.60   2.41  0.62
## butter milk                     1.68     2.31    1.80   1.80  0.00   2.44  0.00
## oil                             1.69     1.16    2.41   3.01  1.84   1.84  0.64
## frozen meals                    2.26     2.92    3.02   1.21  2.46   0.61  0.64
## misc. beverages                 0.57     0.00    1.22   0.61  2.49   0.62  0.65
## specialty bar                   1.16     1.20    0.62   1.24  0.00   1.27  0.00
## ham                             1.77     3.04    0.63   0.63  2.56   1.92  1.33
## beverages                       0.00     0.00    1.27   1.90  0.65   1.94  0.00
## meat                            1.82     0.00    0.65   2.60  1.98   1.32  0.68
## ice cream                       0.00     0.00    0.66   1.33  1.35   1.35  0.70
## sliced cheese                   0.64     0.66    2.04   2.04  3.46   2.08  4.31
## hard cheese                     0.66     2.05    3.53   2.12  0.00   5.03  0.74
## noodles                         0.00     0.00    0.74   3.72  0.00   0.00  1.57
## grapes                          0.70     0.72    2.24   1.49  3.04   0.76  2.36
## cat food                        0.00     2.26    2.34   2.34  1.59   2.38  0.00
## chewing gum                     0.77     1.59    1.65   0.00  0.84   0.00  1.74
## soda                            5.51     2.44    0.00   0.00  0.86   0.00  0.89
## detergent                       0.81     9.22    6.07   0.87  0.88   0.00  0.00
## red/blush wine                  1.67     0.00    0.00   0.00  0.91   2.72  1.88
## white wine                      0.00     1.75    0.90   1.81  0.00   0.92  0.95
## turkey                          3.62     0.00    0.00   3.87  1.97   3.94  2.04
## dishes                          0.91     0.94    0.98   0.00  2.98   1.99  0.00
## bottled water                   8.26     0.95    0.00   0.98  1.00   0.00  3.11
## flour                           0.00     0.95    1.96   0.98  1.00   3.00  3.11
## semi-finished bread             1.85     2.86    0.00   2.96  3.01   0.00  0.00
## baking powder                   0.93     0.00    1.99   1.99  1.01   1.01  4.20
## pickled vegetables              1.88     0.97    2.01   3.02  4.10   2.05  3.19
## herbs                           0.96     0.00    2.05   2.05  4.16   1.04  4.32
## tropical herbs                  8.61     0.99    3.07   1.02  1.04   0.00  5.39
## soft cheese                     0.00     1.02    0.00   1.05  3.21   2.14  5.54
## tea                             0.00     0.00    1.05   3.15  0.00   0.00  0.00
## processed cheese                2.01     1.04    1.07   1.07  2.19   2.19  1.13
## sausage                         7.28     2.15    3.33   2.22  0.00   1.13  0.00
## pasta                           4.21     5.43    1.12   0.00  2.29   4.58  0.00
## citrus herbs                    3.17     2.19    2.26   1.13  1.15   1.15  2.38
## potted plants                   0.00     3.28    1.13   0.00  5.75   1.15  1.19
## canned fish                     0.00     2.32    2.40   1.20  4.89   2.44  0.00
## seasonal products               0.00     1.23    2.54   0.00  1.29   0.00  0.00
## cake bar                        0.00     0.00    3.95   1.32  0.00   2.68  0.00
## carrots                         0.00     1.33    1.37   1.37  0.00   0.00  2.89
## mustard                         1.36     0.00    2.91   1.45  2.96   1.48  3.07
## packaged fruit/vegetables       0.00     1.46    1.51   1.51  1.54   0.00  1.59
## spread cheese                   4.24     1.46    3.02   0.00  0.00   0.00  0.00
## frozen dessert                  1.42     1.47    1.52   0.00  3.10   0.00  6.42
## frozen fish                     0.00     1.47    1.52   1.52  3.10   6.20  1.61
## cling film/bags                 1.44     1.48    0.00   1.53  1.56   1.56  9.71
## salt                            2.87     2.97    3.07   1.53  9.37   0.00  1.62
## liquor                          0.00     0.00    0.00   0.00  3.33   0.00  8.64
## canned vegetables               1.55     3.20    1.65   1.65  0.00   3.36  3.49
## bottled beer                   10.92     1.61    0.00   0.00  0.00   0.00  1.76
## flower (seeds)                  0.00     6.45    0.00   6.67  0.00   1.70  1.76
## cooking oil                     1.57     0.00    0.00   0.00  0.00   0.00  1.77
## dish cleaner                    0.00     1.63    3.36   3.36  3.42   3.42  0.00
## condensed milk                  4.80     0.00    0.00   1.71  0.00   0.00  1.80
## roll products                   1.66     3.43    0.00   0.00  5.42   3.61  1.87
## photo/film                      0.00     5.19    0.00   0.00  0.00   0.00  1.89
## pet care                        3.38     3.49    0.00   1.81  0.00   9.19  0.00
## chocolate marshmallow           1.77     1.83    0.00   1.90  1.93   1.93  2.00
## herbs/vegetable juice          16.12     1.85    0.00   0.00  0.00   0.00  6.06
## whole milk                     45.22     0.00    0.00   0.00  1.97   0.00  4.08
## candles                         0.00     0.00    0.00   1.95  3.97   0.00  0.00
## mayonnaise                      0.00     0.00    1.99   5.98  2.03   2.03  4.20
## Instant food products           3.85     1.99    0.00   2.06  2.09   0.00  0.00
## sweet spreads                   1.92     5.97    2.06   2.06  4.19   8.37  0.00
## liquor (appetizer)              0.00     0.00    0.00   0.00  4.23   4.23  4.39
## specialty cheese                0.00     2.01    0.00   0.00  0.00   0.00  0.00
## frozen potato products          0.00     0.00    0.00   0.00  4.28   0.00  0.00
## house keeping products          0.00     4.06   10.51   4.20  0.00   0.00  2.22
## dog food                        0.00     4.11    2.12   0.00  0.00   0.00  2.24
## soy                             0.00     0.00    2.15   0.00  0.00   2.19  4.53
## instant coffee                  2.18     0.00    0.00   0.00  4.74   0.00  0.00
## pip herbs                       8.72     2.25    0.00   2.33  0.00   2.37  7.37
## zwieback                        2.26     2.34    4.83   7.25  2.46   0.00  0.00
## finished products               2.35     2.43    2.51   2.51  0.00   0.00  0.00
## popcorn                         0.00     0.00    5.02   5.02  0.00   2.56  0.00
## vinegar                         0.00     2.43   12.56   7.53  2.56   0.00  0.00
## soups                           2.44     2.53    0.00   2.61  2.66  10.64  0.00
## female sanitary products        2.66     2.75   17.06   0.00  0.00   0.00  0.00
## sparkling wine                  0.00     5.58    8.66   0.00  5.87   2.94  0.00
## dental care                     0.00     0.00    6.04   3.02  3.07   3.07  0.00
## cereals                         0.00     0.00    6.14   0.00  3.12   0.00  0.00
## kitchen towels                  0.00     5.93    6.14   3.07  0.00   9.37  0.00
## curd cheese                     0.00     3.01    6.24   0.00  3.17   0.00  0.00
## other vegetables               37.93     0.00    0.00   0.00  3.17   0.00  3.29
## rolls/buns                        NA     3.01    0.00   0.00  0.00   0.00  3.29
## softener                        3.01       NA    0.00   0.00  0.00   3.28  0.00
## cleaner                         0.00     0.00      NA   3.33  6.78   3.39  0.00
## spices                          0.00     0.00    3.33     NA  0.00   3.39  0.00
## jam                             0.00     0.00    6.78   0.00    NA   0.00  0.00
## sauces                          0.00     3.28    3.39   3.39  0.00     NA  3.58
## rum                             3.29     0.00    0.00   0.00  0.00   3.58    NA
## liver loaf                      0.00     3.59    3.72   0.00  3.78   0.00  0.00
## male cosmetics                  0.00     0.00    0.00   0.00  0.00   0.00  0.00
## meat spreads                    0.00     0.00    0.00   4.03  0.00   0.00  0.00
## packaged herbs/vegetables       0.00     0.00    0.00   0.00  0.00   0.00  4.25
## brandy                          3.85     3.98    0.00   0.00  0.00   0.00  0.00
## ketchup                         0.00     0.00    0.00   8.41  0.00   0.00  0.00
## abrasive cleaner                0.00     0.00   25.78   4.30  4.37   0.00  9.06
## light bulbs                     0.00     0.00    4.39   4.39  4.47   8.94  0.00
## artif. sweetener                0.00     0.00    4.72   0.00  4.80   9.60  9.95
## nuts/prunes                     4.41     4.56    0.00   0.00  9.60   0.00  4.97
## specialty fat                   0.00     4.67    0.00   4.83  4.92   0.00  0.00
## skin care                       0.00     0.00    5.09   0.00 10.36   5.18  5.37
## fish                            0.00     0.00    0.00   0.00  0.00   0.00  0.00
## potato products                 0.00     0.00    0.00   0.00  0.00   0.00  5.83
## root vegetables                36.18     0.00    0.00   0.00  5.62   0.00  0.00
## snack products                  0.00     0.00    0.00   0.00  0.00   0.00  0.00
## nut snack                       0.00     0.00    5.86   0.00  0.00   0.00  0.00
## soap                            0.00     0.00    0.00   0.00  0.00   0.00  0.00
## syrup                           0.00     0.00    5.86   0.00  5.96   5.96  0.00
## bathroom cleaner                0.00     0.00   12.09   0.00  6.15   0.00  0.00
## canned fruit                    0.00     0.00    0.00   0.00  6.15   6.15  0.00
## cookware                        0.00     0.00    0.00   0.00  0.00   0.00  0.00
## cooking chocolate               0.00     0.00    0.00   0.00  0.00   0.00  7.84
## tidbits                        13.91     0.00   14.87   0.00  0.00   7.57  0.00
## cocoa drinks                    0.00     0.00    0.00   7.73  7.87   0.00  0.00
## pudding powder                  0.00     0.00    0.00   0.00  0.00   0.00  0.00
## ready soups                     7.54     0.00    0.00   8.06  0.00   0.00  0.00
## organic marinated meat          0.00     0.00    0.00   0.00  8.94   8.94  0.00
## flower soil/fertilizer          0.00     8.90    0.00   0.00  0.00   0.00  0.00
## organic products                0.00     8.90    9.21   0.00  0.00   9.37  0.00
## pot plants                      0.00     0.00    9.21   0.00  9.37   0.00  0.00
## prosecco                        0.00     0.00    9.21   0.00  0.00   0.00  0.00
## frankfurter                    81.40     0.00    0.00   0.00  0.00   0.00  0.00
## decalcifier                     0.00     9.84    0.00   0.00  0.00   0.00  0.00
## honey                           0.00     0.00    0.00   0.00  0.00   0.00  0.00
## specialty vegetables            0.00     0.00    0.00   0.00  0.00   0.00 11.99
## cream                           0.00     0.00    0.00  12.89  0.00   0.00  0.00
## hair spray                      0.00     0.00   13.81   0.00  0.00   0.00  0.00
## frozen fruits                   0.00     0.00    0.00   0.00  0.00   0.00  0.00
## rubbing alcohol                 0.00     0.00    0.00   0.00  0.00  16.40  0.00
## liqueur                         0.00     0.00    0.00   0.00  0.00   0.00  0.00
## make up remover                 0.00     0.00    0.00   0.00  0.00   0.00  0.00
## salad dressing                  0.00     0.00   21.48   0.00  0.00  21.86  0.00
## frozen chicken                  0.00     0.00    0.00   0.00  0.00   0.00  0.00
## whisky                          0.00     0.00    0.00   0.00  0.00   0.00  0.00
## baby cosmetics                  0.00     0.00    0.00   0.00  0.00   0.00  0.00
## toilet cleaner                  0.00     0.00   27.62   0.00 28.11  28.11  0.00
## bags                           36.18     0.00    0.00   0.00  0.00   0.00  0.00
## canned herbs                    0.00     0.00    0.00   0.00  0.00   0.00  0.00
## kitchen utensil                 0.00     0.00    0.00   0.00  0.00   0.00  0.00
## preservation products           0.00     0.00    0.00  96.68  0.00   0.00  0.00
## baby food                       0.00     0.00    0.00   0.00  0.00   0.00  0.00
## frozen herbss                   0.00     0.00    0.00   0.00  0.00   0.00  0.00
## organic sausage                 0.00     0.00    0.00   0.00  0.00   0.00  0.00
## sound storage medium            0.00     0.00    0.00   0.00  0.00   0.00  0.00
##                           liver loaf male cosmetics meat spreads
## rice                            1.57           0.64         1.22
## veggies                         1.70           0.96         1.10
## loaf                            1.79           0.89         1.68
## coke                            1.38           1.20         1.91
## yogurt                          2.06           1.60         2.83
## vegetables                      2.64           1.05         1.25
## mineral water                   0.79           2.74         1.93
## Plastic bags                    1.39           1.69         2.15
## tropical fruit                  1.25           0.67         1.36
## marinated meat                  2.33           2.23         1.77
## pies/pasties                    1.88           1.75         0.25
## newspapers                      0.48           1.76         0.77
## citrus                          1.32           1.97         1.44
## whipped/sour cream              1.34           0.57         1.45
## heinken                         0.00           0.87         0.30
## green tea                       0.85           2.70         0.61
## pip fruit                       2.61           1.23         1.57
## brown bread                     1.50           0.64         3.58
## fruit/vegetable juice           2.43           0.97         1.97
## domestic eggs                   1.53           0.32         2.98
## coffee                          0.94           1.66         0.68
## margarine                       1.98           1.05         0.72
## beef                            1.67           0.36         0.73
## curd                            3.04           1.43         1.10
## butter                          1.05           1.11         0.76
## marinated meats                 2.60           1.58         1.21
## napkins                         1.13           1.59         0.41
## halal meat                      1.52           0.81         0.82
## chocolate                       1.19           0.42         3.01
## frozen vegetables               4.42           0.00         1.31
## chicken                         1.73           0.92         0.00
## white bread                     1.85           0.98         1.50
## cream cheese                    4.30           0.00         6.22
## waffles                         1.53           0.00         1.10
## dessert                         1.55           1.65         1.12
## salty snack                     2.59           0.55         0.56
## long life bakery product        2.12           1.12         0.00
## berries                         0.53           1.13         1.15
## hamburger meat                  0.00           1.15         4.71
## sugar                           1.66           1.17         2.40
## hygiene articles                2.23           1.78         0.61
## UHT-milk                        1.17           0.62         0.63
## onions                          2.36           2.51         1.92
## candy                           0.00           0.70         1.42
## specialty chocolate             1.32           2.10         2.14
## butter milk                     0.67           2.13         1.45
## oil                             1.34           1.43         0.73
## frozen meals                    2.02           1.43         1.46
## misc. beverages                 2.73           0.00         2.22
## specialty bar                   0.00           0.00         0.75
## ham                             2.11           0.00         0.76
## beverages                       1.41           0.75         0.00
## meat                            0.00           2.30         3.14
## ice cream                       0.74           0.79         0.00
## sliced cheese                   2.28           0.81         1.65
## hard cheese                     1.57           0.84         0.85
## noodles                         0.83           0.00         0.90
## grapes                          1.67           0.00         1.80
## cat food                        0.00           0.00         0.94
## chewing gum                     0.00           2.92         3.98
## soda                            0.00           0.00         2.03
## detergent                       1.93           0.00         0.00
## red/blush wine                  0.00           0.00         0.00
## white wine                      1.01           2.14         0.00
## turkey                          2.16           0.00         0.00
## dishes                          2.18           0.00         0.00
## bottled water                   0.00           3.49         1.19
## flour                           1.09           1.16         3.56
## semi-finished bread             4.40           1.17         1.19
## baking powder                   3.34           1.18         4.82
## pickled vegetables              0.00           1.19         2.43
## herbs                           0.00           1.21         1.24
## tropical herbs                  0.00           1.21         1.24
## soft cheese                     3.52           1.24         1.27
## tea                             1.17           1.24         0.00
## processed cheese                1.20           1.27         0.00
## sausage                         2.48           0.00         1.34
## pasta                           2.51           2.66         1.36
## citrus herbs                    0.00           0.00         0.00
## potted plants                   0.00           0.00         0.00
## canned fish                     0.00           2.84        10.16
## seasonal products               0.00           1.51         1.54
## cake bar                        1.47           0.00         4.77
## carrots                         1.53           1.62         0.00
## mustard                         1.62           1.72         5.27
## packaged fruit/vegetables       3.37           0.00         3.65
## spread cheese                   0.00           0.00         0.00
## frozen dessert                  0.00           0.00         1.84
## frozen fish                     0.00           1.80         0.00
## cling film/bags                 0.00           3.63         1.85
## salt                            3.42           3.63         0.00
## liquor                          0.00           0.00         1.98
## canned vegetables               0.00           1.96         2.00
## bottled beer                    0.00           0.00         0.00
## flower (seeds)                  1.86           1.97         4.03
## cooking oil                     0.00           1.99         0.00
## dish cleaner                    0.00           3.98         2.03
## condensed milk                  1.91           4.05         4.14
## roll products                   5.94           0.00         2.14
## photo/film                      3.99           0.00         0.00
## pet care                        4.03           0.00         0.00
## chocolate marshmallow           0.00           2.24         0.00
## herbs/vegetable juice           0.00           0.00         2.31
## whole milk                      0.00           0.00         4.67
## candles                         4.36           0.00         2.36
## mayonnaise                      4.45           0.00         0.00
## Instant food products           0.00           0.00         0.00
## sweet spreads                   0.00           0.00         0.00
## liquor (appetizer)              0.00           0.00         0.00
## specialty cheese                4.64           2.46         0.00
## frozen potato products          4.69           0.00         5.08
## house keeping products          0.00           0.00         0.00
## dog food                        2.37           0.00         0.00
## soy                             2.40           5.09         0.00
## instant coffee                  0.00           0.00         5.63
## pip herbs                       0.00           0.00         2.82
## zwieback                        0.00           0.00         0.00
## finished products               0.00           0.00         0.00
## popcorn                         0.00           0.00         0.00
## vinegar                         2.80           0.00         3.03
## soups                           2.91           6.19         3.16
## female sanitary products        0.00           0.00         0.00
## sparkling wine                  0.00           3.42         0.00
## dental care                     3.37           7.15         0.00
## cereals                         3.42           0.00         0.00
## kitchen towels                  3.42           0.00         3.71
## curd cheese                     0.00           0.00         0.00
## other vegetables                0.00           0.00         0.00
## rolls/buns                      0.00           0.00         0.00
## softener                        3.59           0.00         0.00
## cleaner                         3.72           0.00         0.00
## spices                          0.00           0.00         4.03
## jam                             3.78           0.00         0.00
## sauces                          0.00           0.00         0.00
## rum                             0.00           0.00         0.00
## liver loaf                        NA           0.00         0.00
## male cosmetics                  0.00             NA         0.00
## meat spreads                    0.00           0.00           NA
## packaged herbs/vegetables       0.00           0.00         4.87
## brandy                          0.00           4.87         0.00
## ketchup                         0.00           4.98        15.24
## abrasive cleaner                4.79           0.00         0.00
## light bulbs                     0.00           5.20         0.00
## artif. sweetener                0.00           5.58         0.00
## nuts/prunes                     0.00           5.58         0.00
## specialty fat                   5.39           0.00         0.00
## skin care                       5.68           0.00         0.00
## fish                            0.00          12.37         0.00
## potato products                 0.00           0.00         0.00
## root vegetables                 0.00           0.00         0.00
## snack products                  0.00           0.00         0.00
## nut snack                       0.00           0.00         0.00
## soap                           13.07           0.00         0.00
## syrup                           0.00           0.00         0.00
## bathroom cleaner               13.48           0.00         0.00
## canned fruit                    0.00           0.00         7.30
## cookware                        0.00           7.89         8.06
## cooking chocolate               0.00           8.80         0.00
## tidbits                         0.00           0.00         8.99
## cocoa drinks                    0.00           0.00         0.00
## pudding powder                  0.00           9.54         0.00
## ready soups                     0.00           0.00         0.00
## organic marinated meat          9.80           0.00         0.00
## flower soil/fertilizer          0.00           0.00         0.00
## organic products                0.00           0.00         0.00
## pot plants                      0.00           0.00         0.00
## prosecco                        0.00           0.00         0.00
## frankfurter                     0.00           0.00        11.68
## decalcifier                     0.00           0.00        12.30
## honey                           0.00           0.00         0.00
## specialty vegetables            0.00          13.46         0.00
## cream                           0.00           0.00         0.00
## hair spray                      0.00           0.00         0.00
## frozen fruits                   0.00           0.00         0.00
## rubbing alcohol                 0.00           0.00         0.00
## liqueur                         0.00           0.00         0.00
## make up remover                 0.00           0.00         0.00
## salad dressing                 23.96           0.00         0.00
## frozen chicken                  0.00           0.00         0.00
## whisky                          0.00           0.00         0.00
## baby cosmetics                  0.00           0.00         0.00
## toilet cleaner                  0.00           0.00         0.00
## bags                            0.00           0.00         0.00
## canned herbs                    0.00           0.00         0.00
## kitchen utensil                 0.00           0.00         0.00
## preservation products           0.00           0.00         0.00
## baby food                       0.00           0.00         0.00
## frozen herbss                   0.00           0.00         0.00
## organic sausage                 0.00           0.00         0.00
## sound storage medium            0.00           0.00         0.00
##                           packaged herbs/vegetables brandy ketchup
## rice                                           1.71   0.50    1.36
## veggies                                        0.00   0.75    1.92
## loaf                                           0.00   1.45    0.67
## coke                                           0.00   0.97    1.85
## yogurt                                         1.78   1.52    1.71
## vegetables                                     2.51   1.28    1.68
## mineral water                                  0.00   1.10    0.90
## Plastic bags                                   0.43   3.08    1.12
## tropical fruit                                 0.00   0.23    1.89
## marinated meat                                 0.00   1.29    1.58
## pies/pasties                                   0.00   0.26    1.06
## newspapers                                     0.51   0.00    2.42
## citrus                                         0.00   0.59    0.90
## whipped/sour cream                             1.74   0.00    2.11
## heinken                                        0.00   2.71    1.54
## green tea                                      0.00   1.87    0.64
## pip fruit                                      0.00   0.96    2.62
## brown bread                                    1.63   1.33    2.72
## fruit/vegetable juice                          0.00   0.67    0.69
## domestic eggs                                  1.66   0.34    5.19
## coffee                                         1.01   2.07    1.41
## margarine                                      1.07   0.00    2.61
## beef                                           2.54   0.74    1.14
## curd                                           1.83   0.75    1.91
## butter                                         1.89   0.39    1.58
## marinated meats                                0.00   0.82    3.36
## napkins                                        0.81   1.24    2.54
## halal meat                                     0.00   0.00    3.44
## chocolate                                      1.29   0.88    2.69
## frozen vegetables                              3.05   0.00    2.27
## chicken                                        2.34   0.96    0.98
## white bread                                    1.50   2.55    2.09
## cream cheese                                   0.52   0.53    1.62
## waffles                                        1.10   0.56    1.73
## dessert                                        2.80   0.00    1.75
## salty snack                                    1.12   1.72    2.34
## long life bakery product                       1.72   0.59    1.20
## berries                                        4.60   0.59    1.20
## hamburger meat                                 1.18   1.20    3.07
## sugar                                          2.40   0.00    3.13
## hygiene articles                               0.61   1.24    4.42
## UHT-milk                                       2.53   2.58    2.64
## onions                                         3.84   1.96    2.67
## candy                                          1.42   0.73    1.49
## specialty chocolate                            0.00   2.19    0.75
## butter milk                                    0.00   0.00    0.75
## oil                                            2.18   2.23    6.08
## frozen meals                                   0.00   0.00    1.52
## misc. beverages                                0.74   3.02    3.09
## specialty bar                                  1.50   1.53    0.00
## ham                                            1.52   0.78    0.79
## beverages                                      2.30   1.56    0.00
## meat                                           1.57   0.80    1.64
## ice cream                                      2.41   0.82    0.00
## sliced cheese                                  3.29   0.84    2.58
## hard cheese                                    2.56   0.87    2.67
## noodles                                       11.68   1.84    0.00
## grapes                                         0.00   1.84    0.94
## cat food                                       2.83   0.00    0.00
## chewing gum                                    0.99   1.02    1.04
## soda                                           9.14   0.00    1.06
## detergent                                      2.10   3.21    3.28
## red/blush wine                                 0.00   1.10    0.00
## white wine                                     0.00   2.23    1.14
## turkey                                         3.50   0.00    1.22
## dishes                                         2.36   1.21    2.46
## bottled water                                 14.23   1.21    0.00
## flour                                          1.19   1.21    2.48
## semi-finished bread                            1.19   1.22    2.49
## baking powder                                  2.41   1.23    1.26
## pickled vegetables                             3.65   1.24    3.81
## herbs                                          2.47   1.26    0.00
## tropical herbs                                11.13   0.00    1.29
## soft cheese                                    0.00   0.00    2.65
## tea                                            7.62   0.00    1.33
## processed cheese                               0.00   0.00    6.77
## sausage                                        8.06   2.74    0.00
## pasta                                          2.72   1.39    5.67
## citrus herbs                                  10.93   1.40    0.00
## potted plants                                  0.00   1.40    0.00
## canned fish                                    0.00   1.48    9.09
## seasonal products                              3.07   0.00    3.21
## cake bar                                       1.59   0.00    0.00
## carrots                                       23.20   3.38    0.00
## mustard                                        3.51   0.00   12.83
## packaged fruit/vegetables                      0.00   0.00    1.90
## spread cheese                                  1.83   0.00    0.00
## frozen dessert                                 3.68   3.76    0.00
## frozen fish                                    1.84   1.88    0.00
## cling film/bags                                0.00   0.00    5.80
## salt                                           0.00   0.00    3.87
## liquor                                         0.00   2.02    0.00
## canned vegetables                              0.00   0.00    6.25
## bottled beer                                   8.06   4.11    2.10
## flower (seeds)                                 4.03   0.00    4.20
## cooking oil                                    6.10   2.07    0.00
## dish cleaner                                   2.03   4.15    6.36
## condensed milk                                 2.07   8.45    0.00
## roll products                                  0.00   0.00    0.00
## photo/film                                     2.16   0.00    2.26
## pet care                                       0.00   0.00    0.00
## chocolate marshmallow                          0.00   0.00    2.39
## herbs/vegetable juice                          9.25   2.36    0.00
## whole milk                                     2.34   2.39    2.44
## candles                                        2.36   0.00    0.00
## mayonnaise                                     4.82   0.00    7.54
## Instant food products                          0.00   0.00    7.78
## sweet spreads                                  0.00   5.08    0.00
## liquor (appetizer)                             2.51   7.70    0.00
## specialty cheese                               2.51   5.13    2.62
## frozen potato products                         2.54   0.00    2.65
## house keeping products                         0.00   0.00    2.65
## dog food                                       0.00   7.87    5.36
## soy                                           12.98   0.00    0.00
## instant coffee                                 0.00   0.00    2.94
## pip herbs                                      5.63   0.00    0.00
## zwieback                                       2.92   5.97    6.10
## finished products                              3.03   0.00    0.00
## popcorn                                        0.00   0.00    6.33
## vinegar                                        3.03   0.00    3.17
## soups                                          3.16   0.00    6.59
## female sanitary products                       0.00   3.51    0.00
## sparkling wine                                 3.49   3.56    0.00
## dental care                                    0.00   0.00    3.81
## cereals                                        0.00   0.00    3.87
## kitchen towels                                 0.00   0.00    0.00
## curd cheese                                    3.77   0.00    0.00
## other vegetables                               7.54   3.85    3.93
## rolls/buns                                     0.00   3.85    0.00
## softener                                       0.00   3.98    0.00
## cleaner                                        0.00   0.00    0.00
## spices                                         0.00   0.00    8.41
## jam                                            0.00   0.00    0.00
## sauces                                         0.00   0.00    0.00
## rum                                            4.25   0.00    0.00
## liver loaf                                     0.00   0.00    0.00
## male cosmetics                                 0.00   4.87    4.98
## meat spreads                                   4.87   0.00   15.24
## packaged herbs/vegetables                        NA   0.00    5.08
## brandy                                         0.00     NA    0.00
## ketchup                                        5.08   0.00      NA
## abrasive cleaner                               5.19   0.00    5.42
## light bulbs                                    0.00   0.00    0.00
## artif. sweetener                               0.00   0.00    0.00
## nuts/prunes                                    0.00  11.64    0.00
## specialty fat                                  5.84   0.00    0.00
## skin care                                      0.00  12.56    6.42
## fish                                           0.00   0.00    0.00
## potato products                                0.00   0.00    0.00
## root vegetables                                0.00   0.00    0.00
## snack products                                 6.87   0.00    0.00
## nut snack                                      0.00   0.00    0.00
## soap                                           0.00   0.00    0.00
## syrup                                          0.00   0.00    7.39
## bathroom cleaner                               0.00   0.00    7.62
## canned fruit                                   0.00   0.00    0.00
## cookware                                       0.00   8.23    0.00
## cooking chocolate                              0.00   9.18    9.38
## tidbits                                        0.00   0.00    0.00
## cocoa drinks                                   0.00   0.00    9.75
## pudding powder                                 0.00   0.00    0.00
## ready soups                                    0.00   0.00   10.16
## organic marinated meat                         0.00   0.00    0.00
## flower soil/fertilizer                        11.13   0.00    0.00
## organic products                               0.00   0.00    0.00
## pot plants                                    11.13   0.00    0.00
## prosecco                                       0.00   0.00    0.00
## frankfurter                                    0.00  11.93    0.00
## decalcifier                                    0.00   0.00   12.83
## honey                                          0.00   0.00    0.00
## specialty vegetables                           0.00   0.00    0.00
## cream                                          0.00   0.00    0.00
## hair spray                                     0.00   0.00    0.00
## frozen fruits                                  0.00   0.00    0.00
## rubbing alcohol                                0.00   0.00    0.00
## liqueur                                        0.00   0.00    0.00
## make up remover                                0.00   0.00    0.00
## salad dressing                                25.96   0.00    0.00
## frozen chicken                                 0.00   0.00    0.00
## whisky                                         0.00  59.65    0.00
## baby cosmetics                                 0.00   0.00    0.00
## toilet cleaner                                 0.00   0.00    0.00
## bags                                           0.00   0.00    0.00
## canned herbs                                   0.00   0.00    0.00
## kitchen utensil                                0.00   0.00    0.00
## preservation products                          0.00   0.00    0.00
## baby food                                      0.00   0.00    0.00
## frozen herbss                                  0.00   0.00    0.00
## organic sausage                                0.00   0.00    0.00
## sound storage medium                           0.00   0.00    0.00
##                           abrasive cleaner light bulbs artif. sweetener
## rice                                  1.99        0.89             1.24
## veggies                               2.10        1.74             1.44
## loaf                                  0.69        0.99             1.06
## coke                                  0.87        1.19             0.96
## yogurt                                2.06        2.11             2.61
## vegetables                            3.06        1.17             1.68
## mineral water                         0.69        0.94             1.76
## Plastic bags                          0.92        1.17             1.76
## tropical fruit                        1.45        1.23             1.33
## marinated meat                        2.70        1.10             0.89
## pies/pasties                          1.09        1.67             2.09
## newspapers                            1.65        1.68             1.81
## citrus                                2.45        0.63             1.68
## whipped/sour cream                    3.09        0.63             0.68
## heinken                               1.89        0.97             0.35
## green tea                             0.00        1.00             0.36
## pip fruit                             1.34        2.06             0.74
## brown bread                           2.08        1.42             1.52
## fruit/vegetable juice                 1.40        1.43             1.15
## domestic eggs                         0.71        1.45             1.16
## coffee                                1.44        2.58             2.38
## margarine                             1.14        1.17             2.93
## beef                                  3.48        1.58             1.27
## curd                                  1.95        1.99             2.14
## butter                                2.82        0.41             0.44
## marinated meats                       0.43        1.32             3.30
## napkins                               1.73        3.99             0.95
## halal meat                            2.20        0.45             2.89
## chocolate                             1.83        0.47             0.00
## frozen vegetables                     0.46        0.00             1.02
## chicken                               4.00        2.04             2.74
## white bread                           1.60        0.55             1.17
## cream cheese                          2.21        1.70             1.21
## waffles                               1.18        2.41             0.65
## dessert                               1.20        2.44             1.97
## salty snack                           1.20        1.83             0.66
## long life bakery product              2.45        1.88             0.00
## berries                               6.14        0.00             2.02
## hamburger meat                        1.88        0.64             2.07
## sugar                                 2.56        2.61             2.10
## hygiene articles                      2.58        2.64             2.83
## UHT-milk                              0.00        2.07             5.18
## onions                                3.41        1.40             1.50
## candy                                 3.04        1.55             0.83
## specialty chocolate                   2.29        1.56             0.84
## butter milk                           1.54        0.00             0.00
## oil                                   3.11        2.38             1.70
## frozen meals                          0.00        1.59             0.00
## misc. beverages                       1.58        0.81             0.00
## specialty bar                         0.00        1.64             1.76
## ham                                   2.44        3.32             0.89
## beverages                             1.63        0.84             0.00
## meat                                  2.51        0.86             2.75
## ice cream                             1.71        0.88             0.00
## sliced cheese                         0.88        1.79             2.89
## hard cheese                           1.82        0.93             1.00
## noodles                               2.88        0.00             1.05
## grapes                                0.96        1.97             0.00
## cat food                              3.01        0.00             2.21
## chewing gum                           1.06        2.17             0.00
## soda                                  2.17        0.00             3.57
## detergent                             1.12        1.14             2.45
## red/blush wine                        0.00        2.35             1.26
## white wine                            1.16        2.38             0.00
## turkey                                1.25        0.00             5.47
## dishes                                5.03        1.29             1.38
## bottled water                         0.00        0.00             4.17
## flour                                 0.00        0.00             8.33
## semi-finished bread                   1.27        1.30             6.98
## baking powder                         0.00        1.31             4.23
## pickled vegetables                    1.30        2.66             0.00
## herbs                                 2.64        2.70             0.00
## tropical herbs                        2.64        0.00             2.89
## soft cheese                           2.71        0.00             0.00
## tea                                   2.71        1.39             2.97
## processed cheese                      0.00        1.42             3.04
## sausage                               4.30        0.00             1.57
## pasta                                 2.90        1.48             0.00
## citrus herbs                          4.37        1.49             0.00
## potted plants                         0.00        1.49             1.60
## canned fish                           3.10        0.00             0.00
## seasonal products                     0.00        0.00             0.00
## cake bar                              0.00        1.73             1.86
## carrots                               7.07        0.00             1.94
## mustard                               3.75        1.92             8.23
## packaged fruit/vegetables             1.95        1.99             4.27
## spread cheese                         1.95        3.98             2.14
## frozen dessert                        1.96        2.01             4.31
## frozen fish                           0.00        0.00             6.46
## cling film/bags                       3.96        2.02             2.17
## salt                                  3.96        2.02             0.00
## liquor                                0.00        0.00             0.00
## canned vegetables                     4.26        0.00             0.00
## bottled beer                          0.00        0.00             0.00
## flower (seeds)                        4.30        0.00             0.00
## cooking oil                           0.00        0.00             0.00
## dish cleaner                          8.67        0.00             4.76
## condensed milk                        2.21        0.00             0.00
## roll products                         4.57        0.00             5.02
## photo/film                            0.00        0.00             7.60
## pet care                              0.00        0.00             0.00
## chocolate marshmallow                 0.00        2.50             5.36
## herbs/vegetable juice                 0.00        0.00             5.42
## whole milk                            0.00        0.00             0.00
## candles                               2.52        0.00             8.29
## mayonnaise                            2.57        0.00             2.82
## Instant food products                 0.00        0.00             0.00
## sweet spreads                         0.00        2.71             0.00
## liquor (appetizer)                    0.00        8.22             0.00
## specialty cheese                      5.36        0.00             0.00
## frozen potato products                0.00        0.00             0.00
## house keeping products                8.13        2.77             2.97
## dog food                              2.74        0.00             3.01
## soy                                   2.77        5.66             6.08
## instant coffee                        3.00        0.00             3.30
## pip herbs                             3.00        3.07             0.00
## zwieback                              0.00        0.00             0.00
## finished products                     0.00        0.00             0.00
## popcorn                               0.00        0.00             0.00
## vinegar                               6.47        3.31             7.10
## soups                                 0.00        3.44             3.70
## female sanitary products              0.00        0.00             0.00
## sparkling wine                        0.00        0.00             0.00
## dental care                           3.89        7.97             8.55
## cereals                               0.00        0.00             4.34
## kitchen towels                        0.00        4.05             0.00
## curd cheese                          20.10        4.11             0.00
## other vegetables                      4.02        0.00             0.00
## rolls/buns                            0.00        0.00             0.00
## softener                              0.00        0.00             0.00
## cleaner                              25.78        4.39             4.72
## spices                                4.30        4.39             0.00
## jam                                   4.37        4.47             4.80
## sauces                                0.00        8.94             9.60
## rum                                   9.06        0.00             9.95
## liver loaf                            4.79        0.00             0.00
## male cosmetics                        0.00        5.20             5.58
## meat spreads                          0.00        0.00             0.00
## packaged herbs/vegetables             5.19        0.00             0.00
## brandy                                0.00        0.00             0.00
## ketchup                               5.42        0.00             0.00
## abrasive cleaner                        NA        5.66            12.16
## light bulbs                           5.66          NA             0.00
## artif. sweetener                     12.16        0.00               NA
## nuts/prunes                           0.00        6.22             0.00
## specialty fat                         0.00        0.00             0.00
## skin care                             0.00        0.00            14.40
## fish                                  0.00        0.00             0.00
## potato products                       0.00        0.00            23.45
## root vegetables                       0.00        0.00             0.00
## snack products                        0.00        7.50             0.00
## nut snack                             0.00        0.00             0.00
## soap                                  7.55        0.00             0.00
## syrup                                 0.00        7.72             0.00
## bathroom cleaner                      7.79        7.97             0.00
## canned fruit                          0.00        0.00             8.55
## cookware                              0.00        0.00             0.00
## cooking chocolate                     0.00        0.00             0.00
## tidbits                               0.00        0.00             0.00
## cocoa drinks                          9.97        0.00            10.94
## pudding powder                        0.00        0.00             0.00
## ready soups                           0.00        0.00            22.79
## organic marinated meat               11.33        0.00             0.00
## flower soil/fertilizer                0.00        0.00             0.00
## organic products                      0.00        0.00            26.05
## pot plants                            0.00        0.00             0.00
## prosecco                              0.00        0.00             0.00
## frankfurter                           0.00        0.00            13.68
## decalcifier                           0.00       13.42             0.00
## honey                                 0.00        0.00             0.00
## specialty vegetables                  0.00        0.00             0.00
## cream                                 0.00        0.00             0.00
## hair spray                           17.80        0.00             0.00
## frozen fruits                         0.00        0.00             0.00
## rubbing alcohol                       0.00        0.00             0.00
## liqueur                               0.00        0.00             0.00
## make up remover                       0.00        0.00             0.00
## salad dressing                       27.69        0.00            30.39
## frozen chicken                        0.00        0.00             0.00
## whisky                                0.00        0.00             0.00
## baby cosmetics                        0.00        0.00             0.00
## toilet cleaner                        0.00        0.00             0.00
## bags                                  0.00        0.00             0.00
## canned herbs                          0.00        0.00             0.00
## kitchen utensil                       0.00        0.00             0.00
## preservation products               124.61        0.00             0.00
## baby food                             0.00        0.00             0.00
## frozen herbss                         0.00        0.00             0.00
## organic sausage                       0.00        0.00             0.00
## sound storage medium                  0.00        0.00             0.00
##                           nuts/prunes specialty fat skin care  fish
## rice                             1.33          1.36      1.74  1.26
## veggies                          1.29          1.62      1.86  1.11
## loaf                             1.51          1.08      2.28  0.50
## coke                             1.28          0.65      1.20  0.53
## yogurt                           0.87          1.78      2.25  1.54
## vegetables                       1.68          2.15      1.58  1.39
## mineral water                    0.25          1.29      2.17  0.28
## Plastic bags                     1.76          0.52      1.63  0.84
## tropical fruit                   2.12          1.36      2.00  0.88
## marinated meat                   0.89          1.21      2.24  1.64
## pies/pasties                     1.19          0.61      1.29  1.32
## newspapers                       2.71          0.93      0.65  0.33
## citrus                           0.67          2.07      2.54  1.49
## whipped/sour cream               0.68          3.47      2.56  1.50
## heinken                          1.04          1.42      1.49  0.38
## green tea                        0.72          0.00      0.77  0.00
## pip fruit                        2.21          1.51      0.79  0.41
## brown bread                      1.14          0.39      0.00  0.84
## fruit/vegetable juice            1.15          1.97      1.66  0.85
## domestic eggs                    1.55          2.78      2.51  0.43
## coffee                           0.40          1.62      1.28  3.51
## margarine                        0.84          5.58      3.16  1.86
## beef                             1.70          2.18      2.75  1.41
## curd                             1.28          1.32      1.85  1.90
## butter                           0.44          5.44      1.43  1.47
## marinated meats                  0.94          2.90      2.04  1.05
## napkins                          1.90          4.39      3.59  1.58
## halal meat                       1.45          3.46      2.08  2.14
## chocolate                        3.52          1.55      0.00  1.11
## frozen vegetables                0.00          5.22      4.95  0.56
## chicken                          1.10          3.37      3.55  0.61
## white bread                      1.76          3.60      0.63  1.95
## cream cheese                     1.21          1.87      0.65  2.69
## waffles                          2.59          2.65      2.09  0.00
## dessert                          1.31          3.36      2.83  2.18
## salty snack                      1.31          1.34      1.42  0.00
## long life bakery product         0.00          2.76      0.00  2.98
## berries                          0.00          2.07      2.18  3.73
## hamburger meat                   1.38          1.41      0.74  0.00
## sugar                            0.00          3.59      4.54  2.33
## hygiene articles                 0.71          1.45      6.88  0.00
## UHT-milk                         0.00          2.27      1.60  1.64
## onions                           2.25          3.84      4.04  0.00
## candy                            0.00          2.56      1.80  0.00
## specialty chocolate              3.35          2.57      0.90  1.85
## butter milk                      0.00          0.00      0.00  0.00
## oil                              0.85          3.49      0.00  1.89
## frozen meals                     2.56          0.88      3.69  0.95
## misc. beverages                  0.00          0.00      2.80  0.00
## specialty bar                    1.76          2.70      0.95  0.00
## ham                              0.00          0.91      2.88  0.00
## beverages                        0.00          0.92      0.97  0.00
## meat                             0.92          0.94      1.98  1.02
## ice cream                        1.88          0.96      1.01  1.04
## sliced cheese                    3.85          0.99      0.00  0.00
## hard cheese                      2.99          7.16      3.23  0.00
## noodles                          1.05          0.00      2.27  0.00
## grapes                           2.11          1.08      1.14  1.17
## cat food                         1.10          3.39      0.00  1.22
## chewing gum                      0.00          0.00      0.00  0.00
## soda                             4.76          0.00      0.00  1.32
## detergent                        0.00          0.00      1.32  2.72
## red/blush wine                   0.00          0.00      0.00  4.19
## white wine                       0.00          1.31      0.00  4.25
## turkey                           4.10          0.00      0.00  1.52
## dishes                           0.00          1.42      1.49  1.53
## bottled water                    0.00          0.00      3.00  0.00
## flour                            1.39          4.27      3.00  3.08
## semi-finished bread              4.19          0.00      1.51  1.55
## baking powder                    1.41          4.34      3.04  0.00
## pickled vegetables               2.85          1.46      4.61  0.00
## herbs                            0.00          0.00      1.56  0.00
## tropical herbs                   1.45          1.48      1.56  0.00
## soft cheese                      2.97          4.57      1.60  0.00
## tea                              2.97          1.52      0.00  1.65
## processed cheese                 1.52          0.00      1.64  1.68
## sausage                          1.57          0.00      0.00  0.00
## pasta                            0.00          8.15      1.72  0.00
## citrus herbs                     3.20          0.00      3.45  0.00
## potted plants                    1.60          0.00      0.00  1.77
## canned fish                      1.70          3.48      3.67  0.00
## seasonal products                0.00          1.84      1.94  0.00
## cake bar                         0.00          0.00      6.02  4.12
## carrots                          3.88          3.98      0.00  0.00
## mustard                          4.11          6.32      2.22  0.00
## packaged fruit/vegetables        0.00          4.38      0.00  2.37
## spread cheese                    4.27          0.00      0.00  4.74
## frozen dessert                   2.15          0.00      4.65  0.00
## frozen fish                      0.00          6.62      2.32  0.00
## cling film/bags                  0.00          6.68      0.00  2.41
## salt                             0.00          6.68      4.68  2.41
## liquor                           2.32          0.00      0.00  2.57
## canned vegetables                0.00          2.40      5.04  0.00
## bottled beer                     2.36          0.00      0.00  0.00
## flower (seeds)                   0.00          7.25      5.09  0.00
## cooking oil                      0.00          0.00      0.00  2.64
## dish cleaner                     0.00          2.44      0.00  0.00
## condensed milk                   4.84          0.00      0.00  2.68
## roll products                    0.00          5.14      5.42  5.56
## photo/film                       0.00          0.00      0.00  0.00
## pet care                         0.00          0.00      0.00  5.67
## chocolate marshmallow            0.00          0.00      0.00  0.00
## herbs/vegetable juice            5.42          0.00      0.00  0.00
## whole milk                       2.74          0.00      2.95  3.03
## candles                          0.00          8.50      2.98  3.06
## mayonnaise                       2.82          5.78      6.09  0.00
## Instant food products            5.82          0.00      6.28  0.00
## sweet spreads                    2.91          2.98      3.14  0.00
## liquor (appetizer)               2.94          3.01      3.17  3.26
## specialty cheese                 2.94          0.00      3.17  0.00
## frozen potato products           5.95          6.10      0.00  0.00
## house keeping products           0.00          3.05      6.42  0.00
## dog food                         0.00          3.08      3.24  0.00
## soy                              3.04          0.00      0.00  3.37
## instant coffee                   0.00          6.76      7.11  3.65
## pip herbs                        3.30          3.38      0.00  0.00
## zwieback                         0.00          0.00      0.00  0.00
## finished products                0.00          0.00      0.00  3.94
## popcorn                          0.00          0.00      3.83  0.00
## vinegar                          0.00          0.00      3.83  0.00
## soups                            0.00          7.58      3.99  0.00
## female sanitary products         0.00          4.12      4.34  0.00
## sparkling wine                   0.00          0.00      0.00  0.00
## dental care                      4.27          0.00      0.00  0.00
## cereals                          0.00          0.00     14.05  0.00
## kitchen towels                   0.00          4.45      0.00  0.00
## curd cheese                      0.00          0.00      0.00  0.00
## other vegetables                 4.41          0.00      4.76  0.00
## rolls/buns                       4.41          0.00      0.00  0.00
## softener                         4.56          4.67      0.00  0.00
## cleaner                          0.00          0.00      5.09  0.00
## spices                           0.00          4.83      0.00  0.00
## jam                              9.60          4.92     10.36  0.00
## sauces                           0.00          0.00      5.18  0.00
## rum                              4.97          0.00      5.37  0.00
## liver loaf                       0.00          5.39      5.68  0.00
## male cosmetics                   5.58          0.00      0.00 12.37
## meat spreads                     0.00          0.00      0.00  0.00
## packaged herbs/vegetables        0.00          5.84      0.00  0.00
## brandy                          11.64          0.00     12.56  0.00
## ketchup                          0.00          0.00      6.42  0.00
## abrasive cleaner                 0.00          0.00      0.00  0.00
## light bulbs                      6.22          0.00      0.00  0.00
## artif. sweetener                 0.00          0.00     14.40  0.00
## nuts/prunes                        NA          0.00      0.00  0.00
## specialty fat                    0.00            NA      7.38  0.00
## skin care                        0.00          7.38        NA  0.00
## fish                             0.00          0.00      0.00    NA
## potato products                  0.00          0.00      0.00  0.00
## root vegetables                  0.00          0.00      8.43  0.00
## snack products                   0.00          0.00      0.00  0.00
## nut snack                        0.00          0.00      8.94  0.00
## soap                             0.00          0.00      0.00  9.19
## syrup                            0.00         16.99      8.94  0.00
## bathroom cleaner                 0.00          0.00      0.00  9.47
## canned fruit                     0.00          0.00      0.00  0.00
## cookware                         0.00          0.00      0.00  0.00
## cooking chocolate                0.00          0.00      0.00  0.00
## tidbits                          0.00          0.00      0.00  0.00
## cocoa drinks                     0.00          0.00     11.81  0.00
## pudding powder                   0.00         11.68     12.30  0.00
## ready soups                      0.00          0.00     12.30  0.00
## organic marinated meat           0.00          0.00      0.00  0.00
## flower soil/fertilizer           0.00          0.00      0.00  0.00
## organic products                 0.00          0.00      0.00  0.00
## pot plants                      13.03          0.00      0.00  0.00
## prosecco                         0.00          0.00      0.00  0.00
## frankfurter                     13.68          0.00      0.00  0.00
## decalcifier                      0.00          0.00      0.00  0.00
## honey                            0.00          0.00      0.00  0.00
## specialty vegetables             0.00         32.99      0.00  0.00
## cream                           36.47          0.00      0.00  0.00
## hair spray                       0.00          0.00      0.00  0.00
## frozen fruits                    0.00          0.00      0.00  0.00
## rubbing alcohol                  0.00          0.00      0.00  0.00
## liqueur                          0.00          0.00      0.00  0.00
## make up remover                  0.00          0.00      0.00  0.00
## salad dressing                   0.00          0.00      0.00  0.00
## frozen chicken                   0.00          0.00      0.00  0.00
## whisky                           0.00          0.00      0.00  0.00
## baby cosmetics                   0.00          0.00      0.00  0.00
## toilet cleaner                   0.00          0.00      0.00  0.00
## bags                             0.00          0.00      0.00  0.00
## canned herbs                     0.00          0.00      0.00  0.00
## kitchen utensil                  0.00          0.00      0.00 75.78
## preservation products            0.00          0.00      0.00  0.00
## baby food                        0.00          0.00      0.00  0.00
## frozen herbss                    0.00          0.00      0.00  0.00
## organic sausage                  0.00          0.00      0.00  0.00
## sound storage medium             0.00          0.00      0.00  0.00
##                           potato products root vegetables snack products
## rice                                 1.78            0.11           1.15
## veggies                              1.35            0.00           1.56
## loaf                                 1.06            0.00           2.01
## coke                                 1.49            0.00           2.12
## yogurt                               2.04            0.61           0.42
## vegetables                           1.72            0.00           1.26
## mineral water                        1.47            0.00           1.21
## Plastic bags                         2.66            0.59           1.82
## tropical fruit                       1.24            0.00           1.28
## marinated meat                       1.04            0.00           0.36
## pies/pasties                         3.84            1.40           1.08
## newspapers                           1.41            1.06           0.73
## citrus                               1.18            0.00           1.22
## whipped/sour cream                   1.19            2.78           0.41
## heinken                              2.43            0.00           0.83
## green tea                            0.00            0.00           0.43
## pip fruit                            2.15            0.00           0.44
## brown bread                          1.34            1.79           0.46
## fruit/vegetable juice                3.15            0.00           1.39
## domestic eggs                        0.45            1.82           0.94
## coffee                               2.78            0.93           0.48
## margarine                            0.98            0.98           1.52
## beef                                 2.49            1.99           1.54
## curd                                 2.51            1.50           0.00
## butter                               2.07            2.07           0.53
## marinated meats                      4.97            0.00           0.57
## napkins                              2.23            2.23           0.00
## halal meat                           2.26            0.00           0.58
## chocolate                            1.18            2.95           1.82
## frozen vegetables                    1.79            1.79           1.23
## chicken                              1.28            3.85           0.00
## white bread                          3.43            3.43           2.12
## cream cheese                         0.71            2.13           0.00
## waffles                              1.52            2.27           3.90
## dessert                              2.31            1.54           0.79
## salty snack                          2.31            0.00           0.00
## long life bakery product             3.15            1.57           0.81
## berries                              0.79            0.79           0.81
## hamburger meat                       4.84            4.04           0.83
## sugar                                0.00            1.64           1.69
## hygiene articles                     0.00            1.66           1.71
## UHT-milk                             2.60            1.73           0.89
## onions                               3.51            3.51           0.00
## candy                                1.95            0.98           4.02
## specialty chocolate                  1.96            0.98           0.00
## butter milk                          0.00            1.98           0.00
## oil                                  0.00            2.99           3.08
## frozen meals                         4.01            2.00           1.03
## misc. beverages                      1.01            1.01           0.00
## specialty bar                        1.03            1.03           2.12
## ham                                  5.22            2.09           1.07
## beverages                            1.05            1.05           2.16
## meat                                 3.23            0.00           0.00
## ice cream                            0.00            1.10           0.00
## sliced cheese                        0.00            0.00           0.00
## hard cheese                          1.17            1.17           1.20
## noodles                              2.46            0.00           3.81
## grapes                               4.95            1.24           2.55
## cat food                             3.88            1.29           0.00
## chewing gum                          0.00            0.00           0.00
## soda                                 0.00            6.97           2.87
## detergent                            1.44            0.00           2.96
## red/blush wine                       0.00            1.48           1.52
## white wine                           0.00            1.50           0.00
## turkey                               1.60            6.41           0.00
## dishes                               0.00            0.00           1.67
## bottled water                        3.25            6.51           0.00
## flour                                0.00            4.88           0.00
## semi-finished bread                  3.27            0.00           3.37
## baking powder                        1.65            1.65           0.00
## pickled vegetables                   0.00            1.67           0.00
## herbs                                0.00            3.39           0.00
## tropical herbs                       1.70            5.09           1.75
## soft cheese                          1.74            1.74           0.00
## tea                                  3.48            1.74           3.59
## processed cheese                    10.68            1.78           5.50
## sausage                              0.00           12.89           0.00
## pasta                                0.00            1.86           3.84
## citrus herbs                         1.87           11.24           0.00
## potted plants                        3.75            0.00           1.93
## canned fish                          0.00            1.99           2.05
## seasonal products                    2.11            0.00           2.17
## cake bar                             0.00            2.18           6.73
## carrots                              4.55            0.00           0.00
## mustard                              4.82            0.00           0.00
## packaged fruit/vegetables            0.00            0.00           5.15
## spread cheese                        2.50            2.50           0.00
## frozen dessert                       5.05            2.52           5.19
## frozen fish                          0.00            0.00           2.60
## cling film/bags                      0.00            0.00           0.00
## salt                                 0.00           10.17           2.62
## liquor                               0.00            0.00           0.00
## canned vegetables                    0.00            0.00           5.64
## bottled beer                         2.76            0.00           0.00
## flower (seeds)                       5.52            2.76           0.00
## cooking oil                          0.00            0.00           2.87
## dish cleaner                         0.00            0.00           0.00
## condensed milk                       2.84            2.84           0.00
## roll products                        0.00            2.94           0.00
## photo/film                           2.97            0.00           0.00
## pet care                             0.00            5.99           3.08
## chocolate marshmallow                9.42            3.14           6.47
## herbs/vegetable juice                9.52            6.35           0.00
## whole milk                           3.20           44.86           0.00
## candles                              0.00            0.00           0.00
## mayonnaise                           0.00            0.00           0.00
## Instant food products                3.41            3.41           3.51
## sweet spreads                        0.00            0.00           0.00
## liquor (appetizer)                   0.00            0.00           0.00
## specialty cheese                     0.00            3.45           0.00
## frozen potato products               0.00            0.00           0.00
## house keeping products               3.48            0.00           0.00
## dog food                             0.00            0.00           0.00
## soy                                  0.00            0.00           3.67
## instant coffee                       3.86            3.86           0.00
## pip herbs                            0.00           19.30           0.00
## zwieback                             0.00            0.00           8.25
## finished products                   12.48            4.16           0.00
## popcorn                              0.00            0.00           8.57
## vinegar                              8.32            0.00           0.00
## soups                                0.00            0.00           0.00
## female sanitary products             0.00            0.00           4.85
## sparkling wine                       0.00            0.00           0.00
## dental care                          0.00            5.01           0.00
## cereals                              5.09            0.00           0.00
## kitchen towels                       5.09            0.00           0.00
## curd cheese                          5.17           10.34           0.00
## other vegetables                     5.17           67.19           0.00
## rolls/buns                           0.00           36.18           0.00
## softener                             0.00            0.00           0.00
## cleaner                              0.00            0.00           0.00
## spices                               0.00            0.00           0.00
## jam                                  0.00            5.62           0.00
## sauces                               0.00            0.00           0.00
## rum                                  5.83            0.00           0.00
## liver loaf                           0.00            0.00           0.00
## male cosmetics                       0.00            0.00           0.00
## meat spreads                         0.00            0.00           0.00
## packaged herbs/vegetables            0.00            0.00           6.87
## brandy                               0.00            0.00           0.00
## ketchup                              0.00            0.00           0.00
## abrasive cleaner                     0.00            0.00           0.00
## light bulbs                          0.00            0.00           7.50
## artif. sweetener                    23.45            0.00           0.00
## nuts/prunes                          0.00            0.00           0.00
## specialty fat                        0.00            0.00           0.00
## skin care                            0.00            8.43           0.00
## fish                                 0.00            0.00           0.00
## potato products                        NA            0.00           0.00
## root vegetables                      0.00              NA           0.00
## snack products                       0.00            0.00             NA
## nut snack                            0.00            0.00           0.00
## soap                                19.42            0.00           0.00
## syrup                                0.00            0.00           0.00
## bathroom cleaner                     0.00            0.00           0.00
## canned fruit                         0.00            0.00          10.31
## cookware                            11.05            0.00           0.00
## cooking chocolate                    0.00            0.00           0.00
## tidbits                              0.00            0.00           0.00
## cocoa drinks                         0.00            0.00           0.00
## pudding powder                       0.00           13.35           0.00
## ready soups                          0.00            0.00           0.00
## organic marinated meat               0.00            0.00           0.00
## flower soil/fertilizer               0.00            0.00           0.00
## organic products                     0.00            0.00          15.71
## pot plants                           0.00            0.00           0.00
## prosecco                             0.00            0.00           0.00
## frankfurter                         32.04            0.00           0.00
## decalcifier                         33.73            0.00           0.00
## honey                                0.00            0.00           0.00
## specialty vegetables                 0.00            0.00          19.40
## cream                                0.00            0.00           0.00
## hair spray                           0.00            0.00           0.00
## frozen fruits                        0.00            0.00           0.00
## rubbing alcohol                      0.00            0.00           0.00
## liqueur                              0.00            0.00           0.00
## make up remover                      0.00            0.00           0.00
## salad dressing                       0.00            0.00           0.00
## frozen chicken                       0.00            0.00           0.00
## whisky                               0.00            0.00           0.00
## baby cosmetics                       0.00            0.00           0.00
## toilet cleaner                       0.00            0.00           0.00
## bags                                 0.00            0.00           0.00
## canned herbs                         0.00            0.00           0.00
## kitchen utensil                      0.00            0.00           0.00
## preservation products                0.00            0.00           0.00
## baby food                            0.00            0.00           0.00
## frozen herbss                        0.00            0.00           0.00
## organic sausage                      0.00            0.00           0.00
## sound storage medium                 0.00            0.00           0.00
##                           nut snack  soap syrup bathroom cleaner canned fruit
## rice                           0.59  1.77  1.06             0.97         1.71
## veggies                        1.43  0.89  1.96             1.84         2.03
## loaf                           1.13  1.13  1.13             1.16         1.16
## coke                           1.98  1.59  1.78             2.04         1.23
## yogurt                         1.51  0.87  1.30             1.78         0.89
## vegetables                     1.56  1.30  1.56             2.69         1.88
## mineral water                  0.94  0.63  1.56             1.29         1.61
## Plastic bags                   1.88  0.94  1.56             0.32         2.58
## tropical fruit                 1.98  0.99  2.96             2.04         2.38
## marinated meat                 2.21  1.84  1.84             1.90         1.90
## pies/pasties                   1.48  1.85  2.59             1.53         2.29
## newspapers                     1.12  1.50  1.87             2.32         0.77
## citrus                         2.09  1.67  2.09             1.29         4.74
## whipped/sour cream             1.68  0.84  1.68             1.74         1.74
## heinken                        2.57  0.86  0.43             1.33         0.44
## green tea                      0.44  0.00  1.78             0.92         0.46
## pip fruit                      0.91  0.46  2.28             0.00         1.88
## brown bread                    0.95  0.00  2.37             0.49         2.44
## fruit/vegetable juice          2.39  2.87  1.91             1.97         2.46
## domestic eggs                  0.48  1.93  1.45             0.99         4.47
## coffee                         0.98  1.97  2.46             1.01         0.51
## margarine                      1.56  0.00  2.08             2.68         2.68
## beef                           0.53  3.69  1.06             1.09         1.63
## curd                           1.06  2.66  1.06             0.55         1.65
## butter                         1.10  0.55  3.30             0.57         1.70
## marinated meats                3.52  1.76  2.93             0.60         3.02
## napkins                        1.18  1.18  2.36             3.66         1.22
## halal meat                     1.20  1.80  3.00             1.85         0.00
## chocolate                      0.62  0.00  1.87             0.00         1.93
## frozen vegetables              2.53  1.27  1.90             1.96         1.31
## chicken                        0.68  1.36  0.00             2.11         1.40
## white bread                    1.46  2.91  3.64             0.75         0.75
## cream cheese                   0.00  1.51  0.75             1.55         3.11
## waffles                        3.21  1.61  1.61             3.31         1.66
## dessert                        2.44  0.00  2.44             0.84         4.20
## salty snack                    4.89  0.00  0.81             1.68         0.00
## long life bakery product       2.51  0.00  0.84             0.86         0.86
## berries                        1.67  1.67  2.51             3.45         1.73
## hamburger meat                 1.71  3.42  2.57             3.53         2.65
## sugar                          0.87  2.61  0.87             0.90         1.80
## hygiene articles               1.76  0.88  0.88             1.82         5.45
## UHT-milk                       1.84  0.00  2.76             2.84         1.89
## onions                         0.00  0.00  2.79             2.88         0.96
## candy                          1.04  1.04  3.11             3.21         2.14
## specialty chocolate            1.04  1.04  1.04             0.00         0.00
## butter milk                    1.05  0.00  2.10             1.09         1.09
## oil                            0.00  1.06  2.12             4.37         3.28
## frozen meals                   1.06  2.12  2.12             0.00         2.19
## misc. beverages                0.00  0.00  1.08             1.11         6.65
## specialty bar                  2.19  0.00  3.28             2.25         1.13
## ham                            0.00  0.00  2.21             0.00         0.00
## beverages                      1.11  0.00  0.00             0.00         1.15
## meat                           2.28  0.00  3.42             0.00         1.18
## ice cream                      3.50  0.00  3.50             0.00         1.20
## sliced cheese                  3.59  1.20  3.59             2.47         2.47
## hard cheese                    4.96  4.96  2.48             0.00         3.84
## noodles                        0.00  1.31  0.00             4.04         0.00
## grapes                         1.31  0.00  2.62             4.06         2.71
## cat food                       5.48  0.00  1.37             1.41         0.00
## chewing gum                    0.00  0.00  1.45             1.49         0.00
## soda                           0.00  1.48  0.00             3.05         0.00
## detergent                      1.52  4.57  1.52             0.00         1.57
## red/blush wine                 1.57  0.00  1.57             0.00         0.00
## white wine                     0.00  0.00  0.00             0.00         1.64
## turkey                         0.00  3.40  0.00             3.50         1.75
## dishes                         1.72  1.72  0.00             1.77         1.77
## bottled water                  1.73  1.73  0.00             1.78         0.00
## flour                          1.73  0.00  0.00             3.56         1.78
## semi-finished bread            0.00  0.00  5.20             0.00         1.79
## baking powder                  5.26  5.26  1.75             1.81         1.81
## pickled vegetables             1.77  0.00  1.77             0.00         3.65
## herbs                          0.00  0.00  0.00             0.00         3.71
## tropical herbs                 0.00  1.80  0.00             1.85         0.00
## soft cheese                    0.00  0.00  1.85             0.00         0.00
## tea                            0.00  1.85  0.00             3.81         1.90
## processed cheese               0.00  0.00  1.89             0.00         1.95
## sausage                        0.00  5.86  0.00             2.01         0.00
## pasta                          1.98  3.95  5.93             2.04         2.04
## citrus herbs                   1.99  1.99  0.00             0.00         0.00
## potted plants                  0.00  0.00  0.00             0.00         0.00
## canned fish                    4.22  0.00  0.00             0.00         4.35
## seasonal products              2.24  2.24  4.47             2.31         0.00
## cake bar                       2.31  0.00  0.00             0.00         0.00
## carrots                        0.00  0.00  0.00             4.97         0.00
## mustard                        5.11 10.22  2.56             2.64         2.64
## packaged fruit/vegetables      0.00  0.00  0.00             2.74         2.74
## spread cheese                  0.00  0.00  2.66             0.00         0.00
## frozen dessert                 0.00  5.35  2.68             5.52         8.28
## frozen fish                    5.35  0.00  2.68             0.00         2.76
## cling film/bags                0.00  0.00  8.09             0.00         0.00
## salt                           5.39  0.00  0.00             0.00         0.00
## liquor                         2.88  0.00  0.00             0.00         0.00
## canned vegetables              0.00  0.00  2.90             5.99         3.00
## bottled beer                   2.93  0.00  0.00             0.00         0.00
## flower (seeds)                 2.93  0.00  0.00             0.00         6.04
## cooking oil                    0.00  0.00  0.00             3.05         0.00
## dish cleaner                   0.00  0.00  5.91             6.10         0.00
## condensed milk                 9.02  0.00  3.01             6.20         0.00
## roll products                  0.00  0.00  3.12             3.22         0.00
## photo/film                     0.00  0.00  3.15             0.00         0.00
## pet care                       6.35  0.00  0.00             0.00         3.28
## chocolate marshmallow          0.00  6.66  0.00             6.87         0.00
## herbs/vegetable juice          0.00  3.36  0.00             3.47         0.00
## whole milk                     3.40  0.00  0.00             0.00         0.00
## candles                        0.00  0.00  0.00             0.00         3.54
## mayonnaise                     3.50  0.00  0.00             0.00         7.23
## Instant food products          7.23  0.00  3.62             0.00         7.46
## sweet spreads                  3.62  0.00 10.85             7.46         0.00
## liquor (appetizer)             7.31  0.00  0.00             7.54         0.00
## specialty cheese              10.96  3.65  0.00             0.00         0.00
## frozen potato products         7.39  0.00  0.00             0.00         0.00
## house keeping products         7.39  0.00  3.69             0.00         3.81
## dog food                       0.00  3.73  3.73             0.00         3.85
## soy                            0.00  7.55  0.00             3.89         0.00
## instant coffee                 0.00  0.00  0.00             0.00         0.00
## pip herbs                      0.00  8.19  0.00             0.00         0.00
## zwieback                       0.00  0.00  0.00             0.00         0.00
## finished products              0.00  0.00  0.00             0.00         4.55
## popcorn                        4.41  0.00  4.41             0.00         9.10
## vinegar                        0.00  0.00  0.00             0.00         0.00
## soups                          0.00  4.59  4.59             0.00         0.00
## female sanitary products      10.00  0.00 10.00             0.00         5.15
## sparkling wine                 0.00  0.00  0.00             0.00         5.23
## dental care                    0.00  0.00  5.31             0.00         5.48
## cereals                        5.39 16.18  0.00             0.00         0.00
## kitchen towels                 0.00  0.00  0.00             5.56         5.56
## curd cheese                    0.00  0.00  0.00             5.65         0.00
## other vegetables               5.48  0.00  0.00             0.00         0.00
## rolls/buns                     0.00  0.00  0.00             0.00         0.00
## softener                       0.00  0.00  0.00             0.00         0.00
## cleaner                        5.86  0.00  5.86            12.09         0.00
## spices                         0.00  0.00  0.00             0.00         0.00
## jam                            0.00  0.00  5.96             6.15         6.15
## sauces                         0.00  0.00  5.96             0.00         6.15
## rum                            0.00  0.00  0.00             0.00         0.00
## liver loaf                     0.00 13.07  0.00            13.48         0.00
## male cosmetics                 0.00  0.00  0.00             0.00         0.00
## meat spreads                   0.00  0.00  0.00             0.00         7.30
## packaged herbs/vegetables      0.00  0.00  0.00             0.00         0.00
## brandy                         0.00  0.00  0.00             0.00         0.00
## ketchup                        0.00  0.00  7.39             7.62         0.00
## abrasive cleaner               0.00  7.55  0.00             7.79         0.00
## light bulbs                    0.00  0.00  7.72             7.97         0.00
## artif. sweetener               0.00  0.00  0.00             0.00         8.55
## nuts/prunes                    0.00  0.00  0.00             0.00         0.00
## specialty fat                  0.00  0.00 16.99             0.00         0.00
## skin care                      8.94  0.00  8.94             0.00         0.00
## fish                           0.00  9.19  0.00             9.47         0.00
## potato products                0.00 19.42  0.00             0.00         0.00
## root vegetables                0.00  0.00  0.00             0.00         0.00
## snack products                 0.00  0.00  0.00             0.00        10.31
## nut snack                        NA  0.00  0.00             0.00         0.00
## soap                           0.00    NA  0.00            10.62         0.00
## syrup                          0.00  0.00    NA             0.00         0.00
## bathroom cleaner               0.00 10.62  0.00               NA         0.00
## canned fruit                   0.00  0.00  0.00             0.00           NA
## cookware                      11.72  0.00 11.72             0.00         0.00
## cooking chocolate             13.07  0.00  0.00             0.00         0.00
## tidbits                        0.00  0.00  0.00             0.00         0.00
## cocoa drinks                   0.00  0.00  0.00             0.00         0.00
## pudding powder                 0.00  0.00  0.00             0.00         0.00
## ready soups                    0.00  0.00  0.00             0.00         0.00
## organic marinated meat         0.00  0.00  0.00             0.00         0.00
## flower soil/fertilizer         0.00  0.00  0.00             0.00         0.00
## organic products               0.00  0.00  0.00             0.00        16.69
## pot plants                     0.00  0.00  0.00             0.00         0.00
## prosecco                       0.00  0.00  0.00             0.00         0.00
## frankfurter                    0.00  0.00  0.00             0.00         0.00
## decalcifier                    0.00  0.00  0.00            18.45         0.00
## honey                          0.00  0.00  0.00             0.00         0.00
## specialty vegetables           0.00  0.00  0.00             0.00         0.00
## cream                         22.66  0.00  0.00             0.00         0.00
## hair spray                     0.00 24.27  0.00             0.00         0.00
## frozen fruits                  0.00  0.00  0.00             0.00         0.00
## rubbing alcohol                0.00  0.00 28.32             0.00         0.00
## liqueur                        0.00  0.00  0.00             0.00         0.00
## make up remover                0.00  0.00  0.00             0.00         0.00
## salad dressing                 0.00  0.00  0.00             0.00         0.00
## frozen chicken                 0.00  0.00  0.00             0.00         0.00
## whisky                         0.00  0.00  0.00             0.00         0.00
## baby cosmetics                 0.00  0.00 48.55             0.00         0.00
## toilet cleaner                 0.00  0.00  0.00             0.00         0.00
## bags                           0.00  0.00  0.00             0.00         0.00
## canned herbs                   0.00  0.00  0.00             0.00         0.00
## kitchen utensil                0.00  0.00  0.00             0.00         0.00
## preservation products          0.00  0.00  0.00             0.00         0.00
## baby food                      0.00  0.00  0.00             0.00         0.00
## frozen herbss                  0.00  0.00  0.00             0.00         0.00
## organic sausage                0.00  0.00  0.00             0.00         0.00
## sound storage medium           0.00  0.00  0.00             0.00         0.00
##                           cookware cooking chocolate tidbits cocoa drinks
## rice                          0.67              1.95    1.35         2.34
## veggies                       1.02              1.59    0.91         1.18
## loaf                          1.28              1.43    2.86         1.24
## coke                          1.35              0.75    2.52         0.52
## yogurt                        0.98              1.10    1.65         1.43
## vegetables                    1.48              0.99    0.00         1.72
## mineral water                 0.00              2.38    1.19         1.24
## Plastic bags                  1.07              0.79    0.40         0.83
## tropical fruit                1.50              1.67    1.25         0.87
## marinated meat                1.26              0.93    2.33         0.49
## pies/pasties                  1.69              1.41    1.88         1.47
## newspapers                    0.85              0.95    0.95         0.49
## citrus                        2.85              2.12    2.12         2.20
## whipped/sour cream            1.92              2.67    0.53         2.78
## heinken                       0.00              2.18    1.63         1.70
## green tea                     1.52              1.13    0.56         0.59
## pip fruit                     3.64              1.74    2.32         2.41
## brown bread                   1.08              0.00    0.60         1.25
## fruit/vegetable juice         1.09              3.03    1.21         1.89
## domestic eggs                 2.19              4.28    1.84         2.55
## coffee                        1.68              1.25    1.25         3.25
## margarine                     0.59              3.30    0.66         4.12
## beef                          4.20              1.34    0.67         0.00
## curd                          1.21              4.05    2.03         4.21
## butter                        1.25              2.09    1.40         1.45
## marinated meats               0.67              1.49    1.49         1.55
## napkins                       1.35              1.50    2.25         1.56
## halal meat                    1.36              0.00    2.28         2.37
## chocolate                     1.42              3.17    2.38         4.95
## frozen vegetables             1.44              3.21    0.80         0.84
## chicken                       0.77              0.00    0.86         1.80
## white bread                   1.66              2.77    0.92         4.80
## cream cheese                  1.71              1.91    2.87         3.98
## waffles                       2.74              1.02    6.12         4.24
## dessert                       0.93              1.03    3.10         1.08
## salty snack                   2.78              1.03    3.10         5.38
## long life bakery product      2.85              2.12    2.12         2.20
## berries                       0.95              2.12    0.00         0.00
## hamburger meat                1.95              1.09    1.09         1.13
## sugar                         0.99              2.21    2.21         4.60
## hygiene articles              0.00              4.47    0.00         1.16
## UHT-milk                      1.05              0.00    0.00         3.64
## onions                        1.06              1.18    0.00         2.46
## candy                         2.36              0.00    1.32         4.10
## specialty chocolate           2.37              1.32    0.00         2.74
## butter milk                   3.59              1.34    5.34         2.78
## oil                           3.61              4.03    0.00         2.80
## frozen meals                  2.42              2.70    0.00         0.00
## misc. beverages               1.22              1.37    1.37         0.00
## specialty bar                 2.49              0.00    1.39         0.00
## ham                           2.52              0.00    0.00         0.00
## beverages                     5.07              0.00    1.41         0.00
## meat                          2.60              2.89    1.45         1.51
## ice cream                     0.00              0.00    2.96         1.54
## sliced cheese                 0.00              1.52    1.52         0.00
## hard cheese                   2.82              3.15    0.00         1.64
## noodles                       1.49              0.00    0.00         0.00
## grapes                        0.00              0.00    0.00         1.73
## cat food                      0.00              1.74    0.00         0.00
## chewing gum                   0.00              0.00    0.00         0.00
## soda                          0.00              0.00    0.00         0.00
## detergent                     0.00              0.00    1.93         0.00
## red/blush wine                1.78              0.00    1.99         2.07
## white wine                    0.00              0.00    2.02         0.00
## turkey                        0.00              2.16    4.31         4.49
## dishes                        1.95              0.00    0.00         0.00
## bottled water                 0.00              0.00    0.00         0.00
## flour                         0.00              6.57    0.00         4.55
## semi-finished bread           1.97              0.00    0.00         0.00
## baking powder                 0.00             15.56    2.22         6.94
## pickled vegetables            4.03              0.00    6.74         0.00
## herbs                         0.00              0.00    0.00         0.00
## tropical herbs                0.00              0.00    2.28         2.37
## soft cheese                   0.00              2.34    2.34         4.88
## tea                           0.00              2.34    0.00         4.88
## processed cheese              4.30              0.00    0.00         0.00
## sausage                       2.22              0.00    0.00         0.00
## pasta                         2.25              0.00    0.00         2.61
## citrus herbs                  2.26              0.00    0.00         2.62
## potted plants                 0.00              0.00    0.00         0.00
## canned fish                   0.00              0.00    0.00         2.79
## seasonal products             2.54              0.00    0.00         2.95
## cake bar                      0.00              0.00    5.87         0.00
## carrots                       0.00              0.00    0.00         3.18
## mustard                       5.82              6.49    3.24        10.12
## packaged fruit/vegetables     0.00              3.37    0.00         3.50
## spread cheese                 0.00              0.00    3.37         0.00
## frozen dessert                0.00              3.40    0.00         0.00
## frozen fish                   0.00              0.00    6.79         0.00
## cling film/bags               0.00              3.42    0.00         7.12
## salt                          6.14              3.42    0.00         3.56
## liquor                        0.00              0.00    0.00         0.00
## canned vegetables             3.31              3.69    0.00         0.00
## bottled beer                  0.00              0.00    3.72         3.87
## flower (seeds)                3.33              0.00    0.00         3.87
## cooking oil                   0.00              0.00    0.00         0.00
## dish cleaner                 10.09              0.00    0.00         3.90
## condensed milk                3.42              0.00    3.82         3.97
## roll products                 0.00              3.96    0.00         4.12
## photo/film                    0.00              0.00    0.00         0.00
## pet care                      0.00              0.00    0.00         0.00
## chocolate marshmallow         3.79              0.00    4.23         0.00
## herbs/vegetable juice         0.00              0.00    0.00         4.44
## whole milk                    0.00              0.00    8.63         0.00
## candles                       0.00              4.36    0.00         0.00
## mayonnaise                    0.00              0.00    4.45        13.87
## Instant food products         0.00              0.00    0.00         0.00
## sweet spreads                 4.11              0.00    0.00         0.00
## liquor (appetizer)            0.00              4.64    0.00         0.00
## specialty cheese              0.00              0.00    0.00         0.00
## frozen potato products        0.00              0.00    4.69         0.00
## house keeping products        4.20              0.00    0.00         0.00
## dog food                      4.25              4.74    0.00         0.00
## soy                           0.00              0.00    0.00         4.98
## instant coffee                0.00              0.00    5.20         0.00
## pip herbs                     0.00              0.00    0.00         0.00
## zwieback                      0.00              0.00    0.00         0.00
## finished products             0.00              0.00    0.00         0.00
## popcorn                       0.00              0.00    0.00        11.65
## vinegar                       0.00              5.60    0.00         5.83
## soups                         5.23              0.00    0.00         0.00
## female sanitary products      0.00              6.34    0.00         0.00
## sparkling wine                0.00              0.00    0.00         0.00
## dental care                   0.00              0.00    6.74         0.00
## cereals                       0.00              0.00    0.00         0.00
## kitchen towels                0.00              0.00    6.85         7.12
## curd cheese                   0.00              6.96    0.00         0.00
## other vegetables              0.00              0.00    0.00         0.00
## rolls/buns                    0.00              0.00   13.91         0.00
## softener                      0.00              0.00    0.00         0.00
## cleaner                       0.00              0.00   14.87         0.00
## spices                        0.00              0.00    0.00         7.73
## jam                           0.00              0.00    0.00         7.87
## sauces                        0.00              0.00    7.57         0.00
## rum                           0.00              7.84    0.00         0.00
## liver loaf                    0.00              0.00    0.00         0.00
## male cosmetics                7.89              8.80    0.00         0.00
## meat spreads                  8.06              0.00    8.99         0.00
## packaged herbs/vegetables     0.00              0.00    0.00         0.00
## brandy                        8.23              9.18    0.00         0.00
## ketchup                       0.00              9.38    0.00         9.75
## abrasive cleaner              0.00              0.00    0.00         9.97
## light bulbs                   0.00              0.00    0.00         0.00
## artif. sweetener              0.00              0.00    0.00        10.94
## nuts/prunes                   0.00              0.00    0.00         0.00
## specialty fat                 0.00              0.00    0.00         0.00
## skin care                     0.00              0.00    0.00        11.81
## fish                          0.00              0.00    0.00         0.00
## potato products              11.05              0.00    0.00         0.00
## root vegetables               0.00              0.00    0.00         0.00
## snack products                0.00              0.00    0.00         0.00
## nut snack                    11.72             13.07    0.00         0.00
## soap                          0.00              0.00    0.00         0.00
## syrup                        11.72              0.00    0.00         0.00
## bathroom cleaner              0.00              0.00    0.00         0.00
## canned fruit                  0.00              0.00    0.00         0.00
## cookware                        NA              0.00    0.00         0.00
## cooking chocolate             0.00                NA    0.00        17.25
## tidbits                       0.00              0.00      NA         0.00
## cocoa drinks                  0.00             17.25    0.00           NA
## pudding powder                0.00              0.00   17.97        18.69
## ready soups                   0.00              0.00    0.00         0.00
## organic marinated meat        0.00             19.61    0.00         0.00
## flower soil/fertilizer        0.00              0.00    0.00         0.00
## organic products              0.00              0.00    0.00         0.00
## pot plants                    0.00              0.00    0.00         0.00
## prosecco                      0.00              0.00    0.00         0.00
## frankfurter                   0.00              0.00    0.00         0.00
## decalcifier                   0.00              0.00    0.00         0.00
## honey                         0.00              0.00    0.00         0.00
## specialty vegetables          0.00              0.00    0.00         0.00
## cream                         0.00              0.00    0.00         0.00
## hair spray                    0.00              0.00    0.00         0.00
## frozen fruits                 0.00              0.00    0.00        37.38
## rubbing alcohol               0.00              0.00    0.00         0.00
## liqueur                       0.00              0.00    0.00         0.00
## make up remover               0.00              0.00    0.00         0.00
## salad dressing                0.00              0.00    0.00         0.00
## frozen chicken                0.00              0.00    0.00         0.00
## whisky                        0.00              0.00    0.00         0.00
## baby cosmetics               55.25              0.00    0.00         0.00
## toilet cleaner                0.00              0.00    0.00         0.00
## bags                          0.00              0.00  172.54         0.00
## canned herbs                  0.00              0.00    0.00         0.00
## kitchen utensil               0.00              0.00    0.00         0.00
## preservation products         0.00              0.00    0.00       224.30
## baby food                     0.00              0.00    0.00         0.00
## frozen herbss                 0.00              0.00    0.00         0.00
## organic sausage               0.00              0.00    0.00         0.00
## sound storage medium          0.00              0.00    0.00         0.00
##                           pudding powder ready soups organic marinated meat
## rice                                2.11        1.46                   1.60
## veggies                             1.96        1.47                   1.34
## loaf                                0.52        2.32                   1.41
## coke                                0.82        1.63                   1.19
## yogurt                              2.08        1.49                   1.95
## vegetables                          2.51        2.15                   1.17
## mineral water                       1.72        2.58                   0.94
## Plastic bags                        0.43        3.01                   0.94
## tropical fruit                      1.81        1.36                   1.48
## marinated meat                      1.52        1.52                   2.76
## pies/pasties                        0.51        3.05                   2.78
## newspapers                          1.03        3.09                   0.56
## citrus                              1.15        1.72                   2.51
## whipped/sour cream                  5.21        0.58                   2.53
## heinken                             0.59        0.00                   1.93
## green tea                           1.22        1.22                   0.00
## pip fruit                           1.26        2.51                   2.74
## brown bread                         1.30        1.30                   1.42
## fruit/vegetable juice               1.31        0.66                   2.87
## domestic eggs                       1.33        0.66                   1.45
## coffee                              1.35        0.00                   0.00
## margarine                           2.15        5.01                   1.56
## beef                                2.90        1.45                   0.00
## curd                                5.12        0.73                   2.39
## butter                              3.02        2.27                   4.12
## marinated meats                     0.00        3.22                   2.64
## napkins                             0.00        0.00                   1.77
## halal meat                          3.30        3.30                   0.90
## chocolate                           0.86        1.72                   1.87
## frozen vegetables                   0.00        0.87                   1.90
## chicken                             1.87        1.87                   2.04
## white bread                         1.00        1.00                   3.27
## cream cheese                        1.04        3.11                   2.26
## waffles                             2.21        2.21                   3.62
## dessert                             2.24        2.24                   1.22
## salty snack                         2.24        1.12                   2.44
## long life bakery product            3.44        2.30                   1.25
## berries                             0.00        3.45                   2.51
## hamburger meat                      3.53        0.00                   0.00
## sugar                               4.79        1.20                   0.00
## hygiene articles                    2.42        3.63                   2.64
## UHT-milk                            2.53        1.26                   1.38
## onions                              5.12        1.28                   1.40
## candy                               1.42        0.00                   1.55
## specialty chocolate                 1.43        0.00                   0.00
## butter milk                         0.00        1.45                   1.58
## oil                                 5.82        0.00                   1.59
## frozen meals                        2.92        7.30                   0.00
## misc. beverages                     0.00        1.48                   0.00
## specialty bar                       3.01        1.50                   0.00
## ham                                 3.04        1.52                   1.66
## beverages                           1.53        0.00                   0.00
## meat                                1.57        1.57                   3.42
## ice cream                           4.82        1.61                   0.00
## sliced cheese                       3.29        1.65                   3.59
## hard cheese                         0.00        1.71                   1.86
## noodles                             0.00        3.59                   0.00
## grapes                              5.41        5.41                   1.97
## cat food                            0.00        1.88                   2.06
## chewing gum                         0.00        0.00                   4.34
## soda                                0.00        2.03                   0.00
## detergent                           2.10        0.00                   2.29
## red/blush wine                      0.00        2.15                   2.35
## white wine                          0.00        0.00                   0.00
## turkey                              2.34       11.68                   2.55
## dishes                              0.00        0.00                   2.57
## bottled water                       0.00        2.37                   0.00
## flour                              11.86        0.00                   0.00
## semi-finished bread                 2.38       14.30                   0.00
## baking powder                       7.23        2.41                   0.00
## pickled vegetables                  4.87        0.00                   2.66
## herbs                               0.00        0.00                   0.00
## tropical herbs                      2.47        2.47                   0.00
## soft cheese                         2.54        0.00                   5.54
## tea                                 0.00        5.08                   0.00
## processed cheese                    2.60        2.60                   2.83
## sausage                             0.00        2.69                   0.00
## pasta                               5.43        0.00                   0.00
## citrus herbs                        2.73        8.20                   0.00
## potted plants                       0.00        2.73                   0.00
## canned fish                         2.90        5.80                   0.00
## seasonal products                   0.00        3.07                   3.35
## cake bar                            0.00        0.00                   0.00
## carrots                             0.00        6.63                   0.00
## mustard                             0.00        7.03                   3.83
## packaged fruit/vegetables           0.00        0.00                   3.98
## spread cheese                       3.65        0.00                   0.00
## frozen dessert                      0.00        0.00                   0.00
## frozen fish                         0.00        7.36                   0.00
## cling film/bags                     3.71        0.00                   0.00
## salt                                0.00        0.00                   4.05
## liquor                              0.00        0.00                   0.00
## canned vegetables                   0.00        0.00                   4.36
## bottled beer                        0.00        0.00                   0.00
## flower (seeds)                      8.06        0.00                   0.00
## cooking oil                         0.00        0.00                   0.00
## dish cleaner                        4.06        0.00                   0.00
## condensed milk                      4.14        0.00                   0.00
## roll products                       0.00        0.00                   0.00
## photo/film                          0.00        0.00                   0.00
## pet care                            0.00        0.00                   0.00
## chocolate marshmallow               0.00        0.00                   0.00
## herbs/vegetable juice               0.00        0.00                   0.00
## whole milk                          4.67        4.67                   0.00
## candles                             4.72        0.00                  10.30
## mayonnaise                          0.00        4.82                   0.00
## Instant food products               4.97        0.00                   0.00
## sweet spreads                       4.97        0.00                   0.00
## liquor (appetizer)                  0.00        0.00                   5.48
## specialty cheese                    0.00        0.00                   0.00
## frozen potato products              5.08        5.08                   0.00
## house keeping products             10.16        0.00                   5.54
## dog food                            0.00        0.00                   0.00
## soy                                 0.00       10.38                   0.00
## instant coffee                      0.00       11.26                   0.00
## pip herbs                           0.00        0.00                   0.00
## zwieback                            0.00        0.00                   0.00
## finished products                   0.00        0.00                  13.24
## popcorn                             0.00        6.07                   0.00
## vinegar                             6.07        0.00                   0.00
## soups                               6.31        0.00                   6.89
## female sanitary products            0.00        0.00                   7.50
## sparkling wine                      0.00        0.00                   0.00
## dental care                         0.00        0.00                   0.00
## cereals                             0.00        0.00                   0.00
## kitchen towels                      0.00        0.00                   0.00
## curd cheese                         0.00        0.00                   8.22
## other vegetables                    7.54        0.00                   0.00
## rolls/buns                          0.00        7.54                   0.00
## softener                            0.00        0.00                   0.00
## cleaner                             0.00        0.00                   0.00
## spices                              0.00        8.06                   0.00
## jam                                 0.00        0.00                   8.94
## sauces                              0.00        0.00                   8.94
## rum                                 0.00        0.00                   0.00
## liver loaf                          0.00        0.00                   9.80
## male cosmetics                      9.54        0.00                   0.00
## meat spreads                        0.00        0.00                   0.00
## packaged herbs/vegetables           0.00        0.00                   0.00
## brandy                              0.00        0.00                   0.00
## ketchup                             0.00       10.16                   0.00
## abrasive cleaner                    0.00        0.00                  11.33
## light bulbs                         0.00        0.00                   0.00
## artif. sweetener                    0.00       22.79                   0.00
## nuts/prunes                         0.00        0.00                   0.00
## specialty fat                      11.68        0.00                   0.00
## skin care                          12.30       12.30                   0.00
## fish                                0.00        0.00                   0.00
## potato products                     0.00        0.00                   0.00
## root vegetables                    13.35        0.00                   0.00
## snack products                      0.00        0.00                   0.00
## nut snack                           0.00        0.00                   0.00
## soap                                0.00        0.00                   0.00
## syrup                               0.00        0.00                   0.00
## bathroom cleaner                    0.00        0.00                   0.00
## canned fruit                        0.00        0.00                   0.00
## cookware                            0.00        0.00                   0.00
## cooking chocolate                   0.00        0.00                  19.61
## tidbits                            17.97        0.00                   0.00
## cocoa drinks                       18.69        0.00                   0.00
## pudding powder                        NA        0.00                   0.00
## ready soups                         0.00          NA                  21.24
## organic marinated meat              0.00       21.24                     NA
## flower soil/fertilizer              0.00        0.00                   0.00
## organic products                    0.00        0.00                   0.00
## pot plants                          0.00       22.25                   0.00
## prosecco                            0.00        0.00                   0.00
## frankfurter                         0.00        0.00                   0.00
## decalcifier                         0.00        0.00                   0.00
## honey                              25.96        0.00                   0.00
## specialty vegetables                0.00        0.00                   0.00
## cream                               0.00        0.00                   0.00
## hair spray                          0.00       33.38                   0.00
## frozen fruits                       0.00        0.00                   0.00
## rubbing alcohol                     0.00        0.00                   0.00
## liqueur                             0.00        0.00                   0.00
## make up remover                     0.00        0.00                   0.00
## salad dressing                      0.00        0.00                   0.00
## frozen chicken                      0.00        0.00                   0.00
## whisky                              0.00        0.00                   0.00
## baby cosmetics                      0.00        0.00                   0.00
## toilet cleaner                      0.00        0.00                   0.00
## bags                                0.00        0.00                   0.00
## canned herbs                        0.00        0.00                   0.00
## kitchen utensil                     0.00        0.00                   0.00
## preservation products               0.00        0.00                   0.00
## baby food                           0.00        0.00                   0.00
## frozen herbss                       0.00        0.00                   0.00
## organic sausage                     0.00        0.00                   0.00
## sound storage medium                0.00        0.00                   0.00
##                           flower soil/fertilizer organic products pot plants
## rice                                        0.56             1.30       1.49
## veggies                                     0.56             1.68       0.00
## loaf                                        0.59             1.18       0.00
## coke                                        0.62             1.56       0.00
## yogurt                                      0.34             1.70       1.02
## vegetables                                  0.00             2.46       1.64
## mineral water                               1.47             0.98       0.00
## Plastic bags                                0.00             2.46       1.48
## tropical fruit                              0.52             3.10       0.00
## marinated meat                              0.58             2.31       0.00
## pies/pasties                                0.00             2.33       0.00
## newspapers                                  1.18             1.18       0.59
## citrus                                      0.66             0.66       0.00
## whipped/sour cream                          0.66             1.99       1.99
## heinken                                     0.00             0.67       0.00
## green tea                                   0.00             0.00       0.00
## pip fruit                                   1.44             2.87       0.00
## brown bread                                 0.00             2.23       0.74
## fruit/vegetable juice                       0.00             2.25       0.00
## domestic eggs                               1.52             3.03       0.76
## coffee                                      0.00             1.55       2.32
## margarine                                   0.82             6.54       0.82
## beef                                        1.66             3.32       3.32
## curd                                        0.00             2.51       1.67
## butter                                      0.00             0.86       0.00
## marinated meats                             0.00             2.76       0.00
## napkins                                     0.93             3.72       0.00
## halal meat                                  0.00             0.94       0.00
## chocolate                                   0.00             0.98       0.00
## frozen vegetables                           0.00             0.00       0.00
## chicken                                     0.00             0.00       1.07
## white bread                                 2.29             0.00       1.14
## cream cheese                                0.00             1.18       1.18
## waffles                                     1.26             1.26       0.00
## dessert                                     3.84             0.00       0.00
## salty snack                                 0.00             0.00       0.00
## long life bakery product                    1.31             0.00       0.00
## berries                                     0.00             3.95       1.32
## hamburger meat                              0.00             2.69       0.00
## sugar                                       0.00             1.37       1.37
## hygiene articles                            4.15             1.38       0.00
## UHT-milk                                    0.00             4.33       1.44
## onions                                      0.00             1.46       0.00
## candy                                       0.00             1.63       0.00
## specialty chocolate                         1.63             3.27       1.63
## butter milk                                 0.00             4.96       0.00
## oil                                         0.00             1.66       1.66
## frozen meals                                0.00             1.67       3.34
## misc. beverages                             1.69             5.07       0.00
## specialty bar                               0.00             0.00       1.72
## ham                                         0.00             0.00       1.74
## beverages                                   0.00             1.75       1.75
## meat                                        0.00             0.00       5.38
## ice cream                                   0.00             0.00       1.84
## sliced cheese                               0.00             1.88       0.00
## hard cheese                                 1.95             5.85       0.00
## noodles                                     0.00             4.11      10.27
## grapes                                      0.00             4.12       6.19
## cat food                                    2.15             6.46       0.00
## chewing gum                                 0.00             2.27       2.27
## soda                                        0.00             2.32       2.32
## detergent                                   4.79             0.00       2.39
## red/blush wine                              0.00             0.00       0.00
## white wine                                  2.50             0.00       0.00
## turkey                                      0.00             8.01      10.68
## dishes                                      2.70             0.00       0.00
## bottled water                               0.00             2.71       2.71
## flour                                       5.42            13.55       2.71
## semi-finished bread                         2.72             8.17       5.45
## baking powder                               2.75             2.75       2.75
## pickled vegetables                          0.00             2.78       0.00
## herbs                                       5.65             0.00       8.48
## tropical herbs                              0.00             5.65      11.30
## soft cheese                                 0.00             0.00       2.90
## tea                                         0.00             2.90       2.90
## processed cheese                            2.97             0.00       0.00
## sausage                                     0.00             3.07       9.21
## pasta                                       0.00             3.10       0.00
## citrus herbs                                0.00             0.00      18.74
## potted plants                               0.00             3.12       0.00
## canned fish                                 0.00             0.00       0.00
## seasonal products                           3.51             3.51       7.03
## cake bar                                    0.00             0.00       3.63
## carrots                                     0.00             3.79      11.36
## mustard                                     0.00             4.02       0.00
## packaged fruit/vegetables                   0.00             0.00       0.00
## spread cheese                               0.00             0.00       0.00
## frozen dessert                              0.00             0.00       4.21
## frozen fish                                 0.00             4.21       0.00
## cling film/bags                             8.48             0.00       4.24
## salt                                        0.00             4.24       0.00
## liquor                                      0.00             0.00       0.00
## canned vegetables                           4.56             4.56       0.00
## bottled beer                                0.00             4.60      13.81
## flower (seeds)                              9.21             4.60       0.00
## cooking oil                                 0.00             0.00       4.64
## dish cleaner                                9.29             0.00       0.00
## condensed milk                              0.00             0.00       0.00
## roll products                               0.00             4.90       0.00
## photo/film                                  9.89             0.00       0.00
## pet care                                    0.00             0.00       0.00
## chocolate marshmallow                       0.00            15.71       0.00
## herbs/vegetable juice                       0.00             5.29       5.29
## whole milk                                  0.00             0.00       0.00
## candles                                     0.00             0.00       5.39
## mayonnaise                                  0.00             0.00       0.00
## Instant food products                       0.00             0.00       0.00
## sweet spreads                               0.00             0.00       0.00
## liquor (appetizer)                          0.00             5.74       5.74
## specialty cheese                            0.00             5.74       0.00
## frozen potato products                      0.00             0.00       0.00
## house keeping products                      5.80             0.00       5.80
## dog food                                    5.87             0.00       0.00
## soy                                         0.00             0.00      11.87
## instant coffee                              6.43             0.00       0.00
## pip herbs                                   0.00             0.00      19.30
## zwieback                                    0.00            13.35       0.00
## finished products                           0.00             6.94       0.00
## popcorn                                     0.00             6.94       0.00
## vinegar                                     6.94             0.00       0.00
## soups                                       0.00             0.00       0.00
## female sanitary products                    0.00             7.85       0.00
## sparkling wine                              0.00             0.00       7.97
## dental care                                 0.00             8.34       0.00
## cereals                                     0.00             0.00       0.00
## kitchen towels                              0.00             8.48       0.00
## curd cheese                                 8.61             0.00       0.00
## other vegetables                            0.00             0.00       0.00
## rolls/buns                                  0.00             0.00       0.00
## softener                                    8.90             8.90       0.00
## cleaner                                     0.00             9.21       9.21
## spices                                      0.00             0.00       0.00
## jam                                         0.00             0.00       9.37
## sauces                                      0.00             9.37       0.00
## rum                                         0.00             0.00       0.00
## liver loaf                                  0.00             0.00       0.00
## male cosmetics                              0.00             0.00       0.00
## meat spreads                                0.00             0.00       0.00
## packaged herbs/vegetables                  11.13             0.00      11.13
## brandy                                      0.00             0.00       0.00
## ketchup                                     0.00             0.00       0.00
## abrasive cleaner                            0.00             0.00       0.00
## light bulbs                                 0.00             0.00       0.00
## artif. sweetener                            0.00            26.05       0.00
## nuts/prunes                                 0.00             0.00      13.03
## specialty fat                               0.00             0.00       0.00
## skin care                                   0.00             0.00       0.00
## fish                                        0.00             0.00       0.00
## potato products                             0.00             0.00       0.00
## root vegetables                             0.00             0.00       0.00
## snack products                              0.00            15.71       0.00
## nut snack                                   0.00             0.00       0.00
## soap                                        0.00             0.00       0.00
## syrup                                       0.00             0.00       0.00
## bathroom cleaner                            0.00             0.00       0.00
## canned fruit                                0.00            16.69       0.00
## cookware                                    0.00             0.00       0.00
## cooking chocolate                           0.00             0.00       0.00
## tidbits                                     0.00             0.00       0.00
## cocoa drinks                                0.00             0.00       0.00
## pudding powder                              0.00             0.00       0.00
## ready soups                                 0.00             0.00      22.25
## organic marinated meat                      0.00             0.00       0.00
## flower soil/fertilizer                        NA             0.00       0.00
## organic products                            0.00               NA       0.00
## pot plants                                  0.00             0.00         NA
## prosecco                                    0.00             0.00       0.00
## frankfurter                                 0.00             0.00       0.00
## decalcifier                                 0.00             0.00       0.00
## honey                                       0.00             0.00       0.00
## specialty vegetables                        0.00             0.00       0.00
## cream                                       0.00             0.00       0.00
## hair spray                                  0.00             0.00       0.00
## frozen fruits                               0.00             0.00       0.00
## rubbing alcohol                             0.00             0.00       0.00
## liqueur                                     0.00             0.00       0.00
## make up remover                             0.00             0.00       0.00
## salad dressing                              0.00             0.00       0.00
## frozen chicken                              0.00             0.00       0.00
## whisky                                      0.00             0.00       0.00
## baby cosmetics                              0.00             0.00       0.00
## toilet cleaner                              0.00             0.00       0.00
## bags                                        0.00             0.00       0.00
## canned herbs                                0.00             0.00       0.00
## kitchen utensil                             0.00             0.00       0.00
## preservation products                       0.00             0.00       0.00
## baby food                                   0.00             0.00       0.00
## frozen herbss                               0.00             0.00       0.00
## organic sausage                             0.00             0.00       0.00
## sound storage medium                        0.00             0.00       0.00
##                           prosecco frankfurter decalcifier honey
## rice                          0.93        0.00        1.44  2.82
## veggies                       0.84        0.00        1.55  0.98
## loaf                          1.48        0.00        0.98  1.38
## coke                          1.56        0.00        0.69  0.36
## yogurt                        0.34        0.71        1.50  1.98
## vegetables                    0.82        0.00        1.36  2.39
## mineral water                 1.47        0.00        1.09  0.00
## Plastic bags                  1.48        1.55        2.17  0.00
## tropical fruit                1.55        0.00        2.29  3.02
## marinated meat                0.00        0.00        1.28  0.67
## pies/pasties                  0.58        1.22        0.64  0.68
## newspapers                    0.59        1.24        1.95  1.37
## citrus                        1.97        0.00        0.73  1.53
## whipped/sour cream            0.00        1.39        2.93  0.00
## heinken                       5.39        0.00        0.75  0.00
## green tea                     0.00        0.00        0.77  0.00
## pip fruit                     0.72        0.00        0.79  1.67
## brown bread                   0.00        0.78        0.82  0.00
## fruit/vegetable juice         1.50        0.00        3.32  0.88
## domestic eggs                 0.00        0.80        2.51  1.77
## coffee                        0.00        2.43        0.00  2.71
## margarine                     0.00        1.72        0.90  0.95
## beef                          0.00        1.74        0.92  0.00
## curd                          0.84        0.00        0.92  1.95
## butter                        0.00        0.91        1.91  2.02
## marinated meats               0.92        0.00        3.05  1.07
## napkins                       1.86        1.95        5.13  3.25
## halal meat                    0.00        0.00        2.08  1.10
## chocolate                     1.96        1.03        0.00  1.15
## frozen vegetables             0.99        1.04        3.30  4.64
## chicken                       0.00        0.00        0.00  0.00
## white bread                   1.14        2.40        3.79  2.67
## cream cheese                  0.00        1.24        2.62  0.00
## waffles                       2.53        0.00        2.79  2.95
## dessert                       1.28        0.00        1.42  1.49
## salty snack                   2.56        1.34        1.42  0.00
## long life bakery product      1.31        0.00        1.45  0.00
## berries                       0.00        0.00        1.45  4.60
## hamburger meat                0.00        1.41        1.49  4.71
## sugar                         0.00        2.88        4.54  0.00
## hygiene articles              2.77        1.45        4.59  1.61
## UHT-milk                      0.00        3.03        4.79  0.00
## onions                        0.00        1.54        0.00  0.00
## candy                         1.63        0.00        0.00  1.90
## specialty chocolate           3.27        1.71        3.61  1.91
## butter milk                   0.00        1.74        0.00  3.86
## oil                           0.00        1.75        0.00  0.00
## frozen meals                  0.00        5.26        0.00  0.00
## misc. beverages               1.69        0.00        0.00  0.00
## specialty bar                 3.43        0.00        0.00  0.00
## ham                           0.00        3.65        5.77  6.09
## beverages                     0.00        0.00        1.94  0.00
## meat                          0.00        1.88        0.00  2.09
## ice cream                     3.67        0.00        2.03  0.00
## sliced cheese                 0.00        0.00        0.00  0.00
## hard cheese                   0.00        2.05        0.00  2.27
## noodles                       0.00        0.00        2.27  0.00
## grapes                        0.00        2.17        2.28  2.41
## cat food                      0.00        4.52        2.38  0.00
## chewing gum                   0.00        0.00        5.02  2.65
## soda                          2.32        7.31        0.00  2.71
## detergent                     0.00        2.51        7.94 11.18
## red/blush wine                4.92        0.00        0.00  8.61
## white wine                    9.98        0.00        2.76  0.00
## turkey                        2.67        8.41        0.00  3.12
## dishes                        2.70        0.00        2.98  3.15
## bottled water                 0.00        8.54        3.00  0.00
## flour                         0.00        0.00        3.00  0.00
## semi-finished bread           2.72        5.72        0.00  3.18
## baking powder                 0.00        2.89        3.04  6.42
## pickled vegetables            2.78        0.00        0.00  0.00
## herbs                         2.83        5.93        3.12  0.00
## tropical herbs                0.00       17.80        3.12  3.30
## soft cheese                   2.90        3.05        0.00  0.00
## tea                           0.00        0.00        0.00  3.39
## processed cheese              0.00        3.12        9.84  0.00
## sausage                       0.00        6.45        0.00  0.00
## pasta                         0.00        0.00        0.00  7.24
## citrus herbs                  0.00        6.56        0.00  0.00
## potted plants                 9.37        0.00        0.00  0.00
## canned fish                   0.00        3.48        3.67  3.87
## seasonal products             3.51        0.00        0.00  0.00
## cake bar                      0.00        0.00        0.00  0.00
## carrots                       0.00        0.00        0.00  4.42
## mustard                       4.02        4.22        4.44  0.00
## packaged fruit/vegetables     0.00        0.00        0.00  0.00
## spread cheese                 0.00        0.00        4.61  0.00
## frozen dessert                0.00        4.42        9.30  4.91
## frozen fish                   0.00        0.00        4.65  4.91
## cling film/bags               0.00        0.00        0.00  4.94
## salt                          0.00        0.00        0.00  0.00
## liquor                        0.00        0.00        0.00  0.00
## canned vegetables             0.00        0.00        0.00  5.33
## bottled beer                  4.60        9.67        0.00  0.00
## flower (seeds)                0.00        0.00        0.00  5.37
## cooking oil                   0.00        0.00        5.13  0.00
## dish cleaner                  0.00        0.00        0.00  0.00
## condensed milk                0.00        9.92        0.00  0.00
## roll products                 0.00        0.00        0.00  0.00
## photo/film                    0.00        0.00        0.00  0.00
## pet care                      0.00        0.00        0.00  0.00
## chocolate marshmallow         0.00        0.00        0.00 18.33
## herbs/vegetable juice         0.00       22.21       11.69  0.00
## whole milk                    0.00       50.47        5.90  0.00
## candles                       0.00        0.00        5.96  0.00
## mayonnaise                    0.00        0.00        0.00  0.00
## Instant food products         0.00        0.00        0.00  6.63
## sweet spreads                 5.68        0.00        6.28  0.00
## liquor (appetizer)            0.00        0.00        0.00  0.00
## specialty cheese              0.00        0.00        0.00  0.00
## frozen potato products        5.80        0.00        0.00  6.77
## house keeping products        0.00        0.00        0.00  0.00
## dog food                      0.00        0.00        0.00  0.00
## soy                           0.00        0.00        0.00  0.00
## instant coffee                0.00        0.00        0.00  0.00
## pip herbs                     0.00       13.51        0.00  0.00
## zwieback                      0.00        7.01        0.00  0.00
## finished products             0.00        0.00        0.00  0.00
## popcorn                       0.00        0.00        0.00  0.00
## vinegar                       0.00       14.56        0.00  0.00
## soups                         0.00        7.58        0.00  0.00
## female sanitary products      7.85        0.00        0.00  0.00
## sparkling wine                0.00        0.00        0.00  0.00
## dental care                   8.34        0.00        0.00  0.00
## cereals                       0.00        0.00        0.00  0.00
## kitchen towels                0.00        0.00        9.37  0.00
## curd cheese                   0.00        9.04        9.52  0.00
## other vegetables              0.00       72.35        9.52  0.00
## rolls/buns                    0.00       81.40        0.00  0.00
## softener                      0.00        0.00        9.84  0.00
## cleaner                       9.21        0.00        0.00  0.00
## spices                        0.00        0.00        0.00  0.00
## jam                           0.00        0.00        0.00  0.00
## sauces                        0.00        0.00        0.00  0.00
## rum                           0.00        0.00        0.00  0.00
## liver loaf                    0.00        0.00        0.00  0.00
## male cosmetics                0.00        0.00        0.00  0.00
## meat spreads                  0.00       11.68       12.30  0.00
## packaged herbs/vegetables     0.00        0.00        0.00  0.00
## brandy                        0.00       11.93        0.00  0.00
## ketchup                       0.00        0.00       12.83  0.00
## abrasive cleaner              0.00        0.00        0.00  0.00
## light bulbs                   0.00        0.00       13.42  0.00
## artif. sweetener              0.00       13.68        0.00  0.00
## nuts/prunes                   0.00       13.68        0.00  0.00
## specialty fat                 0.00        0.00        0.00  0.00
## skin care                     0.00        0.00        0.00  0.00
## fish                          0.00        0.00        0.00  0.00
## potato products               0.00       32.04       33.73  0.00
## root vegetables               0.00        0.00        0.00  0.00
## snack products                0.00        0.00        0.00  0.00
## nut snack                     0.00        0.00        0.00  0.00
## soap                          0.00        0.00        0.00  0.00
## syrup                         0.00        0.00        0.00  0.00
## bathroom cleaner              0.00        0.00       18.45  0.00
## canned fruit                  0.00        0.00        0.00  0.00
## cookware                      0.00        0.00        0.00  0.00
## cooking chocolate             0.00        0.00        0.00  0.00
## tidbits                       0.00        0.00        0.00  0.00
## cocoa drinks                  0.00        0.00        0.00  0.00
## pudding powder                0.00        0.00        0.00 25.96
## ready soups                   0.00        0.00        0.00  0.00
## organic marinated meat        0.00        0.00        0.00  0.00
## flower soil/fertilizer        0.00        0.00        0.00  0.00
## organic products              0.00        0.00        0.00  0.00
## pot plants                    0.00        0.00        0.00  0.00
## prosecco                        NA        0.00        0.00  0.00
## frankfurter                   0.00          NA       29.51  0.00
## decalcifier                   0.00       29.51          NA  0.00
## honey                         0.00        0.00        0.00    NA
## specialty vegetables          0.00        0.00        0.00  0.00
## cream                         0.00        0.00        0.00  0.00
## hair spray                    0.00        0.00        0.00  0.00
## frozen fruits                 0.00        0.00        0.00  0.00
## rubbing alcohol               0.00        0.00        0.00  0.00
## liqueur                       0.00        0.00        0.00  0.00
## make up remover               0.00        0.00        0.00  0.00
## salad dressing                0.00        0.00        0.00  0.00
## frozen chicken                0.00        0.00        0.00  0.00
## whisky                        0.00        0.00        0.00  0.00
## baby cosmetics                0.00        0.00        0.00  0.00
## toilet cleaner               76.29        0.00        0.00  0.00
## bags                          0.00        0.00        0.00  0.00
## canned herbs                  0.00        0.00        0.00  0.00
## kitchen utensil               0.00        0.00        0.00  0.00
## preservation products         0.00        0.00        0.00  0.00
## baby food                     0.00        0.00        0.00  0.00
## frozen herbss                 0.00        0.00        0.00  0.00
## organic sausage               0.00        0.00        0.00  0.00
## sound storage medium          0.00        0.00        0.00  0.00
##                           specialty vegetables  cream hair spray frozen fruits
## rice                                      0.69   1.04       1.39          0.97
## veggies                                   2.43   2.75       0.84          3.93
## loaf                                      0.73   0.41       0.89          1.03
## coke                                      2.69   1.31       0.47          1.63
## yogurt                                    2.10   1.43       1.53          1.19
## vegetables                                2.02   2.29       0.00          2.15
## mineral water                             2.43   0.00       0.74          0.00
## Plastic bags                              1.21   0.69       1.48          3.44
## tropical fruit                            3.84   1.45       1.55          0.00
## marinated meat                            1.43   5.66       0.00          0.00
## pies/pasties                              1.44   0.81       1.75          1.02
## newspapers                                0.73   0.00       0.88          0.00
## citrus                                    1.62   0.92       0.00          0.00
## whipped/sour cream                        4.09   1.85       0.99          6.95
## heinken                                   5.00   0.94       0.00          0.00
## green tea                                 0.00   1.96       0.00          1.22
## pip fruit                                 3.55   1.00       0.00          1.26
## brown bread                               1.84   1.04       2.23          0.00
## fruit/vegetable juice                     0.00   4.21       2.25          1.31
## domestic eggs                             4.68   3.18       0.00          5.30
## coffee                                    4.77   0.00       2.32          0.00
## margarine                                 0.00   1.14       2.45          2.86
## beef                                      3.07   3.48       1.24          2.90
## curd                                      1.03   2.34       0.00          1.46
## butter                                    1.07   3.63       1.30          3.02
## marinated meats                           2.27   0.00       0.00          0.00
## napkins                                   3.44   2.60       0.00          1.63
## halal meat                                2.33   1.32       0.00          1.65
## chocolate                                 1.21   1.37       1.47          0.00
## frozen vegetables                         3.69   2.78       0.00          3.48
## chicken                                   0.00   0.00       3.21          3.75
## white bread                               8.48   1.60       3.43          0.00
## cream cheese                              0.00   1.66       1.78          6.22
## waffles                                   1.56   0.00       1.89          2.21
## dessert                                   3.16   0.00       0.00          0.00
## salty snack                               0.00   3.59       0.00          4.48
## long life bakery product                  6.48   0.00       1.97          6.89
## berries                                   4.87   0.00       0.00          2.30
## hamburger meat                            3.32   3.77       2.02          0.00
## sugar                                     0.00   1.92       2.05          2.40
## hygiene articles                          1.71   1.94       0.00          0.00
## UHT-milk                                  0.00   2.02       0.00          0.00
## onions                                    5.42   4.10       2.19          2.56
## candy                                     2.01   0.00       4.88          2.85
## specialty chocolate                       4.03   6.86       2.45          5.72
## butter milk                               0.00   2.31       0.00          0.00
## oil                                       4.11   4.66       0.00          0.00
## frozen meals                              0.00   0.00       2.50          2.92
## misc. beverages                           2.09   2.37       0.00          0.00
## specialty bar                             0.00   4.81       0.00          3.01
## ham                                       4.30   0.00       5.22          0.00
## beverages                                 0.00   0.00       0.00          0.00
## meat                                      2.21   0.00       0.00          3.14
## ice cream                                 0.00   2.57       0.00          3.21
## sliced cheese                             6.97   7.90       5.64          0.00
## hard cheese                               0.00   8.19       0.00          3.41
## noodles                                   0.00   2.88       0.00          0.00
## grapes                                    5.09   5.77       3.09          0.00
## cat food                                  5.32   6.03       3.23          0.00
## chewing gum                               0.00   0.00       0.00          0.00
## soda                                      0.00   0.00       0.00          0.00
## detergent                                 0.00   0.00       0.00          4.19
## red/blush wine                            0.00   0.00       3.69          0.00
## white wine                                3.08   3.49       0.00          0.00
## turkey                                    0.00   3.74       0.00          0.00
## dishes                                    0.00   0.00       0.00          0.00
## bottled water                             0.00   0.00       0.00          0.00
## flour                                     0.00   0.00       4.07          0.00
## semi-finished bread                       0.00   0.00       0.00          0.00
## baking powder                             3.40   7.71       0.00          4.82
## pickled vegetables                       17.18   0.00       0.00          9.74
## herbs                                     0.00   0.00       0.00          4.94
## tropical herbs                            0.00   0.00       4.24          0.00
## soft cheese                              10.76   8.13       0.00          5.08
## tea                                       0.00   0.00       0.00          0.00
## processed cheese                         11.00   4.15       0.00         15.58
## sausage                                   0.00   0.00       4.60          0.00
## pasta                                    11.51   0.00       0.00          0.00
## citrus herbs                              0.00   0.00       0.00          0.00
## potted plants                             3.86   0.00       0.00          0.00
## canned fish                               4.10   4.64       0.00          5.80
## seasonal products                         0.00   0.00       5.27          0.00
## cake bar                                  4.49  10.17       0.00          0.00
## carrots                                   0.00   5.30       5.68          0.00
## mustard                                   9.92  11.24       0.00          0.00
## packaged fruit/vegetables                 0.00   0.00       0.00          0.00
## spread cheese                             0.00   5.84       6.26          0.00
## frozen dessert                            0.00   0.00       0.00          0.00
## frozen fish                               0.00   5.89       0.00          7.36
## cling film/bags                           5.24   0.00       0.00          0.00
## salt                                      5.24   0.00       0.00          0.00
## liquor                                    0.00   0.00       0.00          0.00
## canned vegetables                         0.00   0.00       0.00          0.00
## bottled beer                              0.00   0.00       0.00          0.00
## flower (seeds)                            0.00   6.45       0.00          0.00
## cooking oil                               0.00   0.00       0.00          0.00
## dish cleaner                              5.74   0.00       0.00          0.00
## condensed milk                            5.84   0.00       0.00          0.00
## roll products                             0.00  13.72       0.00          0.00
## photo/film                                0.00   0.00       0.00          0.00
## pet care                                  0.00   6.99       0.00          0.00
## chocolate marshmallow                     0.00   0.00       0.00         18.33
## herbs/vegetable juice                     0.00   0.00       0.00          0.00
## whole milk                                0.00   0.00       0.00          0.00
## candles                                   0.00   0.00       0.00          0.00
## mayonnaise                                6.80   0.00       0.00          0.00
## Instant food products                     0.00   0.00       0.00          0.00
## sweet spreads                             7.02   0.00       0.00          9.94
## liquor (appetizer)                        7.09   0.00       0.00          0.00
## specialty cheese                          0.00   0.00       0.00          0.00
## frozen potato products                    7.17  16.25       0.00          0.00
## house keeping products                    7.17   8.13       0.00          0.00
## dog food                                  0.00   0.00       0.00         20.54
## soy                                       0.00   8.31       0.00          0.00
## instant coffee                            7.95   0.00       0.00          0.00
## pip herbs                                 0.00   0.00       0.00          0.00
## zwieback                                  8.25   0.00       0.00          0.00
## finished products                         0.00   0.00      10.40          0.00
## popcorn                                   0.00   0.00       0.00          0.00
## vinegar                                   0.00   0.00       0.00          0.00
## soups                                    17.83   0.00       0.00          0.00
## female sanitary products                  9.70  11.00       0.00          0.00
## sparkling wine                            0.00   0.00       0.00         13.95
## dental care                              10.31  11.68       0.00         14.60
## cereals                                   0.00   0.00       0.00         29.67
## kitchen towels                            0.00   0.00       0.00         14.83
## curd cheese                               0.00   0.00       0.00          0.00
## other vegetables                          0.00   0.00       0.00          0.00
## rolls/buns                                0.00   0.00       0.00          0.00
## softener                                  0.00   0.00       0.00          0.00
## cleaner                                   0.00   0.00      13.81          0.00
## spices                                    0.00  12.89       0.00          0.00
## jam                                       0.00   0.00       0.00          0.00
## sauces                                    0.00   0.00       0.00          0.00
## rum                                      11.99   0.00       0.00          0.00
## liver loaf                                0.00   0.00       0.00          0.00
## male cosmetics                           13.46   0.00       0.00          0.00
## meat spreads                              0.00   0.00       0.00          0.00
## packaged herbs/vegetables                 0.00   0.00       0.00          0.00
## brandy                                    0.00   0.00       0.00          0.00
## ketchup                                   0.00   0.00       0.00          0.00
## abrasive cleaner                          0.00   0.00      17.80          0.00
## light bulbs                               0.00   0.00       0.00          0.00
## artif. sweetener                          0.00   0.00       0.00          0.00
## nuts/prunes                               0.00  36.47       0.00          0.00
## specialty fat                            32.99   0.00       0.00          0.00
## skin care                                 0.00   0.00       0.00          0.00
## fish                                      0.00   0.00       0.00          0.00
## potato products                           0.00   0.00       0.00          0.00
## root vegetables                           0.00   0.00       0.00          0.00
## snack products                           19.40   0.00       0.00          0.00
## nut snack                                 0.00  22.66       0.00          0.00
## soap                                      0.00   0.00      24.27          0.00
## syrup                                     0.00   0.00       0.00          0.00
## bathroom cleaner                          0.00   0.00       0.00          0.00
## canned fruit                              0.00   0.00       0.00          0.00
## cookware                                  0.00   0.00       0.00          0.00
## cooking chocolate                         0.00   0.00       0.00          0.00
## tidbits                                   0.00   0.00       0.00          0.00
## cocoa drinks                              0.00   0.00       0.00         37.38
## pudding powder                            0.00   0.00       0.00          0.00
## ready soups                               0.00   0.00      33.38          0.00
## organic marinated meat                    0.00   0.00       0.00          0.00
## flower soil/fertilizer                    0.00   0.00       0.00          0.00
## organic products                          0.00   0.00       0.00          0.00
## pot plants                                0.00   0.00       0.00          0.00
## prosecco                                  0.00   0.00       0.00          0.00
## frankfurter                               0.00   0.00       0.00          0.00
## decalcifier                               0.00   0.00       0.00          0.00
## honey                                     0.00   0.00       0.00          0.00
## specialty vegetables                        NA   0.00       0.00          0.00
## cream                                     0.00     NA       0.00          0.00
## hair spray                                0.00   0.00         NA          0.00
## frozen fruits                             0.00   0.00       0.00            NA
## rubbing alcohol                           0.00   0.00       0.00          0.00
## liqueur                                   0.00   0.00       0.00          0.00
## make up remover                           0.00   0.00       0.00          0.00
## salad dressing                            0.00   0.00       0.00          0.00
## frozen chicken                            0.00   0.00       0.00          0.00
## whisky                                    0.00   0.00       0.00          0.00
## baby cosmetics                            0.00 106.81       0.00          0.00
## toilet cleaner                            0.00   0.00       0.00          0.00
## bags                                      0.00   0.00       0.00          0.00
## canned herbs                              0.00   0.00       0.00          0.00
## kitchen utensil                           0.00   0.00       0.00          0.00
## preservation products                     0.00   0.00       0.00          0.00
## baby food                                 0.00   0.00       0.00          0.00
## frozen herbss                             0.00   0.00       0.00          0.00
## organic sausage                           0.00   0.00       0.00          0.00
## sound storage medium                      0.00   0.00       0.00          0.00
##                           rubbing alcohol liqueur make up remover
## rice                                 2.27    0.71            0.87
## veggies                              1.96    0.54            0.65
## loaf                                 0.52    1.69            1.38
## coke                                 0.54    0.59            2.91
## yogurt                               0.00    0.65            1.59
## vegetables                           3.58    0.78            0.00
## mineral water                        3.44    0.94            1.15
## Plastic bags                         0.00    0.94            1.15
## tropical fruit                       3.62    0.99            2.41
## marinated meat                       2.02    0.00            1.35
## pies/pasties                         2.04    0.00            2.71
## newspapers                           0.00    0.00            0.00
## citrus                               5.74    0.00            0.00
## whipped/sour cream                   0.00    1.26            0.00
## heinken                              0.00    0.00            0.00
## green tea                            1.22    2.67            0.00
## pip fruit                            3.77    1.37            1.67
## brown bread                          0.00    0.00            1.74
## fruit/vegetable juice                0.00    0.00            5.26
## domestic eggs                        1.33    1.45            0.00
## coffee                               0.00    0.00            1.80
## margarine                            0.00    0.00            0.00
## beef                                 1.45    0.00            0.00
## curd                                 1.46    0.00            0.00
## butter                               9.07    1.65            4.03
## marinated meats                      1.61    0.00            2.15
## napkins                              8.13    0.00            2.17
## halal meat                           0.00    0.00            2.20
## chocolate                            3.44    0.00            4.58
## frozen vegetables                    3.48    0.00            0.00
## chicken                              0.00    0.00            0.00
## white bread                          2.00    0.00            2.67
## cream cheese                         2.07    0.00            2.76
## waffles                              0.00    0.00            0.00
## dessert                              0.00    0.00            0.00
## salty snack                          2.24    0.00            5.98
## long life bakery product             6.89    0.00            0.00
## berries                              6.91    0.00            3.07
## hamburger meat                       4.71    0.00            0.00
## sugar                                0.00    0.00            3.20
## hygiene articles                    12.11    0.00            6.46
## UHT-milk                             0.00    0.00            0.00
## onions                               2.56    0.00            0.00
## candy                                2.85    0.00            3.80
## specialty chocolate                  2.86    3.12            0.00
## butter milk                          0.00    0.00            0.00
## oil                                  0.00    3.18            0.00
## frozen meals                         0.00    3.19            0.00
## misc. beverages                      0.00    9.68            0.00
## specialty bar                        0.00    0.00            0.00
## ham                                  0.00    0.00            0.00
## beverages                            0.00    6.69            4.09
## meat                                 6.27    0.00            0.00
## ice cream                            3.21    3.50            0.00
## sliced cheese                        0.00    0.00            0.00
## hard cheese                          0.00    0.00            0.00
## noodles                              0.00    3.92            0.00
## grapes                               3.61    3.94            0.00
## cat food                             0.00    0.00            0.00
## chewing gum                          0.00    0.00            0.00
## soda                                 0.00    4.43            5.42
## detergent                            0.00    0.00            5.59
## red/blush wine                       8.61    0.00            0.00
## white wine                           0.00    0.00            0.00
## turkey                               4.67    0.00            0.00
## dishes                               0.00    0.00            0.00
## bottled water                        4.74    0.00            6.33
## flour                                0.00    0.00            0.00
## semi-finished bread                  0.00    0.00            0.00
## baking powder                        0.00    5.26            0.00
## pickled vegetables                   4.87    0.00            0.00
## herbs                                9.89    0.00            0.00
## tropical herbs                       4.94    0.00            0.00
## soft cheese                          0.00    0.00            0.00
## tea                                  0.00    0.00            0.00
## processed cheese                    10.38    0.00            0.00
## sausage                              5.37    5.86            0.00
## pasta                                0.00    0.00            0.00
## citrus herbs                        10.93    0.00            0.00
## potted plants                        0.00    0.00            0.00
## canned fish                          5.80    0.00            7.74
## seasonal products                    0.00    0.00            0.00
## cake bar                             0.00   13.87            0.00
## carrots                              6.63    0.00            0.00
## mustard                              0.00    7.67            0.00
## packaged fruit/vegetables            0.00    0.00            0.00
## spread cheese                        7.30    0.00            0.00
## frozen dessert                       0.00    0.00            0.00
## frozen fish                          0.00    0.00            0.00
## cling film/bags                      7.42    0.00            0.00
## salt                                 0.00    0.00            9.89
## liquor                               0.00    0.00            0.00
## canned vegetables                    0.00    0.00            0.00
## bottled beer                         0.00    0.00            0.00
## flower (seeds)                       8.06    0.00            0.00
## cooking oil                          0.00    0.00            0.00
## dish cleaner                         0.00    0.00            0.00
## condensed milk                       0.00    0.00           11.03
## roll products                        0.00    0.00            0.00
## photo/film                           0.00    0.00            0.00
## pet care                             0.00    0.00           11.65
## chocolate marshmallow                0.00    0.00            0.00
## herbs/vegetable juice                0.00    0.00            0.00
## whole milk                           0.00    0.00            0.00
## candles                              0.00    0.00            0.00
## mayonnaise                           0.00    0.00            0.00
## Instant food products                0.00    0.00            0.00
## sweet spreads                        0.00    0.00            0.00
## liquor (appetizer)                   0.00    0.00            0.00
## specialty cheese                     0.00    0.00            0.00
## frozen potato products               0.00    0.00            0.00
## house keeping products              10.16    0.00            0.00
## dog food                             0.00    0.00            0.00
## soy                                  0.00    0.00            0.00
## instant coffee                       0.00    0.00            0.00
## pip herbs                            0.00    0.00            0.00
## zwieback                             0.00    0.00            0.00
## finished products                    0.00    0.00            0.00
## popcorn                              0.00    0.00           16.18
## vinegar                              0.00    0.00            0.00
## soups                                0.00    0.00            0.00
## female sanitary products            13.74    0.00            0.00
## sparkling wine                       0.00    0.00            0.00
## dental care                          0.00    0.00           19.47
## cereals                              0.00    0.00            0.00
## kitchen towels                       0.00    0.00            0.00
## curd cheese                          0.00    0.00            0.00
## other vegetables                     0.00    0.00            0.00
## rolls/buns                           0.00    0.00            0.00
## softener                             0.00    0.00            0.00
## cleaner                              0.00    0.00            0.00
## spices                               0.00    0.00            0.00
## jam                                  0.00    0.00            0.00
## sauces                              16.40    0.00            0.00
## rum                                  0.00    0.00            0.00
## liver loaf                           0.00    0.00            0.00
## male cosmetics                       0.00    0.00            0.00
## meat spreads                         0.00    0.00            0.00
## packaged herbs/vegetables            0.00    0.00            0.00
## brandy                               0.00    0.00            0.00
## ketchup                              0.00    0.00            0.00
## abrasive cleaner                     0.00    0.00            0.00
## light bulbs                          0.00    0.00            0.00
## artif. sweetener                     0.00    0.00            0.00
## nuts/prunes                          0.00    0.00            0.00
## specialty fat                        0.00    0.00            0.00
## skin care                            0.00    0.00            0.00
## fish                                 0.00    0.00            0.00
## potato products                      0.00    0.00            0.00
## root vegetables                      0.00    0.00            0.00
## snack products                       0.00    0.00            0.00
## nut snack                            0.00    0.00            0.00
## soap                                 0.00    0.00            0.00
## syrup                               28.32    0.00            0.00
## bathroom cleaner                     0.00    0.00            0.00
## canned fruit                         0.00    0.00            0.00
## cookware                             0.00    0.00            0.00
## cooking chocolate                    0.00    0.00            0.00
## tidbits                              0.00    0.00            0.00
## cocoa drinks                         0.00    0.00            0.00
## pudding powder                       0.00    0.00            0.00
## ready soups                          0.00    0.00            0.00
## organic marinated meat               0.00    0.00            0.00
## flower soil/fertilizer               0.00    0.00            0.00
## organic products                     0.00    0.00            0.00
## pot plants                           0.00    0.00            0.00
## prosecco                             0.00    0.00            0.00
## frankfurter                          0.00    0.00            0.00
## decalcifier                          0.00    0.00            0.00
## honey                                0.00    0.00            0.00
## specialty vegetables                 0.00    0.00            0.00
## cream                                0.00    0.00            0.00
## hair spray                           0.00    0.00            0.00
## frozen fruits                        0.00    0.00            0.00
## rubbing alcohol                        NA    0.00            0.00
## liqueur                              0.00      NA            0.00
## make up remover                      0.00    0.00              NA
## salad dressing                       0.00    0.00            0.00
## frozen chicken                       0.00    0.00            0.00
## whisky                               0.00    0.00            0.00
## baby cosmetics                       0.00    0.00            0.00
## toilet cleaner                       0.00    0.00            0.00
## bags                                 0.00    0.00            0.00
## canned herbs                         0.00    0.00            0.00
## kitchen utensil                      0.00    0.00            0.00
## preservation products                0.00    0.00            0.00
## baby food                            0.00    0.00            0.00
## frozen herbss                        0.00    0.00            0.00
## organic sausage                      0.00    0.00            0.00
## sound storage medium                 0.00    0.00            0.00
##                           salad dressing frozen chicken whisky baby cosmetics
## rice                                0.43           1.46   0.49           2.23
## veggies                             3.27           0.00   1.47           0.84
## loaf                                0.69           0.77   1.55           1.77
## coke                                1.45           0.82   0.00           1.87
## yogurt                              0.00           2.68   0.89           0.00
## vegetables                          0.95           1.07   1.07           1.23
## mineral water                       0.00           0.00   2.58           0.00
## Plastic bags                        0.00           1.29   2.58           1.48
## tropical fruit                      0.00           1.36   0.00           1.55
## marinated meat                      1.35           0.00   0.00           0.00
## pies/pasties                        2.71           0.00   0.00           0.00
## newspapers                          2.74           3.09   0.00           0.00
## citrus                              4.59           1.72   0.00           3.94
## whipped/sour cream                  3.09           0.00   0.00           3.97
## heinken                             1.57           1.77   1.77           0.00
## green tea                           1.63           0.00   1.83           4.19
## pip fruit                           5.02           0.00   1.88           2.15
## brown bread                         0.00           0.00   0.00           0.00
## fruit/vegetable juice               0.00           3.94   3.94           0.00
## domestic eggs                       1.77           0.00   0.00           0.00
## coffee                              1.80           2.03   2.03           4.64
## margarine                           0.00           2.15   2.15           0.00
## beef                                0.00           2.18   2.18           0.00
## curd                                3.90           0.00   2.19           5.01
## butter                              4.03           4.54   2.27           0.00
## marinated meats                     6.45           0.00   0.00           0.00
## napkins                             0.00           0.00   2.44           0.00
## halal meat                          6.59           2.47   2.47           0.00
## chocolate                           0.00           5.15   2.58           8.84
## frozen vegetables                   2.32           5.22   0.00           0.00
## chicken                             4.99           0.00   0.00           3.21
## white bread                         2.67           0.00   0.00           6.86
## cream cheese                        0.00           0.00   3.11           7.10
## waffles                             0.00           0.00   0.00           3.79
## dessert                             0.00           3.36   3.36           7.68
## salty snack                         2.99           3.36   0.00           0.00
## long life bakery product            0.00           0.00   0.00           7.87
## berries                             0.00           3.45   0.00           0.00
## hamburger meat                      3.14           3.53   0.00           4.04
## sugar                               0.00           0.00   0.00           4.11
## hygiene articles                    0.00           0.00   0.00           0.00
## UHT-milk                            3.37           0.00   0.00           0.00
## onions                             10.24           0.00   3.84           0.00
## candy                               7.60           0.00   0.00           0.00
## specialty chocolate                 3.81           0.00   4.29           0.00
## butter milk                         0.00           4.34   0.00          14.88
## oil                                 3.88           0.00   0.00           9.98
## frozen meals                        0.00           4.38   0.00           0.00
## misc. beverages                     0.00           0.00   0.00           0.00
## specialty bar                       0.00           0.00   0.00           5.15
## ham                                 0.00           0.00   0.00          10.44
## beverages                           0.00           0.00   0.00           0.00
## meat                                4.18           4.70   4.70           0.00
## ice cream                           0.00           0.00   0.00           0.00
## sliced cheese                       0.00           4.94   0.00          11.28
## hard cheese                         4.55           0.00   0.00           0.00
## noodles                             0.00           5.39   0.00           0.00
## grapes                              0.00           0.00   0.00           0.00
## cat food                            0.00           0.00   5.65           0.00
## chewing gum                         0.00           0.00   5.97           0.00
## soda                                0.00          12.19   0.00           0.00
## detergent                           0.00           0.00   0.00           0.00
## red/blush wine                      0.00           0.00   0.00           0.00
## white wine                          0.00           0.00   6.55           0.00
## turkey                             12.46           0.00   0.00           0.00
## dishes                              0.00           0.00   0.00           0.00
## bottled water                       0.00           0.00   0.00           0.00
## flour                              12.65           0.00  14.23           0.00
## semi-finished bread                 6.36           0.00   0.00           0.00
## baking powder                       0.00           0.00   0.00           8.26
## pickled vegetables                  0.00           0.00   0.00           0.00
## herbs                               0.00           0.00   0.00           0.00
## tropical herbs                      0.00           0.00   0.00           0.00
## soft cheese                         6.77           7.62   0.00           0.00
## tea                                 0.00           0.00   0.00           8.71
## processed cheese                    6.92           0.00   0.00           0.00
## sausage                             0.00           8.06   0.00           0.00
## pasta                               0.00           0.00   0.00           0.00
## citrus herbs                        0.00           0.00   0.00           0.00
## potted plants                       0.00           0.00   0.00           0.00
## canned fish                         0.00           0.00   0.00           0.00
## seasonal products                   0.00           9.22   0.00           0.00
## cake bar                            0.00           0.00   0.00          10.90
## carrots                             0.00           0.00   0.00           0.00
## mustard                             0.00           0.00   0.00          12.05
## packaged fruit/vegetables           0.00           0.00   0.00           0.00
## spread cheese                       9.74           0.00   0.00           0.00
## frozen dessert                      9.81           0.00   0.00           0.00
## frozen fish                         9.81           0.00   0.00           0.00
## cling film/bags                     0.00           0.00   0.00           0.00
## salt                                9.89           0.00   0.00           0.00
## liquor                              0.00           0.00   0.00           0.00
## canned vegetables                   0.00           0.00   0.00           0.00
## bottled beer                        0.00          12.09   0.00           0.00
## flower (seeds)                      0.00           0.00   0.00           0.00
## cooking oil                         0.00           0.00   0.00           0.00
## dish cleaner                        0.00           0.00   0.00          27.86
## condensed milk                      0.00           0.00   0.00           0.00
## roll products                       0.00           0.00   0.00           0.00
## photo/film                          0.00           0.00   0.00           0.00
## pet care                            0.00           0.00   0.00           0.00
## chocolate marshmallow               0.00           0.00   0.00           0.00
## herbs/vegetable juice               0.00           0.00   0.00           0.00
## whole milk                          0.00           0.00   0.00           0.00
## candles                             0.00           0.00   0.00           0.00
## mayonnaise                          0.00           0.00   0.00           0.00
## Instant food products               0.00           0.00   0.00           0.00
## sweet spreads                       0.00           0.00   0.00          17.04
## liquor (appetizer)                 13.40           0.00   0.00           0.00
## specialty cheese                    0.00           0.00   0.00           0.00
## frozen potato products             27.09           0.00   0.00           0.00
## house keeping products              0.00           0.00   0.00           0.00
## dog food                            0.00           0.00   0.00           0.00
## soy                                13.85           0.00   0.00           0.00
## instant coffee                      0.00           0.00   0.00           0.00
## pip herbs                          15.01           0.00   0.00          19.30
## zwieback                            0.00           0.00   0.00           0.00
## finished products                   0.00           0.00   0.00           0.00
## popcorn                             0.00           0.00   0.00           0.00
## vinegar                             0.00           0.00   0.00           0.00
## soups                               0.00           0.00   0.00          21.65
## female sanitary products            0.00           0.00   0.00           0.00
## sparkling wine                      0.00           0.00   0.00           0.00
## dental care                         0.00          21.90   0.00           0.00
## cereals                             0.00           0.00   0.00           0.00
## kitchen towels                      0.00          22.25   0.00          25.43
## curd cheese                         0.00           0.00   0.00           0.00
## other vegetables                    0.00           0.00   0.00           0.00
## rolls/buns                          0.00           0.00   0.00           0.00
## softener                            0.00           0.00   0.00           0.00
## cleaner                            21.48           0.00   0.00           0.00
## spices                              0.00           0.00   0.00           0.00
## jam                                 0.00           0.00   0.00           0.00
## sauces                             21.86           0.00   0.00           0.00
## rum                                 0.00           0.00   0.00           0.00
## liver loaf                         23.96           0.00   0.00           0.00
## male cosmetics                      0.00           0.00   0.00           0.00
## meat spreads                        0.00           0.00   0.00           0.00
## packaged herbs/vegetables          25.96           0.00   0.00           0.00
## brandy                              0.00           0.00  59.65           0.00
## ketchup                             0.00           0.00   0.00           0.00
## abrasive cleaner                   27.69           0.00   0.00           0.00
## light bulbs                         0.00           0.00   0.00           0.00
## artif. sweetener                   30.39           0.00   0.00           0.00
## nuts/prunes                         0.00           0.00   0.00           0.00
## specialty fat                       0.00           0.00   0.00           0.00
## skin care                           0.00           0.00   0.00           0.00
## fish                                0.00           0.00   0.00           0.00
## potato products                     0.00           0.00   0.00           0.00
## root vegetables                     0.00           0.00   0.00           0.00
## snack products                      0.00           0.00   0.00           0.00
## nut snack                           0.00           0.00   0.00           0.00
## soap                                0.00           0.00   0.00           0.00
## syrup                               0.00           0.00   0.00          48.55
## bathroom cleaner                    0.00           0.00   0.00           0.00
## canned fruit                        0.00           0.00   0.00           0.00
## cookware                            0.00           0.00   0.00          55.25
## cooking chocolate                   0.00           0.00   0.00           0.00
## tidbits                             0.00           0.00   0.00           0.00
## cocoa drinks                        0.00           0.00   0.00           0.00
## pudding powder                      0.00           0.00   0.00           0.00
## ready soups                         0.00           0.00   0.00           0.00
## organic marinated meat              0.00           0.00   0.00           0.00
## flower soil/fertilizer              0.00           0.00   0.00           0.00
## organic products                    0.00           0.00   0.00           0.00
## pot plants                          0.00           0.00   0.00           0.00
## prosecco                            0.00           0.00   0.00           0.00
## frankfurter                         0.00           0.00   0.00           0.00
## decalcifier                         0.00           0.00   0.00           0.00
## honey                               0.00           0.00   0.00           0.00
## specialty vegetables                0.00           0.00   0.00           0.00
## cream                               0.00           0.00   0.00         106.81
## hair spray                          0.00           0.00   0.00           0.00
## frozen fruits                       0.00           0.00   0.00           0.00
## rubbing alcohol                     0.00           0.00   0.00           0.00
## liqueur                             0.00           0.00   0.00           0.00
## make up remover                     0.00           0.00   0.00           0.00
## salad dressing                        NA           0.00   0.00           0.00
## frozen chicken                      0.00             NA   0.00           0.00
## whisky                              0.00           0.00     NA           0.00
## baby cosmetics                      0.00           0.00   0.00             NA
## toilet cleaner                      0.00           0.00   0.00           0.00
## bags                                0.00           0.00   0.00           0.00
## canned herbs                        0.00           0.00   0.00           0.00
## kitchen utensil                     0.00           0.00   0.00           0.00
## preservation products               0.00           0.00   0.00           0.00
## baby food                           0.00           0.00   0.00           0.00
## frozen herbss                       0.00           0.00   0.00           0.00
## organic sausage                     0.00           0.00   0.00           0.00
## sound storage medium                0.00           0.00   0.00           0.00
##                           toilet cleaner   bags canned herbs kitchen utensil
## rice                                1.11   0.78         1.95            2.92
## veggies                             1.68   0.00         0.00            1.47
## loaf                                0.00   1.24         0.00            1.55
## coke                                0.93   0.00         0.00            1.63
## yogurt                              1.02   2.86         1.78            3.57
## vegetables                          2.46   1.72         0.00            0.00
## mineral water                       0.00   0.00         0.00            0.00
## Plastic bags                        2.95   0.00         5.16            0.00
## tropical fruit                      1.55   0.00         0.00            5.43
## marinated meat                      0.00   0.00         0.00            0.00
## pies/pasties                        0.00   2.44         0.00            6.11
## newspapers                          5.29   0.00         0.00            0.00
## citrus                              0.00   0.00         0.00            3.44
## whipped/sour cream                  0.00   0.00         0.00            3.47
## heinken                             0.00   0.00         0.00            0.00
## green tea                           0.00   0.00         0.00            0.00
## pip fruit                           0.00   3.01         0.00            3.77
## brown bread                         0.00   0.00         3.90            0.00
## fruit/vegetable juice               0.00   3.15         0.00            0.00
## domestic eggs                       2.27   0.00         3.98            0.00
## coffee                              2.32   0.00         0.00            0.00
## margarine                           0.00   0.00         4.29            4.29
## beef                                4.98   0.00         0.00            0.00
## curd                                0.00   0.00         4.39            4.39
## butter                              2.59   0.00         0.00            0.00
## marinated meats                     0.00   0.00         0.00            4.83
## napkins                             2.79   3.90         0.00            0.00
## halal meat                          5.65   3.96         0.00            4.94
## chocolate                           0.00   0.00         0.00            5.15
## frozen vegetables                   2.98   4.18         0.00            5.22
## chicken                             0.00   0.00         0.00            5.62
## white bread                         0.00   0.00         0.00            0.00
## cream cheese                        0.00   0.00         6.22            0.00
## waffles                             3.79   0.00         0.00            0.00
## dessert                             7.68   0.00         0.00            0.00
## salty snack                         0.00   0.00         0.00            0.00
## long life bakery product            3.94   0.00         0.00            0.00
## berries                             0.00   0.00         0.00           13.81
## hamburger meat                      8.07   0.00         0.00            0.00
## sugar                               0.00   0.00         7.19            0.00
## hygiene articles                    0.00   0.00         7.26            0.00
## UHT-milk                            4.33   0.00         0.00            0.00
## onions                              0.00   0.00         0.00           15.36
## candy                               4.88   0.00         8.55            0.00
## specialty chocolate                 0.00   0.00         0.00            0.00
## butter milk                         0.00   0.00         0.00            0.00
## oil                                 0.00   0.00         8.73            0.00
## frozen meals                        0.00   0.00         0.00            0.00
## misc. beverages                     5.07   0.00        17.75            0.00
## specialty bar                       0.00   0.00         0.00            0.00
## ham                                 0.00   0.00         0.00            0.00
## beverages                           0.00   0.00         0.00            0.00
## meat                                0.00   0.00         0.00            9.41
## ice cream                           5.51   0.00         0.00            0.00
## sliced cheese                       5.64   0.00         0.00            0.00
## hard cheese                         5.85   0.00        10.23            0.00
## noodles                             0.00   0.00        10.78            0.00
## grapes                              6.19   0.00        10.83           10.83
## cat food                            0.00   0.00         0.00           11.31
## chewing gum                         0.00   0.00         0.00            0.00
## soda                                0.00   0.00        24.38            0.00
## detergent                           0.00   0.00         0.00           12.57
## red/blush wine                      0.00   0.00         0.00            0.00
## white wine                          7.49   0.00         0.00            0.00
## turkey                              0.00  11.21         0.00           14.02
## dishes                              0.00   0.00         0.00            0.00
## bottled water                       0.00   0.00        14.23            0.00
## flour                               0.00   0.00         0.00            0.00
## semi-finished bread                 0.00   0.00         0.00           14.30
## baking powder                       0.00   0.00         0.00            0.00
## pickled vegetables                  8.34  23.36         0.00            0.00
## herbs                               8.48   0.00         0.00            0.00
## tropical herbs                      0.00   0.00        29.67            0.00
## soft cheese                         0.00   0.00         0.00            0.00
## tea                                 0.00   0.00        15.24            0.00
## processed cheese                    0.00   0.00         0.00            0.00
## sausage                             0.00   0.00        32.23            0.00
## pasta                               0.00   0.00         0.00            0.00
## citrus herbs                        0.00   0.00        32.79            0.00
## potted plants                       0.00   0.00         0.00           16.40
## canned fish                         0.00   0.00         0.00            0.00
## seasonal products                   0.00   0.00         0.00            0.00
## cake bar                            0.00   0.00         0.00            0.00
## carrots                             0.00   0.00         0.00            0.00
## mustard                             0.00   0.00         0.00            0.00
## packaged fruit/vegetables           0.00   0.00         0.00            0.00
## spread cheese                      12.52   0.00         0.00            0.00
## frozen dessert                      0.00   0.00         0.00            0.00
## frozen fish                         0.00   0.00         0.00            0.00
## cling film/bags                     0.00   0.00         0.00            0.00
## salt                                0.00   0.00         0.00            0.00
## liquor                              0.00   0.00         0.00            0.00
## canned vegetables                   0.00   0.00         0.00            0.00
## bottled beer                        0.00   0.00         0.00            0.00
## flower (seeds)                      0.00   0.00         0.00            0.00
## cooking oil                         0.00   0.00         0.00            0.00
## dish cleaner                        0.00   0.00         0.00            0.00
## condensed milk                      0.00   0.00         0.00            0.00
## roll products                       0.00   0.00         0.00            0.00
## photo/film                          0.00   0.00         0.00            0.00
## pet care                            0.00   0.00         0.00            0.00
## chocolate marshmallow              15.71   0.00         0.00            0.00
## herbs/vegetable juice               0.00   0.00        55.52            0.00
## whole milk                          0.00  22.43         0.00            0.00
## candles                             0.00   0.00         0.00           28.32
## mayonnaise                         16.52   0.00         0.00            0.00
## Instant food products               0.00   0.00         0.00           29.83
## sweet spreads                       0.00   0.00         0.00            0.00
## liquor (appetizer)                  0.00   0.00         0.00            0.00
## specialty cheese                    0.00   0.00         0.00            0.00
## frozen potato products              0.00  24.38         0.00            0.00
## house keeping products              0.00   0.00         0.00            0.00
## dog food                            0.00   0.00         0.00            0.00
## soy                                 0.00   0.00         0.00            0.00
## instant coffee                      0.00   0.00         0.00            0.00
## pip herbs                           0.00   0.00        33.78            0.00
## zwieback                           20.03   0.00         0.00            0.00
## finished products                   0.00   0.00         0.00            0.00
## popcorn                             0.00   0.00         0.00            0.00
## vinegar                             0.00   0.00         0.00            0.00
## soups                               0.00   0.00         0.00            0.00
## female sanitary products            0.00   0.00        41.23            0.00
## sparkling wine                      0.00   0.00        41.85            0.00
## dental care                        50.07   0.00         0.00            0.00
## cereals                             0.00   0.00         0.00            0.00
## kitchen towels                      0.00   0.00         0.00            0.00
## curd cheese                         0.00   0.00         0.00            0.00
## other vegetables                    0.00   0.00         0.00            0.00
## rolls/buns                          0.00  36.18         0.00            0.00
## softener                            0.00   0.00         0.00            0.00
## cleaner                            27.62   0.00         0.00            0.00
## spices                              0.00   0.00         0.00            0.00
## jam                                28.11   0.00         0.00            0.00
## sauces                             28.11   0.00         0.00            0.00
## rum                                 0.00   0.00         0.00            0.00
## liver loaf                          0.00   0.00         0.00            0.00
## male cosmetics                      0.00   0.00         0.00            0.00
## meat spreads                        0.00   0.00         0.00            0.00
## packaged herbs/vegetables           0.00   0.00         0.00            0.00
## brandy                              0.00   0.00         0.00            0.00
## ketchup                             0.00   0.00         0.00            0.00
## abrasive cleaner                    0.00   0.00         0.00            0.00
## light bulbs                         0.00   0.00         0.00            0.00
## artif. sweetener                    0.00   0.00         0.00            0.00
## nuts/prunes                         0.00   0.00         0.00            0.00
## specialty fat                       0.00   0.00         0.00            0.00
## skin care                           0.00   0.00         0.00            0.00
## fish                                0.00   0.00         0.00           75.78
## potato products                     0.00   0.00         0.00            0.00
## root vegetables                     0.00   0.00         0.00            0.00
## snack products                      0.00   0.00         0.00            0.00
## nut snack                           0.00   0.00         0.00            0.00
## soap                                0.00   0.00         0.00            0.00
## syrup                               0.00   0.00         0.00            0.00
## bathroom cleaner                    0.00   0.00         0.00            0.00
## canned fruit                        0.00   0.00         0.00            0.00
## cookware                            0.00   0.00         0.00            0.00
## cooking chocolate                   0.00   0.00         0.00            0.00
## tidbits                             0.00 172.54         0.00            0.00
## cocoa drinks                        0.00   0.00         0.00            0.00
## pudding powder                      0.00   0.00         0.00            0.00
## ready soups                         0.00   0.00         0.00            0.00
## organic marinated meat              0.00   0.00         0.00            0.00
## flower soil/fertilizer              0.00   0.00         0.00            0.00
## organic products                    0.00   0.00         0.00            0.00
## pot plants                          0.00   0.00         0.00            0.00
## prosecco                           76.29   0.00         0.00            0.00
## frankfurter                         0.00   0.00         0.00            0.00
## decalcifier                         0.00   0.00         0.00            0.00
## honey                               0.00   0.00         0.00            0.00
## specialty vegetables                0.00   0.00         0.00            0.00
## cream                               0.00   0.00         0.00            0.00
## hair spray                          0.00   0.00         0.00            0.00
## frozen fruits                       0.00   0.00         0.00            0.00
## rubbing alcohol                     0.00   0.00         0.00            0.00
## liqueur                             0.00   0.00         0.00            0.00
## make up remover                     0.00   0.00         0.00            0.00
## salad dressing                      0.00   0.00         0.00            0.00
## frozen chicken                      0.00   0.00         0.00            0.00
## whisky                              0.00   0.00         0.00            0.00
## baby cosmetics                      0.00   0.00         0.00            0.00
## toilet cleaner                        NA   0.00         0.00            0.00
## bags                                0.00     NA         0.00            0.00
## canned herbs                        0.00   0.00           NA            0.00
## kitchen utensil                     0.00   0.00         0.00              NA
## preservation products               0.00   0.00         0.00            0.00
## baby food                           0.00   0.00         0.00            0.00
## frozen herbss                       0.00   0.00         0.00            0.00
## organic sausage                     0.00   0.00         0.00            0.00
## sound storage medium                0.00   0.00         0.00            0.00
##                           preservation products baby food frozen herbss
## rice                                       1.95      0.00             0
## veggies                                    2.95      5.89             0
## loaf                                       0.00      6.20             0
## coke                                       0.00      0.00             0
## yogurt                                     3.57      7.14             0
## vegetables                                 0.00      0.00             0
## mineral water                              0.00      0.00             0
## Plastic bags                               0.00     10.33             0
## tropical fruit                             5.43     10.87             0
## marinated meat                             0.00     12.14             0
## pies/pasties                               0.00     12.22             0
## newspapers                                 0.00      0.00             0
## citrus                                    13.78      0.00             0
## whipped/sour cream                        13.90     13.90             0
## heinken                                    0.00      0.00             0
## green tea                                  0.00      0.00             0
## pip fruit                                  0.00     15.07             0
## brown bread                                0.00     15.62             0
## fruit/vegetable juice                      0.00     15.77             0
## domestic eggs                              0.00      0.00             0
## coffee                                     8.12      0.00             0
## margarine                                  0.00      0.00             0
## beef                                       0.00      0.00             0
## curd                                       0.00     17.55             0
## butter                                     0.00     18.15             0
## marinated meats                            0.00      0.00             0
## napkins                                    0.00      0.00             0
## halal meat                                 0.00      0.00             0
## chocolate                                 10.31     20.62             0
## frozen vegetables                         10.44     20.88             0
## chicken                                    0.00      0.00             0
## white bread                                0.00     24.01             0
## cream cheese                              12.43      0.00             0
## waffles                                   13.26     26.51             0
## dessert                                    0.00     26.89             0
## salty snack                                0.00     26.89             0
## long life bakery product                  13.78      0.00             0
## berries                                    0.00      0.00             0
## hamburger meat                             0.00      0.00             0
## sugar                                      0.00      0.00             0
## hygiene articles                          14.53      0.00             0
## UHT-milk                                   0.00      0.00             0
## onions                                    15.36      0.00             0
## candy                                     17.10      0.00             0
## specialty chocolate                        0.00      0.00             0
## butter milk                                0.00     34.72             0
## oil                                        0.00      0.00             0
## frozen meals                               0.00      0.00             0
## misc. beverages                            0.00      0.00             0
## specialty bar                              0.00      0.00             0
## ham                                        0.00      0.00             0
## beverages                                  0.00      0.00             0
## meat                                       0.00      0.00             0
## ice cream                                 19.27      0.00             0
## sliced cheese                              0.00      0.00             0
## hard cheese                                0.00      0.00             0
## noodles                                    0.00      0.00             0
## grapes                                    21.65      0.00             0
## cat food                                   0.00      0.00             0
## chewing gum                                0.00      0.00             0
## soda                                       0.00      0.00             0
## detergent                                  0.00      0.00             0
## red/blush wine                             0.00      0.00             0
## white wine                                 0.00      0.00             0
## turkey                                     0.00      0.00             0
## dishes                                     0.00      0.00             0
## bottled water                              0.00      0.00             0
## flour                                      0.00      0.00             0
## semi-finished bread                        0.00      0.00             0
## baking powder                              0.00      0.00             0
## pickled vegetables                         0.00      0.00             0
## herbs                                      0.00      0.00             0
## tropical herbs                             0.00      0.00             0
## soft cheese                                0.00     60.95             0
## tea                                        0.00      0.00             0
## processed cheese                           0.00      0.00             0
## sausage                                    0.00      0.00             0
## pasta                                      0.00     65.20             0
## citrus herbs                               0.00      0.00             0
## potted plants                              0.00      0.00             0
## canned fish                                0.00      0.00             0
## seasonal products                          0.00      0.00             0
## cake bar                                   0.00     76.29             0
## carrots                                    0.00      0.00             0
## mustard                                   42.16      0.00             0
## packaged fruit/vegetables                  0.00      0.00             0
## spread cheese                              0.00      0.00             0
## frozen dessert                             0.00      0.00             0
## frozen fish                                0.00      0.00             0
## cling film/bags                            0.00      0.00             0
## salt                                       0.00      0.00             0
## liquor                                     0.00      0.00             0
## canned vegetables                          0.00      0.00             0
## bottled beer                               0.00      0.00             0
## flower (seeds)                             0.00      0.00             0
## cooking oil                                0.00      0.00             0
## dish cleaner                              48.76      0.00             0
## condensed milk                             0.00      0.00             0
## roll products                              0.00      0.00             0
## photo/film                                 0.00      0.00             0
## pet care                                   0.00      0.00             0
## chocolate marshmallow                      0.00      0.00             0
## herbs/vegetable juice                      0.00      0.00             0
## whole milk                                 0.00      0.00             0
## candles                                    0.00      0.00             0
## mayonnaise                                57.81      0.00             0
## Instant food products                      0.00      0.00             0
## sweet spreads                              0.00      0.00             0
## liquor (appetizer)                         0.00      0.00             0
## specialty cheese                           0.00      0.00             0
## frozen potato products                     0.00      0.00             0
## house keeping products                     0.00      0.00             0
## dog food                                   0.00      0.00             0
## soy                                        0.00      0.00             0
## instant coffee                             0.00      0.00             0
## pip herbs                                  0.00      0.00             0
## zwieback                                   0.00      0.00             0
## finished products                          0.00    145.65             0
## popcorn                                    0.00      0.00             0
## vinegar                                    0.00      0.00             0
## soups                                      0.00    151.55             0
## female sanitary products                   0.00      0.00             0
## sparkling wine                             0.00      0.00             0
## dental care                                0.00      0.00             0
## cereals                                    0.00      0.00             0
## kitchen towels                             0.00      0.00             0
## curd cheese                                0.00      0.00             0
## other vegetables                           0.00      0.00             0
## rolls/buns                                 0.00      0.00             0
## softener                                   0.00      0.00             0
## cleaner                                    0.00      0.00             0
## spices                                    96.68      0.00             0
## jam                                        0.00      0.00             0
## sauces                                     0.00      0.00             0
## rum                                        0.00      0.00             0
## liver loaf                                 0.00      0.00             0
## male cosmetics                             0.00      0.00             0
## meat spreads                               0.00      0.00             0
## packaged herbs/vegetables                  0.00      0.00             0
## brandy                                     0.00      0.00             0
## ketchup                                    0.00      0.00             0
## abrasive cleaner                         124.61      0.00             0
## light bulbs                                0.00      0.00             0
## artif. sweetener                           0.00      0.00             0
## nuts/prunes                                0.00      0.00             0
## specialty fat                              0.00      0.00             0
## skin care                                  0.00      0.00             0
## fish                                       0.00      0.00             0
## potato products                            0.00      0.00             0
## root vegetables                            0.00      0.00             0
## snack products                             0.00      0.00             0
## nut snack                                  0.00      0.00             0
## soap                                       0.00      0.00             0
## syrup                                      0.00      0.00             0
## bathroom cleaner                           0.00      0.00             0
## canned fruit                               0.00      0.00             0
## cookware                                   0.00      0.00             0
## cooking chocolate                          0.00      0.00             0
## tidbits                                    0.00      0.00             0
## cocoa drinks                             224.30      0.00             0
## pudding powder                             0.00      0.00             0
## ready soups                                0.00      0.00             0
## organic marinated meat                     0.00      0.00             0
## flower soil/fertilizer                     0.00      0.00             0
## organic products                           0.00      0.00             0
## pot plants                                 0.00      0.00             0
## prosecco                                   0.00      0.00             0
## frankfurter                                0.00      0.00             0
## decalcifier                                0.00      0.00             0
## honey                                      0.00      0.00             0
## specialty vegetables                       0.00      0.00             0
## cream                                      0.00      0.00             0
## hair spray                                 0.00      0.00             0
## frozen fruits                              0.00      0.00             0
## rubbing alcohol                            0.00      0.00             0
## liqueur                                    0.00      0.00             0
## make up remover                            0.00      0.00             0
## salad dressing                             0.00      0.00             0
## frozen chicken                             0.00      0.00             0
## whisky                                     0.00      0.00             0
## baby cosmetics                             0.00      0.00             0
## toilet cleaner                             0.00      0.00             0
## bags                                       0.00      0.00             0
## canned herbs                               0.00      0.00             0
## kitchen utensil                            0.00      0.00             0
## preservation products                        NA      0.00             0
## baby food                                  0.00        NA             0
## frozen herbss                              0.00      0.00            NA
## organic sausage                            0.00      0.00             0
## sound storage medium                       0.00      0.00             0
##                           organic sausage sound storage medium
## rice                                 0.00                 0.00
## veggies                              0.00                 0.00
## loaf                                 0.00                 0.00
## coke                                 0.00                 6.54
## yogurt                               0.00                 0.00
## vegetables                           0.00                 0.00
## mineral water                        0.00                10.32
## Plastic bags                         0.00                10.33
## tropical fruit                       0.00                 0.00
## marinated meat                       0.00                 0.00
## pies/pasties                         0.00                12.22
## newspapers                           0.00                 0.00
## citrus                               0.00                 0.00
## whipped/sour cream                   0.00                 0.00
## heinken                              0.00                 0.00
## green tea                            0.00                 0.00
## pip fruit                            0.00                 0.00
## brown bread                          0.00                 0.00
## fruit/vegetable juice                0.00                 0.00
## domestic eggs                        0.00                 0.00
## coffee                               0.00                 0.00
## margarine                            0.00                 0.00
## beef                                 0.00                 0.00
## curd                                 0.00                 0.00
## butter                               0.00                 0.00
## marinated meats                      0.00                 0.00
## napkins                              0.00                 0.00
## halal meat                           0.00                 0.00
## chocolate                            0.00                 0.00
## frozen vegetables                    0.00                 0.00
## chicken                              0.00                 0.00
## white bread                         24.01                24.01
## cream cheese                         0.00                 0.00
## waffles                              0.00                 0.00
## dessert                              0.00                 0.00
## salty snack                          0.00                 0.00
## long life bakery product             0.00                 0.00
## berries                              0.00                 0.00
## hamburger meat                       0.00                 0.00
## sugar                                0.00                 0.00
## hygiene articles                     0.00                 0.00
## UHT-milk                             0.00                 0.00
## onions                               0.00                 0.00
## candy                                0.00                34.19
## specialty chocolate                  0.00                 0.00
## butter milk                          0.00                 0.00
## oil                                  0.00                 0.00
## frozen meals                         0.00                 0.00
## misc. beverages                      0.00                 0.00
## specialty bar                        0.00                 0.00
## ham                                  0.00                36.53
## beverages                            0.00                 0.00
## meat                                 0.00                 0.00
## ice cream                            0.00                 0.00
## sliced cheese                       39.49                 0.00
## hard cheese                          0.00                 0.00
## noodles                              0.00                 0.00
## grapes                               0.00                 0.00
## cat food                             0.00                45.22
## chewing gum                          0.00                 0.00
## soda                                 0.00                 0.00
## detergent                            0.00                 0.00
## red/blush wine                       0.00                 0.00
## white wine                           0.00                 0.00
## turkey                               0.00                 0.00
## dishes                               0.00                 0.00
## bottled water                        0.00                 0.00
## flour                                0.00                 0.00
## semi-finished bread                  0.00                 0.00
## baking powder                        0.00                 0.00
## pickled vegetables                   0.00                 0.00
## herbs                                0.00                 0.00
## tropical herbs                       0.00                 0.00
## soft cheese                          0.00                 0.00
## tea                                  0.00                 0.00
## processed cheese                     0.00                 0.00
## sausage                              0.00                 0.00
## pasta                                0.00                 0.00
## citrus herbs                         0.00                 0.00
## potted plants                        0.00                 0.00
## canned fish                          0.00                 0.00
## seasonal products                    0.00                 0.00
## cake bar                             0.00                 0.00
## carrots                              0.00                 0.00
## mustard                              0.00                 0.00
## packaged fruit/vegetables            0.00                 0.00
## spread cheese                        0.00                 0.00
## frozen dessert                       0.00                 0.00
## frozen fish                          0.00                 0.00
## cling film/bags                      0.00                 0.00
## salt                                89.01                 0.00
## liquor                               0.00                 0.00
## canned vegetables                    0.00                 0.00
## bottled beer                         0.00                 0.00
## flower (seeds)                       0.00                 0.00
## cooking oil                          0.00                 0.00
## dish cleaner                         0.00                 0.00
## condensed milk                       0.00                 0.00
## roll products                        0.00                 0.00
## photo/film                           0.00                 0.00
## pet care                             0.00                 0.00
## chocolate marshmallow                0.00                 0.00
## herbs/vegetable juice              111.04                 0.00
## whole milk                           0.00                 0.00
## candles                              0.00                 0.00
## mayonnaise                           0.00                 0.00
## Instant food products                0.00                 0.00
## sweet spreads                        0.00                 0.00
## liquor (appetizer)                   0.00                 0.00
## specialty cheese                     0.00                 0.00
## frozen potato products               0.00               121.90
## house keeping products               0.00                 0.00
## dog food                             0.00                 0.00
## soy                                  0.00                 0.00
## instant coffee                       0.00                 0.00
## pip herbs                            0.00                 0.00
## zwieback                             0.00                 0.00
## finished products                  145.65                 0.00
## popcorn                              0.00                 0.00
## vinegar                              0.00                 0.00
## soups                                0.00                 0.00
## female sanitary products             0.00                 0.00
## sparkling wine                       0.00                 0.00
## dental care                          0.00                 0.00
## cereals                              0.00                 0.00
## kitchen towels                       0.00                 0.00
## curd cheese                          0.00                 0.00
## other vegetables                     0.00                 0.00
## rolls/buns                           0.00                 0.00
## softener                             0.00                 0.00
## cleaner                              0.00                 0.00
## spices                               0.00                 0.00
## jam                                  0.00                 0.00
## sauces                               0.00                 0.00
## rum                                  0.00                 0.00
## liver loaf                           0.00                 0.00
## male cosmetics                       0.00                 0.00
## meat spreads                         0.00                 0.00
## packaged herbs/vegetables            0.00                 0.00
## brandy                               0.00                 0.00
## ketchup                              0.00                 0.00
## abrasive cleaner                     0.00                 0.00
## light bulbs                          0.00                 0.00
## artif. sweetener                     0.00                 0.00
## nuts/prunes                          0.00                 0.00
## specialty fat                        0.00                 0.00
## skin care                            0.00                 0.00
## fish                                 0.00                 0.00
## potato products                      0.00                 0.00
## root vegetables                      0.00                 0.00
## snack products                       0.00                 0.00
## nut snack                            0.00                 0.00
## soap                                 0.00                 0.00
## syrup                                0.00                 0.00
## bathroom cleaner                     0.00                 0.00
## canned fruit                         0.00                 0.00
## cookware                             0.00                 0.00
## cooking chocolate                    0.00                 0.00
## tidbits                              0.00                 0.00
## cocoa drinks                         0.00                 0.00
## pudding powder                       0.00                 0.00
## ready soups                          0.00                 0.00
## organic marinated meat               0.00                 0.00
## flower soil/fertilizer               0.00                 0.00
## organic products                     0.00                 0.00
## pot plants                           0.00                 0.00
## prosecco                             0.00                 0.00
## frankfurter                          0.00                 0.00
## decalcifier                          0.00                 0.00
## honey                                0.00                 0.00
## specialty vegetables                 0.00                 0.00
## cream                                0.00                 0.00
## hair spray                           0.00                 0.00
## frozen fruits                        0.00                 0.00
## rubbing alcohol                      0.00                 0.00
## liqueur                              0.00                 0.00
## make up remover                      0.00                 0.00
## salad dressing                       0.00                 0.00
## frozen chicken                       0.00                 0.00
## whisky                               0.00                 0.00
## baby cosmetics                       0.00                 0.00
## toilet cleaner                       0.00                 0.00
## bags                                 0.00                 0.00
## canned herbs                         0.00                 0.00
## kitchen utensil                      0.00                 0.00
## preservation products                0.00                 0.00
## baby food                            0.00                 0.00
## frozen herbss                        0.00                 0.00
## organic sausage                        NA                 0.00
## sound storage medium                 0.00                   NA

co-occurence test (independence test)

chi2tab<-crossTable(shopping, measure="support", sort=TRUE)
round(chi2tab,2)
##                           rice veggies loaf coke yogurt vegetables
## rice                      0.26    0.07 0.05 0.04   0.06       0.05
## veggies                   0.07    0.17 0.04 0.03   0.04       0.04
## loaf                      0.05    0.04 0.16 0.03   0.03       0.02
## coke                      0.04    0.03 0.03 0.15   0.02       0.02
## yogurt                    0.06    0.04 0.03 0.02   0.14       0.03
## vegetables                0.05    0.04 0.02 0.02   0.03       0.12
## mineral water             0.03    0.02 0.02 0.03   0.02       0.01
## Plastic bags              0.02    0.02 0.02 0.02   0.02       0.01
## tropical fruit            0.04    0.03 0.02 0.02   0.03       0.02
## marinated meat            0.03    0.02 0.03 0.02   0.02       0.01
## pies/pasties              0.03    0.02 0.02 0.02   0.02       0.01
## newspapers                0.03    0.02 0.02 0.01   0.01       0.01
## citrus                    0.03    0.03 0.01 0.01   0.02       0.02
## whipped/sour cream        0.03    0.03 0.01 0.01   0.02       0.02
## heinken                   0.02    0.01 0.01 0.01   0.01       0.01
## green tea                 0.01    0.01 0.01 0.01   0.00       0.00
## pip fruit                 0.03    0.02 0.01 0.01   0.02       0.01
## brown bread               0.02    0.02 0.01 0.01   0.01       0.01
## fruit/vegetable juice     0.02    0.02 0.01 0.02   0.02       0.01
## domestic eggs             0.03    0.02 0.01 0.01   0.01       0.01
## coffee                    0.02    0.01 0.01 0.01   0.01       0.01
## margarine                 0.02    0.02 0.01 0.01   0.01       0.01
## beef                      0.02    0.02 0.01 0.01   0.01       0.02
## curd                      0.03    0.02 0.01 0.01   0.02       0.01
## butter                    0.03    0.02 0.01 0.01   0.01       0.01
## marinated meats           0.02    0.01 0.02 0.01   0.01       0.01
## napkins                   0.02    0.01 0.01 0.01   0.01       0.01
## halal meat                0.02    0.02 0.01 0.01   0.01       0.01
## chocolate                 0.02    0.01 0.01 0.01   0.01       0.01
## frozen vegetables         0.02    0.02 0.01 0.01   0.01       0.01
## chicken                   0.02    0.02 0.01 0.01   0.01       0.01
## white bread               0.02    0.01 0.01 0.01   0.01       0.01
## cream cheese              0.02    0.01 0.01 0.01   0.01       0.01
## waffles                   0.01    0.01 0.01 0.01   0.01       0.01
## dessert                   0.01    0.01 0.01 0.01   0.01       0.01
## salty snack               0.01    0.01 0.00 0.01   0.01       0.01
## long life bakery product  0.01    0.01 0.01 0.01   0.01       0.01
## berries                   0.01    0.01 0.01 0.01   0.01       0.01
## hamburger meat            0.02    0.01 0.01 0.01   0.01       0.01
## sugar                     0.01    0.01 0.01 0.01   0.01       0.01
## hygiene articles          0.01    0.01 0.01 0.01   0.01       0.01
## UHT-milk                  0.00    0.01 0.01 0.01   0.01       0.01
## onions                    0.01    0.01 0.01 0.00   0.01       0.01
## candy                     0.01    0.01 0.01 0.01   0.01       0.00
## specialty chocolate       0.01    0.01 0.00 0.01   0.00       0.00
## butter milk               0.01    0.01 0.01 0.00   0.01       0.01
## oil                       0.01    0.01 0.00 0.00   0.01       0.01
## frozen meals              0.01    0.01 0.00 0.01   0.01       0.00
## misc. beverages           0.01    0.00 0.00 0.01   0.00       0.00
## specialty bar             0.01    0.00 0.00 0.01   0.00       0.00
## ham                       0.01    0.01 0.01 0.00   0.01       0.00
## beverages                 0.01    0.00 0.00 0.00   0.01       0.00
## meat                      0.01    0.01 0.01 0.00   0.00       0.01
## ice cream                 0.01    0.00 0.00 0.01   0.00       0.00
## sliced cheese             0.01    0.01 0.01 0.00   0.01       0.01
## hard cheese               0.01    0.01 0.01 0.00   0.01       0.01
## noodles                   0.01    0.00 0.00 0.00   0.00       0.01
## grapes                    0.01    0.01 0.00 0.00   0.00       0.00
## cat food                  0.01    0.01 0.00 0.00   0.01       0.00
## chewing gum               0.00    0.00 0.00 0.00   0.00       0.00
## soda                      0.01    0.00 0.00 0.00   0.00       0.00
## detergent                 0.01    0.01 0.00 0.00   0.00       0.00
## red/blush wine            0.00    0.00 0.00 0.00   0.00       0.00
## white wine                0.00    0.00 0.00 0.00   0.00       0.00
## turkey                    0.01    0.00 0.00 0.00   0.00       0.01
## dishes                    0.01    0.01 0.00 0.00   0.00       0.00
## bottled water             0.00    0.00 0.00 0.00   0.00       0.00
## flour                     0.01    0.01 0.00 0.00   0.00       0.00
## semi-finished bread       0.01    0.00 0.00 0.00   0.00       0.00
## baking powder             0.01    0.01 0.00 0.00   0.00       0.00
## pickled vegetables        0.01    0.01 0.00 0.00   0.00       0.00
## herbs                     0.01    0.01 0.00 0.00   0.00       0.01
## tropical herbs            0.00    0.00 0.00 0.00   0.00       0.00
## soft cheese               0.01    0.01 0.00 0.00   0.01       0.00
## tea                       0.01    0.00 0.00 0.00   0.00       0.00
## processed cheese          0.01    0.00 0.00 0.00   0.00       0.00
## sausage                   0.00    0.00 0.00 0.00   0.00       0.00
## pasta                     0.01    0.00 0.00 0.00   0.00       0.00
## citrus herbs              0.01    0.00 0.00 0.00   0.00       0.00
## potted plants             0.01    0.00 0.00 0.00   0.00       0.00
## canned fish               0.00    0.00 0.00 0.00   0.00       0.00
## seasonal products         0.00    0.00 0.00 0.00   0.00       0.00
## cake bar                  0.01    0.00 0.00 0.00   0.00       0.00
## carrots                   0.01    0.00 0.00 0.00   0.00       0.00
## mustard                   0.01    0.00 0.00 0.00   0.00       0.00
## packaged fruit/vegetables 0.00    0.00 0.00 0.00   0.00       0.00
## spread cheese             0.00    0.00 0.00 0.00   0.00       0.00
## frozen dessert            0.00    0.00 0.00 0.00   0.00       0.00
## frozen fish               0.00    0.00 0.00 0.00   0.00       0.00
## cling film/bags           0.00    0.00 0.00 0.00   0.00       0.00
## salt                      0.00    0.00 0.00 0.00   0.00       0.00
## liquor                    0.00    0.00 0.00 0.00   0.00       0.00
## canned vegetables         0.00    0.00 0.00 0.00   0.00       0.00
## bottled beer              0.00    0.00 0.00 0.00   0.00       0.00
## flower (seeds)            0.00    0.00 0.00 0.00   0.00       0.00
## cooking oil               0.00    0.00 0.00 0.00   0.00       0.00
## dish cleaner              0.00    0.00 0.00 0.00   0.00       0.00
## condensed milk            0.00    0.00 0.00 0.00   0.00       0.00
## roll products             0.00    0.00 0.00 0.00   0.00       0.00
## photo/film                0.00    0.00 0.00 0.00   0.00       0.00
## pet care                  0.00    0.00 0.00 0.00   0.00       0.00
## chocolate marshmallow     0.00    0.00 0.00 0.00   0.00       0.00
## herbs/vegetable juice     0.00    0.00 0.00 0.00   0.00       0.00
## whole milk                0.00    0.00 0.00 0.00   0.00       0.00
## candles                   0.00    0.00 0.00 0.00   0.00       0.00
## mayonnaise                0.00    0.00 0.00 0.00   0.00       0.00
## Instant food products     0.00    0.00 0.00 0.00   0.00       0.00
## sweet spreads             0.00    0.00 0.00 0.00   0.00       0.00
## liquor (appetizer)        0.00    0.00 0.00 0.00   0.00       0.00
## specialty cheese          0.00    0.00 0.00 0.00   0.00       0.00
## frozen potato products    0.00    0.00 0.00 0.00   0.00       0.00
## house keeping products    0.00    0.00 0.00 0.00   0.00       0.00
## dog food                  0.00    0.00 0.00 0.00   0.00       0.00
## soy                       0.00    0.00 0.00 0.00   0.00       0.00
## instant coffee            0.00    0.00 0.00 0.00   0.00       0.00
## pip herbs                 0.00    0.00 0.00 0.00   0.00       0.00
## zwieback                  0.00    0.00 0.00 0.00   0.00       0.00
## finished products         0.00    0.00 0.00 0.00   0.00       0.00
## popcorn                   0.00    0.00 0.00 0.00   0.00       0.00
## vinegar                   0.00    0.00 0.00 0.00   0.00       0.00
## soups                     0.00    0.00 0.00 0.00   0.00       0.00
## female sanitary products  0.00    0.00 0.00 0.00   0.00       0.00
## sparkling wine            0.00    0.00 0.00 0.00   0.00       0.00
## dental care               0.00    0.00 0.00 0.00   0.00       0.00
## cereals                   0.00    0.00 0.00 0.00   0.00       0.00
## kitchen towels            0.00    0.00 0.00 0.00   0.00       0.00
## curd cheese               0.00    0.00 0.00 0.00   0.00       0.00
## other vegetables          0.00    0.00 0.00 0.00   0.00       0.00
## rolls/buns                0.00    0.00 0.00 0.00   0.00       0.00
## softener                  0.00    0.00 0.00 0.00   0.00       0.00
## cleaner                   0.00    0.00 0.00 0.00   0.00       0.00
## spices                    0.00    0.00 0.00 0.00   0.00       0.00
## jam                       0.00    0.00 0.00 0.00   0.00       0.00
## sauces                    0.00    0.00 0.00 0.00   0.00       0.00
## rum                       0.00    0.00 0.00 0.00   0.00       0.00
## liver loaf                0.00    0.00 0.00 0.00   0.00       0.00
## male cosmetics            0.00    0.00 0.00 0.00   0.00       0.00
## meat spreads              0.00    0.00 0.00 0.00   0.00       0.00
## packaged herbs/vegetables 0.00    0.00 0.00 0.00   0.00       0.00
## brandy                    0.00    0.00 0.00 0.00   0.00       0.00
## ketchup                   0.00    0.00 0.00 0.00   0.00       0.00
## abrasive cleaner          0.00    0.00 0.00 0.00   0.00       0.00
## light bulbs               0.00    0.00 0.00 0.00   0.00       0.00
## artif. sweetener          0.00    0.00 0.00 0.00   0.00       0.00
## nuts/prunes               0.00    0.00 0.00 0.00   0.00       0.00
## specialty fat             0.00    0.00 0.00 0.00   0.00       0.00
## skin care                 0.00    0.00 0.00 0.00   0.00       0.00
## fish                      0.00    0.00 0.00 0.00   0.00       0.00
## potato products           0.00    0.00 0.00 0.00   0.00       0.00
## root vegetables           0.00    0.00 0.00 0.00   0.00       0.00
## snack products            0.00    0.00 0.00 0.00   0.00       0.00
## nut snack                 0.00    0.00 0.00 0.00   0.00       0.00
## soap                      0.00    0.00 0.00 0.00   0.00       0.00
## syrup                     0.00    0.00 0.00 0.00   0.00       0.00
## bathroom cleaner          0.00    0.00 0.00 0.00   0.00       0.00
## canned fruit              0.00    0.00 0.00 0.00   0.00       0.00
## cookware                  0.00    0.00 0.00 0.00   0.00       0.00
## cooking chocolate         0.00    0.00 0.00 0.00   0.00       0.00
## tidbits                   0.00    0.00 0.00 0.00   0.00       0.00
## cocoa drinks              0.00    0.00 0.00 0.00   0.00       0.00
## pudding powder            0.00    0.00 0.00 0.00   0.00       0.00
## ready soups               0.00    0.00 0.00 0.00   0.00       0.00
## organic marinated meat    0.00    0.00 0.00 0.00   0.00       0.00
## flower soil/fertilizer    0.00    0.00 0.00 0.00   0.00       0.00
## organic products          0.00    0.00 0.00 0.00   0.00       0.00
## pot plants                0.00    0.00 0.00 0.00   0.00       0.00
## prosecco                  0.00    0.00 0.00 0.00   0.00       0.00
## frankfurter               0.00    0.00 0.00 0.00   0.00       0.00
## decalcifier               0.00    0.00 0.00 0.00   0.00       0.00
## honey                     0.00    0.00 0.00 0.00   0.00       0.00
## specialty vegetables      0.00    0.00 0.00 0.00   0.00       0.00
## cream                     0.00    0.00 0.00 0.00   0.00       0.00
## hair spray                0.00    0.00 0.00 0.00   0.00       0.00
## frozen fruits             0.00    0.00 0.00 0.00   0.00       0.00
## rubbing alcohol           0.00    0.00 0.00 0.00   0.00       0.00
## liqueur                   0.00    0.00 0.00 0.00   0.00       0.00
## make up remover           0.00    0.00 0.00 0.00   0.00       0.00
## salad dressing            0.00    0.00 0.00 0.00   0.00       0.00
## frozen chicken            0.00    0.00 0.00 0.00   0.00       0.00
## whisky                    0.00    0.00 0.00 0.00   0.00       0.00
## baby cosmetics            0.00    0.00 0.00 0.00   0.00       0.00
## toilet cleaner            0.00    0.00 0.00 0.00   0.00       0.00
## bags                      0.00    0.00 0.00 0.00   0.00       0.00
## canned herbs              0.00    0.00 0.00 0.00   0.00       0.00
## kitchen utensil           0.00    0.00 0.00 0.00   0.00       0.00
## preservation products     0.00    0.00 0.00 0.00   0.00       0.00
## baby food                 0.00    0.00 0.00 0.00   0.00       0.00
## frozen herbss             0.00    0.00 0.00 0.00   0.00       0.00
## organic sausage           0.00    0.00 0.00 0.00   0.00       0.00
## sound storage medium      0.00    0.00 0.00 0.00   0.00       0.00
##                           mineral water Plastic bags tropical fruit
## rice                               0.03         0.02           0.04
## veggies                            0.02         0.02           0.03
## loaf                               0.02         0.02           0.02
## coke                               0.03         0.02           0.02
## yogurt                             0.02         0.02           0.03
## vegetables                         0.01         0.01           0.02
## mineral water                      0.10         0.01           0.02
## Plastic bags                       0.01         0.10           0.01
## tropical fruit                     0.02         0.01           0.09
## marinated meat                     0.01         0.01           0.01
## pies/pasties                       0.01         0.01           0.01
## newspapers                         0.01         0.01           0.01
## citrus                             0.01         0.01           0.02
## whipped/sour cream                 0.01         0.01           0.01
## heinken                            0.01         0.00           0.01
## green tea                          0.01         0.01           0.00
## pip fruit                          0.01         0.01           0.02
## brown bread                        0.01         0.01           0.01
## fruit/vegetable juice              0.01         0.01           0.01
## domestic eggs                      0.01         0.01           0.01
## coffee                             0.01         0.01           0.01
## margarine                          0.01         0.01           0.01
## beef                               0.01         0.00           0.01
## curd                               0.01         0.01           0.01
## butter                             0.01         0.00           0.01
## marinated meats                    0.01         0.01           0.01
## napkins                            0.01         0.01           0.01
## halal meat                         0.01         0.01           0.01
## chocolate                          0.01         0.01           0.01
## frozen vegetables                  0.01         0.00           0.01
## chicken                            0.00         0.00           0.01
## white bread                        0.00         0.01           0.01
## cream cheese                       0.01         0.01           0.01
## waffles                            0.00         0.01           0.01
## dessert                            0.00         0.01           0.01
## salty snack                        0.00         0.01           0.00
## long life bakery product           0.00         0.01           0.01
## berries                            0.00         0.00           0.01
## hamburger meat                     0.00         0.00           0.00
## sugar                              0.00         0.00           0.00
## hygiene articles                   0.00         0.00           0.01
## UHT-milk                           0.01         0.00           0.00
## onions                             0.01         0.00           0.00
## candy                              0.00         0.00           0.00
## specialty chocolate                0.00         0.00           0.00
## butter milk                        0.00         0.00           0.00
## oil                                0.00         0.00           0.00
## frozen meals                       0.00         0.00           0.00
## misc. beverages                    0.00         0.00           0.00
## specialty bar                      0.00         0.00           0.00
## ham                                0.00         0.00           0.00
## beverages                          0.00         0.00           0.00
## meat                               0.00         0.00           0.00
## ice cream                          0.00         0.00           0.00
## sliced cheese                      0.00         0.00           0.00
## hard cheese                        0.00         0.00           0.00
## noodles                            0.00         0.00           0.00
## grapes                             0.00         0.00           0.01
## cat food                           0.00         0.00           0.00
## chewing gum                        0.00         0.00           0.00
## soda                               0.00         0.00           0.00
## detergent                          0.00         0.00           0.00
## red/blush wine                     0.00         0.00           0.00
## white wine                         0.00         0.00           0.00
## turkey                             0.00         0.00           0.00
## dishes                             0.00         0.00           0.00
## bottled water                      0.00         0.00           0.00
## flour                              0.00         0.00           0.00
## semi-finished bread                0.00         0.00           0.00
## baking powder                      0.00         0.00           0.00
## pickled vegetables                 0.00         0.00           0.00
## herbs                              0.00         0.00           0.00
## tropical herbs                     0.00         0.00           0.00
## soft cheese                        0.00         0.00           0.00
## tea                                0.00         0.00           0.00
## processed cheese                   0.00         0.00           0.00
## sausage                            0.00         0.00           0.00
## pasta                              0.00         0.00           0.00
## citrus herbs                       0.00         0.00           0.00
## potted plants                      0.00         0.00           0.00
## canned fish                        0.00         0.00           0.00
## seasonal products                  0.00         0.00           0.00
## cake bar                           0.00         0.00           0.00
## carrots                            0.00         0.00           0.00
## mustard                            0.00         0.00           0.00
## packaged fruit/vegetables          0.00         0.00           0.00
## spread cheese                      0.00         0.00           0.00
## frozen dessert                     0.00         0.00           0.00
## frozen fish                        0.00         0.00           0.00
## cling film/bags                    0.00         0.00           0.00
## salt                               0.00         0.00           0.00
## liquor                             0.00         0.00           0.00
## canned vegetables                  0.00         0.00           0.00
## bottled beer                       0.00         0.00           0.00
## flower (seeds)                     0.00         0.00           0.00
## cooking oil                        0.00         0.00           0.00
## dish cleaner                       0.00         0.00           0.00
## condensed milk                     0.00         0.00           0.00
## roll products                      0.00         0.00           0.00
## photo/film                         0.00         0.00           0.00
## pet care                           0.00         0.00           0.00
## chocolate marshmallow              0.00         0.00           0.00
## herbs/vegetable juice              0.00         0.00           0.00
## whole milk                         0.00         0.00           0.00
## candles                            0.00         0.00           0.00
## mayonnaise                         0.00         0.00           0.00
## Instant food products              0.00         0.00           0.00
## sweet spreads                      0.00         0.00           0.00
## liquor (appetizer)                 0.00         0.00           0.00
## specialty cheese                   0.00         0.00           0.00
## frozen potato products             0.00         0.00           0.00
## house keeping products             0.00         0.00           0.00
## dog food                           0.00         0.00           0.00
## soy                                0.00         0.00           0.00
## instant coffee                     0.00         0.00           0.00
## pip herbs                          0.00         0.00           0.00
## zwieback                           0.00         0.00           0.00
## finished products                  0.00         0.00           0.00
## popcorn                            0.00         0.00           0.00
## vinegar                            0.00         0.00           0.00
## soups                              0.00         0.00           0.00
## female sanitary products           0.00         0.00           0.00
## sparkling wine                     0.00         0.00           0.00
## dental care                        0.00         0.00           0.00
## cereals                            0.00         0.00           0.00
## kitchen towels                     0.00         0.00           0.00
## curd cheese                        0.00         0.00           0.00
## other vegetables                   0.00         0.00           0.00
## rolls/buns                         0.00         0.00           0.00
## softener                           0.00         0.00           0.00
## cleaner                            0.00         0.00           0.00
## spices                             0.00         0.00           0.00
## jam                                0.00         0.00           0.00
## sauces                             0.00         0.00           0.00
## rum                                0.00         0.00           0.00
## liver loaf                         0.00         0.00           0.00
## male cosmetics                     0.00         0.00           0.00
## meat spreads                       0.00         0.00           0.00
## packaged herbs/vegetables          0.00         0.00           0.00
## brandy                             0.00         0.00           0.00
## ketchup                            0.00         0.00           0.00
## abrasive cleaner                   0.00         0.00           0.00
## light bulbs                        0.00         0.00           0.00
## artif. sweetener                   0.00         0.00           0.00
## nuts/prunes                        0.00         0.00           0.00
## specialty fat                      0.00         0.00           0.00
## skin care                          0.00         0.00           0.00
## fish                               0.00         0.00           0.00
## potato products                    0.00         0.00           0.00
## root vegetables                    0.00         0.00           0.00
## snack products                     0.00         0.00           0.00
## nut snack                          0.00         0.00           0.00
## soap                               0.00         0.00           0.00
## syrup                              0.00         0.00           0.00
## bathroom cleaner                   0.00         0.00           0.00
## canned fruit                       0.00         0.00           0.00
## cookware                           0.00         0.00           0.00
## cooking chocolate                  0.00         0.00           0.00
## tidbits                            0.00         0.00           0.00
## cocoa drinks                       0.00         0.00           0.00
## pudding powder                     0.00         0.00           0.00
## ready soups                        0.00         0.00           0.00
## organic marinated meat             0.00         0.00           0.00
## flower soil/fertilizer             0.00         0.00           0.00
## organic products                   0.00         0.00           0.00
## pot plants                         0.00         0.00           0.00
## prosecco                           0.00         0.00           0.00
## frankfurter                        0.00         0.00           0.00
## decalcifier                        0.00         0.00           0.00
## honey                              0.00         0.00           0.00
## specialty vegetables               0.00         0.00           0.00
## cream                              0.00         0.00           0.00
## hair spray                         0.00         0.00           0.00
## frozen fruits                      0.00         0.00           0.00
## rubbing alcohol                    0.00         0.00           0.00
## liqueur                            0.00         0.00           0.00
## make up remover                    0.00         0.00           0.00
## salad dressing                     0.00         0.00           0.00
## frozen chicken                     0.00         0.00           0.00
## whisky                             0.00         0.00           0.00
## baby cosmetics                     0.00         0.00           0.00
## toilet cleaner                     0.00         0.00           0.00
## bags                               0.00         0.00           0.00
## canned herbs                       0.00         0.00           0.00
## kitchen utensil                    0.00         0.00           0.00
## preservation products              0.00         0.00           0.00
## baby food                          0.00         0.00           0.00
## frozen herbss                      0.00         0.00           0.00
## organic sausage                    0.00         0.00           0.00
## sound storage medium               0.00         0.00           0.00
##                           marinated meat pies/pasties newspapers citrus
## rice                                0.03         0.03       0.03   0.03
## veggies                             0.02         0.02       0.02   0.03
## loaf                                0.03         0.02       0.02   0.01
## coke                                0.02         0.02       0.01   0.01
## yogurt                              0.02         0.02       0.01   0.02
## vegetables                          0.01         0.01       0.01   0.02
## mineral water                       0.01         0.01       0.01   0.01
## Plastic bags                        0.01         0.01       0.01   0.01
## tropical fruit                      0.01         0.01       0.01   0.02
## marinated meat                      0.08         0.01       0.01   0.01
## pies/pasties                        0.01         0.08       0.01   0.01
## newspapers                          0.01         0.01       0.08   0.01
## citrus                              0.01         0.01       0.01   0.07
## whipped/sour cream                  0.01         0.01       0.01   0.01
## heinken                             0.01         0.00       0.00   0.01
## green tea                           0.01         0.00       0.00   0.00
## pip fruit                           0.01         0.01       0.01   0.01
## brown bread                         0.01         0.01       0.01   0.01
## fruit/vegetable juice               0.01         0.01       0.01   0.01
## domestic eggs                       0.01         0.01       0.01   0.01
## coffee                              0.01         0.01       0.01   0.01
## margarine                           0.01         0.01       0.01   0.01
## beef                                0.00         0.01       0.01   0.01
## curd                                0.01         0.01       0.01   0.01
## butter                              0.01         0.01       0.01   0.01
## marinated meats                     0.01         0.01       0.00   0.01
## napkins                             0.01         0.01       0.01   0.01
## halal meat                          0.01         0.01       0.01   0.01
## chocolate                           0.01         0.01       0.01   0.01
## frozen vegetables                   0.01         0.00       0.00   0.01
## chicken                             0.00         0.00       0.00   0.01
## white bread                         0.01         0.01       0.00   0.00
## cream cheese                        0.00         0.00       0.00   0.00
## waffles                             0.00         0.01       0.00   0.00
## dessert                             0.01         0.01       0.00   0.00
## salty snack                         0.00         0.00       0.00   0.00
## long life bakery product            0.00         0.01       0.00   0.00
## berries                             0.00         0.00       0.00   0.00
## hamburger meat                      0.00         0.00       0.00   0.00
## sugar                               0.00         0.00       0.00   0.00
## hygiene articles                    0.00         0.00       0.00   0.00
## UHT-milk                            0.00         0.00       0.00   0.00
## onions                              0.00         0.00       0.00   0.00
## candy                               0.00         0.00       0.00   0.00
## specialty chocolate                 0.00         0.00       0.00   0.00
## butter milk                         0.00         0.00       0.00   0.00
## oil                                 0.00         0.00       0.00   0.00
## frozen meals                        0.00         0.00       0.00   0.00
## misc. beverages                     0.00         0.00       0.00   0.00
## specialty bar                       0.00         0.00       0.00   0.00
## ham                                 0.00         0.00       0.00   0.00
## beverages                           0.00         0.00       0.00   0.00
## meat                                0.00         0.00       0.00   0.00
## ice cream                           0.00         0.00       0.00   0.00
## sliced cheese                       0.01         0.00       0.00   0.00
## hard cheese                         0.00         0.00       0.00   0.00
## noodles                             0.00         0.00       0.00   0.00
## grapes                              0.00         0.00       0.00   0.00
## cat food                            0.00         0.00       0.00   0.00
## chewing gum                         0.00         0.00       0.00   0.00
## soda                                0.00         0.00       0.00   0.00
## detergent                           0.00         0.00       0.00   0.00
## red/blush wine                      0.00         0.00       0.00   0.00
## white wine                          0.00         0.00       0.00   0.00
## turkey                              0.00         0.00       0.00   0.00
## dishes                              0.00         0.00       0.00   0.00
## bottled water                       0.00         0.00       0.00   0.00
## flour                               0.00         0.00       0.00   0.00
## semi-finished bread                 0.00         0.00       0.00   0.00
## baking powder                       0.00         0.00       0.00   0.00
## pickled vegetables                  0.00         0.00       0.00   0.00
## herbs                               0.00         0.00       0.00   0.00
## tropical herbs                      0.00         0.00       0.00   0.00
## soft cheese                         0.00         0.00       0.00   0.00
## tea                                 0.00         0.00       0.00   0.00
## processed cheese                    0.00         0.00       0.00   0.00
## sausage                             0.00         0.00       0.00   0.00
## pasta                               0.00         0.00       0.00   0.00
## citrus herbs                        0.00         0.00       0.00   0.00
## potted plants                       0.00         0.00       0.00   0.00
## canned fish                         0.00         0.00       0.00   0.00
## seasonal products                   0.00         0.00       0.00   0.00
## cake bar                            0.00         0.00       0.00   0.00
## carrots                             0.00         0.00       0.00   0.00
## mustard                             0.00         0.00       0.00   0.00
## packaged fruit/vegetables           0.00         0.00       0.00   0.00
## spread cheese                       0.00         0.00       0.00   0.00
## frozen dessert                      0.00         0.00       0.00   0.00
## frozen fish                         0.00         0.00       0.00   0.00
## cling film/bags                     0.00         0.00       0.00   0.00
## salt                                0.00         0.00       0.00   0.00
## liquor                              0.00         0.00       0.00   0.00
## canned vegetables                   0.00         0.00       0.00   0.00
## bottled beer                        0.00         0.00       0.00   0.00
## flower (seeds)                      0.00         0.00       0.00   0.00
## cooking oil                         0.00         0.00       0.00   0.00
## dish cleaner                        0.00         0.00       0.00   0.00
## condensed milk                      0.00         0.00       0.00   0.00
## roll products                       0.00         0.00       0.00   0.00
## photo/film                          0.00         0.00       0.00   0.00
## pet care                            0.00         0.00       0.00   0.00
## chocolate marshmallow               0.00         0.00       0.00   0.00
## herbs/vegetable juice               0.00         0.00       0.00   0.00
## whole milk                          0.00         0.00       0.00   0.00
## candles                             0.00         0.00       0.00   0.00
## mayonnaise                          0.00         0.00       0.00   0.00
## Instant food products               0.00         0.00       0.00   0.00
## sweet spreads                       0.00         0.00       0.00   0.00
## liquor (appetizer)                  0.00         0.00       0.00   0.00
## specialty cheese                    0.00         0.00       0.00   0.00
## frozen potato products              0.00         0.00       0.00   0.00
## house keeping products              0.00         0.00       0.00   0.00
## dog food                            0.00         0.00       0.00   0.00
## soy                                 0.00         0.00       0.00   0.00
## instant coffee                      0.00         0.00       0.00   0.00
## pip herbs                           0.00         0.00       0.00   0.00
## zwieback                            0.00         0.00       0.00   0.00
## finished products                   0.00         0.00       0.00   0.00
## popcorn                             0.00         0.00       0.00   0.00
## vinegar                             0.00         0.00       0.00   0.00
## soups                               0.00         0.00       0.00   0.00
## female sanitary products            0.00         0.00       0.00   0.00
## sparkling wine                      0.00         0.00       0.00   0.00
## dental care                         0.00         0.00       0.00   0.00
## cereals                             0.00         0.00       0.00   0.00
## kitchen towels                      0.00         0.00       0.00   0.00
## curd cheese                         0.00         0.00       0.00   0.00
## other vegetables                    0.00         0.00       0.00   0.00
## rolls/buns                          0.00         0.00       0.00   0.00
## softener                            0.00         0.00       0.00   0.00
## cleaner                             0.00         0.00       0.00   0.00
## spices                              0.00         0.00       0.00   0.00
## jam                                 0.00         0.00       0.00   0.00
## sauces                              0.00         0.00       0.00   0.00
## rum                                 0.00         0.00       0.00   0.00
## liver loaf                          0.00         0.00       0.00   0.00
## male cosmetics                      0.00         0.00       0.00   0.00
## meat spreads                        0.00         0.00       0.00   0.00
## packaged herbs/vegetables           0.00         0.00       0.00   0.00
## brandy                              0.00         0.00       0.00   0.00
## ketchup                             0.00         0.00       0.00   0.00
## abrasive cleaner                    0.00         0.00       0.00   0.00
## light bulbs                         0.00         0.00       0.00   0.00
## artif. sweetener                    0.00         0.00       0.00   0.00
## nuts/prunes                         0.00         0.00       0.00   0.00
## specialty fat                       0.00         0.00       0.00   0.00
## skin care                           0.00         0.00       0.00   0.00
## fish                                0.00         0.00       0.00   0.00
## potato products                     0.00         0.00       0.00   0.00
## root vegetables                     0.00         0.00       0.00   0.00
## snack products                      0.00         0.00       0.00   0.00
## nut snack                           0.00         0.00       0.00   0.00
## soap                                0.00         0.00       0.00   0.00
## syrup                               0.00         0.00       0.00   0.00
## bathroom cleaner                    0.00         0.00       0.00   0.00
## canned fruit                        0.00         0.00       0.00   0.00
## cookware                            0.00         0.00       0.00   0.00
## cooking chocolate                   0.00         0.00       0.00   0.00
## tidbits                             0.00         0.00       0.00   0.00
## cocoa drinks                        0.00         0.00       0.00   0.00
## pudding powder                      0.00         0.00       0.00   0.00
## ready soups                         0.00         0.00       0.00   0.00
## organic marinated meat              0.00         0.00       0.00   0.00
## flower soil/fertilizer              0.00         0.00       0.00   0.00
## organic products                    0.00         0.00       0.00   0.00
## pot plants                          0.00         0.00       0.00   0.00
## prosecco                            0.00         0.00       0.00   0.00
## frankfurter                         0.00         0.00       0.00   0.00
## decalcifier                         0.00         0.00       0.00   0.00
## honey                               0.00         0.00       0.00   0.00
## specialty vegetables                0.00         0.00       0.00   0.00
## cream                               0.00         0.00       0.00   0.00
## hair spray                          0.00         0.00       0.00   0.00
## frozen fruits                       0.00         0.00       0.00   0.00
## rubbing alcohol                     0.00         0.00       0.00   0.00
## liqueur                             0.00         0.00       0.00   0.00
## make up remover                     0.00         0.00       0.00   0.00
## salad dressing                      0.00         0.00       0.00   0.00
## frozen chicken                      0.00         0.00       0.00   0.00
## whisky                              0.00         0.00       0.00   0.00
## baby cosmetics                      0.00         0.00       0.00   0.00
## toilet cleaner                      0.00         0.00       0.00   0.00
## bags                                0.00         0.00       0.00   0.00
## canned herbs                        0.00         0.00       0.00   0.00
## kitchen utensil                     0.00         0.00       0.00   0.00
## preservation products               0.00         0.00       0.00   0.00
## baby food                           0.00         0.00       0.00   0.00
## frozen herbss                       0.00         0.00       0.00   0.00
## organic sausage                     0.00         0.00       0.00   0.00
## sound storage medium                0.00         0.00       0.00   0.00
##                           whipped/sour cream heinken green tea pip fruit
## rice                                    0.03    0.02      0.01      0.03
## veggies                                 0.03    0.01      0.01      0.02
## loaf                                    0.01    0.01      0.01      0.01
## coke                                    0.01    0.01      0.01      0.01
## yogurt                                  0.02    0.01      0.00      0.02
## vegetables                              0.02    0.01      0.00      0.01
## mineral water                           0.01    0.01      0.01      0.01
## Plastic bags                            0.01    0.00      0.01      0.01
## tropical fruit                          0.01    0.01      0.00      0.02
## marinated meat                          0.01    0.01      0.01      0.01
## pies/pasties                            0.01    0.00      0.00      0.01
## newspapers                              0.01    0.00      0.00      0.01
## citrus                                  0.01    0.01      0.00      0.01
## whipped/sour cream                      0.07    0.00      0.00      0.01
## heinken                                 0.00    0.07      0.00      0.01
## green tea                               0.00    0.00      0.07      0.00
## pip fruit                               0.01    0.01      0.00      0.07
## brown bread                             0.00    0.00      0.00      0.01
## fruit/vegetable juice                   0.01    0.01      0.00      0.01
## domestic eggs                           0.01    0.00      0.00      0.01
## coffee                                  0.01    0.00      0.00      0.01
## margarine                               0.01    0.01      0.00      0.01
## beef                                    0.01    0.00      0.00      0.00
## curd                                    0.01    0.00      0.00      0.01
## butter                                  0.01    0.01      0.00      0.01
## marinated meats                         0.01    0.00      0.00      0.01
## napkins                                 0.01    0.00      0.00      0.01
## halal meat                              0.01    0.00      0.00      0.01
## chocolate                               0.00    0.00      0.00      0.01
## frozen vegetables                       0.01    0.00      0.00      0.01
## chicken                                 0.01    0.00      0.00      0.00
## white bread                             0.01    0.00      0.00      0.01
## cream cheese                            0.01    0.00      0.00      0.01
## waffles                                 0.01    0.00      0.00      0.00
## dessert                                 0.00    0.00      0.00      0.00
## salty snack                             0.00    0.00      0.00      0.00
## long life bakery product                0.01    0.00      0.00      0.00
## berries                                 0.01    0.00      0.00      0.00
## hamburger meat                          0.00    0.00      0.00      0.00
## sugar                                   0.01    0.00      0.00      0.00
## hygiene articles                        0.00    0.00      0.00      0.00
## UHT-milk                                0.00    0.00      0.00      0.00
## onions                                  0.00    0.00      0.00      0.00
## candy                                   0.00    0.00      0.00      0.00
## specialty chocolate                     0.00    0.00      0.00      0.00
## butter milk                             0.00    0.00      0.00      0.00
## oil                                     0.00    0.00      0.00      0.00
## frozen meals                            0.00    0.00      0.00      0.00
## misc. beverages                         0.00    0.00      0.00      0.00
## specialty bar                           0.00    0.00      0.00      0.00
## ham                                     0.00    0.00      0.00      0.00
## beverages                               0.00    0.00      0.00      0.00
## meat                                    0.00    0.00      0.00      0.00
## ice cream                               0.00    0.00      0.00      0.00
## sliced cheese                           0.00    0.00      0.00      0.00
## hard cheese                             0.00    0.00      0.00      0.00
## noodles                                 0.00    0.00      0.00      0.00
## grapes                                  0.00    0.00      0.00      0.00
## cat food                                0.00    0.00      0.00      0.00
## chewing gum                             0.00    0.00      0.00      0.00
## soda                                    0.00    0.00      0.00      0.00
## detergent                               0.00    0.00      0.00      0.00
## red/blush wine                          0.00    0.00      0.00      0.00
## white wine                              0.00    0.00      0.00      0.00
## turkey                                  0.00    0.00      0.00      0.00
## dishes                                  0.00    0.00      0.00      0.00
## bottled water                           0.00    0.00      0.00      0.00
## flour                                   0.00    0.00      0.00      0.00
## semi-finished bread                     0.00    0.00      0.00      0.00
## baking powder                           0.00    0.00      0.00      0.00
## pickled vegetables                      0.00    0.00      0.00      0.00
## herbs                                   0.00    0.00      0.00      0.00
## tropical herbs                          0.00    0.00      0.00      0.00
## soft cheese                             0.00    0.00      0.00      0.00
## tea                                     0.00    0.00      0.00      0.00
## processed cheese                        0.00    0.00      0.00      0.00
## sausage                                 0.00    0.00      0.00      0.00
## pasta                                   0.00    0.00      0.00      0.00
## citrus herbs                            0.00    0.00      0.00      0.00
## potted plants                           0.00    0.00      0.00      0.00
## canned fish                             0.00    0.00      0.00      0.00
## seasonal products                       0.00    0.00      0.00      0.00
## cake bar                                0.00    0.00      0.00      0.00
## carrots                                 0.00    0.00      0.00      0.00
## mustard                                 0.00    0.00      0.00      0.00
## packaged fruit/vegetables               0.00    0.00      0.00      0.00
## spread cheese                           0.00    0.00      0.00      0.00
## frozen dessert                          0.00    0.00      0.00      0.00
## frozen fish                             0.00    0.00      0.00      0.00
## cling film/bags                         0.00    0.00      0.00      0.00
## salt                                    0.00    0.00      0.00      0.00
## liquor                                  0.00    0.00      0.00      0.00
## canned vegetables                       0.00    0.00      0.00      0.00
## bottled beer                            0.00    0.00      0.00      0.00
## flower (seeds)                          0.00    0.00      0.00      0.00
## cooking oil                             0.00    0.00      0.00      0.00
## dish cleaner                            0.00    0.00      0.00      0.00
## condensed milk                          0.00    0.00      0.00      0.00
## roll products                           0.00    0.00      0.00      0.00
## photo/film                              0.00    0.00      0.00      0.00
## pet care                                0.00    0.00      0.00      0.00
## chocolate marshmallow                   0.00    0.00      0.00      0.00
## herbs/vegetable juice                   0.00    0.00      0.00      0.00
## whole milk                              0.00    0.00      0.00      0.00
## candles                                 0.00    0.00      0.00      0.00
## mayonnaise                              0.00    0.00      0.00      0.00
## Instant food products                   0.00    0.00      0.00      0.00
## sweet spreads                           0.00    0.00      0.00      0.00
## liquor (appetizer)                      0.00    0.00      0.00      0.00
## specialty cheese                        0.00    0.00      0.00      0.00
## frozen potato products                  0.00    0.00      0.00      0.00
## house keeping products                  0.00    0.00      0.00      0.00
## dog food                                0.00    0.00      0.00      0.00
## soy                                     0.00    0.00      0.00      0.00
## instant coffee                          0.00    0.00      0.00      0.00
## pip herbs                               0.00    0.00      0.00      0.00
## zwieback                                0.00    0.00      0.00      0.00
## finished products                       0.00    0.00      0.00      0.00
## popcorn                                 0.00    0.00      0.00      0.00
## vinegar                                 0.00    0.00      0.00      0.00
## soups                                   0.00    0.00      0.00      0.00
## female sanitary products                0.00    0.00      0.00      0.00
## sparkling wine                          0.00    0.00      0.00      0.00
## dental care                             0.00    0.00      0.00      0.00
## cereals                                 0.00    0.00      0.00      0.00
## kitchen towels                          0.00    0.00      0.00      0.00
## curd cheese                             0.00    0.00      0.00      0.00
## other vegetables                        0.00    0.00      0.00      0.00
## rolls/buns                              0.00    0.00      0.00      0.00
## softener                                0.00    0.00      0.00      0.00
## cleaner                                 0.00    0.00      0.00      0.00
## spices                                  0.00    0.00      0.00      0.00
## jam                                     0.00    0.00      0.00      0.00
## sauces                                  0.00    0.00      0.00      0.00
## rum                                     0.00    0.00      0.00      0.00
## liver loaf                              0.00    0.00      0.00      0.00
## male cosmetics                          0.00    0.00      0.00      0.00
## meat spreads                            0.00    0.00      0.00      0.00
## packaged herbs/vegetables               0.00    0.00      0.00      0.00
## brandy                                  0.00    0.00      0.00      0.00
## ketchup                                 0.00    0.00      0.00      0.00
## abrasive cleaner                        0.00    0.00      0.00      0.00
## light bulbs                             0.00    0.00      0.00      0.00
## artif. sweetener                        0.00    0.00      0.00      0.00
## nuts/prunes                             0.00    0.00      0.00      0.00
## specialty fat                           0.00    0.00      0.00      0.00
## skin care                               0.00    0.00      0.00      0.00
## fish                                    0.00    0.00      0.00      0.00
## potato products                         0.00    0.00      0.00      0.00
## root vegetables                         0.00    0.00      0.00      0.00
## snack products                          0.00    0.00      0.00      0.00
## nut snack                               0.00    0.00      0.00      0.00
## soap                                    0.00    0.00      0.00      0.00
## syrup                                   0.00    0.00      0.00      0.00
## bathroom cleaner                        0.00    0.00      0.00      0.00
## canned fruit                            0.00    0.00      0.00      0.00
## cookware                                0.00    0.00      0.00      0.00
## cooking chocolate                       0.00    0.00      0.00      0.00
## tidbits                                 0.00    0.00      0.00      0.00
## cocoa drinks                            0.00    0.00      0.00      0.00
## pudding powder                          0.00    0.00      0.00      0.00
## ready soups                             0.00    0.00      0.00      0.00
## organic marinated meat                  0.00    0.00      0.00      0.00
## flower soil/fertilizer                  0.00    0.00      0.00      0.00
## organic products                        0.00    0.00      0.00      0.00
## pot plants                              0.00    0.00      0.00      0.00
## prosecco                                0.00    0.00      0.00      0.00
## frankfurter                             0.00    0.00      0.00      0.00
## decalcifier                             0.00    0.00      0.00      0.00
## honey                                   0.00    0.00      0.00      0.00
## specialty vegetables                    0.00    0.00      0.00      0.00
## cream                                   0.00    0.00      0.00      0.00
## hair spray                              0.00    0.00      0.00      0.00
## frozen fruits                           0.00    0.00      0.00      0.00
## rubbing alcohol                         0.00    0.00      0.00      0.00
## liqueur                                 0.00    0.00      0.00      0.00
## make up remover                         0.00    0.00      0.00      0.00
## salad dressing                          0.00    0.00      0.00      0.00
## frozen chicken                          0.00    0.00      0.00      0.00
## whisky                                  0.00    0.00      0.00      0.00
## baby cosmetics                          0.00    0.00      0.00      0.00
## toilet cleaner                          0.00    0.00      0.00      0.00
## bags                                    0.00    0.00      0.00      0.00
## canned herbs                            0.00    0.00      0.00      0.00
## kitchen utensil                         0.00    0.00      0.00      0.00
## preservation products                   0.00    0.00      0.00      0.00
## baby food                               0.00    0.00      0.00      0.00
## frozen herbss                           0.00    0.00      0.00      0.00
## organic sausage                         0.00    0.00      0.00      0.00
## sound storage medium                    0.00    0.00      0.00      0.00
##                           brown bread fruit/vegetable juice domestic eggs
## rice                             0.02                  0.02          0.03
## veggies                          0.02                  0.02          0.02
## loaf                             0.01                  0.01          0.01
## coke                             0.01                  0.02          0.01
## yogurt                           0.01                  0.02          0.01
## vegetables                       0.01                  0.01          0.01
## mineral water                    0.01                  0.01          0.01
## Plastic bags                     0.01                  0.01          0.01
## tropical fruit                   0.01                  0.01          0.01
## marinated meat                   0.01                  0.01          0.01
## pies/pasties                     0.01                  0.01          0.01
## newspapers                       0.01                  0.01          0.01
## citrus                           0.01                  0.01          0.01
## whipped/sour cream               0.00                  0.01          0.01
## heinken                          0.00                  0.01          0.00
## green tea                        0.00                  0.00          0.00
## pip fruit                        0.01                  0.01          0.01
## brown bread                      0.06                  0.01          0.01
## fruit/vegetable juice            0.01                  0.06          0.01
## domestic eggs                    0.01                  0.01          0.06
## coffee                           0.00                  0.01          0.01
## margarine                        0.01                  0.01          0.01
## beef                             0.00                  0.00          0.01
## curd                             0.00                  0.00          0.01
## butter                           0.01                  0.01          0.01
## marinated meats                  0.01                  0.00          0.01
## napkins                          0.00                  0.01          0.01
## halal meat                       0.00                  0.00          0.00
## chocolate                        0.00                  0.01          0.00
## frozen vegetables                0.00                  0.01          0.01
## chicken                          0.00                  0.00          0.01
## white bread                      0.00                  0.01          0.01
## cream cheese                     0.00                  0.00          0.01
## waffles                          0.00                  0.00          0.00
## dessert                          0.00                  0.01          0.00
## salty snack                      0.00                  0.01          0.00
## long life bakery product         0.00                  0.01          0.00
## berries                          0.00                  0.00          0.00
## hamburger meat                   0.00                  0.00          0.00
## sugar                            0.00                  0.00          0.00
## hygiene articles                 0.00                  0.00          0.01
## UHT-milk                         0.00                  0.00          0.00
## onions                           0.00                  0.00          0.01
## candy                            0.00                  0.00          0.00
## specialty chocolate              0.00                  0.00          0.00
## butter milk                      0.00                  0.00          0.00
## oil                              0.00                  0.00          0.00
## frozen meals                     0.00                  0.00          0.00
## misc. beverages                  0.00                  0.00          0.00
## specialty bar                    0.00                  0.00          0.00
## ham                              0.00                  0.00          0.00
## beverages                        0.00                  0.00          0.00
## meat                             0.00                  0.00          0.00
## ice cream                        0.00                  0.00          0.00
## sliced cheese                    0.00                  0.00          0.00
## hard cheese                      0.00                  0.00          0.00
## noodles                          0.00                  0.00          0.00
## grapes                           0.00                  0.00          0.00
## cat food                         0.00                  0.00          0.00
## chewing gum                      0.00                  0.00          0.00
## soda                             0.00                  0.00          0.00
## detergent                        0.00                  0.00          0.00
## red/blush wine                   0.00                  0.00          0.00
## white wine                       0.00                  0.00          0.00
## turkey                           0.00                  0.00          0.00
## dishes                           0.00                  0.00          0.00
## bottled water                    0.00                  0.00          0.00
## flour                            0.00                  0.00          0.00
## semi-finished bread              0.00                  0.00          0.00
## baking powder                    0.00                  0.00          0.00
## pickled vegetables               0.00                  0.00          0.00
## herbs                            0.00                  0.00          0.00
## tropical herbs                   0.00                  0.00          0.00
## soft cheese                      0.00                  0.00          0.00
## tea                              0.00                  0.00          0.00
## processed cheese                 0.00                  0.00          0.00
## sausage                          0.00                  0.00          0.00
## pasta                            0.00                  0.00          0.00
## citrus herbs                     0.00                  0.00          0.00
## potted plants                    0.00                  0.00          0.00
## canned fish                      0.00                  0.00          0.00
## seasonal products                0.00                  0.00          0.00
## cake bar                         0.00                  0.00          0.00
## carrots                          0.00                  0.00          0.00
## mustard                          0.00                  0.00          0.00
## packaged fruit/vegetables        0.00                  0.00          0.00
## spread cheese                    0.00                  0.00          0.00
## frozen dessert                   0.00                  0.00          0.00
## frozen fish                      0.00                  0.00          0.00
## cling film/bags                  0.00                  0.00          0.00
## salt                             0.00                  0.00          0.00
## liquor                           0.00                  0.00          0.00
## canned vegetables                0.00                  0.00          0.00
## bottled beer                     0.00                  0.00          0.00
## flower (seeds)                   0.00                  0.00          0.00
## cooking oil                      0.00                  0.00          0.00
## dish cleaner                     0.00                  0.00          0.00
## condensed milk                   0.00                  0.00          0.00
## roll products                    0.00                  0.00          0.00
## photo/film                       0.00                  0.00          0.00
## pet care                         0.00                  0.00          0.00
## chocolate marshmallow            0.00                  0.00          0.00
## herbs/vegetable juice            0.00                  0.00          0.00
## whole milk                       0.00                  0.00          0.00
## candles                          0.00                  0.00          0.00
## mayonnaise                       0.00                  0.00          0.00
## Instant food products            0.00                  0.00          0.00
## sweet spreads                    0.00                  0.00          0.00
## liquor (appetizer)               0.00                  0.00          0.00
## specialty cheese                 0.00                  0.00          0.00
## frozen potato products           0.00                  0.00          0.00
## house keeping products           0.00                  0.00          0.00
## dog food                         0.00                  0.00          0.00
## soy                              0.00                  0.00          0.00
## instant coffee                   0.00                  0.00          0.00
## pip herbs                        0.00                  0.00          0.00
## zwieback                         0.00                  0.00          0.00
## finished products                0.00                  0.00          0.00
## popcorn                          0.00                  0.00          0.00
## vinegar                          0.00                  0.00          0.00
## soups                            0.00                  0.00          0.00
## female sanitary products         0.00                  0.00          0.00
## sparkling wine                   0.00                  0.00          0.00
## dental care                      0.00                  0.00          0.00
## cereals                          0.00                  0.00          0.00
## kitchen towels                   0.00                  0.00          0.00
## curd cheese                      0.00                  0.00          0.00
## other vegetables                 0.00                  0.00          0.00
## rolls/buns                       0.00                  0.00          0.00
## softener                         0.00                  0.00          0.00
## cleaner                          0.00                  0.00          0.00
## spices                           0.00                  0.00          0.00
## jam                              0.00                  0.00          0.00
## sauces                           0.00                  0.00          0.00
## rum                              0.00                  0.00          0.00
## liver loaf                       0.00                  0.00          0.00
## male cosmetics                   0.00                  0.00          0.00
## meat spreads                     0.00                  0.00          0.00
## packaged herbs/vegetables        0.00                  0.00          0.00
## brandy                           0.00                  0.00          0.00
## ketchup                          0.00                  0.00          0.00
## abrasive cleaner                 0.00                  0.00          0.00
## light bulbs                      0.00                  0.00          0.00
## artif. sweetener                 0.00                  0.00          0.00
## nuts/prunes                      0.00                  0.00          0.00
## specialty fat                    0.00                  0.00          0.00
## skin care                        0.00                  0.00          0.00
## fish                             0.00                  0.00          0.00
## potato products                  0.00                  0.00          0.00
## root vegetables                  0.00                  0.00          0.00
## snack products                   0.00                  0.00          0.00
## nut snack                        0.00                  0.00          0.00
## soap                             0.00                  0.00          0.00
## syrup                            0.00                  0.00          0.00
## bathroom cleaner                 0.00                  0.00          0.00
## canned fruit                     0.00                  0.00          0.00
## cookware                         0.00                  0.00          0.00
## cooking chocolate                0.00                  0.00          0.00
## tidbits                          0.00                  0.00          0.00
## cocoa drinks                     0.00                  0.00          0.00
## pudding powder                   0.00                  0.00          0.00
## ready soups                      0.00                  0.00          0.00
## organic marinated meat           0.00                  0.00          0.00
## flower soil/fertilizer           0.00                  0.00          0.00
## organic products                 0.00                  0.00          0.00
## pot plants                       0.00                  0.00          0.00
## prosecco                         0.00                  0.00          0.00
## frankfurter                      0.00                  0.00          0.00
## decalcifier                      0.00                  0.00          0.00
## honey                            0.00                  0.00          0.00
## specialty vegetables             0.00                  0.00          0.00
## cream                            0.00                  0.00          0.00
## hair spray                       0.00                  0.00          0.00
## frozen fruits                    0.00                  0.00          0.00
## rubbing alcohol                  0.00                  0.00          0.00
## liqueur                          0.00                  0.00          0.00
## make up remover                  0.00                  0.00          0.00
## salad dressing                   0.00                  0.00          0.00
## frozen chicken                   0.00                  0.00          0.00
## whisky                           0.00                  0.00          0.00
## baby cosmetics                   0.00                  0.00          0.00
## toilet cleaner                   0.00                  0.00          0.00
## bags                             0.00                  0.00          0.00
## canned herbs                     0.00                  0.00          0.00
## kitchen utensil                  0.00                  0.00          0.00
## preservation products            0.00                  0.00          0.00
## baby food                        0.00                  0.00          0.00
## frozen herbss                    0.00                  0.00          0.00
## organic sausage                  0.00                  0.00          0.00
## sound storage medium             0.00                  0.00          0.00
##                           coffee margarine beef curd butter marinated meats
## rice                        0.02      0.02 0.02 0.03   0.03            0.02
## veggies                     0.01      0.02 0.02 0.02   0.02            0.01
## loaf                        0.01      0.01 0.01 0.01   0.01            0.02
## coke                        0.01      0.01 0.01 0.01   0.01            0.01
## yogurt                      0.01      0.01 0.01 0.02   0.01            0.01
## vegetables                  0.01      0.01 0.02 0.01   0.01            0.01
## mineral water               0.01      0.01 0.01 0.01   0.01            0.01
## Plastic bags                0.01      0.01 0.00 0.01   0.00            0.01
## tropical fruit              0.01      0.01 0.01 0.01   0.01            0.01
## marinated meat              0.01      0.01 0.00 0.01   0.01            0.01
## pies/pasties                0.01      0.01 0.01 0.01   0.01            0.01
## newspapers                  0.01      0.01 0.01 0.01   0.01            0.00
## citrus                      0.01      0.01 0.01 0.01   0.01            0.01
## whipped/sour cream          0.01      0.01 0.01 0.01   0.01            0.01
## heinken                     0.00      0.01 0.00 0.00   0.01            0.00
## green tea                   0.00      0.00 0.00 0.00   0.00            0.00
## pip fruit                   0.01      0.01 0.00 0.01   0.01            0.01
## brown bread                 0.00      0.01 0.00 0.00   0.01            0.01
## fruit/vegetable juice       0.01      0.01 0.00 0.00   0.01            0.00
## domestic eggs               0.01      0.01 0.01 0.01   0.01            0.01
## coffee                      0.06      0.00 0.00 0.00   0.00            0.00
## margarine                   0.00      0.06 0.01 0.01   0.01            0.01
## beef                        0.00      0.01 0.06 0.01   0.01            0.00
## curd                        0.00      0.01 0.01 0.06   0.01            0.00
## butter                      0.00      0.01 0.01 0.01   0.06            0.00
## marinated meats             0.00      0.01 0.00 0.00   0.00            0.05
## napkins                     0.00      0.00 0.00 0.01   0.00            0.00
## halal meat                  0.00      0.01 0.01 0.00   0.00            0.01
## chocolate                   0.00      0.00 0.00 0.00   0.01            0.00
## frozen vegetables           0.00      0.00 0.00 0.00   0.01            0.00
## chicken                     0.00      0.00 0.00 0.00   0.01            0.00
## white bread                 0.00      0.00 0.00 0.00   0.00            0.00
## cream cheese                0.00      0.00 0.00 0.01   0.00            0.00
## waffles                     0.00      0.00 0.00 0.00   0.00            0.00
## dessert                     0.00      0.00 0.00 0.01   0.00            0.00
## salty snack                 0.00      0.00 0.00 0.00   0.00            0.00
## long life bakery product    0.00      0.00 0.00 0.00   0.00            0.00
## berries                     0.00      0.00 0.01 0.00   0.00            0.00
## hamburger meat              0.00      0.00 0.00 0.00   0.00            0.00
## sugar                       0.00      0.01 0.00 0.00   0.00            0.00
## hygiene articles            0.00      0.00 0.00 0.00   0.00            0.00
## UHT-milk                    0.00      0.00 0.00 0.00   0.00            0.00
## onions                      0.00      0.00 0.00 0.00   0.00            0.00
## candy                       0.00      0.00 0.00 0.00   0.00            0.00
## specialty chocolate         0.00      0.00 0.00 0.00   0.00            0.00
## butter milk                 0.00      0.00 0.00 0.00   0.00            0.00
## oil                         0.00      0.00 0.00 0.00   0.00            0.00
## frozen meals                0.00      0.00 0.00 0.00   0.00            0.00
## misc. beverages             0.00      0.00 0.00 0.00   0.00            0.00
## specialty bar               0.00      0.00 0.00 0.00   0.00            0.00
## ham                         0.00      0.00 0.00 0.00   0.00            0.00
## beverages                   0.00      0.00 0.00 0.00   0.00            0.00
## meat                        0.00      0.00 0.00 0.00   0.00            0.00
## ice cream                   0.00      0.00 0.00 0.00   0.00            0.00
## sliced cheese               0.00      0.00 0.00 0.00   0.00            0.00
## hard cheese                 0.00      0.00 0.00 0.00   0.00            0.00
## noodles                     0.00      0.00 0.00 0.00   0.00            0.00
## grapes                      0.00      0.00 0.00 0.00   0.00            0.00
## cat food                    0.00      0.00 0.00 0.00   0.00            0.00
## chewing gum                 0.00      0.00 0.00 0.00   0.00            0.00
## soda                        0.00      0.00 0.00 0.00   0.00            0.00
## detergent                   0.00      0.00 0.00 0.00   0.00            0.00
## red/blush wine              0.00      0.00 0.00 0.00   0.00            0.00
## white wine                  0.00      0.00 0.00 0.00   0.00            0.00
## turkey                      0.00      0.00 0.00 0.00   0.00            0.00
## dishes                      0.00      0.00 0.00 0.00   0.00            0.00
## bottled water               0.00      0.00 0.00 0.00   0.00            0.00
## flour                       0.00      0.00 0.00 0.00   0.00            0.00
## semi-finished bread         0.00      0.00 0.00 0.00   0.00            0.00
## baking powder               0.00      0.00 0.00 0.00   0.00            0.00
## pickled vegetables          0.00      0.00 0.00 0.00   0.00            0.00
## herbs                       0.00      0.00 0.00 0.00   0.00            0.00
## tropical herbs              0.00      0.00 0.00 0.00   0.00            0.00
## soft cheese                 0.00      0.00 0.00 0.00   0.00            0.00
## tea                         0.00      0.00 0.00 0.00   0.00            0.00
## processed cheese            0.00      0.00 0.00 0.00   0.00            0.00
## sausage                     0.00      0.00 0.00 0.00   0.00            0.00
## pasta                       0.00      0.00 0.00 0.00   0.00            0.00
## citrus herbs                0.00      0.00 0.00 0.00   0.00            0.00
## potted plants               0.00      0.00 0.00 0.00   0.00            0.00
## canned fish                 0.00      0.00 0.00 0.00   0.00            0.00
## seasonal products           0.00      0.00 0.00 0.00   0.00            0.00
## cake bar                    0.00      0.00 0.00 0.00   0.00            0.00
## carrots                     0.00      0.00 0.00 0.00   0.00            0.00
## mustard                     0.00      0.00 0.00 0.00   0.00            0.00
## packaged fruit/vegetables   0.00      0.00 0.00 0.00   0.00            0.00
## spread cheese               0.00      0.00 0.00 0.00   0.00            0.00
## frozen dessert              0.00      0.00 0.00 0.00   0.00            0.00
## frozen fish                 0.00      0.00 0.00 0.00   0.00            0.00
## cling film/bags             0.00      0.00 0.00 0.00   0.00            0.00
## salt                        0.00      0.00 0.00 0.00   0.00            0.00
## liquor                      0.00      0.00 0.00 0.00   0.00            0.00
## canned vegetables           0.00      0.00 0.00 0.00   0.00            0.00
## bottled beer                0.00      0.00 0.00 0.00   0.00            0.00
## flower (seeds)              0.00      0.00 0.00 0.00   0.00            0.00
## cooking oil                 0.00      0.00 0.00 0.00   0.00            0.00
## dish cleaner                0.00      0.00 0.00 0.00   0.00            0.00
## condensed milk              0.00      0.00 0.00 0.00   0.00            0.00
## roll products               0.00      0.00 0.00 0.00   0.00            0.00
## photo/film                  0.00      0.00 0.00 0.00   0.00            0.00
## pet care                    0.00      0.00 0.00 0.00   0.00            0.00
## chocolate marshmallow       0.00      0.00 0.00 0.00   0.00            0.00
## herbs/vegetable juice       0.00      0.00 0.00 0.00   0.00            0.00
## whole milk                  0.00      0.00 0.00 0.00   0.00            0.00
## candles                     0.00      0.00 0.00 0.00   0.00            0.00
## mayonnaise                  0.00      0.00 0.00 0.00   0.00            0.00
## Instant food products       0.00      0.00 0.00 0.00   0.00            0.00
## sweet spreads               0.00      0.00 0.00 0.00   0.00            0.00
## liquor (appetizer)          0.00      0.00 0.00 0.00   0.00            0.00
## specialty cheese            0.00      0.00 0.00 0.00   0.00            0.00
## frozen potato products      0.00      0.00 0.00 0.00   0.00            0.00
## house keeping products      0.00      0.00 0.00 0.00   0.00            0.00
## dog food                    0.00      0.00 0.00 0.00   0.00            0.00
## soy                         0.00      0.00 0.00 0.00   0.00            0.00
## instant coffee              0.00      0.00 0.00 0.00   0.00            0.00
## pip herbs                   0.00      0.00 0.00 0.00   0.00            0.00
## zwieback                    0.00      0.00 0.00 0.00   0.00            0.00
## finished products           0.00      0.00 0.00 0.00   0.00            0.00
## popcorn                     0.00      0.00 0.00 0.00   0.00            0.00
## vinegar                     0.00      0.00 0.00 0.00   0.00            0.00
## soups                       0.00      0.00 0.00 0.00   0.00            0.00
## female sanitary products    0.00      0.00 0.00 0.00   0.00            0.00
## sparkling wine              0.00      0.00 0.00 0.00   0.00            0.00
## dental care                 0.00      0.00 0.00 0.00   0.00            0.00
## cereals                     0.00      0.00 0.00 0.00   0.00            0.00
## kitchen towels              0.00      0.00 0.00 0.00   0.00            0.00
## curd cheese                 0.00      0.00 0.00 0.00   0.00            0.00
## other vegetables            0.00      0.00 0.00 0.00   0.00            0.00
## rolls/buns                  0.00      0.00 0.00 0.00   0.00            0.00
## softener                    0.00      0.00 0.00 0.00   0.00            0.00
## cleaner                     0.00      0.00 0.00 0.00   0.00            0.00
## spices                      0.00      0.00 0.00 0.00   0.00            0.00
## jam                         0.00      0.00 0.00 0.00   0.00            0.00
## sauces                      0.00      0.00 0.00 0.00   0.00            0.00
## rum                         0.00      0.00 0.00 0.00   0.00            0.00
## liver loaf                  0.00      0.00 0.00 0.00   0.00            0.00
## male cosmetics              0.00      0.00 0.00 0.00   0.00            0.00
## meat spreads                0.00      0.00 0.00 0.00   0.00            0.00
## packaged herbs/vegetables   0.00      0.00 0.00 0.00   0.00            0.00
## brandy                      0.00      0.00 0.00 0.00   0.00            0.00
## ketchup                     0.00      0.00 0.00 0.00   0.00            0.00
## abrasive cleaner            0.00      0.00 0.00 0.00   0.00            0.00
## light bulbs                 0.00      0.00 0.00 0.00   0.00            0.00
## artif. sweetener            0.00      0.00 0.00 0.00   0.00            0.00
## nuts/prunes                 0.00      0.00 0.00 0.00   0.00            0.00
## specialty fat               0.00      0.00 0.00 0.00   0.00            0.00
## skin care                   0.00      0.00 0.00 0.00   0.00            0.00
## fish                        0.00      0.00 0.00 0.00   0.00            0.00
## potato products             0.00      0.00 0.00 0.00   0.00            0.00
## root vegetables             0.00      0.00 0.00 0.00   0.00            0.00
## snack products              0.00      0.00 0.00 0.00   0.00            0.00
## nut snack                   0.00      0.00 0.00 0.00   0.00            0.00
## soap                        0.00      0.00 0.00 0.00   0.00            0.00
## syrup                       0.00      0.00 0.00 0.00   0.00            0.00
## bathroom cleaner            0.00      0.00 0.00 0.00   0.00            0.00
## canned fruit                0.00      0.00 0.00 0.00   0.00            0.00
## cookware                    0.00      0.00 0.00 0.00   0.00            0.00
## cooking chocolate           0.00      0.00 0.00 0.00   0.00            0.00
## tidbits                     0.00      0.00 0.00 0.00   0.00            0.00
## cocoa drinks                0.00      0.00 0.00 0.00   0.00            0.00
## pudding powder              0.00      0.00 0.00 0.00   0.00            0.00
## ready soups                 0.00      0.00 0.00 0.00   0.00            0.00
## organic marinated meat      0.00      0.00 0.00 0.00   0.00            0.00
## flower soil/fertilizer      0.00      0.00 0.00 0.00   0.00            0.00
## organic products            0.00      0.00 0.00 0.00   0.00            0.00
## pot plants                  0.00      0.00 0.00 0.00   0.00            0.00
## prosecco                    0.00      0.00 0.00 0.00   0.00            0.00
## frankfurter                 0.00      0.00 0.00 0.00   0.00            0.00
## decalcifier                 0.00      0.00 0.00 0.00   0.00            0.00
## honey                       0.00      0.00 0.00 0.00   0.00            0.00
## specialty vegetables        0.00      0.00 0.00 0.00   0.00            0.00
## cream                       0.00      0.00 0.00 0.00   0.00            0.00
## hair spray                  0.00      0.00 0.00 0.00   0.00            0.00
## frozen fruits               0.00      0.00 0.00 0.00   0.00            0.00
## rubbing alcohol             0.00      0.00 0.00 0.00   0.00            0.00
## liqueur                     0.00      0.00 0.00 0.00   0.00            0.00
## make up remover             0.00      0.00 0.00 0.00   0.00            0.00
## salad dressing              0.00      0.00 0.00 0.00   0.00            0.00
## frozen chicken              0.00      0.00 0.00 0.00   0.00            0.00
## whisky                      0.00      0.00 0.00 0.00   0.00            0.00
## baby cosmetics              0.00      0.00 0.00 0.00   0.00            0.00
## toilet cleaner              0.00      0.00 0.00 0.00   0.00            0.00
## bags                        0.00      0.00 0.00 0.00   0.00            0.00
## canned herbs                0.00      0.00 0.00 0.00   0.00            0.00
## kitchen utensil             0.00      0.00 0.00 0.00   0.00            0.00
## preservation products       0.00      0.00 0.00 0.00   0.00            0.00
## baby food                   0.00      0.00 0.00 0.00   0.00            0.00
## frozen herbss               0.00      0.00 0.00 0.00   0.00            0.00
## organic sausage             0.00      0.00 0.00 0.00   0.00            0.00
## sound storage medium        0.00      0.00 0.00 0.00   0.00            0.00
##                           napkins halal meat chocolate frozen vegetables
## rice                         0.02       0.02      0.02              0.02
## veggies                      0.01       0.02      0.01              0.02
## loaf                         0.01       0.01      0.01              0.01
## coke                         0.01       0.01      0.01              0.01
## yogurt                       0.01       0.01      0.01              0.01
## vegetables                   0.01       0.01      0.01              0.01
## mineral water                0.01       0.01      0.01              0.01
## Plastic bags                 0.01       0.01      0.01              0.00
## tropical fruit               0.01       0.01      0.01              0.01
## marinated meat               0.01       0.01      0.01              0.01
## pies/pasties                 0.01       0.01      0.01              0.00
## newspapers                   0.01       0.01      0.01              0.00
## citrus                       0.01       0.01      0.01              0.01
## whipped/sour cream           0.01       0.01      0.00              0.01
## heinken                      0.00       0.00      0.00              0.00
## green tea                    0.00       0.00      0.00              0.00
## pip fruit                    0.01       0.01      0.01              0.01
## brown bread                  0.00       0.00      0.00              0.00
## fruit/vegetable juice        0.01       0.00      0.01              0.01
## domestic eggs                0.01       0.00      0.00              0.01
## coffee                       0.00       0.00      0.00              0.00
## margarine                    0.00       0.01      0.00              0.00
## beef                         0.00       0.01      0.00              0.00
## curd                         0.01       0.00      0.00              0.00
## butter                       0.00       0.00      0.01              0.01
## marinated meats              0.00       0.01      0.00              0.00
## napkins                      0.05       0.00      0.00              0.00
## halal meat                   0.00       0.05      0.00              0.01
## chocolate                    0.00       0.00      0.05              0.00
## frozen vegetables            0.00       0.01      0.00              0.05
## chicken                      0.00       0.01      0.00              0.01
## white bread                  0.00       0.00      0.00              0.00
## cream cheese                 0.00       0.00      0.00              0.00
## waffles                      0.00       0.00      0.01              0.00
## dessert                      0.00       0.00      0.00              0.00
## salty snack                  0.00       0.00      0.00              0.00
## long life bakery product     0.00       0.00      0.00              0.00
## berries                      0.00       0.00      0.00              0.00
## hamburger meat               0.00       0.00      0.00              0.00
## sugar                        0.00       0.00      0.00              0.00
## hygiene articles             0.01       0.00      0.00              0.00
## UHT-milk                     0.00       0.00      0.00              0.00
## onions                       0.00       0.00      0.00              0.00
## candy                        0.00       0.00      0.00              0.00
## specialty chocolate          0.00       0.00      0.00              0.00
## butter milk                  0.00       0.00      0.00              0.00
## oil                          0.00       0.00      0.00              0.00
## frozen meals                 0.00       0.00      0.00              0.00
## misc. beverages              0.00       0.00      0.00              0.00
## specialty bar                0.00       0.00      0.00              0.00
## ham                          0.00       0.00      0.00              0.00
## beverages                    0.00       0.00      0.00              0.00
## meat                         0.00       0.00      0.00              0.00
## ice cream                    0.00       0.00      0.00              0.00
## sliced cheese                0.00       0.00      0.00              0.00
## hard cheese                  0.00       0.00      0.00              0.00
## noodles                      0.00       0.00      0.00              0.00
## grapes                       0.00       0.00      0.00              0.00
## cat food                     0.00       0.00      0.00              0.00
## chewing gum                  0.00       0.00      0.00              0.00
## soda                         0.00       0.00      0.00              0.00
## detergent                    0.00       0.00      0.00              0.00
## red/blush wine               0.00       0.00      0.00              0.00
## white wine                   0.00       0.00      0.00              0.00
## turkey                       0.00       0.00      0.00              0.00
## dishes                       0.00       0.00      0.00              0.00
## bottled water                0.00       0.00      0.00              0.00
## flour                        0.00       0.00      0.00              0.00
## semi-finished bread          0.00       0.00      0.00              0.00
## baking powder                0.00       0.00      0.00              0.00
## pickled vegetables           0.00       0.00      0.00              0.00
## herbs                        0.00       0.00      0.00              0.00
## tropical herbs               0.00       0.00      0.00              0.00
## soft cheese                  0.00       0.00      0.00              0.00
## tea                          0.00       0.00      0.00              0.00
## processed cheese             0.00       0.00      0.00              0.00
## sausage                      0.00       0.00      0.00              0.00
## pasta                        0.00       0.00      0.00              0.00
## citrus herbs                 0.00       0.00      0.00              0.00
## potted plants                0.00       0.00      0.00              0.00
## canned fish                  0.00       0.00      0.00              0.00
## seasonal products            0.00       0.00      0.00              0.00
## cake bar                     0.00       0.00      0.00              0.00
## carrots                      0.00       0.00      0.00              0.00
## mustard                      0.00       0.00      0.00              0.00
## packaged fruit/vegetables    0.00       0.00      0.00              0.00
## spread cheese                0.00       0.00      0.00              0.00
## frozen dessert               0.00       0.00      0.00              0.00
## frozen fish                  0.00       0.00      0.00              0.00
## cling film/bags              0.00       0.00      0.00              0.00
## salt                         0.00       0.00      0.00              0.00
## liquor                       0.00       0.00      0.00              0.00
## canned vegetables            0.00       0.00      0.00              0.00
## bottled beer                 0.00       0.00      0.00              0.00
## flower (seeds)               0.00       0.00      0.00              0.00
## cooking oil                  0.00       0.00      0.00              0.00
## dish cleaner                 0.00       0.00      0.00              0.00
## condensed milk               0.00       0.00      0.00              0.00
## roll products                0.00       0.00      0.00              0.00
## photo/film                   0.00       0.00      0.00              0.00
## pet care                     0.00       0.00      0.00              0.00
## chocolate marshmallow        0.00       0.00      0.00              0.00
## herbs/vegetable juice        0.00       0.00      0.00              0.00
## whole milk                   0.00       0.00      0.00              0.00
## candles                      0.00       0.00      0.00              0.00
## mayonnaise                   0.00       0.00      0.00              0.00
## Instant food products        0.00       0.00      0.00              0.00
## sweet spreads                0.00       0.00      0.00              0.00
## liquor (appetizer)           0.00       0.00      0.00              0.00
## specialty cheese             0.00       0.00      0.00              0.00
## frozen potato products       0.00       0.00      0.00              0.00
## house keeping products       0.00       0.00      0.00              0.00
## dog food                     0.00       0.00      0.00              0.00
## soy                          0.00       0.00      0.00              0.00
## instant coffee               0.00       0.00      0.00              0.00
## pip herbs                    0.00       0.00      0.00              0.00
## zwieback                     0.00       0.00      0.00              0.00
## finished products            0.00       0.00      0.00              0.00
## popcorn                      0.00       0.00      0.00              0.00
## vinegar                      0.00       0.00      0.00              0.00
## soups                        0.00       0.00      0.00              0.00
## female sanitary products     0.00       0.00      0.00              0.00
## sparkling wine               0.00       0.00      0.00              0.00
## dental care                  0.00       0.00      0.00              0.00
## cereals                      0.00       0.00      0.00              0.00
## kitchen towels               0.00       0.00      0.00              0.00
## curd cheese                  0.00       0.00      0.00              0.00
## other vegetables             0.00       0.00      0.00              0.00
## rolls/buns                   0.00       0.00      0.00              0.00
## softener                     0.00       0.00      0.00              0.00
## cleaner                      0.00       0.00      0.00              0.00
## spices                       0.00       0.00      0.00              0.00
## jam                          0.00       0.00      0.00              0.00
## sauces                       0.00       0.00      0.00              0.00
## rum                          0.00       0.00      0.00              0.00
## liver loaf                   0.00       0.00      0.00              0.00
## male cosmetics               0.00       0.00      0.00              0.00
## meat spreads                 0.00       0.00      0.00              0.00
## packaged herbs/vegetables    0.00       0.00      0.00              0.00
## brandy                       0.00       0.00      0.00              0.00
## ketchup                      0.00       0.00      0.00              0.00
## abrasive cleaner             0.00       0.00      0.00              0.00
## light bulbs                  0.00       0.00      0.00              0.00
## artif. sweetener             0.00       0.00      0.00              0.00
## nuts/prunes                  0.00       0.00      0.00              0.00
## specialty fat                0.00       0.00      0.00              0.00
## skin care                    0.00       0.00      0.00              0.00
## fish                         0.00       0.00      0.00              0.00
## potato products              0.00       0.00      0.00              0.00
## root vegetables              0.00       0.00      0.00              0.00
## snack products               0.00       0.00      0.00              0.00
## nut snack                    0.00       0.00      0.00              0.00
## soap                         0.00       0.00      0.00              0.00
## syrup                        0.00       0.00      0.00              0.00
## bathroom cleaner             0.00       0.00      0.00              0.00
## canned fruit                 0.00       0.00      0.00              0.00
## cookware                     0.00       0.00      0.00              0.00
## cooking chocolate            0.00       0.00      0.00              0.00
## tidbits                      0.00       0.00      0.00              0.00
## cocoa drinks                 0.00       0.00      0.00              0.00
## pudding powder               0.00       0.00      0.00              0.00
## ready soups                  0.00       0.00      0.00              0.00
## organic marinated meat       0.00       0.00      0.00              0.00
## flower soil/fertilizer       0.00       0.00      0.00              0.00
## organic products             0.00       0.00      0.00              0.00
## pot plants                   0.00       0.00      0.00              0.00
## prosecco                     0.00       0.00      0.00              0.00
## frankfurter                  0.00       0.00      0.00              0.00
## decalcifier                  0.00       0.00      0.00              0.00
## honey                        0.00       0.00      0.00              0.00
## specialty vegetables         0.00       0.00      0.00              0.00
## cream                        0.00       0.00      0.00              0.00
## hair spray                   0.00       0.00      0.00              0.00
## frozen fruits                0.00       0.00      0.00              0.00
## rubbing alcohol              0.00       0.00      0.00              0.00
## liqueur                      0.00       0.00      0.00              0.00
## make up remover              0.00       0.00      0.00              0.00
## salad dressing               0.00       0.00      0.00              0.00
## frozen chicken               0.00       0.00      0.00              0.00
## whisky                       0.00       0.00      0.00              0.00
## baby cosmetics               0.00       0.00      0.00              0.00
## toilet cleaner               0.00       0.00      0.00              0.00
## bags                         0.00       0.00      0.00              0.00
## canned herbs                 0.00       0.00      0.00              0.00
## kitchen utensil              0.00       0.00      0.00              0.00
## preservation products        0.00       0.00      0.00              0.00
## baby food                    0.00       0.00      0.00              0.00
## frozen herbss                0.00       0.00      0.00              0.00
## organic sausage              0.00       0.00      0.00              0.00
## sound storage medium         0.00       0.00      0.00              0.00
##                           chicken white bread cream cheese waffles dessert
## rice                         0.02        0.02         0.02    0.01    0.01
## veggies                      0.02        0.01         0.01    0.01    0.01
## loaf                         0.01        0.01         0.01    0.01    0.01
## coke                         0.01        0.01         0.01    0.01    0.01
## yogurt                       0.01        0.01         0.01    0.01    0.01
## vegetables                   0.01        0.01         0.01    0.01    0.01
## mineral water                0.00        0.00         0.01    0.00    0.00
## Plastic bags                 0.00        0.01         0.01    0.01    0.01
## tropical fruit               0.01        0.01         0.01    0.01    0.01
## marinated meat               0.00        0.01         0.00    0.00    0.01
## pies/pasties                 0.00        0.01         0.00    0.01    0.01
## newspapers                   0.00        0.00         0.00    0.00    0.00
## citrus                       0.01        0.00         0.00    0.00    0.00
## whipped/sour cream           0.01        0.01         0.01    0.01    0.00
## heinken                      0.00        0.00         0.00    0.00    0.00
## green tea                    0.00        0.00         0.00    0.00    0.00
## pip fruit                    0.00        0.01         0.01    0.00    0.00
## brown bread                  0.00        0.00         0.00    0.00    0.00
## fruit/vegetable juice        0.00        0.01         0.00    0.00    0.01
## domestic eggs                0.01        0.01         0.01    0.00    0.00
## coffee                       0.00        0.00         0.00    0.00    0.00
## margarine                    0.00        0.00         0.00    0.00    0.00
## beef                         0.00        0.00         0.00    0.00    0.00
## curd                         0.00        0.00         0.01    0.00    0.01
## butter                       0.01        0.00         0.00    0.00    0.00
## marinated meats              0.00        0.00         0.00    0.00    0.00
## napkins                      0.00        0.00         0.00    0.00    0.00
## halal meat                   0.01        0.00         0.00    0.00    0.00
## chocolate                    0.00        0.00         0.00    0.01    0.00
## frozen vegetables            0.01        0.00         0.00    0.00    0.00
## chicken                      0.04        0.00         0.00    0.00    0.00
## white bread                  0.00        0.04         0.00    0.00    0.00
## cream cheese                 0.00        0.00         0.04    0.00    0.00
## waffles                      0.00        0.00         0.00    0.04    0.00
## dessert                      0.00        0.00         0.00    0.00    0.04
## salty snack                  0.00        0.00         0.00    0.00    0.00
## long life bakery product     0.00        0.00         0.00    0.00    0.00
## berries                      0.00        0.00         0.00    0.00    0.00
## hamburger meat               0.00        0.00         0.00    0.00    0.00
## sugar                        0.00        0.00         0.00    0.00    0.00
## hygiene articles             0.00        0.00         0.00    0.00    0.00
## UHT-milk                     0.00        0.00         0.00    0.00    0.00
## onions                       0.00        0.00         0.00    0.00    0.00
## candy                        0.00        0.00         0.00    0.00    0.00
## specialty chocolate          0.00        0.00         0.00    0.00    0.00
## butter milk                  0.00        0.00         0.00    0.00    0.00
## oil                          0.00        0.00         0.00    0.00    0.00
## frozen meals                 0.00        0.00         0.00    0.00    0.00
## misc. beverages              0.00        0.00         0.00    0.00    0.00
## specialty bar                0.00        0.00         0.00    0.00    0.00
## ham                          0.00        0.01         0.00    0.00    0.00
## beverages                    0.00        0.00         0.00    0.00    0.00
## meat                         0.00        0.00         0.00    0.00    0.00
## ice cream                    0.00        0.00         0.00    0.00    0.00
## sliced cheese                0.00        0.00         0.00    0.00    0.00
## hard cheese                  0.00        0.00         0.00    0.00    0.00
## noodles                      0.00        0.00         0.00    0.00    0.00
## grapes                       0.00        0.00         0.00    0.00    0.00
## cat food                     0.00        0.00         0.00    0.00    0.00
## chewing gum                  0.00        0.00         0.00    0.00    0.00
## soda                         0.00        0.00         0.00    0.00    0.00
## detergent                    0.00        0.00         0.00    0.00    0.00
## red/blush wine               0.00        0.00         0.00    0.00    0.00
## white wine                   0.00        0.00         0.00    0.00    0.00
## turkey                       0.00        0.00         0.00    0.00    0.00
## dishes                       0.00        0.00         0.00    0.00    0.00
## bottled water                0.00        0.00         0.00    0.00    0.00
## flour                        0.00        0.00         0.00    0.00    0.00
## semi-finished bread          0.00        0.00         0.00    0.00    0.00
## baking powder                0.00        0.00         0.00    0.00    0.00
## pickled vegetables           0.00        0.00         0.00    0.00    0.00
## herbs                        0.00        0.00         0.00    0.00    0.00
## tropical herbs               0.00        0.00         0.00    0.00    0.00
## soft cheese                  0.00        0.00         0.00    0.00    0.00
## tea                          0.00        0.00         0.00    0.00    0.00
## processed cheese             0.00        0.00         0.00    0.00    0.00
## sausage                      0.00        0.00         0.00    0.00    0.00
## pasta                        0.00        0.00         0.00    0.00    0.00
## citrus herbs                 0.00        0.00         0.00    0.00    0.00
## potted plants                0.00        0.00         0.00    0.00    0.00
## canned fish                  0.00        0.00         0.00    0.00    0.00
## seasonal products            0.00        0.00         0.00    0.00    0.00
## cake bar                     0.00        0.00         0.00    0.00    0.00
## carrots                      0.00        0.00         0.00    0.00    0.00
## mustard                      0.00        0.00         0.00    0.00    0.00
## packaged fruit/vegetables    0.00        0.00         0.00    0.00    0.00
## spread cheese                0.00        0.00         0.00    0.00    0.00
## frozen dessert               0.00        0.00         0.00    0.00    0.00
## frozen fish                  0.00        0.00         0.00    0.00    0.00
## cling film/bags              0.00        0.00         0.00    0.00    0.00
## salt                         0.00        0.00         0.00    0.00    0.00
## liquor                       0.00        0.00         0.00    0.00    0.00
## canned vegetables            0.00        0.00         0.00    0.00    0.00
## bottled beer                 0.00        0.00         0.00    0.00    0.00
## flower (seeds)               0.00        0.00         0.00    0.00    0.00
## cooking oil                  0.00        0.00         0.00    0.00    0.00
## dish cleaner                 0.00        0.00         0.00    0.00    0.00
## condensed milk               0.00        0.00         0.00    0.00    0.00
## roll products                0.00        0.00         0.00    0.00    0.00
## photo/film                   0.00        0.00         0.00    0.00    0.00
## pet care                     0.00        0.00         0.00    0.00    0.00
## chocolate marshmallow        0.00        0.00         0.00    0.00    0.00
## herbs/vegetable juice        0.00        0.00         0.00    0.00    0.00
## whole milk                   0.00        0.00         0.00    0.00    0.00
## candles                      0.00        0.00         0.00    0.00    0.00
## mayonnaise                   0.00        0.00         0.00    0.00    0.00
## Instant food products        0.00        0.00         0.00    0.00    0.00
## sweet spreads                0.00        0.00         0.00    0.00    0.00
## liquor (appetizer)           0.00        0.00         0.00    0.00    0.00
## specialty cheese             0.00        0.00         0.00    0.00    0.00
## frozen potato products       0.00        0.00         0.00    0.00    0.00
## house keeping products       0.00        0.00         0.00    0.00    0.00
## dog food                     0.00        0.00         0.00    0.00    0.00
## soy                          0.00        0.00         0.00    0.00    0.00
## instant coffee               0.00        0.00         0.00    0.00    0.00
## pip herbs                    0.00        0.00         0.00    0.00    0.00
## zwieback                     0.00        0.00         0.00    0.00    0.00
## finished products            0.00        0.00         0.00    0.00    0.00
## popcorn                      0.00        0.00         0.00    0.00    0.00
## vinegar                      0.00        0.00         0.00    0.00    0.00
## soups                        0.00        0.00         0.00    0.00    0.00
## female sanitary products     0.00        0.00         0.00    0.00    0.00
## sparkling wine               0.00        0.00         0.00    0.00    0.00
## dental care                  0.00        0.00         0.00    0.00    0.00
## cereals                      0.00        0.00         0.00    0.00    0.00
## kitchen towels               0.00        0.00         0.00    0.00    0.00
## curd cheese                  0.00        0.00         0.00    0.00    0.00
## other vegetables             0.00        0.00         0.00    0.00    0.00
## rolls/buns                   0.00        0.00         0.00    0.00    0.00
## softener                     0.00        0.00         0.00    0.00    0.00
## cleaner                      0.00        0.00         0.00    0.00    0.00
## spices                       0.00        0.00         0.00    0.00    0.00
## jam                          0.00        0.00         0.00    0.00    0.00
## sauces                       0.00        0.00         0.00    0.00    0.00
## rum                          0.00        0.00         0.00    0.00    0.00
## liver loaf                   0.00        0.00         0.00    0.00    0.00
## male cosmetics               0.00        0.00         0.00    0.00    0.00
## meat spreads                 0.00        0.00         0.00    0.00    0.00
## packaged herbs/vegetables    0.00        0.00         0.00    0.00    0.00
## brandy                       0.00        0.00         0.00    0.00    0.00
## ketchup                      0.00        0.00         0.00    0.00    0.00
## abrasive cleaner             0.00        0.00         0.00    0.00    0.00
## light bulbs                  0.00        0.00         0.00    0.00    0.00
## artif. sweetener             0.00        0.00         0.00    0.00    0.00
## nuts/prunes                  0.00        0.00         0.00    0.00    0.00
## specialty fat                0.00        0.00         0.00    0.00    0.00
## skin care                    0.00        0.00         0.00    0.00    0.00
## fish                         0.00        0.00         0.00    0.00    0.00
## potato products              0.00        0.00         0.00    0.00    0.00
## root vegetables              0.00        0.00         0.00    0.00    0.00
## snack products               0.00        0.00         0.00    0.00    0.00
## nut snack                    0.00        0.00         0.00    0.00    0.00
## soap                         0.00        0.00         0.00    0.00    0.00
## syrup                        0.00        0.00         0.00    0.00    0.00
## bathroom cleaner             0.00        0.00         0.00    0.00    0.00
## canned fruit                 0.00        0.00         0.00    0.00    0.00
## cookware                     0.00        0.00         0.00    0.00    0.00
## cooking chocolate            0.00        0.00         0.00    0.00    0.00
## tidbits                      0.00        0.00         0.00    0.00    0.00
## cocoa drinks                 0.00        0.00         0.00    0.00    0.00
## pudding powder               0.00        0.00         0.00    0.00    0.00
## ready soups                  0.00        0.00         0.00    0.00    0.00
## organic marinated meat       0.00        0.00         0.00    0.00    0.00
## flower soil/fertilizer       0.00        0.00         0.00    0.00    0.00
## organic products             0.00        0.00         0.00    0.00    0.00
## pot plants                   0.00        0.00         0.00    0.00    0.00
## prosecco                     0.00        0.00         0.00    0.00    0.00
## frankfurter                  0.00        0.00         0.00    0.00    0.00
## decalcifier                  0.00        0.00         0.00    0.00    0.00
## honey                        0.00        0.00         0.00    0.00    0.00
## specialty vegetables         0.00        0.00         0.00    0.00    0.00
## cream                        0.00        0.00         0.00    0.00    0.00
## hair spray                   0.00        0.00         0.00    0.00    0.00
## frozen fruits                0.00        0.00         0.00    0.00    0.00
## rubbing alcohol              0.00        0.00         0.00    0.00    0.00
## liqueur                      0.00        0.00         0.00    0.00    0.00
## make up remover              0.00        0.00         0.00    0.00    0.00
## salad dressing               0.00        0.00         0.00    0.00    0.00
## frozen chicken               0.00        0.00         0.00    0.00    0.00
## whisky                       0.00        0.00         0.00    0.00    0.00
## baby cosmetics               0.00        0.00         0.00    0.00    0.00
## toilet cleaner               0.00        0.00         0.00    0.00    0.00
## bags                         0.00        0.00         0.00    0.00    0.00
## canned herbs                 0.00        0.00         0.00    0.00    0.00
## kitchen utensil              0.00        0.00         0.00    0.00    0.00
## preservation products        0.00        0.00         0.00    0.00    0.00
## baby food                    0.00        0.00         0.00    0.00    0.00
## frozen herbss                0.00        0.00         0.00    0.00    0.00
## organic sausage              0.00        0.00         0.00    0.00    0.00
## sound storage medium         0.00        0.00         0.00    0.00    0.00
##                           salty snack long life bakery product berries
## rice                             0.01                     0.01    0.01
## veggies                          0.01                     0.01    0.01
## loaf                             0.00                     0.01    0.01
## coke                             0.01                     0.01    0.01
## yogurt                           0.01                     0.01    0.01
## vegetables                       0.01                     0.01    0.01
## mineral water                    0.00                     0.00    0.00
## Plastic bags                     0.01                     0.01    0.00
## tropical fruit                   0.00                     0.01    0.01
## marinated meat                   0.00                     0.00    0.00
## pies/pasties                     0.00                     0.01    0.00
## newspapers                       0.00                     0.00    0.00
## citrus                           0.00                     0.00    0.00
## whipped/sour cream               0.00                     0.01    0.01
## heinken                          0.00                     0.00    0.00
## green tea                        0.00                     0.00    0.00
## pip fruit                        0.00                     0.00    0.00
## brown bread                      0.00                     0.00    0.00
## fruit/vegetable juice            0.01                     0.01    0.00
## domestic eggs                    0.00                     0.00    0.00
## coffee                           0.00                     0.00    0.00
## margarine                        0.00                     0.00    0.00
## beef                             0.00                     0.00    0.01
## curd                             0.00                     0.00    0.00
## butter                           0.00                     0.00    0.00
## marinated meats                  0.00                     0.00    0.00
## napkins                          0.00                     0.00    0.00
## halal meat                       0.00                     0.00    0.00
## chocolate                        0.00                     0.00    0.00
## frozen vegetables                0.00                     0.00    0.00
## chicken                          0.00                     0.00    0.00
## white bread                      0.00                     0.00    0.00
## cream cheese                     0.00                     0.00    0.00
## waffles                          0.00                     0.00    0.00
## dessert                          0.00                     0.00    0.00
## salty snack                      0.04                     0.00    0.00
## long life bakery product         0.00                     0.04    0.00
## berries                          0.00                     0.00    0.04
## hamburger meat                   0.00                     0.00    0.00
## sugar                            0.00                     0.00    0.00
## hygiene articles                 0.00                     0.00    0.00
## UHT-milk                         0.00                     0.00    0.00
## onions                           0.00                     0.00    0.00
## candy                            0.00                     0.00    0.00
## specialty chocolate              0.00                     0.00    0.00
## butter milk                      0.00                     0.00    0.00
## oil                              0.00                     0.00    0.00
## frozen meals                     0.00                     0.00    0.00
## misc. beverages                  0.00                     0.00    0.00
## specialty bar                    0.00                     0.00    0.00
## ham                              0.00                     0.00    0.00
## beverages                        0.00                     0.00    0.00
## meat                             0.00                     0.00    0.00
## ice cream                        0.00                     0.00    0.00
## sliced cheese                    0.00                     0.00    0.00
## hard cheese                      0.00                     0.00    0.00
## noodles                          0.00                     0.00    0.00
## grapes                           0.00                     0.00    0.00
## cat food                         0.00                     0.00    0.00
## chewing gum                      0.00                     0.00    0.00
## soda                             0.00                     0.00    0.00
## detergent                        0.00                     0.00    0.00
## red/blush wine                   0.00                     0.00    0.00
## white wine                       0.00                     0.00    0.00
## turkey                           0.00                     0.00    0.00
## dishes                           0.00                     0.00    0.00
## bottled water                    0.00                     0.00    0.00
## flour                            0.00                     0.00    0.00
## semi-finished bread              0.00                     0.00    0.00
## baking powder                    0.00                     0.00    0.00
## pickled vegetables               0.00                     0.00    0.00
## herbs                            0.00                     0.00    0.00
## tropical herbs                   0.00                     0.00    0.00
## soft cheese                      0.00                     0.00    0.00
## tea                              0.00                     0.00    0.00
## processed cheese                 0.00                     0.00    0.00
## sausage                          0.00                     0.00    0.00
## pasta                            0.00                     0.00    0.00
## citrus herbs                     0.00                     0.00    0.00
## potted plants                    0.00                     0.00    0.00
## canned fish                      0.00                     0.00    0.00
## seasonal products                0.00                     0.00    0.00
## cake bar                         0.00                     0.00    0.00
## carrots                          0.00                     0.00    0.00
## mustard                          0.00                     0.00    0.00
## packaged fruit/vegetables        0.00                     0.00    0.00
## spread cheese                    0.00                     0.00    0.00
## frozen dessert                   0.00                     0.00    0.00
## frozen fish                      0.00                     0.00    0.00
## cling film/bags                  0.00                     0.00    0.00
## salt                             0.00                     0.00    0.00
## liquor                           0.00                     0.00    0.00
## canned vegetables                0.00                     0.00    0.00
## bottled beer                     0.00                     0.00    0.00
## flower (seeds)                   0.00                     0.00    0.00
## cooking oil                      0.00                     0.00    0.00
## dish cleaner                     0.00                     0.00    0.00
## condensed milk                   0.00                     0.00    0.00
## roll products                    0.00                     0.00    0.00
## photo/film                       0.00                     0.00    0.00
## pet care                         0.00                     0.00    0.00
## chocolate marshmallow            0.00                     0.00    0.00
## herbs/vegetable juice            0.00                     0.00    0.00
## whole milk                       0.00                     0.00    0.00
## candles                          0.00                     0.00    0.00
## mayonnaise                       0.00                     0.00    0.00
## Instant food products            0.00                     0.00    0.00
## sweet spreads                    0.00                     0.00    0.00
## liquor (appetizer)               0.00                     0.00    0.00
## specialty cheese                 0.00                     0.00    0.00
## frozen potato products           0.00                     0.00    0.00
## house keeping products           0.00                     0.00    0.00
## dog food                         0.00                     0.00    0.00
## soy                              0.00                     0.00    0.00
## instant coffee                   0.00                     0.00    0.00
## pip herbs                        0.00                     0.00    0.00
## zwieback                         0.00                     0.00    0.00
## finished products                0.00                     0.00    0.00
## popcorn                          0.00                     0.00    0.00
## vinegar                          0.00                     0.00    0.00
## soups                            0.00                     0.00    0.00
## female sanitary products         0.00                     0.00    0.00
## sparkling wine                   0.00                     0.00    0.00
## dental care                      0.00                     0.00    0.00
## cereals                          0.00                     0.00    0.00
## kitchen towels                   0.00                     0.00    0.00
## curd cheese                      0.00                     0.00    0.00
## other vegetables                 0.00                     0.00    0.00
## rolls/buns                       0.00                     0.00    0.00
## softener                         0.00                     0.00    0.00
## cleaner                          0.00                     0.00    0.00
## spices                           0.00                     0.00    0.00
## jam                              0.00                     0.00    0.00
## sauces                           0.00                     0.00    0.00
## rum                              0.00                     0.00    0.00
## liver loaf                       0.00                     0.00    0.00
## male cosmetics                   0.00                     0.00    0.00
## meat spreads                     0.00                     0.00    0.00
## packaged herbs/vegetables        0.00                     0.00    0.00
## brandy                           0.00                     0.00    0.00
## ketchup                          0.00                     0.00    0.00
## abrasive cleaner                 0.00                     0.00    0.00
## light bulbs                      0.00                     0.00    0.00
## artif. sweetener                 0.00                     0.00    0.00
## nuts/prunes                      0.00                     0.00    0.00
## specialty fat                    0.00                     0.00    0.00
## skin care                        0.00                     0.00    0.00
## fish                             0.00                     0.00    0.00
## potato products                  0.00                     0.00    0.00
## root vegetables                  0.00                     0.00    0.00
## snack products                   0.00                     0.00    0.00
## nut snack                        0.00                     0.00    0.00
## soap                             0.00                     0.00    0.00
## syrup                            0.00                     0.00    0.00
## bathroom cleaner                 0.00                     0.00    0.00
## canned fruit                     0.00                     0.00    0.00
## cookware                         0.00                     0.00    0.00
## cooking chocolate                0.00                     0.00    0.00
## tidbits                          0.00                     0.00    0.00
## cocoa drinks                     0.00                     0.00    0.00
## pudding powder                   0.00                     0.00    0.00
## ready soups                      0.00                     0.00    0.00
## organic marinated meat           0.00                     0.00    0.00
## flower soil/fertilizer           0.00                     0.00    0.00
## organic products                 0.00                     0.00    0.00
## pot plants                       0.00                     0.00    0.00
## prosecco                         0.00                     0.00    0.00
## frankfurter                      0.00                     0.00    0.00
## decalcifier                      0.00                     0.00    0.00
## honey                            0.00                     0.00    0.00
## specialty vegetables             0.00                     0.00    0.00
## cream                            0.00                     0.00    0.00
## hair spray                       0.00                     0.00    0.00
## frozen fruits                    0.00                     0.00    0.00
## rubbing alcohol                  0.00                     0.00    0.00
## liqueur                          0.00                     0.00    0.00
## make up remover                  0.00                     0.00    0.00
## salad dressing                   0.00                     0.00    0.00
## frozen chicken                   0.00                     0.00    0.00
## whisky                           0.00                     0.00    0.00
## baby cosmetics                   0.00                     0.00    0.00
## toilet cleaner                   0.00                     0.00    0.00
## bags                             0.00                     0.00    0.00
## canned herbs                     0.00                     0.00    0.00
## kitchen utensil                  0.00                     0.00    0.00
## preservation products            0.00                     0.00    0.00
## baby food                        0.00                     0.00    0.00
## frozen herbss                    0.00                     0.00    0.00
## organic sausage                  0.00                     0.00    0.00
## sound storage medium             0.00                     0.00    0.00
##                           hamburger meat sugar hygiene articles UHT-milk onions
## rice                                0.02  0.01             0.01     0.00   0.01
## veggies                             0.01  0.01             0.01     0.01   0.01
## loaf                                0.01  0.01             0.01     0.01   0.01
## coke                                0.01  0.01             0.01     0.01   0.00
## yogurt                              0.01  0.01             0.01     0.01   0.01
## vegetables                          0.01  0.01             0.01     0.01   0.01
## mineral water                       0.00  0.00             0.00     0.01   0.01
## Plastic bags                        0.00  0.00             0.00     0.00   0.00
## tropical fruit                      0.00  0.00             0.01     0.00   0.00
## marinated meat                      0.00  0.00             0.00     0.00   0.00
## pies/pasties                        0.00  0.00             0.00     0.00   0.00
## newspapers                          0.00  0.00             0.00     0.00   0.00
## citrus                              0.00  0.00             0.00     0.00   0.00
## whipped/sour cream                  0.00  0.01             0.00     0.00   0.00
## heinken                             0.00  0.00             0.00     0.00   0.00
## green tea                           0.00  0.00             0.00     0.00   0.00
## pip fruit                           0.00  0.00             0.00     0.00   0.00
## brown bread                         0.00  0.00             0.00     0.00   0.00
## fruit/vegetable juice               0.00  0.00             0.00     0.00   0.00
## domestic eggs                       0.00  0.00             0.01     0.00   0.01
## coffee                              0.00  0.00             0.00     0.00   0.00
## margarine                           0.00  0.01             0.00     0.00   0.00
## beef                                0.00  0.00             0.00     0.00   0.00
## curd                                0.00  0.00             0.00     0.00   0.00
## butter                              0.00  0.00             0.00     0.00   0.00
## marinated meats                     0.00  0.00             0.00     0.00   0.00
## napkins                             0.00  0.00             0.01     0.00   0.00
## halal meat                          0.00  0.00             0.00     0.00   0.00
## chocolate                           0.00  0.00             0.00     0.00   0.00
## frozen vegetables                   0.00  0.00             0.00     0.00   0.00
## chicken                             0.00  0.00             0.00     0.00   0.00
## white bread                         0.00  0.00             0.00     0.00   0.00
## cream cheese                        0.00  0.00             0.00     0.00   0.00
## waffles                             0.00  0.00             0.00     0.00   0.00
## dessert                             0.00  0.00             0.00     0.00   0.00
## salty snack                         0.00  0.00             0.00     0.00   0.00
## long life bakery product            0.00  0.00             0.00     0.00   0.00
## berries                             0.00  0.00             0.00     0.00   0.00
## hamburger meat                      0.04  0.00             0.00     0.00   0.00
## sugar                               0.00  0.03             0.00     0.00   0.00
## hygiene articles                    0.00  0.00             0.03     0.00   0.00
## UHT-milk                            0.00  0.00             0.00     0.03   0.00
## onions                              0.00  0.00             0.00     0.00   0.03
## candy                               0.00  0.00             0.00     0.00   0.00
## specialty chocolate                 0.00  0.00             0.00     0.00   0.00
## butter milk                         0.00  0.00             0.00     0.00   0.00
## oil                                 0.00  0.00             0.00     0.00   0.00
## frozen meals                        0.00  0.00             0.00     0.00   0.00
## misc. beverages                     0.00  0.00             0.00     0.00   0.00
## specialty bar                       0.00  0.00             0.00     0.00   0.00
## ham                                 0.00  0.00             0.00     0.00   0.00
## beverages                           0.00  0.00             0.00     0.00   0.00
## meat                                0.00  0.00             0.00     0.00   0.00
## ice cream                           0.00  0.00             0.00     0.00   0.00
## sliced cheese                       0.00  0.00             0.00     0.00   0.00
## hard cheese                         0.00  0.00             0.00     0.00   0.00
## noodles                             0.00  0.00             0.00     0.00   0.00
## grapes                              0.00  0.00             0.00     0.00   0.00
## cat food                            0.00  0.00             0.00     0.00   0.00
## chewing gum                         0.00  0.00             0.00     0.00   0.00
## soda                                0.00  0.00             0.00     0.00   0.00
## detergent                           0.00  0.00             0.00     0.00   0.00
## red/blush wine                      0.00  0.00             0.00     0.00   0.00
## white wine                          0.00  0.00             0.00     0.00   0.00
## turkey                              0.00  0.00             0.00     0.00   0.00
## dishes                              0.00  0.00             0.00     0.00   0.00
## bottled water                       0.00  0.00             0.00     0.00   0.00
## flour                               0.00  0.00             0.00     0.00   0.00
## semi-finished bread                 0.00  0.00             0.00     0.00   0.00
## baking powder                       0.00  0.00             0.00     0.00   0.00
## pickled vegetables                  0.00  0.00             0.00     0.00   0.00
## herbs                               0.00  0.00             0.00     0.00   0.00
## tropical herbs                      0.00  0.00             0.00     0.00   0.00
## soft cheese                         0.00  0.00             0.00     0.00   0.00
## tea                                 0.00  0.00             0.00     0.00   0.00
## processed cheese                    0.00  0.00             0.00     0.00   0.00
## sausage                             0.00  0.00             0.00     0.00   0.00
## pasta                               0.00  0.00             0.00     0.00   0.00
## citrus herbs                        0.00  0.00             0.00     0.00   0.00
## potted plants                       0.00  0.00             0.00     0.00   0.00
## canned fish                         0.00  0.00             0.00     0.00   0.00
## seasonal products                   0.00  0.00             0.00     0.00   0.00
## cake bar                            0.00  0.00             0.00     0.00   0.00
## carrots                             0.00  0.00             0.00     0.00   0.00
## mustard                             0.00  0.00             0.00     0.00   0.00
## packaged fruit/vegetables           0.00  0.00             0.00     0.00   0.00
## spread cheese                       0.00  0.00             0.00     0.00   0.00
## frozen dessert                      0.00  0.00             0.00     0.00   0.00
## frozen fish                         0.00  0.00             0.00     0.00   0.00
## cling film/bags                     0.00  0.00             0.00     0.00   0.00
## salt                                0.00  0.00             0.00     0.00   0.00
## liquor                              0.00  0.00             0.00     0.00   0.00
## canned vegetables                   0.00  0.00             0.00     0.00   0.00
## bottled beer                        0.00  0.00             0.00     0.00   0.00
## flower (seeds)                      0.00  0.00             0.00     0.00   0.00
## cooking oil                         0.00  0.00             0.00     0.00   0.00
## dish cleaner                        0.00  0.00             0.00     0.00   0.00
## condensed milk                      0.00  0.00             0.00     0.00   0.00
## roll products                       0.00  0.00             0.00     0.00   0.00
## photo/film                          0.00  0.00             0.00     0.00   0.00
## pet care                            0.00  0.00             0.00     0.00   0.00
## chocolate marshmallow               0.00  0.00             0.00     0.00   0.00
## herbs/vegetable juice               0.00  0.00             0.00     0.00   0.00
## whole milk                          0.00  0.00             0.00     0.00   0.00
## candles                             0.00  0.00             0.00     0.00   0.00
## mayonnaise                          0.00  0.00             0.00     0.00   0.00
## Instant food products               0.00  0.00             0.00     0.00   0.00
## sweet spreads                       0.00  0.00             0.00     0.00   0.00
## liquor (appetizer)                  0.00  0.00             0.00     0.00   0.00
## specialty cheese                    0.00  0.00             0.00     0.00   0.00
## frozen potato products              0.00  0.00             0.00     0.00   0.00
## house keeping products              0.00  0.00             0.00     0.00   0.00
## dog food                            0.00  0.00             0.00     0.00   0.00
## soy                                 0.00  0.00             0.00     0.00   0.00
## instant coffee                      0.00  0.00             0.00     0.00   0.00
## pip herbs                           0.00  0.00             0.00     0.00   0.00
## zwieback                            0.00  0.00             0.00     0.00   0.00
## finished products                   0.00  0.00             0.00     0.00   0.00
## popcorn                             0.00  0.00             0.00     0.00   0.00
## vinegar                             0.00  0.00             0.00     0.00   0.00
## soups                               0.00  0.00             0.00     0.00   0.00
## female sanitary products            0.00  0.00             0.00     0.00   0.00
## sparkling wine                      0.00  0.00             0.00     0.00   0.00
## dental care                         0.00  0.00             0.00     0.00   0.00
## cereals                             0.00  0.00             0.00     0.00   0.00
## kitchen towels                      0.00  0.00             0.00     0.00   0.00
## curd cheese                         0.00  0.00             0.00     0.00   0.00
## other vegetables                    0.00  0.00             0.00     0.00   0.00
## rolls/buns                          0.00  0.00             0.00     0.00   0.00
## softener                            0.00  0.00             0.00     0.00   0.00
## cleaner                             0.00  0.00             0.00     0.00   0.00
## spices                              0.00  0.00             0.00     0.00   0.00
## jam                                 0.00  0.00             0.00     0.00   0.00
## sauces                              0.00  0.00             0.00     0.00   0.00
## rum                                 0.00  0.00             0.00     0.00   0.00
## liver loaf                          0.00  0.00             0.00     0.00   0.00
## male cosmetics                      0.00  0.00             0.00     0.00   0.00
## meat spreads                        0.00  0.00             0.00     0.00   0.00
## packaged herbs/vegetables           0.00  0.00             0.00     0.00   0.00
## brandy                              0.00  0.00             0.00     0.00   0.00
## ketchup                             0.00  0.00             0.00     0.00   0.00
## abrasive cleaner                    0.00  0.00             0.00     0.00   0.00
## light bulbs                         0.00  0.00             0.00     0.00   0.00
## artif. sweetener                    0.00  0.00             0.00     0.00   0.00
## nuts/prunes                         0.00  0.00             0.00     0.00   0.00
## specialty fat                       0.00  0.00             0.00     0.00   0.00
## skin care                           0.00  0.00             0.00     0.00   0.00
## fish                                0.00  0.00             0.00     0.00   0.00
## potato products                     0.00  0.00             0.00     0.00   0.00
## root vegetables                     0.00  0.00             0.00     0.00   0.00
## snack products                      0.00  0.00             0.00     0.00   0.00
## nut snack                           0.00  0.00             0.00     0.00   0.00
## soap                                0.00  0.00             0.00     0.00   0.00
## syrup                               0.00  0.00             0.00     0.00   0.00
## bathroom cleaner                    0.00  0.00             0.00     0.00   0.00
## canned fruit                        0.00  0.00             0.00     0.00   0.00
## cookware                            0.00  0.00             0.00     0.00   0.00
## cooking chocolate                   0.00  0.00             0.00     0.00   0.00
## tidbits                             0.00  0.00             0.00     0.00   0.00
## cocoa drinks                        0.00  0.00             0.00     0.00   0.00
## pudding powder                      0.00  0.00             0.00     0.00   0.00
## ready soups                         0.00  0.00             0.00     0.00   0.00
## organic marinated meat              0.00  0.00             0.00     0.00   0.00
## flower soil/fertilizer              0.00  0.00             0.00     0.00   0.00
## organic products                    0.00  0.00             0.00     0.00   0.00
## pot plants                          0.00  0.00             0.00     0.00   0.00
## prosecco                            0.00  0.00             0.00     0.00   0.00
## frankfurter                         0.00  0.00             0.00     0.00   0.00
## decalcifier                         0.00  0.00             0.00     0.00   0.00
## honey                               0.00  0.00             0.00     0.00   0.00
## specialty vegetables                0.00  0.00             0.00     0.00   0.00
## cream                               0.00  0.00             0.00     0.00   0.00
## hair spray                          0.00  0.00             0.00     0.00   0.00
## frozen fruits                       0.00  0.00             0.00     0.00   0.00
## rubbing alcohol                     0.00  0.00             0.00     0.00   0.00
## liqueur                             0.00  0.00             0.00     0.00   0.00
## make up remover                     0.00  0.00             0.00     0.00   0.00
## salad dressing                      0.00  0.00             0.00     0.00   0.00
## frozen chicken                      0.00  0.00             0.00     0.00   0.00
## whisky                              0.00  0.00             0.00     0.00   0.00
## baby cosmetics                      0.00  0.00             0.00     0.00   0.00
## toilet cleaner                      0.00  0.00             0.00     0.00   0.00
## bags                                0.00  0.00             0.00     0.00   0.00
## canned herbs                        0.00  0.00             0.00     0.00   0.00
## kitchen utensil                     0.00  0.00             0.00     0.00   0.00
## preservation products               0.00  0.00             0.00     0.00   0.00
## baby food                           0.00  0.00             0.00     0.00   0.00
## frozen herbss                       0.00  0.00             0.00     0.00   0.00
## organic sausage                     0.00  0.00             0.00     0.00   0.00
## sound storage medium                0.00  0.00             0.00     0.00   0.00
##                           candy specialty chocolate butter milk  oil
## rice                       0.01                0.01        0.01 0.01
## veggies                    0.01                0.01        0.01 0.01
## loaf                       0.01                0.00        0.01 0.00
## coke                       0.01                0.01        0.00 0.00
## yogurt                     0.01                0.00        0.01 0.01
## vegetables                 0.00                0.00        0.01 0.01
## mineral water              0.00                0.00        0.00 0.00
## Plastic bags               0.00                0.00        0.00 0.00
## tropical fruit             0.00                0.00        0.00 0.00
## marinated meat             0.00                0.00        0.00 0.00
## pies/pasties               0.00                0.00        0.00 0.00
## newspapers                 0.00                0.00        0.00 0.00
## citrus                     0.00                0.00        0.00 0.00
## whipped/sour cream         0.00                0.00        0.00 0.00
## heinken                    0.00                0.00        0.00 0.00
## green tea                  0.00                0.00        0.00 0.00
## pip fruit                  0.00                0.00        0.00 0.00
## brown bread                0.00                0.00        0.00 0.00
## fruit/vegetable juice      0.00                0.00        0.00 0.00
## domestic eggs              0.00                0.00        0.00 0.00
## coffee                     0.00                0.00        0.00 0.00
## margarine                  0.00                0.00        0.00 0.00
## beef                       0.00                0.00        0.00 0.00
## curd                       0.00                0.00        0.00 0.00
## butter                     0.00                0.00        0.00 0.00
## marinated meats            0.00                0.00        0.00 0.00
## napkins                    0.00                0.00        0.00 0.00
## halal meat                 0.00                0.00        0.00 0.00
## chocolate                  0.00                0.00        0.00 0.00
## frozen vegetables          0.00                0.00        0.00 0.00
## chicken                    0.00                0.00        0.00 0.00
## white bread                0.00                0.00        0.00 0.00
## cream cheese               0.00                0.00        0.00 0.00
## waffles                    0.00                0.00        0.00 0.00
## dessert                    0.00                0.00        0.00 0.00
## salty snack                0.00                0.00        0.00 0.00
## long life bakery product   0.00                0.00        0.00 0.00
## berries                    0.00                0.00        0.00 0.00
## hamburger meat             0.00                0.00        0.00 0.00
## sugar                      0.00                0.00        0.00 0.00
## hygiene articles           0.00                0.00        0.00 0.00
## UHT-milk                   0.00                0.00        0.00 0.00
## onions                     0.00                0.00        0.00 0.00
## candy                      0.03                0.00        0.00 0.00
## specialty chocolate        0.00                0.03        0.00 0.00
## butter milk                0.00                0.00        0.03 0.00
## oil                        0.00                0.00        0.00 0.03
## frozen meals               0.00                0.00        0.00 0.00
## misc. beverages            0.00                0.00        0.00 0.00
## specialty bar              0.00                0.00        0.00 0.00
## ham                        0.00                0.00        0.00 0.00
## beverages                  0.00                0.00        0.00 0.00
## meat                       0.00                0.00        0.00 0.00
## ice cream                  0.00                0.00        0.00 0.00
## sliced cheese              0.00                0.00        0.00 0.00
## hard cheese                0.00                0.00        0.00 0.00
## noodles                    0.00                0.00        0.00 0.00
## grapes                     0.00                0.00        0.00 0.00
## cat food                   0.00                0.00        0.00 0.00
## chewing gum                0.00                0.00        0.00 0.00
## soda                       0.00                0.00        0.00 0.00
## detergent                  0.00                0.00        0.00 0.00
## red/blush wine             0.00                0.00        0.00 0.00
## white wine                 0.00                0.00        0.00 0.00
## turkey                     0.00                0.00        0.00 0.00
## dishes                     0.00                0.00        0.00 0.00
## bottled water              0.00                0.00        0.00 0.00
## flour                      0.00                0.00        0.00 0.00
## semi-finished bread        0.00                0.00        0.00 0.00
## baking powder              0.00                0.00        0.00 0.00
## pickled vegetables         0.00                0.00        0.00 0.00
## herbs                      0.00                0.00        0.00 0.00
## tropical herbs             0.00                0.00        0.00 0.00
## soft cheese                0.00                0.00        0.00 0.00
## tea                        0.00                0.00        0.00 0.00
## processed cheese           0.00                0.00        0.00 0.00
## sausage                    0.00                0.00        0.00 0.00
## pasta                      0.00                0.00        0.00 0.00
## citrus herbs               0.00                0.00        0.00 0.00
## potted plants              0.00                0.00        0.00 0.00
## canned fish                0.00                0.00        0.00 0.00
## seasonal products          0.00                0.00        0.00 0.00
## cake bar                   0.00                0.00        0.00 0.00
## carrots                    0.00                0.00        0.00 0.00
## mustard                    0.00                0.00        0.00 0.00
## packaged fruit/vegetables  0.00                0.00        0.00 0.00
## spread cheese              0.00                0.00        0.00 0.00
## frozen dessert             0.00                0.00        0.00 0.00
## frozen fish                0.00                0.00        0.00 0.00
## cling film/bags            0.00                0.00        0.00 0.00
## salt                       0.00                0.00        0.00 0.00
## liquor                     0.00                0.00        0.00 0.00
## canned vegetables          0.00                0.00        0.00 0.00
## bottled beer               0.00                0.00        0.00 0.00
## flower (seeds)             0.00                0.00        0.00 0.00
## cooking oil                0.00                0.00        0.00 0.00
## dish cleaner               0.00                0.00        0.00 0.00
## condensed milk             0.00                0.00        0.00 0.00
## roll products              0.00                0.00        0.00 0.00
## photo/film                 0.00                0.00        0.00 0.00
## pet care                   0.00                0.00        0.00 0.00
## chocolate marshmallow      0.00                0.00        0.00 0.00
## herbs/vegetable juice      0.00                0.00        0.00 0.00
## whole milk                 0.00                0.00        0.00 0.00
## candles                    0.00                0.00        0.00 0.00
## mayonnaise                 0.00                0.00        0.00 0.00
## Instant food products      0.00                0.00        0.00 0.00
## sweet spreads              0.00                0.00        0.00 0.00
## liquor (appetizer)         0.00                0.00        0.00 0.00
## specialty cheese           0.00                0.00        0.00 0.00
## frozen potato products     0.00                0.00        0.00 0.00
## house keeping products     0.00                0.00        0.00 0.00
## dog food                   0.00                0.00        0.00 0.00
## soy                        0.00                0.00        0.00 0.00
## instant coffee             0.00                0.00        0.00 0.00
## pip herbs                  0.00                0.00        0.00 0.00
## zwieback                   0.00                0.00        0.00 0.00
## finished products          0.00                0.00        0.00 0.00
## popcorn                    0.00                0.00        0.00 0.00
## vinegar                    0.00                0.00        0.00 0.00
## soups                      0.00                0.00        0.00 0.00
## female sanitary products   0.00                0.00        0.00 0.00
## sparkling wine             0.00                0.00        0.00 0.00
## dental care                0.00                0.00        0.00 0.00
## cereals                    0.00                0.00        0.00 0.00
## kitchen towels             0.00                0.00        0.00 0.00
## curd cheese                0.00                0.00        0.00 0.00
## other vegetables           0.00                0.00        0.00 0.00
## rolls/buns                 0.00                0.00        0.00 0.00
## softener                   0.00                0.00        0.00 0.00
## cleaner                    0.00                0.00        0.00 0.00
## spices                     0.00                0.00        0.00 0.00
## jam                        0.00                0.00        0.00 0.00
## sauces                     0.00                0.00        0.00 0.00
## rum                        0.00                0.00        0.00 0.00
## liver loaf                 0.00                0.00        0.00 0.00
## male cosmetics             0.00                0.00        0.00 0.00
## meat spreads               0.00                0.00        0.00 0.00
## packaged herbs/vegetables  0.00                0.00        0.00 0.00
## brandy                     0.00                0.00        0.00 0.00
## ketchup                    0.00                0.00        0.00 0.00
## abrasive cleaner           0.00                0.00        0.00 0.00
## light bulbs                0.00                0.00        0.00 0.00
## artif. sweetener           0.00                0.00        0.00 0.00
## nuts/prunes                0.00                0.00        0.00 0.00
## specialty fat              0.00                0.00        0.00 0.00
## skin care                  0.00                0.00        0.00 0.00
## fish                       0.00                0.00        0.00 0.00
## potato products            0.00                0.00        0.00 0.00
## root vegetables            0.00                0.00        0.00 0.00
## snack products             0.00                0.00        0.00 0.00
## nut snack                  0.00                0.00        0.00 0.00
## soap                       0.00                0.00        0.00 0.00
## syrup                      0.00                0.00        0.00 0.00
## bathroom cleaner           0.00                0.00        0.00 0.00
## canned fruit               0.00                0.00        0.00 0.00
## cookware                   0.00                0.00        0.00 0.00
## cooking chocolate          0.00                0.00        0.00 0.00
## tidbits                    0.00                0.00        0.00 0.00
## cocoa drinks               0.00                0.00        0.00 0.00
## pudding powder             0.00                0.00        0.00 0.00
## ready soups                0.00                0.00        0.00 0.00
## organic marinated meat     0.00                0.00        0.00 0.00
## flower soil/fertilizer     0.00                0.00        0.00 0.00
## organic products           0.00                0.00        0.00 0.00
## pot plants                 0.00                0.00        0.00 0.00
## prosecco                   0.00                0.00        0.00 0.00
## frankfurter                0.00                0.00        0.00 0.00
## decalcifier                0.00                0.00        0.00 0.00
## honey                      0.00                0.00        0.00 0.00
## specialty vegetables       0.00                0.00        0.00 0.00
## cream                      0.00                0.00        0.00 0.00
## hair spray                 0.00                0.00        0.00 0.00
## frozen fruits              0.00                0.00        0.00 0.00
## rubbing alcohol            0.00                0.00        0.00 0.00
## liqueur                    0.00                0.00        0.00 0.00
## make up remover            0.00                0.00        0.00 0.00
## salad dressing             0.00                0.00        0.00 0.00
## frozen chicken             0.00                0.00        0.00 0.00
## whisky                     0.00                0.00        0.00 0.00
## baby cosmetics             0.00                0.00        0.00 0.00
## toilet cleaner             0.00                0.00        0.00 0.00
## bags                       0.00                0.00        0.00 0.00
## canned herbs               0.00                0.00        0.00 0.00
## kitchen utensil            0.00                0.00        0.00 0.00
## preservation products      0.00                0.00        0.00 0.00
## baby food                  0.00                0.00        0.00 0.00
## frozen herbss              0.00                0.00        0.00 0.00
## organic sausage            0.00                0.00        0.00 0.00
## sound storage medium       0.00                0.00        0.00 0.00
##                           frozen meals misc. beverages specialty bar  ham
## rice                              0.01            0.01          0.01 0.01
## veggies                           0.01            0.00          0.00 0.01
## loaf                              0.00            0.00          0.00 0.01
## coke                              0.01            0.01          0.01 0.00
## yogurt                            0.01            0.00          0.00 0.01
## vegetables                        0.00            0.00          0.00 0.00
## mineral water                     0.00            0.00          0.00 0.00
## Plastic bags                      0.00            0.00          0.00 0.00
## tropical fruit                    0.00            0.00          0.00 0.00
## marinated meat                    0.00            0.00          0.00 0.00
## pies/pasties                      0.00            0.00          0.00 0.00
## newspapers                        0.00            0.00          0.00 0.00
## citrus                            0.00            0.00          0.00 0.00
## whipped/sour cream                0.00            0.00          0.00 0.00
## heinken                           0.00            0.00          0.00 0.00
## green tea                         0.00            0.00          0.00 0.00
## pip fruit                         0.00            0.00          0.00 0.00
## brown bread                       0.00            0.00          0.00 0.00
## fruit/vegetable juice             0.00            0.00          0.00 0.00
## domestic eggs                     0.00            0.00          0.00 0.00
## coffee                            0.00            0.00          0.00 0.00
## margarine                         0.00            0.00          0.00 0.00
## beef                              0.00            0.00          0.00 0.00
## curd                              0.00            0.00          0.00 0.00
## butter                            0.00            0.00          0.00 0.00
## marinated meats                   0.00            0.00          0.00 0.00
## napkins                           0.00            0.00          0.00 0.00
## halal meat                        0.00            0.00          0.00 0.00
## chocolate                         0.00            0.00          0.00 0.00
## frozen vegetables                 0.00            0.00          0.00 0.00
## chicken                           0.00            0.00          0.00 0.00
## white bread                       0.00            0.00          0.00 0.01
## cream cheese                      0.00            0.00          0.00 0.00
## waffles                           0.00            0.00          0.00 0.00
## dessert                           0.00            0.00          0.00 0.00
## salty snack                       0.00            0.00          0.00 0.00
## long life bakery product          0.00            0.00          0.00 0.00
## berries                           0.00            0.00          0.00 0.00
## hamburger meat                    0.00            0.00          0.00 0.00
## sugar                             0.00            0.00          0.00 0.00
## hygiene articles                  0.00            0.00          0.00 0.00
## UHT-milk                          0.00            0.00          0.00 0.00
## onions                            0.00            0.00          0.00 0.00
## candy                             0.00            0.00          0.00 0.00
## specialty chocolate               0.00            0.00          0.00 0.00
## butter milk                       0.00            0.00          0.00 0.00
## oil                               0.00            0.00          0.00 0.00
## frozen meals                      0.03            0.00          0.00 0.00
## misc. beverages                   0.00            0.03          0.00 0.00
## specialty bar                     0.00            0.00          0.03 0.00
## ham                               0.00            0.00          0.00 0.03
## beverages                         0.00            0.00          0.00 0.00
## meat                              0.00            0.00          0.00 0.00
## ice cream                         0.00            0.00          0.00 0.00
## sliced cheese                     0.00            0.00          0.00 0.00
## hard cheese                       0.00            0.00          0.00 0.00
## noodles                           0.00            0.00          0.00 0.00
## grapes                            0.00            0.00          0.00 0.00
## cat food                          0.00            0.00          0.00 0.00
## chewing gum                       0.00            0.00          0.00 0.00
## soda                              0.00            0.00          0.00 0.00
## detergent                         0.00            0.00          0.00 0.00
## red/blush wine                    0.00            0.00          0.00 0.00
## white wine                        0.00            0.00          0.00 0.00
## turkey                            0.00            0.00          0.00 0.00
## dishes                            0.00            0.00          0.00 0.00
## bottled water                     0.00            0.00          0.00 0.00
## flour                             0.00            0.00          0.00 0.00
## semi-finished bread               0.00            0.00          0.00 0.00
## baking powder                     0.00            0.00          0.00 0.00
## pickled vegetables                0.00            0.00          0.00 0.00
## herbs                             0.00            0.00          0.00 0.00
## tropical herbs                    0.00            0.00          0.00 0.00
## soft cheese                       0.00            0.00          0.00 0.00
## tea                               0.00            0.00          0.00 0.00
## processed cheese                  0.00            0.00          0.00 0.00
## sausage                           0.00            0.00          0.00 0.00
## pasta                             0.00            0.00          0.00 0.00
## citrus herbs                      0.00            0.00          0.00 0.00
## potted plants                     0.00            0.00          0.00 0.00
## canned fish                       0.00            0.00          0.00 0.00
## seasonal products                 0.00            0.00          0.00 0.00
## cake bar                          0.00            0.00          0.00 0.00
## carrots                           0.00            0.00          0.00 0.00
## mustard                           0.00            0.00          0.00 0.00
## packaged fruit/vegetables         0.00            0.00          0.00 0.00
## spread cheese                     0.00            0.00          0.00 0.00
## frozen dessert                    0.00            0.00          0.00 0.00
## frozen fish                       0.00            0.00          0.00 0.00
## cling film/bags                   0.00            0.00          0.00 0.00
## salt                              0.00            0.00          0.00 0.00
## liquor                            0.00            0.00          0.00 0.00
## canned vegetables                 0.00            0.00          0.00 0.00
## bottled beer                      0.00            0.00          0.00 0.00
## flower (seeds)                    0.00            0.00          0.00 0.00
## cooking oil                       0.00            0.00          0.00 0.00
## dish cleaner                      0.00            0.00          0.00 0.00
## condensed milk                    0.00            0.00          0.00 0.00
## roll products                     0.00            0.00          0.00 0.00
## photo/film                        0.00            0.00          0.00 0.00
## pet care                          0.00            0.00          0.00 0.00
## chocolate marshmallow             0.00            0.00          0.00 0.00
## herbs/vegetable juice             0.00            0.00          0.00 0.00
## whole milk                        0.00            0.00          0.00 0.00
## candles                           0.00            0.00          0.00 0.00
## mayonnaise                        0.00            0.00          0.00 0.00
## Instant food products             0.00            0.00          0.00 0.00
## sweet spreads                     0.00            0.00          0.00 0.00
## liquor (appetizer)                0.00            0.00          0.00 0.00
## specialty cheese                  0.00            0.00          0.00 0.00
## frozen potato products            0.00            0.00          0.00 0.00
## house keeping products            0.00            0.00          0.00 0.00
## dog food                          0.00            0.00          0.00 0.00
## soy                               0.00            0.00          0.00 0.00
## instant coffee                    0.00            0.00          0.00 0.00
## pip herbs                         0.00            0.00          0.00 0.00
## zwieback                          0.00            0.00          0.00 0.00
## finished products                 0.00            0.00          0.00 0.00
## popcorn                           0.00            0.00          0.00 0.00
## vinegar                           0.00            0.00          0.00 0.00
## soups                             0.00            0.00          0.00 0.00
## female sanitary products          0.00            0.00          0.00 0.00
## sparkling wine                    0.00            0.00          0.00 0.00
## dental care                       0.00            0.00          0.00 0.00
## cereals                           0.00            0.00          0.00 0.00
## kitchen towels                    0.00            0.00          0.00 0.00
## curd cheese                       0.00            0.00          0.00 0.00
## other vegetables                  0.00            0.00          0.00 0.00
## rolls/buns                        0.00            0.00          0.00 0.00
## softener                          0.00            0.00          0.00 0.00
## cleaner                           0.00            0.00          0.00 0.00
## spices                            0.00            0.00          0.00 0.00
## jam                               0.00            0.00          0.00 0.00
## sauces                            0.00            0.00          0.00 0.00
## rum                               0.00            0.00          0.00 0.00
## liver loaf                        0.00            0.00          0.00 0.00
## male cosmetics                    0.00            0.00          0.00 0.00
## meat spreads                      0.00            0.00          0.00 0.00
## packaged herbs/vegetables         0.00            0.00          0.00 0.00
## brandy                            0.00            0.00          0.00 0.00
## ketchup                           0.00            0.00          0.00 0.00
## abrasive cleaner                  0.00            0.00          0.00 0.00
## light bulbs                       0.00            0.00          0.00 0.00
## artif. sweetener                  0.00            0.00          0.00 0.00
## nuts/prunes                       0.00            0.00          0.00 0.00
## specialty fat                     0.00            0.00          0.00 0.00
## skin care                         0.00            0.00          0.00 0.00
## fish                              0.00            0.00          0.00 0.00
## potato products                   0.00            0.00          0.00 0.00
## root vegetables                   0.00            0.00          0.00 0.00
## snack products                    0.00            0.00          0.00 0.00
## nut snack                         0.00            0.00          0.00 0.00
## soap                              0.00            0.00          0.00 0.00
## syrup                             0.00            0.00          0.00 0.00
## bathroom cleaner                  0.00            0.00          0.00 0.00
## canned fruit                      0.00            0.00          0.00 0.00
## cookware                          0.00            0.00          0.00 0.00
## cooking chocolate                 0.00            0.00          0.00 0.00
## tidbits                           0.00            0.00          0.00 0.00
## cocoa drinks                      0.00            0.00          0.00 0.00
## pudding powder                    0.00            0.00          0.00 0.00
## ready soups                       0.00            0.00          0.00 0.00
## organic marinated meat            0.00            0.00          0.00 0.00
## flower soil/fertilizer            0.00            0.00          0.00 0.00
## organic products                  0.00            0.00          0.00 0.00
## pot plants                        0.00            0.00          0.00 0.00
## prosecco                          0.00            0.00          0.00 0.00
## frankfurter                       0.00            0.00          0.00 0.00
## decalcifier                       0.00            0.00          0.00 0.00
## honey                             0.00            0.00          0.00 0.00
## specialty vegetables              0.00            0.00          0.00 0.00
## cream                             0.00            0.00          0.00 0.00
## hair spray                        0.00            0.00          0.00 0.00
## frozen fruits                     0.00            0.00          0.00 0.00
## rubbing alcohol                   0.00            0.00          0.00 0.00
## liqueur                           0.00            0.00          0.00 0.00
## make up remover                   0.00            0.00          0.00 0.00
## salad dressing                    0.00            0.00          0.00 0.00
## frozen chicken                    0.00            0.00          0.00 0.00
## whisky                            0.00            0.00          0.00 0.00
## baby cosmetics                    0.00            0.00          0.00 0.00
## toilet cleaner                    0.00            0.00          0.00 0.00
## bags                              0.00            0.00          0.00 0.00
## canned herbs                      0.00            0.00          0.00 0.00
## kitchen utensil                   0.00            0.00          0.00 0.00
## preservation products             0.00            0.00          0.00 0.00
## baby food                         0.00            0.00          0.00 0.00
## frozen herbss                     0.00            0.00          0.00 0.00
## organic sausage                   0.00            0.00          0.00 0.00
## sound storage medium              0.00            0.00          0.00 0.00
##                           beverages meat ice cream sliced cheese hard cheese
## rice                           0.01 0.01      0.01          0.01        0.01
## veggies                        0.00 0.01      0.00          0.01        0.01
## loaf                           0.00 0.01      0.00          0.01        0.01
## coke                           0.00 0.00      0.01          0.00        0.00
## yogurt                         0.01 0.00      0.00          0.01        0.01
## vegetables                     0.00 0.01      0.00          0.01        0.01
## mineral water                  0.00 0.00      0.00          0.00        0.00
## Plastic bags                   0.00 0.00      0.00          0.00        0.00
## tropical fruit                 0.00 0.00      0.00          0.00        0.00
## marinated meat                 0.00 0.00      0.00          0.01        0.00
## pies/pasties                   0.00 0.00      0.00          0.00        0.00
## newspapers                     0.00 0.00      0.00          0.00        0.00
## citrus                         0.00 0.00      0.00          0.00        0.00
## whipped/sour cream             0.00 0.00      0.00          0.00        0.00
## heinken                        0.00 0.00      0.00          0.00        0.00
## green tea                      0.00 0.00      0.00          0.00        0.00
## pip fruit                      0.00 0.00      0.00          0.00        0.00
## brown bread                    0.00 0.00      0.00          0.00        0.00
## fruit/vegetable juice          0.00 0.00      0.00          0.00        0.00
## domestic eggs                  0.00 0.00      0.00          0.00        0.00
## coffee                         0.00 0.00      0.00          0.00        0.00
## margarine                      0.00 0.00      0.00          0.00        0.00
## beef                           0.00 0.00      0.00          0.00        0.00
## curd                           0.00 0.00      0.00          0.00        0.00
## butter                         0.00 0.00      0.00          0.00        0.00
## marinated meats                0.00 0.00      0.00          0.00        0.00
## napkins                        0.00 0.00      0.00          0.00        0.00
## halal meat                     0.00 0.00      0.00          0.00        0.00
## chocolate                      0.00 0.00      0.00          0.00        0.00
## frozen vegetables              0.00 0.00      0.00          0.00        0.00
## chicken                        0.00 0.00      0.00          0.00        0.00
## white bread                    0.00 0.00      0.00          0.00        0.00
## cream cheese                   0.00 0.00      0.00          0.00        0.00
## waffles                        0.00 0.00      0.00          0.00        0.00
## dessert                        0.00 0.00      0.00          0.00        0.00
## salty snack                    0.00 0.00      0.00          0.00        0.00
## long life bakery product       0.00 0.00      0.00          0.00        0.00
## berries                        0.00 0.00      0.00          0.00        0.00
## hamburger meat                 0.00 0.00      0.00          0.00        0.00
## sugar                          0.00 0.00      0.00          0.00        0.00
## hygiene articles               0.00 0.00      0.00          0.00        0.00
## UHT-milk                       0.00 0.00      0.00          0.00        0.00
## onions                         0.00 0.00      0.00          0.00        0.00
## candy                          0.00 0.00      0.00          0.00        0.00
## specialty chocolate            0.00 0.00      0.00          0.00        0.00
## butter milk                    0.00 0.00      0.00          0.00        0.00
## oil                            0.00 0.00      0.00          0.00        0.00
## frozen meals                   0.00 0.00      0.00          0.00        0.00
## misc. beverages                0.00 0.00      0.00          0.00        0.00
## specialty bar                  0.00 0.00      0.00          0.00        0.00
## ham                            0.00 0.00      0.00          0.00        0.00
## beverages                      0.03 0.00      0.00          0.00        0.00
## meat                           0.00 0.03      0.00          0.00        0.00
## ice cream                      0.00 0.00      0.03          0.00        0.00
## sliced cheese                  0.00 0.00      0.00          0.03        0.00
## hard cheese                    0.00 0.00      0.00          0.00        0.02
## noodles                        0.00 0.00      0.00          0.00        0.00
## grapes                         0.00 0.00      0.00          0.00        0.00
## cat food                       0.00 0.00      0.00          0.00        0.00
## chewing gum                    0.00 0.00      0.00          0.00        0.00
## soda                           0.00 0.00      0.00          0.00        0.00
## detergent                      0.00 0.00      0.00          0.00        0.00
## red/blush wine                 0.00 0.00      0.00          0.00        0.00
## white wine                     0.00 0.00      0.00          0.00        0.00
## turkey                         0.00 0.00      0.00          0.00        0.00
## dishes                         0.00 0.00      0.00          0.00        0.00
## bottled water                  0.00 0.00      0.00          0.00        0.00
## flour                          0.00 0.00      0.00          0.00        0.00
## semi-finished bread            0.00 0.00      0.00          0.00        0.00
## baking powder                  0.00 0.00      0.00          0.00        0.00
## pickled vegetables             0.00 0.00      0.00          0.00        0.00
## herbs                          0.00 0.00      0.00          0.00        0.00
## tropical herbs                 0.00 0.00      0.00          0.00        0.00
## soft cheese                    0.00 0.00      0.00          0.00        0.00
## tea                            0.00 0.00      0.00          0.00        0.00
## processed cheese               0.00 0.00      0.00          0.00        0.00
## sausage                        0.00 0.00      0.00          0.00        0.00
## pasta                          0.00 0.00      0.00          0.00        0.00
## citrus herbs                   0.00 0.00      0.00          0.00        0.00
## potted plants                  0.00 0.00      0.00          0.00        0.00
## canned fish                    0.00 0.00      0.00          0.00        0.00
## seasonal products              0.00 0.00      0.00          0.00        0.00
## cake bar                       0.00 0.00      0.00          0.00        0.00
## carrots                        0.00 0.00      0.00          0.00        0.00
## mustard                        0.00 0.00      0.00          0.00        0.00
## packaged fruit/vegetables      0.00 0.00      0.00          0.00        0.00
## spread cheese                  0.00 0.00      0.00          0.00        0.00
## frozen dessert                 0.00 0.00      0.00          0.00        0.00
## frozen fish                    0.00 0.00      0.00          0.00        0.00
## cling film/bags                0.00 0.00      0.00          0.00        0.00
## salt                           0.00 0.00      0.00          0.00        0.00
## liquor                         0.00 0.00      0.00          0.00        0.00
## canned vegetables              0.00 0.00      0.00          0.00        0.00
## bottled beer                   0.00 0.00      0.00          0.00        0.00
## flower (seeds)                 0.00 0.00      0.00          0.00        0.00
## cooking oil                    0.00 0.00      0.00          0.00        0.00
## dish cleaner                   0.00 0.00      0.00          0.00        0.00
## condensed milk                 0.00 0.00      0.00          0.00        0.00
## roll products                  0.00 0.00      0.00          0.00        0.00
## photo/film                     0.00 0.00      0.00          0.00        0.00
## pet care                       0.00 0.00      0.00          0.00        0.00
## chocolate marshmallow          0.00 0.00      0.00          0.00        0.00
## herbs/vegetable juice          0.00 0.00      0.00          0.00        0.00
## whole milk                     0.00 0.00      0.00          0.00        0.00
## candles                        0.00 0.00      0.00          0.00        0.00
## mayonnaise                     0.00 0.00      0.00          0.00        0.00
## Instant food products          0.00 0.00      0.00          0.00        0.00
## sweet spreads                  0.00 0.00      0.00          0.00        0.00
## liquor (appetizer)             0.00 0.00      0.00          0.00        0.00
## specialty cheese               0.00 0.00      0.00          0.00        0.00
## frozen potato products         0.00 0.00      0.00          0.00        0.00
## house keeping products         0.00 0.00      0.00          0.00        0.00
## dog food                       0.00 0.00      0.00          0.00        0.00
## soy                            0.00 0.00      0.00          0.00        0.00
## instant coffee                 0.00 0.00      0.00          0.00        0.00
## pip herbs                      0.00 0.00      0.00          0.00        0.00
## zwieback                       0.00 0.00      0.00          0.00        0.00
## finished products              0.00 0.00      0.00          0.00        0.00
## popcorn                        0.00 0.00      0.00          0.00        0.00
## vinegar                        0.00 0.00      0.00          0.00        0.00
## soups                          0.00 0.00      0.00          0.00        0.00
## female sanitary products       0.00 0.00      0.00          0.00        0.00
## sparkling wine                 0.00 0.00      0.00          0.00        0.00
## dental care                    0.00 0.00      0.00          0.00        0.00
## cereals                        0.00 0.00      0.00          0.00        0.00
## kitchen towels                 0.00 0.00      0.00          0.00        0.00
## curd cheese                    0.00 0.00      0.00          0.00        0.00
## other vegetables               0.00 0.00      0.00          0.00        0.00
## rolls/buns                     0.00 0.00      0.00          0.00        0.00
## softener                       0.00 0.00      0.00          0.00        0.00
## cleaner                        0.00 0.00      0.00          0.00        0.00
## spices                         0.00 0.00      0.00          0.00        0.00
## jam                            0.00 0.00      0.00          0.00        0.00
## sauces                         0.00 0.00      0.00          0.00        0.00
## rum                            0.00 0.00      0.00          0.00        0.00
## liver loaf                     0.00 0.00      0.00          0.00        0.00
## male cosmetics                 0.00 0.00      0.00          0.00        0.00
## meat spreads                   0.00 0.00      0.00          0.00        0.00
## packaged herbs/vegetables      0.00 0.00      0.00          0.00        0.00
## brandy                         0.00 0.00      0.00          0.00        0.00
## ketchup                        0.00 0.00      0.00          0.00        0.00
## abrasive cleaner               0.00 0.00      0.00          0.00        0.00
## light bulbs                    0.00 0.00      0.00          0.00        0.00
## artif. sweetener               0.00 0.00      0.00          0.00        0.00
## nuts/prunes                    0.00 0.00      0.00          0.00        0.00
## specialty fat                  0.00 0.00      0.00          0.00        0.00
## skin care                      0.00 0.00      0.00          0.00        0.00
## fish                           0.00 0.00      0.00          0.00        0.00
## potato products                0.00 0.00      0.00          0.00        0.00
## root vegetables                0.00 0.00      0.00          0.00        0.00
## snack products                 0.00 0.00      0.00          0.00        0.00
## nut snack                      0.00 0.00      0.00          0.00        0.00
## soap                           0.00 0.00      0.00          0.00        0.00
## syrup                          0.00 0.00      0.00          0.00        0.00
## bathroom cleaner               0.00 0.00      0.00          0.00        0.00
## canned fruit                   0.00 0.00      0.00          0.00        0.00
## cookware                       0.00 0.00      0.00          0.00        0.00
## cooking chocolate              0.00 0.00      0.00          0.00        0.00
## tidbits                        0.00 0.00      0.00          0.00        0.00
## cocoa drinks                   0.00 0.00      0.00          0.00        0.00
## pudding powder                 0.00 0.00      0.00          0.00        0.00
## ready soups                    0.00 0.00      0.00          0.00        0.00
## organic marinated meat         0.00 0.00      0.00          0.00        0.00
## flower soil/fertilizer         0.00 0.00      0.00          0.00        0.00
## organic products               0.00 0.00      0.00          0.00        0.00
## pot plants                     0.00 0.00      0.00          0.00        0.00
## prosecco                       0.00 0.00      0.00          0.00        0.00
## frankfurter                    0.00 0.00      0.00          0.00        0.00
## decalcifier                    0.00 0.00      0.00          0.00        0.00
## honey                          0.00 0.00      0.00          0.00        0.00
## specialty vegetables           0.00 0.00      0.00          0.00        0.00
## cream                          0.00 0.00      0.00          0.00        0.00
## hair spray                     0.00 0.00      0.00          0.00        0.00
## frozen fruits                  0.00 0.00      0.00          0.00        0.00
## rubbing alcohol                0.00 0.00      0.00          0.00        0.00
## liqueur                        0.00 0.00      0.00          0.00        0.00
## make up remover                0.00 0.00      0.00          0.00        0.00
## salad dressing                 0.00 0.00      0.00          0.00        0.00
## frozen chicken                 0.00 0.00      0.00          0.00        0.00
## whisky                         0.00 0.00      0.00          0.00        0.00
## baby cosmetics                 0.00 0.00      0.00          0.00        0.00
## toilet cleaner                 0.00 0.00      0.00          0.00        0.00
## bags                           0.00 0.00      0.00          0.00        0.00
## canned herbs                   0.00 0.00      0.00          0.00        0.00
## kitchen utensil                0.00 0.00      0.00          0.00        0.00
## preservation products          0.00 0.00      0.00          0.00        0.00
## baby food                      0.00 0.00      0.00          0.00        0.00
## frozen herbss                  0.00 0.00      0.00          0.00        0.00
## organic sausage                0.00 0.00      0.00          0.00        0.00
## sound storage medium           0.00 0.00      0.00          0.00        0.00
##                           noodles grapes cat food chewing gum soda detergent
## rice                         0.01   0.01     0.01        0.00 0.01      0.01
## veggies                      0.00   0.01     0.01        0.00 0.00      0.01
## loaf                         0.00   0.00     0.00        0.00 0.00      0.00
## coke                         0.00   0.00     0.00        0.00 0.00      0.00
## yogurt                       0.00   0.00     0.01        0.00 0.00      0.00
## vegetables                   0.01   0.00     0.00        0.00 0.00      0.00
## mineral water                0.00   0.00     0.00        0.00 0.00      0.00
## Plastic bags                 0.00   0.00     0.00        0.00 0.00      0.00
## tropical fruit               0.00   0.01     0.00        0.00 0.00      0.00
## marinated meat               0.00   0.00     0.00        0.00 0.00      0.00
## pies/pasties                 0.00   0.00     0.00        0.00 0.00      0.00
## newspapers                   0.00   0.00     0.00        0.00 0.00      0.00
## citrus                       0.00   0.00     0.00        0.00 0.00      0.00
## whipped/sour cream           0.00   0.00     0.00        0.00 0.00      0.00
## heinken                      0.00   0.00     0.00        0.00 0.00      0.00
## green tea                    0.00   0.00     0.00        0.00 0.00      0.00
## pip fruit                    0.00   0.00     0.00        0.00 0.00      0.00
## brown bread                  0.00   0.00     0.00        0.00 0.00      0.00
## fruit/vegetable juice        0.00   0.00     0.00        0.00 0.00      0.00
## domestic eggs                0.00   0.00     0.00        0.00 0.00      0.00
## coffee                       0.00   0.00     0.00        0.00 0.00      0.00
## margarine                    0.00   0.00     0.00        0.00 0.00      0.00
## beef                         0.00   0.00     0.00        0.00 0.00      0.00
## curd                         0.00   0.00     0.00        0.00 0.00      0.00
## butter                       0.00   0.00     0.00        0.00 0.00      0.00
## marinated meats              0.00   0.00     0.00        0.00 0.00      0.00
## napkins                      0.00   0.00     0.00        0.00 0.00      0.00
## halal meat                   0.00   0.00     0.00        0.00 0.00      0.00
## chocolate                    0.00   0.00     0.00        0.00 0.00      0.00
## frozen vegetables            0.00   0.00     0.00        0.00 0.00      0.00
## chicken                      0.00   0.00     0.00        0.00 0.00      0.00
## white bread                  0.00   0.00     0.00        0.00 0.00      0.00
## cream cheese                 0.00   0.00     0.00        0.00 0.00      0.00
## waffles                      0.00   0.00     0.00        0.00 0.00      0.00
## dessert                      0.00   0.00     0.00        0.00 0.00      0.00
## salty snack                  0.00   0.00     0.00        0.00 0.00      0.00
## long life bakery product     0.00   0.00     0.00        0.00 0.00      0.00
## berries                      0.00   0.00     0.00        0.00 0.00      0.00
## hamburger meat               0.00   0.00     0.00        0.00 0.00      0.00
## sugar                        0.00   0.00     0.00        0.00 0.00      0.00
## hygiene articles             0.00   0.00     0.00        0.00 0.00      0.00
## UHT-milk                     0.00   0.00     0.00        0.00 0.00      0.00
## onions                       0.00   0.00     0.00        0.00 0.00      0.00
## candy                        0.00   0.00     0.00        0.00 0.00      0.00
## specialty chocolate          0.00   0.00     0.00        0.00 0.00      0.00
## butter milk                  0.00   0.00     0.00        0.00 0.00      0.00
## oil                          0.00   0.00     0.00        0.00 0.00      0.00
## frozen meals                 0.00   0.00     0.00        0.00 0.00      0.00
## misc. beverages              0.00   0.00     0.00        0.00 0.00      0.00
## specialty bar                0.00   0.00     0.00        0.00 0.00      0.00
## ham                          0.00   0.00     0.00        0.00 0.00      0.00
## beverages                    0.00   0.00     0.00        0.00 0.00      0.00
## meat                         0.00   0.00     0.00        0.00 0.00      0.00
## ice cream                    0.00   0.00     0.00        0.00 0.00      0.00
## sliced cheese                0.00   0.00     0.00        0.00 0.00      0.00
## hard cheese                  0.00   0.00     0.00        0.00 0.00      0.00
## noodles                      0.02   0.00     0.00        0.00 0.01      0.00
## grapes                       0.00   0.02     0.00        0.00 0.00      0.00
## cat food                     0.00   0.00     0.02        0.00 0.00      0.00
## chewing gum                  0.00   0.00     0.00        0.02 0.00      0.00
## soda                         0.01   0.00     0.00        0.00 0.02      0.00
## detergent                    0.00   0.00     0.00        0.00 0.00      0.02
## red/blush wine               0.00   0.00     0.00        0.00 0.00      0.00
## white wine                   0.00   0.00     0.00        0.00 0.00      0.00
## turkey                       0.00   0.00     0.00        0.00 0.00      0.00
## dishes                       0.00   0.00     0.00        0.00 0.00      0.00
## bottled water                0.00   0.00     0.00        0.00 0.00      0.00
## flour                        0.00   0.00     0.00        0.00 0.00      0.00
## semi-finished bread          0.00   0.00     0.00        0.00 0.00      0.00
## baking powder                0.00   0.00     0.00        0.00 0.00      0.00
## pickled vegetables           0.00   0.00     0.00        0.00 0.00      0.00
## herbs                        0.00   0.00     0.00        0.00 0.00      0.00
## tropical herbs               0.00   0.00     0.00        0.00 0.00      0.00
## soft cheese                  0.00   0.00     0.00        0.00 0.00      0.00
## tea                          0.00   0.00     0.00        0.00 0.00      0.00
## processed cheese             0.00   0.00     0.00        0.00 0.00      0.00
## sausage                      0.00   0.00     0.00        0.00 0.00      0.00
## pasta                        0.00   0.00     0.00        0.00 0.00      0.00
## citrus herbs                 0.00   0.00     0.00        0.00 0.00      0.00
## potted plants                0.00   0.00     0.00        0.00 0.00      0.00
## canned fish                  0.00   0.00     0.00        0.00 0.00      0.00
## seasonal products            0.00   0.00     0.00        0.00 0.00      0.00
## cake bar                     0.00   0.00     0.00        0.00 0.00      0.00
## carrots                      0.00   0.00     0.00        0.00 0.00      0.00
## mustard                      0.00   0.00     0.00        0.00 0.00      0.00
## packaged fruit/vegetables    0.00   0.00     0.00        0.00 0.00      0.00
## spread cheese                0.00   0.00     0.00        0.00 0.00      0.00
## frozen dessert               0.00   0.00     0.00        0.00 0.00      0.00
## frozen fish                  0.00   0.00     0.00        0.00 0.00      0.00
## cling film/bags              0.00   0.00     0.00        0.00 0.00      0.00
## salt                         0.00   0.00     0.00        0.00 0.00      0.00
## liquor                       0.00   0.00     0.00        0.00 0.00      0.00
## canned vegetables            0.00   0.00     0.00        0.00 0.00      0.00
## bottled beer                 0.00   0.00     0.00        0.00 0.00      0.00
## flower (seeds)               0.00   0.00     0.00        0.00 0.00      0.00
## cooking oil                  0.00   0.00     0.00        0.00 0.00      0.00
## dish cleaner                 0.00   0.00     0.00        0.00 0.00      0.00
## condensed milk               0.00   0.00     0.00        0.00 0.00      0.00
## roll products                0.00   0.00     0.00        0.00 0.00      0.00
## photo/film                   0.00   0.00     0.00        0.00 0.00      0.00
## pet care                     0.00   0.00     0.00        0.00 0.00      0.00
## chocolate marshmallow        0.00   0.00     0.00        0.00 0.00      0.00
## herbs/vegetable juice        0.00   0.00     0.00        0.00 0.00      0.00
## whole milk                   0.00   0.00     0.00        0.00 0.00      0.00
## candles                      0.00   0.00     0.00        0.00 0.00      0.00
## mayonnaise                   0.00   0.00     0.00        0.00 0.00      0.00
## Instant food products        0.00   0.00     0.00        0.00 0.00      0.00
## sweet spreads                0.00   0.00     0.00        0.00 0.00      0.00
## liquor (appetizer)           0.00   0.00     0.00        0.00 0.00      0.00
## specialty cheese             0.00   0.00     0.00        0.00 0.00      0.00
## frozen potato products       0.00   0.00     0.00        0.00 0.00      0.00
## house keeping products       0.00   0.00     0.00        0.00 0.00      0.00
## dog food                     0.00   0.00     0.00        0.00 0.00      0.00
## soy                          0.00   0.00     0.00        0.00 0.00      0.00
## instant coffee               0.00   0.00     0.00        0.00 0.00      0.00
## pip herbs                    0.00   0.00     0.00        0.00 0.00      0.00
## zwieback                     0.00   0.00     0.00        0.00 0.00      0.00
## finished products            0.00   0.00     0.00        0.00 0.00      0.00
## popcorn                      0.00   0.00     0.00        0.00 0.00      0.00
## vinegar                      0.00   0.00     0.00        0.00 0.00      0.00
## soups                        0.00   0.00     0.00        0.00 0.00      0.00
## female sanitary products     0.00   0.00     0.00        0.00 0.00      0.00
## sparkling wine               0.00   0.00     0.00        0.00 0.00      0.00
## dental care                  0.00   0.00     0.00        0.00 0.00      0.00
## cereals                      0.00   0.00     0.00        0.00 0.00      0.00
## kitchen towels               0.00   0.00     0.00        0.00 0.00      0.00
## curd cheese                  0.00   0.00     0.00        0.00 0.00      0.00
## other vegetables             0.00   0.00     0.00        0.00 0.00      0.00
## rolls/buns                   0.00   0.00     0.00        0.00 0.00      0.00
## softener                     0.00   0.00     0.00        0.00 0.00      0.00
## cleaner                      0.00   0.00     0.00        0.00 0.00      0.00
## spices                       0.00   0.00     0.00        0.00 0.00      0.00
## jam                          0.00   0.00     0.00        0.00 0.00      0.00
## sauces                       0.00   0.00     0.00        0.00 0.00      0.00
## rum                          0.00   0.00     0.00        0.00 0.00      0.00
## liver loaf                   0.00   0.00     0.00        0.00 0.00      0.00
## male cosmetics               0.00   0.00     0.00        0.00 0.00      0.00
## meat spreads                 0.00   0.00     0.00        0.00 0.00      0.00
## packaged herbs/vegetables    0.00   0.00     0.00        0.00 0.00      0.00
## brandy                       0.00   0.00     0.00        0.00 0.00      0.00
## ketchup                      0.00   0.00     0.00        0.00 0.00      0.00
## abrasive cleaner             0.00   0.00     0.00        0.00 0.00      0.00
## light bulbs                  0.00   0.00     0.00        0.00 0.00      0.00
## artif. sweetener             0.00   0.00     0.00        0.00 0.00      0.00
## nuts/prunes                  0.00   0.00     0.00        0.00 0.00      0.00
## specialty fat                0.00   0.00     0.00        0.00 0.00      0.00
## skin care                    0.00   0.00     0.00        0.00 0.00      0.00
## fish                         0.00   0.00     0.00        0.00 0.00      0.00
## potato products              0.00   0.00     0.00        0.00 0.00      0.00
## root vegetables              0.00   0.00     0.00        0.00 0.00      0.00
## snack products               0.00   0.00     0.00        0.00 0.00      0.00
## nut snack                    0.00   0.00     0.00        0.00 0.00      0.00
## soap                         0.00   0.00     0.00        0.00 0.00      0.00
## syrup                        0.00   0.00     0.00        0.00 0.00      0.00
## bathroom cleaner             0.00   0.00     0.00        0.00 0.00      0.00
## canned fruit                 0.00   0.00     0.00        0.00 0.00      0.00
## cookware                     0.00   0.00     0.00        0.00 0.00      0.00
## cooking chocolate            0.00   0.00     0.00        0.00 0.00      0.00
## tidbits                      0.00   0.00     0.00        0.00 0.00      0.00
## cocoa drinks                 0.00   0.00     0.00        0.00 0.00      0.00
## pudding powder               0.00   0.00     0.00        0.00 0.00      0.00
## ready soups                  0.00   0.00     0.00        0.00 0.00      0.00
## organic marinated meat       0.00   0.00     0.00        0.00 0.00      0.00
## flower soil/fertilizer       0.00   0.00     0.00        0.00 0.00      0.00
## organic products             0.00   0.00     0.00        0.00 0.00      0.00
## pot plants                   0.00   0.00     0.00        0.00 0.00      0.00
## prosecco                     0.00   0.00     0.00        0.00 0.00      0.00
## frankfurter                  0.00   0.00     0.00        0.00 0.00      0.00
## decalcifier                  0.00   0.00     0.00        0.00 0.00      0.00
## honey                        0.00   0.00     0.00        0.00 0.00      0.00
## specialty vegetables         0.00   0.00     0.00        0.00 0.00      0.00
## cream                        0.00   0.00     0.00        0.00 0.00      0.00
## hair spray                   0.00   0.00     0.00        0.00 0.00      0.00
## frozen fruits                0.00   0.00     0.00        0.00 0.00      0.00
## rubbing alcohol              0.00   0.00     0.00        0.00 0.00      0.00
## liqueur                      0.00   0.00     0.00        0.00 0.00      0.00
## make up remover              0.00   0.00     0.00        0.00 0.00      0.00
## salad dressing               0.00   0.00     0.00        0.00 0.00      0.00
## frozen chicken               0.00   0.00     0.00        0.00 0.00      0.00
## whisky                       0.00   0.00     0.00        0.00 0.00      0.00
## baby cosmetics               0.00   0.00     0.00        0.00 0.00      0.00
## toilet cleaner               0.00   0.00     0.00        0.00 0.00      0.00
## bags                         0.00   0.00     0.00        0.00 0.00      0.00
## canned herbs                 0.00   0.00     0.00        0.00 0.00      0.00
## kitchen utensil              0.00   0.00     0.00        0.00 0.00      0.00
## preservation products        0.00   0.00     0.00        0.00 0.00      0.00
## baby food                    0.00   0.00     0.00        0.00 0.00      0.00
## frozen herbss                0.00   0.00     0.00        0.00 0.00      0.00
## organic sausage              0.00   0.00     0.00        0.00 0.00      0.00
## sound storage medium         0.00   0.00     0.00        0.00 0.00      0.00
##                           red/blush wine white wine turkey dishes bottled water
## rice                                0.00       0.00   0.01   0.01          0.00
## veggies                             0.00       0.00   0.00   0.01          0.00
## loaf                                0.00       0.00   0.00   0.00          0.00
## coke                                0.00       0.00   0.00   0.00          0.00
## yogurt                              0.00       0.00   0.00   0.00          0.00
## vegetables                          0.00       0.00   0.01   0.00          0.00
## mineral water                       0.00       0.00   0.00   0.00          0.00
## Plastic bags                        0.00       0.00   0.00   0.00          0.00
## tropical fruit                      0.00       0.00   0.00   0.00          0.00
## marinated meat                      0.00       0.00   0.00   0.00          0.00
## pies/pasties                        0.00       0.00   0.00   0.00          0.00
## newspapers                          0.00       0.00   0.00   0.00          0.00
## citrus                              0.00       0.00   0.00   0.00          0.00
## whipped/sour cream                  0.00       0.00   0.00   0.00          0.00
## heinken                             0.00       0.00   0.00   0.00          0.00
## green tea                           0.00       0.00   0.00   0.00          0.00
## pip fruit                           0.00       0.00   0.00   0.00          0.00
## brown bread                         0.00       0.00   0.00   0.00          0.00
## fruit/vegetable juice               0.00       0.00   0.00   0.00          0.00
## domestic eggs                       0.00       0.00   0.00   0.00          0.00
## coffee                              0.00       0.00   0.00   0.00          0.00
## margarine                           0.00       0.00   0.00   0.00          0.00
## beef                                0.00       0.00   0.00   0.00          0.00
## curd                                0.00       0.00   0.00   0.00          0.00
## butter                              0.00       0.00   0.00   0.00          0.00
## marinated meats                     0.00       0.00   0.00   0.00          0.00
## napkins                             0.00       0.00   0.00   0.00          0.00
## halal meat                          0.00       0.00   0.00   0.00          0.00
## chocolate                           0.00       0.00   0.00   0.00          0.00
## frozen vegetables                   0.00       0.00   0.00   0.00          0.00
## chicken                             0.00       0.00   0.00   0.00          0.00
## white bread                         0.00       0.00   0.00   0.00          0.00
## cream cheese                        0.00       0.00   0.00   0.00          0.00
## waffles                             0.00       0.00   0.00   0.00          0.00
## dessert                             0.00       0.00   0.00   0.00          0.00
## salty snack                         0.00       0.00   0.00   0.00          0.00
## long life bakery product            0.00       0.00   0.00   0.00          0.00
## berries                             0.00       0.00   0.00   0.00          0.00
## hamburger meat                      0.00       0.00   0.00   0.00          0.00
## sugar                               0.00       0.00   0.00   0.00          0.00
## hygiene articles                    0.00       0.00   0.00   0.00          0.00
## UHT-milk                            0.00       0.00   0.00   0.00          0.00
## onions                              0.00       0.00   0.00   0.00          0.00
## candy                               0.00       0.00   0.00   0.00          0.00
## specialty chocolate                 0.00       0.00   0.00   0.00          0.00
## butter milk                         0.00       0.00   0.00   0.00          0.00
## oil                                 0.00       0.00   0.00   0.00          0.00
## frozen meals                        0.00       0.00   0.00   0.00          0.00
## misc. beverages                     0.00       0.00   0.00   0.00          0.00
## specialty bar                       0.00       0.00   0.00   0.00          0.00
## ham                                 0.00       0.00   0.00   0.00          0.00
## beverages                           0.00       0.00   0.00   0.00          0.00
## meat                                0.00       0.00   0.00   0.00          0.00
## ice cream                           0.00       0.00   0.00   0.00          0.00
## sliced cheese                       0.00       0.00   0.00   0.00          0.00
## hard cheese                         0.00       0.00   0.00   0.00          0.00
## noodles                             0.00       0.00   0.00   0.00          0.00
## grapes                              0.00       0.00   0.00   0.00          0.00
## cat food                            0.00       0.00   0.00   0.00          0.00
## chewing gum                         0.00       0.00   0.00   0.00          0.00
## soda                                0.00       0.00   0.00   0.00          0.00
## detergent                           0.00       0.00   0.00   0.00          0.00
## red/blush wine                      0.02       0.00   0.00   0.00          0.00
## white wine                          0.00       0.02   0.00   0.00          0.00
## turkey                              0.00       0.00   0.02   0.00          0.00
## dishes                              0.00       0.00   0.00   0.02          0.00
## bottled water                       0.00       0.00   0.00   0.00          0.02
## flour                               0.00       0.00   0.00   0.00          0.00
## semi-finished bread                 0.00       0.00   0.00   0.00          0.00
## baking powder                       0.00       0.00   0.00   0.00          0.00
## pickled vegetables                  0.00       0.00   0.00   0.00          0.00
## herbs                               0.00       0.00   0.00   0.00          0.00
## tropical herbs                      0.00       0.00   0.00   0.00          0.00
## soft cheese                         0.00       0.00   0.00   0.00          0.00
## tea                                 0.00       0.00   0.00   0.00          0.00
## processed cheese                    0.00       0.00   0.00   0.00          0.00
## sausage                             0.00       0.00   0.00   0.00          0.00
## pasta                               0.00       0.00   0.00   0.00          0.00
## citrus herbs                        0.00       0.00   0.00   0.00          0.00
## potted plants                       0.00       0.00   0.00   0.00          0.00
## canned fish                         0.00       0.00   0.00   0.00          0.00
## seasonal products                   0.00       0.00   0.00   0.00          0.00
## cake bar                            0.00       0.00   0.00   0.00          0.00
## carrots                             0.00       0.00   0.00   0.00          0.00
## mustard                             0.00       0.00   0.00   0.00          0.00
## packaged fruit/vegetables           0.00       0.00   0.00   0.00          0.00
## spread cheese                       0.00       0.00   0.00   0.00          0.00
## frozen dessert                      0.00       0.00   0.00   0.00          0.00
## frozen fish                         0.00       0.00   0.00   0.00          0.00
## cling film/bags                     0.00       0.00   0.00   0.00          0.00
## salt                                0.00       0.00   0.00   0.00          0.00
## liquor                              0.00       0.00   0.00   0.00          0.00
## canned vegetables                   0.00       0.00   0.00   0.00          0.00
## bottled beer                        0.00       0.00   0.00   0.00          0.00
## flower (seeds)                      0.00       0.00   0.00   0.00          0.00
## cooking oil                         0.00       0.00   0.00   0.00          0.00
## dish cleaner                        0.00       0.00   0.00   0.00          0.00
## condensed milk                      0.00       0.00   0.00   0.00          0.00
## roll products                       0.00       0.00   0.00   0.00          0.00
## photo/film                          0.00       0.00   0.00   0.00          0.00
## pet care                            0.00       0.00   0.00   0.00          0.00
## chocolate marshmallow               0.00       0.00   0.00   0.00          0.00
## herbs/vegetable juice               0.00       0.00   0.00   0.00          0.00
## whole milk                          0.00       0.00   0.00   0.00          0.00
## candles                             0.00       0.00   0.00   0.00          0.00
## mayonnaise                          0.00       0.00   0.00   0.00          0.00
## Instant food products               0.00       0.00   0.00   0.00          0.00
## sweet spreads                       0.00       0.00   0.00   0.00          0.00
## liquor (appetizer)                  0.00       0.00   0.00   0.00          0.00
## specialty cheese                    0.00       0.00   0.00   0.00          0.00
## frozen potato products              0.00       0.00   0.00   0.00          0.00
## house keeping products              0.00       0.00   0.00   0.00          0.00
## dog food                            0.00       0.00   0.00   0.00          0.00
## soy                                 0.00       0.00   0.00   0.00          0.00
## instant coffee                      0.00       0.00   0.00   0.00          0.00
## pip herbs                           0.00       0.00   0.00   0.00          0.00
## zwieback                            0.00       0.00   0.00   0.00          0.00
## finished products                   0.00       0.00   0.00   0.00          0.00
## popcorn                             0.00       0.00   0.00   0.00          0.00
## vinegar                             0.00       0.00   0.00   0.00          0.00
## soups                               0.00       0.00   0.00   0.00          0.00
## female sanitary products            0.00       0.00   0.00   0.00          0.00
## sparkling wine                      0.00       0.00   0.00   0.00          0.00
## dental care                         0.00       0.00   0.00   0.00          0.00
## cereals                             0.00       0.00   0.00   0.00          0.00
## kitchen towels                      0.00       0.00   0.00   0.00          0.00
## curd cheese                         0.00       0.00   0.00   0.00          0.00
## other vegetables                    0.00       0.00   0.00   0.00          0.00
## rolls/buns                          0.00       0.00   0.00   0.00          0.00
## softener                            0.00       0.00   0.00   0.00          0.00
## cleaner                             0.00       0.00   0.00   0.00          0.00
## spices                              0.00       0.00   0.00   0.00          0.00
## jam                                 0.00       0.00   0.00   0.00          0.00
## sauces                              0.00       0.00   0.00   0.00          0.00
## rum                                 0.00       0.00   0.00   0.00          0.00
## liver loaf                          0.00       0.00   0.00   0.00          0.00
## male cosmetics                      0.00       0.00   0.00   0.00          0.00
## meat spreads                        0.00       0.00   0.00   0.00          0.00
## packaged herbs/vegetables           0.00       0.00   0.00   0.00          0.00
## brandy                              0.00       0.00   0.00   0.00          0.00
## ketchup                             0.00       0.00   0.00   0.00          0.00
## abrasive cleaner                    0.00       0.00   0.00   0.00          0.00
## light bulbs                         0.00       0.00   0.00   0.00          0.00
## artif. sweetener                    0.00       0.00   0.00   0.00          0.00
## nuts/prunes                         0.00       0.00   0.00   0.00          0.00
## specialty fat                       0.00       0.00   0.00   0.00          0.00
## skin care                           0.00       0.00   0.00   0.00          0.00
## fish                                0.00       0.00   0.00   0.00          0.00
## potato products                     0.00       0.00   0.00   0.00          0.00
## root vegetables                     0.00       0.00   0.00   0.00          0.00
## snack products                      0.00       0.00   0.00   0.00          0.00
## nut snack                           0.00       0.00   0.00   0.00          0.00
## soap                                0.00       0.00   0.00   0.00          0.00
## syrup                               0.00       0.00   0.00   0.00          0.00
## bathroom cleaner                    0.00       0.00   0.00   0.00          0.00
## canned fruit                        0.00       0.00   0.00   0.00          0.00
## cookware                            0.00       0.00   0.00   0.00          0.00
## cooking chocolate                   0.00       0.00   0.00   0.00          0.00
## tidbits                             0.00       0.00   0.00   0.00          0.00
## cocoa drinks                        0.00       0.00   0.00   0.00          0.00
## pudding powder                      0.00       0.00   0.00   0.00          0.00
## ready soups                         0.00       0.00   0.00   0.00          0.00
## organic marinated meat              0.00       0.00   0.00   0.00          0.00
## flower soil/fertilizer              0.00       0.00   0.00   0.00          0.00
## organic products                    0.00       0.00   0.00   0.00          0.00
## pot plants                          0.00       0.00   0.00   0.00          0.00
## prosecco                            0.00       0.00   0.00   0.00          0.00
## frankfurter                         0.00       0.00   0.00   0.00          0.00
## decalcifier                         0.00       0.00   0.00   0.00          0.00
## honey                               0.00       0.00   0.00   0.00          0.00
## specialty vegetables                0.00       0.00   0.00   0.00          0.00
## cream                               0.00       0.00   0.00   0.00          0.00
## hair spray                          0.00       0.00   0.00   0.00          0.00
## frozen fruits                       0.00       0.00   0.00   0.00          0.00
## rubbing alcohol                     0.00       0.00   0.00   0.00          0.00
## liqueur                             0.00       0.00   0.00   0.00          0.00
## make up remover                     0.00       0.00   0.00   0.00          0.00
## salad dressing                      0.00       0.00   0.00   0.00          0.00
## frozen chicken                      0.00       0.00   0.00   0.00          0.00
## whisky                              0.00       0.00   0.00   0.00          0.00
## baby cosmetics                      0.00       0.00   0.00   0.00          0.00
## toilet cleaner                      0.00       0.00   0.00   0.00          0.00
## bags                                0.00       0.00   0.00   0.00          0.00
## canned herbs                        0.00       0.00   0.00   0.00          0.00
## kitchen utensil                     0.00       0.00   0.00   0.00          0.00
## preservation products               0.00       0.00   0.00   0.00          0.00
## baby food                           0.00       0.00   0.00   0.00          0.00
## frozen herbss                       0.00       0.00   0.00   0.00          0.00
## organic sausage                     0.00       0.00   0.00   0.00          0.00
## sound storage medium                0.00       0.00   0.00   0.00          0.00
##                           flour semi-finished bread baking powder
## rice                       0.01                0.01          0.01
## veggies                    0.01                0.00          0.01
## loaf                       0.00                0.00          0.00
## coke                       0.00                0.00          0.00
## yogurt                     0.00                0.00          0.00
## vegetables                 0.00                0.00          0.00
## mineral water              0.00                0.00          0.00
## Plastic bags               0.00                0.00          0.00
## tropical fruit             0.00                0.00          0.00
## marinated meat             0.00                0.00          0.00
## pies/pasties               0.00                0.00          0.00
## newspapers                 0.00                0.00          0.00
## citrus                     0.00                0.00          0.00
## whipped/sour cream         0.00                0.00          0.00
## heinken                    0.00                0.00          0.00
## green tea                  0.00                0.00          0.00
## pip fruit                  0.00                0.00          0.00
## brown bread                0.00                0.00          0.00
## fruit/vegetable juice      0.00                0.00          0.00
## domestic eggs              0.00                0.00          0.00
## coffee                     0.00                0.00          0.00
## margarine                  0.00                0.00          0.00
## beef                       0.00                0.00          0.00
## curd                       0.00                0.00          0.00
## butter                     0.00                0.00          0.00
## marinated meats            0.00                0.00          0.00
## napkins                    0.00                0.00          0.00
## halal meat                 0.00                0.00          0.00
## chocolate                  0.00                0.00          0.00
## frozen vegetables          0.00                0.00          0.00
## chicken                    0.00                0.00          0.00
## white bread                0.00                0.00          0.00
## cream cheese               0.00                0.00          0.00
## waffles                    0.00                0.00          0.00
## dessert                    0.00                0.00          0.00
## salty snack                0.00                0.00          0.00
## long life bakery product   0.00                0.00          0.00
## berries                    0.00                0.00          0.00
## hamburger meat             0.00                0.00          0.00
## sugar                      0.00                0.00          0.00
## hygiene articles           0.00                0.00          0.00
## UHT-milk                   0.00                0.00          0.00
## onions                     0.00                0.00          0.00
## candy                      0.00                0.00          0.00
## specialty chocolate        0.00                0.00          0.00
## butter milk                0.00                0.00          0.00
## oil                        0.00                0.00          0.00
## frozen meals               0.00                0.00          0.00
## misc. beverages            0.00                0.00          0.00
## specialty bar              0.00                0.00          0.00
## ham                        0.00                0.00          0.00
## beverages                  0.00                0.00          0.00
## meat                       0.00                0.00          0.00
## ice cream                  0.00                0.00          0.00
## sliced cheese              0.00                0.00          0.00
## hard cheese                0.00                0.00          0.00
## noodles                    0.00                0.00          0.00
## grapes                     0.00                0.00          0.00
## cat food                   0.00                0.00          0.00
## chewing gum                0.00                0.00          0.00
## soda                       0.00                0.00          0.00
## detergent                  0.00                0.00          0.00
## red/blush wine             0.00                0.00          0.00
## white wine                 0.00                0.00          0.00
## turkey                     0.00                0.00          0.00
## dishes                     0.00                0.00          0.00
## bottled water              0.00                0.00          0.00
## flour                      0.02                0.00          0.00
## semi-finished bread        0.00                0.02          0.00
## baking powder              0.00                0.00          0.02
## pickled vegetables         0.00                0.00          0.00
## herbs                      0.00                0.00          0.00
## tropical herbs             0.00                0.00          0.00
## soft cheese                0.00                0.00          0.00
## tea                        0.00                0.00          0.00
## processed cheese           0.00                0.00          0.00
## sausage                    0.00                0.00          0.00
## pasta                      0.00                0.00          0.00
## citrus herbs               0.00                0.00          0.00
## potted plants              0.00                0.00          0.00
## canned fish                0.00                0.00          0.00
## seasonal products          0.00                0.00          0.00
## cake bar                   0.00                0.00          0.00
## carrots                    0.00                0.00          0.00
## mustard                    0.00                0.00          0.00
## packaged fruit/vegetables  0.00                0.00          0.00
## spread cheese              0.00                0.00          0.00
## frozen dessert             0.00                0.00          0.00
## frozen fish                0.00                0.00          0.00
## cling film/bags            0.00                0.00          0.00
## salt                       0.00                0.00          0.00
## liquor                     0.00                0.00          0.00
## canned vegetables          0.00                0.00          0.00
## bottled beer               0.00                0.00          0.00
## flower (seeds)             0.00                0.00          0.00
## cooking oil                0.00                0.00          0.00
## dish cleaner               0.00                0.00          0.00
## condensed milk             0.00                0.00          0.00
## roll products              0.00                0.00          0.00
## photo/film                 0.00                0.00          0.00
## pet care                   0.00                0.00          0.00
## chocolate marshmallow      0.00                0.00          0.00
## herbs/vegetable juice      0.00                0.00          0.00
## whole milk                 0.00                0.00          0.00
## candles                    0.00                0.00          0.00
## mayonnaise                 0.00                0.00          0.00
## Instant food products      0.00                0.00          0.00
## sweet spreads              0.00                0.00          0.00
## liquor (appetizer)         0.00                0.00          0.00
## specialty cheese           0.00                0.00          0.00
## frozen potato products     0.00                0.00          0.00
## house keeping products     0.00                0.00          0.00
## dog food                   0.00                0.00          0.00
## soy                        0.00                0.00          0.00
## instant coffee             0.00                0.00          0.00
## pip herbs                  0.00                0.00          0.00
## zwieback                   0.00                0.00          0.00
## finished products          0.00                0.00          0.00
## popcorn                    0.00                0.00          0.00
## vinegar                    0.00                0.00          0.00
## soups                      0.00                0.00          0.00
## female sanitary products   0.00                0.00          0.00
## sparkling wine             0.00                0.00          0.00
## dental care                0.00                0.00          0.00
## cereals                    0.00                0.00          0.00
## kitchen towels             0.00                0.00          0.00
## curd cheese                0.00                0.00          0.00
## other vegetables           0.00                0.00          0.00
## rolls/buns                 0.00                0.00          0.00
## softener                   0.00                0.00          0.00
## cleaner                    0.00                0.00          0.00
## spices                     0.00                0.00          0.00
## jam                        0.00                0.00          0.00
## sauces                     0.00                0.00          0.00
## rum                        0.00                0.00          0.00
## liver loaf                 0.00                0.00          0.00
## male cosmetics             0.00                0.00          0.00
## meat spreads               0.00                0.00          0.00
## packaged herbs/vegetables  0.00                0.00          0.00
## brandy                     0.00                0.00          0.00
## ketchup                    0.00                0.00          0.00
## abrasive cleaner           0.00                0.00          0.00
## light bulbs                0.00                0.00          0.00
## artif. sweetener           0.00                0.00          0.00
## nuts/prunes                0.00                0.00          0.00
## specialty fat              0.00                0.00          0.00
## skin care                  0.00                0.00          0.00
## fish                       0.00                0.00          0.00
## potato products            0.00                0.00          0.00
## root vegetables            0.00                0.00          0.00
## snack products             0.00                0.00          0.00
## nut snack                  0.00                0.00          0.00
## soap                       0.00                0.00          0.00
## syrup                      0.00                0.00          0.00
## bathroom cleaner           0.00                0.00          0.00
## canned fruit               0.00                0.00          0.00
## cookware                   0.00                0.00          0.00
## cooking chocolate          0.00                0.00          0.00
## tidbits                    0.00                0.00          0.00
## cocoa drinks               0.00                0.00          0.00
## pudding powder             0.00                0.00          0.00
## ready soups                0.00                0.00          0.00
## organic marinated meat     0.00                0.00          0.00
## flower soil/fertilizer     0.00                0.00          0.00
## organic products           0.00                0.00          0.00
## pot plants                 0.00                0.00          0.00
## prosecco                   0.00                0.00          0.00
## frankfurter                0.00                0.00          0.00
## decalcifier                0.00                0.00          0.00
## honey                      0.00                0.00          0.00
## specialty vegetables       0.00                0.00          0.00
## cream                      0.00                0.00          0.00
## hair spray                 0.00                0.00          0.00
## frozen fruits              0.00                0.00          0.00
## rubbing alcohol            0.00                0.00          0.00
## liqueur                    0.00                0.00          0.00
## make up remover            0.00                0.00          0.00
## salad dressing             0.00                0.00          0.00
## frozen chicken             0.00                0.00          0.00
## whisky                     0.00                0.00          0.00
## baby cosmetics             0.00                0.00          0.00
## toilet cleaner             0.00                0.00          0.00
## bags                       0.00                0.00          0.00
## canned herbs               0.00                0.00          0.00
## kitchen utensil            0.00                0.00          0.00
## preservation products      0.00                0.00          0.00
## baby food                  0.00                0.00          0.00
## frozen herbss              0.00                0.00          0.00
## organic sausage            0.00                0.00          0.00
## sound storage medium       0.00                0.00          0.00
##                           pickled vegetables herbs tropical herbs soft cheese
## rice                                    0.01  0.01           0.00        0.01
## veggies                                 0.01  0.01           0.00        0.01
## loaf                                    0.00  0.00           0.00        0.00
## coke                                    0.00  0.00           0.00        0.00
## yogurt                                  0.00  0.00           0.00        0.01
## vegetables                              0.00  0.01           0.00        0.00
## mineral water                           0.00  0.00           0.00        0.00
## Plastic bags                            0.00  0.00           0.00        0.00
## tropical fruit                          0.00  0.00           0.00        0.00
## marinated meat                          0.00  0.00           0.00        0.00
## pies/pasties                            0.00  0.00           0.00        0.00
## newspapers                              0.00  0.00           0.00        0.00
## citrus                                  0.00  0.00           0.00        0.00
## whipped/sour cream                      0.00  0.00           0.00        0.00
## heinken                                 0.00  0.00           0.00        0.00
## green tea                               0.00  0.00           0.00        0.00
## pip fruit                               0.00  0.00           0.00        0.00
## brown bread                             0.00  0.00           0.00        0.00
## fruit/vegetable juice                   0.00  0.00           0.00        0.00
## domestic eggs                           0.00  0.00           0.00        0.00
## coffee                                  0.00  0.00           0.00        0.00
## margarine                               0.00  0.00           0.00        0.00
## beef                                    0.00  0.00           0.00        0.00
## curd                                    0.00  0.00           0.00        0.00
## butter                                  0.00  0.00           0.00        0.00
## marinated meats                         0.00  0.00           0.00        0.00
## napkins                                 0.00  0.00           0.00        0.00
## halal meat                              0.00  0.00           0.00        0.00
## chocolate                               0.00  0.00           0.00        0.00
## frozen vegetables                       0.00  0.00           0.00        0.00
## chicken                                 0.00  0.00           0.00        0.00
## white bread                             0.00  0.00           0.00        0.00
## cream cheese                            0.00  0.00           0.00        0.00
## waffles                                 0.00  0.00           0.00        0.00
## dessert                                 0.00  0.00           0.00        0.00
## salty snack                             0.00  0.00           0.00        0.00
## long life bakery product                0.00  0.00           0.00        0.00
## berries                                 0.00  0.00           0.00        0.00
## hamburger meat                          0.00  0.00           0.00        0.00
## sugar                                   0.00  0.00           0.00        0.00
## hygiene articles                        0.00  0.00           0.00        0.00
## UHT-milk                                0.00  0.00           0.00        0.00
## onions                                  0.00  0.00           0.00        0.00
## candy                                   0.00  0.00           0.00        0.00
## specialty chocolate                     0.00  0.00           0.00        0.00
## butter milk                             0.00  0.00           0.00        0.00
## oil                                     0.00  0.00           0.00        0.00
## frozen meals                            0.00  0.00           0.00        0.00
## misc. beverages                         0.00  0.00           0.00        0.00
## specialty bar                           0.00  0.00           0.00        0.00
## ham                                     0.00  0.00           0.00        0.00
## beverages                               0.00  0.00           0.00        0.00
## meat                                    0.00  0.00           0.00        0.00
## ice cream                               0.00  0.00           0.00        0.00
## sliced cheese                           0.00  0.00           0.00        0.00
## hard cheese                             0.00  0.00           0.00        0.00
## noodles                                 0.00  0.00           0.00        0.00
## grapes                                  0.00  0.00           0.00        0.00
## cat food                                0.00  0.00           0.00        0.00
## chewing gum                             0.00  0.00           0.00        0.00
## soda                                    0.00  0.00           0.00        0.00
## detergent                               0.00  0.00           0.00        0.00
## red/blush wine                          0.00  0.00           0.00        0.00
## white wine                              0.00  0.00           0.00        0.00
## turkey                                  0.00  0.00           0.00        0.00
## dishes                                  0.00  0.00           0.00        0.00
## bottled water                           0.00  0.00           0.00        0.00
## flour                                   0.00  0.00           0.00        0.00
## semi-finished bread                     0.00  0.00           0.00        0.00
## baking powder                           0.00  0.00           0.00        0.00
## pickled vegetables                      0.02  0.00           0.00        0.00
## herbs                                   0.00  0.02           0.00        0.00
## tropical herbs                          0.00  0.00           0.02        0.00
## soft cheese                             0.00  0.00           0.00        0.02
## tea                                     0.00  0.00           0.00        0.00
## processed cheese                        0.00  0.00           0.00        0.00
## sausage                                 0.00  0.00           0.00        0.00
## pasta                                   0.00  0.00           0.00        0.00
## citrus herbs                            0.00  0.00           0.00        0.00
## potted plants                           0.00  0.00           0.00        0.00
## canned fish                             0.00  0.00           0.00        0.00
## seasonal products                       0.00  0.00           0.00        0.00
## cake bar                                0.00  0.00           0.00        0.00
## carrots                                 0.00  0.00           0.00        0.00
## mustard                                 0.00  0.00           0.00        0.00
## packaged fruit/vegetables               0.00  0.00           0.00        0.00
## spread cheese                           0.00  0.00           0.00        0.00
## frozen dessert                          0.00  0.00           0.00        0.00
## frozen fish                             0.00  0.00           0.00        0.00
## cling film/bags                         0.00  0.00           0.00        0.00
## salt                                    0.00  0.00           0.00        0.00
## liquor                                  0.00  0.00           0.00        0.00
## canned vegetables                       0.00  0.00           0.00        0.00
## bottled beer                            0.00  0.00           0.00        0.00
## flower (seeds)                          0.00  0.00           0.00        0.00
## cooking oil                             0.00  0.00           0.00        0.00
## dish cleaner                            0.00  0.00           0.00        0.00
## condensed milk                          0.00  0.00           0.00        0.00
## roll products                           0.00  0.00           0.00        0.00
## photo/film                              0.00  0.00           0.00        0.00
## pet care                                0.00  0.00           0.00        0.00
## chocolate marshmallow                   0.00  0.00           0.00        0.00
## herbs/vegetable juice                   0.00  0.00           0.00        0.00
## whole milk                              0.00  0.00           0.00        0.00
## candles                                 0.00  0.00           0.00        0.00
## mayonnaise                              0.00  0.00           0.00        0.00
## Instant food products                   0.00  0.00           0.00        0.00
## sweet spreads                           0.00  0.00           0.00        0.00
## liquor (appetizer)                      0.00  0.00           0.00        0.00
## specialty cheese                        0.00  0.00           0.00        0.00
## frozen potato products                  0.00  0.00           0.00        0.00
## house keeping products                  0.00  0.00           0.00        0.00
## dog food                                0.00  0.00           0.00        0.00
## soy                                     0.00  0.00           0.00        0.00
## instant coffee                          0.00  0.00           0.00        0.00
## pip herbs                               0.00  0.00           0.00        0.00
## zwieback                                0.00  0.00           0.00        0.00
## finished products                       0.00  0.00           0.00        0.00
## popcorn                                 0.00  0.00           0.00        0.00
## vinegar                                 0.00  0.00           0.00        0.00
## soups                                   0.00  0.00           0.00        0.00
## female sanitary products                0.00  0.00           0.00        0.00
## sparkling wine                          0.00  0.00           0.00        0.00
## dental care                             0.00  0.00           0.00        0.00
## cereals                                 0.00  0.00           0.00        0.00
## kitchen towels                          0.00  0.00           0.00        0.00
## curd cheese                             0.00  0.00           0.00        0.00
## other vegetables                        0.00  0.00           0.00        0.00
## rolls/buns                              0.00  0.00           0.00        0.00
## softener                                0.00  0.00           0.00        0.00
## cleaner                                 0.00  0.00           0.00        0.00
## spices                                  0.00  0.00           0.00        0.00
## jam                                     0.00  0.00           0.00        0.00
## sauces                                  0.00  0.00           0.00        0.00
## rum                                     0.00  0.00           0.00        0.00
## liver loaf                              0.00  0.00           0.00        0.00
## male cosmetics                          0.00  0.00           0.00        0.00
## meat spreads                            0.00  0.00           0.00        0.00
## packaged herbs/vegetables               0.00  0.00           0.00        0.00
## brandy                                  0.00  0.00           0.00        0.00
## ketchup                                 0.00  0.00           0.00        0.00
## abrasive cleaner                        0.00  0.00           0.00        0.00
## light bulbs                             0.00  0.00           0.00        0.00
## artif. sweetener                        0.00  0.00           0.00        0.00
## nuts/prunes                             0.00  0.00           0.00        0.00
## specialty fat                           0.00  0.00           0.00        0.00
## skin care                               0.00  0.00           0.00        0.00
## fish                                    0.00  0.00           0.00        0.00
## potato products                         0.00  0.00           0.00        0.00
## root vegetables                         0.00  0.00           0.00        0.00
## snack products                          0.00  0.00           0.00        0.00
## nut snack                               0.00  0.00           0.00        0.00
## soap                                    0.00  0.00           0.00        0.00
## syrup                                   0.00  0.00           0.00        0.00
## bathroom cleaner                        0.00  0.00           0.00        0.00
## canned fruit                            0.00  0.00           0.00        0.00
## cookware                                0.00  0.00           0.00        0.00
## cooking chocolate                       0.00  0.00           0.00        0.00
## tidbits                                 0.00  0.00           0.00        0.00
## cocoa drinks                            0.00  0.00           0.00        0.00
## pudding powder                          0.00  0.00           0.00        0.00
## ready soups                             0.00  0.00           0.00        0.00
## organic marinated meat                  0.00  0.00           0.00        0.00
## flower soil/fertilizer                  0.00  0.00           0.00        0.00
## organic products                        0.00  0.00           0.00        0.00
## pot plants                              0.00  0.00           0.00        0.00
## prosecco                                0.00  0.00           0.00        0.00
## frankfurter                             0.00  0.00           0.00        0.00
## decalcifier                             0.00  0.00           0.00        0.00
## honey                                   0.00  0.00           0.00        0.00
## specialty vegetables                    0.00  0.00           0.00        0.00
## cream                                   0.00  0.00           0.00        0.00
## hair spray                              0.00  0.00           0.00        0.00
## frozen fruits                           0.00  0.00           0.00        0.00
## rubbing alcohol                         0.00  0.00           0.00        0.00
## liqueur                                 0.00  0.00           0.00        0.00
## make up remover                         0.00  0.00           0.00        0.00
## salad dressing                          0.00  0.00           0.00        0.00
## frozen chicken                          0.00  0.00           0.00        0.00
## whisky                                  0.00  0.00           0.00        0.00
## baby cosmetics                          0.00  0.00           0.00        0.00
## toilet cleaner                          0.00  0.00           0.00        0.00
## bags                                    0.00  0.00           0.00        0.00
## canned herbs                            0.00  0.00           0.00        0.00
## kitchen utensil                         0.00  0.00           0.00        0.00
## preservation products                   0.00  0.00           0.00        0.00
## baby food                               0.00  0.00           0.00        0.00
## frozen herbss                           0.00  0.00           0.00        0.00
## organic sausage                         0.00  0.00           0.00        0.00
## sound storage medium                    0.00  0.00           0.00        0.00
##                            tea processed cheese sausage pasta citrus herbs
## rice                      0.01             0.01    0.00  0.01         0.01
## veggies                   0.00             0.00    0.00  0.00         0.00
## loaf                      0.00             0.00    0.00  0.00         0.00
## coke                      0.00             0.00    0.00  0.00         0.00
## yogurt                    0.00             0.00    0.00  0.00         0.00
## vegetables                0.00             0.00    0.00  0.00         0.00
## mineral water             0.00             0.00    0.00  0.00         0.00
## Plastic bags              0.00             0.00    0.00  0.00         0.00
## tropical fruit            0.00             0.00    0.00  0.00         0.00
## marinated meat            0.00             0.00    0.00  0.00         0.00
## pies/pasties              0.00             0.00    0.00  0.00         0.00
## newspapers                0.00             0.00    0.00  0.00         0.00
## citrus                    0.00             0.00    0.00  0.00         0.00
## whipped/sour cream        0.00             0.00    0.00  0.00         0.00
## heinken                   0.00             0.00    0.00  0.00         0.00
## green tea                 0.00             0.00    0.00  0.00         0.00
## pip fruit                 0.00             0.00    0.00  0.00         0.00
## brown bread               0.00             0.00    0.00  0.00         0.00
## fruit/vegetable juice     0.00             0.00    0.00  0.00         0.00
## domestic eggs             0.00             0.00    0.00  0.00         0.00
## coffee                    0.00             0.00    0.00  0.00         0.00
## margarine                 0.00             0.00    0.00  0.00         0.00
## beef                      0.00             0.00    0.00  0.00         0.00
## curd                      0.00             0.00    0.00  0.00         0.00
## butter                    0.00             0.00    0.00  0.00         0.00
## marinated meats           0.00             0.00    0.00  0.00         0.00
## napkins                   0.00             0.00    0.00  0.00         0.00
## halal meat                0.00             0.00    0.00  0.00         0.00
## chocolate                 0.00             0.00    0.00  0.00         0.00
## frozen vegetables         0.00             0.00    0.00  0.00         0.00
## chicken                   0.00             0.00    0.00  0.00         0.00
## white bread               0.00             0.00    0.00  0.00         0.00
## cream cheese              0.00             0.00    0.00  0.00         0.00
## waffles                   0.00             0.00    0.00  0.00         0.00
## dessert                   0.00             0.00    0.00  0.00         0.00
## salty snack               0.00             0.00    0.00  0.00         0.00
## long life bakery product  0.00             0.00    0.00  0.00         0.00
## berries                   0.00             0.00    0.00  0.00         0.00
## hamburger meat            0.00             0.00    0.00  0.00         0.00
## sugar                     0.00             0.00    0.00  0.00         0.00
## hygiene articles          0.00             0.00    0.00  0.00         0.00
## UHT-milk                  0.00             0.00    0.00  0.00         0.00
## onions                    0.00             0.00    0.00  0.00         0.00
## candy                     0.00             0.00    0.00  0.00         0.00
## specialty chocolate       0.00             0.00    0.00  0.00         0.00
## butter milk               0.00             0.00    0.00  0.00         0.00
## oil                       0.00             0.00    0.00  0.00         0.00
## frozen meals              0.00             0.00    0.00  0.00         0.00
## misc. beverages           0.00             0.00    0.00  0.00         0.00
## specialty bar             0.00             0.00    0.00  0.00         0.00
## ham                       0.00             0.00    0.00  0.00         0.00
## beverages                 0.00             0.00    0.00  0.00         0.00
## meat                      0.00             0.00    0.00  0.00         0.00
## ice cream                 0.00             0.00    0.00  0.00         0.00
## sliced cheese             0.00             0.00    0.00  0.00         0.00
## hard cheese               0.00             0.00    0.00  0.00         0.00
## noodles                   0.00             0.00    0.00  0.00         0.00
## grapes                    0.00             0.00    0.00  0.00         0.00
## cat food                  0.00             0.00    0.00  0.00         0.00
## chewing gum               0.00             0.00    0.00  0.00         0.00
## soda                      0.00             0.00    0.00  0.00         0.00
## detergent                 0.00             0.00    0.00  0.00         0.00
## red/blush wine            0.00             0.00    0.00  0.00         0.00
## white wine                0.00             0.00    0.00  0.00         0.00
## turkey                    0.00             0.00    0.00  0.00         0.00
## dishes                    0.00             0.00    0.00  0.00         0.00
## bottled water             0.00             0.00    0.00  0.00         0.00
## flour                     0.00             0.00    0.00  0.00         0.00
## semi-finished bread       0.00             0.00    0.00  0.00         0.00
## baking powder             0.00             0.00    0.00  0.00         0.00
## pickled vegetables        0.00             0.00    0.00  0.00         0.00
## herbs                     0.00             0.00    0.00  0.00         0.00
## tropical herbs            0.00             0.00    0.00  0.00         0.00
## soft cheese               0.00             0.00    0.00  0.00         0.00
## tea                       0.02             0.00    0.00  0.00         0.00
## processed cheese          0.00             0.02    0.00  0.00         0.00
## sausage                   0.00             0.00    0.02  0.00         0.00
## pasta                     0.00             0.00    0.00  0.02         0.00
## citrus herbs              0.00             0.00    0.00  0.00         0.02
## potted plants             0.00             0.00    0.00  0.00         0.00
## canned fish               0.00             0.00    0.00  0.00         0.00
## seasonal products         0.00             0.00    0.00  0.00         0.00
## cake bar                  0.00             0.00    0.00  0.00         0.00
## carrots                   0.00             0.00    0.00  0.00         0.00
## mustard                   0.00             0.00    0.00  0.00         0.00
## packaged fruit/vegetables 0.00             0.00    0.00  0.00         0.00
## spread cheese             0.00             0.00    0.00  0.00         0.00
## frozen dessert            0.00             0.00    0.00  0.00         0.00
## frozen fish               0.00             0.00    0.00  0.00         0.00
## cling film/bags           0.00             0.00    0.00  0.00         0.00
## salt                      0.00             0.00    0.00  0.00         0.00
## liquor                    0.00             0.00    0.00  0.00         0.00
## canned vegetables         0.00             0.00    0.00  0.00         0.00
## bottled beer              0.00             0.00    0.00  0.00         0.00
## flower (seeds)            0.00             0.00    0.00  0.00         0.00
## cooking oil               0.00             0.00    0.00  0.00         0.00
## dish cleaner              0.00             0.00    0.00  0.00         0.00
## condensed milk            0.00             0.00    0.00  0.00         0.00
## roll products             0.00             0.00    0.00  0.00         0.00
## photo/film                0.00             0.00    0.00  0.00         0.00
## pet care                  0.00             0.00    0.00  0.00         0.00
## chocolate marshmallow     0.00             0.00    0.00  0.00         0.00
## herbs/vegetable juice     0.00             0.00    0.00  0.00         0.00
## whole milk                0.00             0.00    0.00  0.00         0.00
## candles                   0.00             0.00    0.00  0.00         0.00
## mayonnaise                0.00             0.00    0.00  0.00         0.00
## Instant food products     0.00             0.00    0.00  0.00         0.00
## sweet spreads             0.00             0.00    0.00  0.00         0.00
## liquor (appetizer)        0.00             0.00    0.00  0.00         0.00
## specialty cheese          0.00             0.00    0.00  0.00         0.00
## frozen potato products    0.00             0.00    0.00  0.00         0.00
## house keeping products    0.00             0.00    0.00  0.00         0.00
## dog food                  0.00             0.00    0.00  0.00         0.00
## soy                       0.00             0.00    0.00  0.00         0.00
## instant coffee            0.00             0.00    0.00  0.00         0.00
## pip herbs                 0.00             0.00    0.00  0.00         0.00
## zwieback                  0.00             0.00    0.00  0.00         0.00
## finished products         0.00             0.00    0.00  0.00         0.00
## popcorn                   0.00             0.00    0.00  0.00         0.00
## vinegar                   0.00             0.00    0.00  0.00         0.00
## soups                     0.00             0.00    0.00  0.00         0.00
## female sanitary products  0.00             0.00    0.00  0.00         0.00
## sparkling wine            0.00             0.00    0.00  0.00         0.00
## dental care               0.00             0.00    0.00  0.00         0.00
## cereals                   0.00             0.00    0.00  0.00         0.00
## kitchen towels            0.00             0.00    0.00  0.00         0.00
## curd cheese               0.00             0.00    0.00  0.00         0.00
## other vegetables          0.00             0.00    0.00  0.00         0.00
## rolls/buns                0.00             0.00    0.00  0.00         0.00
## softener                  0.00             0.00    0.00  0.00         0.00
## cleaner                   0.00             0.00    0.00  0.00         0.00
## spices                    0.00             0.00    0.00  0.00         0.00
## jam                       0.00             0.00    0.00  0.00         0.00
## sauces                    0.00             0.00    0.00  0.00         0.00
## rum                       0.00             0.00    0.00  0.00         0.00
## liver loaf                0.00             0.00    0.00  0.00         0.00
## male cosmetics            0.00             0.00    0.00  0.00         0.00
## meat spreads              0.00             0.00    0.00  0.00         0.00
## packaged herbs/vegetables 0.00             0.00    0.00  0.00         0.00
## brandy                    0.00             0.00    0.00  0.00         0.00
## ketchup                   0.00             0.00    0.00  0.00         0.00
## abrasive cleaner          0.00             0.00    0.00  0.00         0.00
## light bulbs               0.00             0.00    0.00  0.00         0.00
## artif. sweetener          0.00             0.00    0.00  0.00         0.00
## nuts/prunes               0.00             0.00    0.00  0.00         0.00
## specialty fat             0.00             0.00    0.00  0.00         0.00
## skin care                 0.00             0.00    0.00  0.00         0.00
## fish                      0.00             0.00    0.00  0.00         0.00
## potato products           0.00             0.00    0.00  0.00         0.00
## root vegetables           0.00             0.00    0.00  0.00         0.00
## snack products            0.00             0.00    0.00  0.00         0.00
## nut snack                 0.00             0.00    0.00  0.00         0.00
## soap                      0.00             0.00    0.00  0.00         0.00
## syrup                     0.00             0.00    0.00  0.00         0.00
## bathroom cleaner          0.00             0.00    0.00  0.00         0.00
## canned fruit              0.00             0.00    0.00  0.00         0.00
## cookware                  0.00             0.00    0.00  0.00         0.00
## cooking chocolate         0.00             0.00    0.00  0.00         0.00
## tidbits                   0.00             0.00    0.00  0.00         0.00
## cocoa drinks              0.00             0.00    0.00  0.00         0.00
## pudding powder            0.00             0.00    0.00  0.00         0.00
## ready soups               0.00             0.00    0.00  0.00         0.00
## organic marinated meat    0.00             0.00    0.00  0.00         0.00
## flower soil/fertilizer    0.00             0.00    0.00  0.00         0.00
## organic products          0.00             0.00    0.00  0.00         0.00
## pot plants                0.00             0.00    0.00  0.00         0.00
## prosecco                  0.00             0.00    0.00  0.00         0.00
## frankfurter               0.00             0.00    0.00  0.00         0.00
## decalcifier               0.00             0.00    0.00  0.00         0.00
## honey                     0.00             0.00    0.00  0.00         0.00
## specialty vegetables      0.00             0.00    0.00  0.00         0.00
## cream                     0.00             0.00    0.00  0.00         0.00
## hair spray                0.00             0.00    0.00  0.00         0.00
## frozen fruits             0.00             0.00    0.00  0.00         0.00
## rubbing alcohol           0.00             0.00    0.00  0.00         0.00
## liqueur                   0.00             0.00    0.00  0.00         0.00
## make up remover           0.00             0.00    0.00  0.00         0.00
## salad dressing            0.00             0.00    0.00  0.00         0.00
## frozen chicken            0.00             0.00    0.00  0.00         0.00
## whisky                    0.00             0.00    0.00  0.00         0.00
## baby cosmetics            0.00             0.00    0.00  0.00         0.00
## toilet cleaner            0.00             0.00    0.00  0.00         0.00
## bags                      0.00             0.00    0.00  0.00         0.00
## canned herbs              0.00             0.00    0.00  0.00         0.00
## kitchen utensil           0.00             0.00    0.00  0.00         0.00
## preservation products     0.00             0.00    0.00  0.00         0.00
## baby food                 0.00             0.00    0.00  0.00         0.00
## frozen herbss             0.00             0.00    0.00  0.00         0.00
## organic sausage           0.00             0.00    0.00  0.00         0.00
## sound storage medium      0.00             0.00    0.00  0.00         0.00
##                           potted plants canned fish seasonal products cake bar
## rice                               0.01        0.00              0.00     0.01
## veggies                            0.00        0.00              0.00     0.00
## loaf                               0.00        0.00              0.00     0.00
## coke                               0.00        0.00              0.00     0.00
## yogurt                             0.00        0.00              0.00     0.00
## vegetables                         0.00        0.00              0.00     0.00
## mineral water                      0.00        0.00              0.00     0.00
## Plastic bags                       0.00        0.00              0.00     0.00
## tropical fruit                     0.00        0.00              0.00     0.00
## marinated meat                     0.00        0.00              0.00     0.00
## pies/pasties                       0.00        0.00              0.00     0.00
## newspapers                         0.00        0.00              0.00     0.00
## citrus                             0.00        0.00              0.00     0.00
## whipped/sour cream                 0.00        0.00              0.00     0.00
## heinken                            0.00        0.00              0.00     0.00
## green tea                          0.00        0.00              0.00     0.00
## pip fruit                          0.00        0.00              0.00     0.00
## brown bread                        0.00        0.00              0.00     0.00
## fruit/vegetable juice              0.00        0.00              0.00     0.00
## domestic eggs                      0.00        0.00              0.00     0.00
## coffee                             0.00        0.00              0.00     0.00
## margarine                          0.00        0.00              0.00     0.00
## beef                               0.00        0.00              0.00     0.00
## curd                               0.00        0.00              0.00     0.00
## butter                             0.00        0.00              0.00     0.00
## marinated meats                    0.00        0.00              0.00     0.00
## napkins                            0.00        0.00              0.00     0.00
## halal meat                         0.00        0.00              0.00     0.00
## chocolate                          0.00        0.00              0.00     0.00
## frozen vegetables                  0.00        0.00              0.00     0.00
## chicken                            0.00        0.00              0.00     0.00
## white bread                        0.00        0.00              0.00     0.00
## cream cheese                       0.00        0.00              0.00     0.00
## waffles                            0.00        0.00              0.00     0.00
## dessert                            0.00        0.00              0.00     0.00
## salty snack                        0.00        0.00              0.00     0.00
## long life bakery product           0.00        0.00              0.00     0.00
## berries                            0.00        0.00              0.00     0.00
## hamburger meat                     0.00        0.00              0.00     0.00
## sugar                              0.00        0.00              0.00     0.00
## hygiene articles                   0.00        0.00              0.00     0.00
## UHT-milk                           0.00        0.00              0.00     0.00
## onions                             0.00        0.00              0.00     0.00
## candy                              0.00        0.00              0.00     0.00
## specialty chocolate                0.00        0.00              0.00     0.00
## butter milk                        0.00        0.00              0.00     0.00
## oil                                0.00        0.00              0.00     0.00
## frozen meals                       0.00        0.00              0.00     0.00
## misc. beverages                    0.00        0.00              0.00     0.00
## specialty bar                      0.00        0.00              0.00     0.00
## ham                                0.00        0.00              0.00     0.00
## beverages                          0.00        0.00              0.00     0.00
## meat                               0.00        0.00              0.00     0.00
## ice cream                          0.00        0.00              0.00     0.00
## sliced cheese                      0.00        0.00              0.00     0.00
## hard cheese                        0.00        0.00              0.00     0.00
## noodles                            0.00        0.00              0.00     0.00
## grapes                             0.00        0.00              0.00     0.00
## cat food                           0.00        0.00              0.00     0.00
## chewing gum                        0.00        0.00              0.00     0.00
## soda                               0.00        0.00              0.00     0.00
## detergent                          0.00        0.00              0.00     0.00
## red/blush wine                     0.00        0.00              0.00     0.00
## white wine                         0.00        0.00              0.00     0.00
## turkey                             0.00        0.00              0.00     0.00
## dishes                             0.00        0.00              0.00     0.00
## bottled water                      0.00        0.00              0.00     0.00
## flour                              0.00        0.00              0.00     0.00
## semi-finished bread                0.00        0.00              0.00     0.00
## baking powder                      0.00        0.00              0.00     0.00
## pickled vegetables                 0.00        0.00              0.00     0.00
## herbs                              0.00        0.00              0.00     0.00
## tropical herbs                     0.00        0.00              0.00     0.00
## soft cheese                        0.00        0.00              0.00     0.00
## tea                                0.00        0.00              0.00     0.00
## processed cheese                   0.00        0.00              0.00     0.00
## sausage                            0.00        0.00              0.00     0.00
## pasta                              0.00        0.00              0.00     0.00
## citrus herbs                       0.00        0.00              0.00     0.00
## potted plants                      0.02        0.00              0.00     0.00
## canned fish                        0.00        0.01              0.00     0.00
## seasonal products                  0.00        0.00              0.01     0.00
## cake bar                           0.00        0.00              0.00     0.01
## carrots                            0.00        0.00              0.00     0.00
## mustard                            0.00        0.00              0.00     0.00
## packaged fruit/vegetables          0.00        0.00              0.00     0.00
## spread cheese                      0.00        0.00              0.00     0.00
## frozen dessert                     0.00        0.00              0.00     0.00
## frozen fish                        0.00        0.00              0.00     0.00
## cling film/bags                    0.00        0.00              0.00     0.00
## salt                               0.00        0.00              0.00     0.00
## liquor                             0.00        0.00              0.00     0.00
## canned vegetables                  0.00        0.00              0.00     0.00
## bottled beer                       0.00        0.00              0.00     0.00
## flower (seeds)                     0.00        0.00              0.00     0.00
## cooking oil                        0.00        0.00              0.00     0.00
## dish cleaner                       0.00        0.00              0.00     0.00
## condensed milk                     0.00        0.00              0.00     0.00
## roll products                      0.00        0.00              0.00     0.00
## photo/film                         0.00        0.00              0.00     0.00
## pet care                           0.00        0.00              0.00     0.00
## chocolate marshmallow              0.00        0.00              0.00     0.00
## herbs/vegetable juice              0.00        0.00              0.00     0.00
## whole milk                         0.00        0.00              0.00     0.00
## candles                            0.00        0.00              0.00     0.00
## mayonnaise                         0.00        0.00              0.00     0.00
## Instant food products              0.00        0.00              0.00     0.00
## sweet spreads                      0.00        0.00              0.00     0.00
## liquor (appetizer)                 0.00        0.00              0.00     0.00
## specialty cheese                   0.00        0.00              0.00     0.00
## frozen potato products             0.00        0.00              0.00     0.00
## house keeping products             0.00        0.00              0.00     0.00
## dog food                           0.00        0.00              0.00     0.00
## soy                                0.00        0.00              0.00     0.00
## instant coffee                     0.00        0.00              0.00     0.00
## pip herbs                          0.00        0.00              0.00     0.00
## zwieback                           0.00        0.00              0.00     0.00
## finished products                  0.00        0.00              0.00     0.00
## popcorn                            0.00        0.00              0.00     0.00
## vinegar                            0.00        0.00              0.00     0.00
## soups                              0.00        0.00              0.00     0.00
## female sanitary products           0.00        0.00              0.00     0.00
## sparkling wine                     0.00        0.00              0.00     0.00
## dental care                        0.00        0.00              0.00     0.00
## cereals                            0.00        0.00              0.00     0.00
## kitchen towels                     0.00        0.00              0.00     0.00
## curd cheese                        0.00        0.00              0.00     0.00
## other vegetables                   0.00        0.00              0.00     0.00
## rolls/buns                         0.00        0.00              0.00     0.00
## softener                           0.00        0.00              0.00     0.00
## cleaner                            0.00        0.00              0.00     0.00
## spices                             0.00        0.00              0.00     0.00
## jam                                0.00        0.00              0.00     0.00
## sauces                             0.00        0.00              0.00     0.00
## rum                                0.00        0.00              0.00     0.00
## liver loaf                         0.00        0.00              0.00     0.00
## male cosmetics                     0.00        0.00              0.00     0.00
## meat spreads                       0.00        0.00              0.00     0.00
## packaged herbs/vegetables          0.00        0.00              0.00     0.00
## brandy                             0.00        0.00              0.00     0.00
## ketchup                            0.00        0.00              0.00     0.00
## abrasive cleaner                   0.00        0.00              0.00     0.00
## light bulbs                        0.00        0.00              0.00     0.00
## artif. sweetener                   0.00        0.00              0.00     0.00
## nuts/prunes                        0.00        0.00              0.00     0.00
## specialty fat                      0.00        0.00              0.00     0.00
## skin care                          0.00        0.00              0.00     0.00
## fish                               0.00        0.00              0.00     0.00
## potato products                    0.00        0.00              0.00     0.00
## root vegetables                    0.00        0.00              0.00     0.00
## snack products                     0.00        0.00              0.00     0.00
## nut snack                          0.00        0.00              0.00     0.00
## soap                               0.00        0.00              0.00     0.00
## syrup                              0.00        0.00              0.00     0.00
## bathroom cleaner                   0.00        0.00              0.00     0.00
## canned fruit                       0.00        0.00              0.00     0.00
## cookware                           0.00        0.00              0.00     0.00
## cooking chocolate                  0.00        0.00              0.00     0.00
## tidbits                            0.00        0.00              0.00     0.00
## cocoa drinks                       0.00        0.00              0.00     0.00
## pudding powder                     0.00        0.00              0.00     0.00
## ready soups                        0.00        0.00              0.00     0.00
## organic marinated meat             0.00        0.00              0.00     0.00
## flower soil/fertilizer             0.00        0.00              0.00     0.00
## organic products                   0.00        0.00              0.00     0.00
## pot plants                         0.00        0.00              0.00     0.00
## prosecco                           0.00        0.00              0.00     0.00
## frankfurter                        0.00        0.00              0.00     0.00
## decalcifier                        0.00        0.00              0.00     0.00
## honey                              0.00        0.00              0.00     0.00
## specialty vegetables               0.00        0.00              0.00     0.00
## cream                              0.00        0.00              0.00     0.00
## hair spray                         0.00        0.00              0.00     0.00
## frozen fruits                      0.00        0.00              0.00     0.00
## rubbing alcohol                    0.00        0.00              0.00     0.00
## liqueur                            0.00        0.00              0.00     0.00
## make up remover                    0.00        0.00              0.00     0.00
## salad dressing                     0.00        0.00              0.00     0.00
## frozen chicken                     0.00        0.00              0.00     0.00
## whisky                             0.00        0.00              0.00     0.00
## baby cosmetics                     0.00        0.00              0.00     0.00
## toilet cleaner                     0.00        0.00              0.00     0.00
## bags                               0.00        0.00              0.00     0.00
## canned herbs                       0.00        0.00              0.00     0.00
## kitchen utensil                    0.00        0.00              0.00     0.00
## preservation products              0.00        0.00              0.00     0.00
## baby food                          0.00        0.00              0.00     0.00
## frozen herbss                      0.00        0.00              0.00     0.00
## organic sausage                    0.00        0.00              0.00     0.00
## sound storage medium               0.00        0.00              0.00     0.00
##                           carrots mustard packaged fruit/vegetables
## rice                         0.01    0.01                      0.00
## veggies                      0.00    0.00                      0.00
## loaf                         0.00    0.00                      0.00
## coke                         0.00    0.00                      0.00
## yogurt                       0.00    0.00                      0.00
## vegetables                   0.00    0.00                      0.00
## mineral water                0.00    0.00                      0.00
## Plastic bags                 0.00    0.00                      0.00
## tropical fruit               0.00    0.00                      0.00
## marinated meat               0.00    0.00                      0.00
## pies/pasties                 0.00    0.00                      0.00
## newspapers                   0.00    0.00                      0.00
## citrus                       0.00    0.00                      0.00
## whipped/sour cream           0.00    0.00                      0.00
## heinken                      0.00    0.00                      0.00
## green tea                    0.00    0.00                      0.00
## pip fruit                    0.00    0.00                      0.00
## brown bread                  0.00    0.00                      0.00
## fruit/vegetable juice        0.00    0.00                      0.00
## domestic eggs                0.00    0.00                      0.00
## coffee                       0.00    0.00                      0.00
## margarine                    0.00    0.00                      0.00
## beef                         0.00    0.00                      0.00
## curd                         0.00    0.00                      0.00
## butter                       0.00    0.00                      0.00
## marinated meats              0.00    0.00                      0.00
## napkins                      0.00    0.00                      0.00
## halal meat                   0.00    0.00                      0.00
## chocolate                    0.00    0.00                      0.00
## frozen vegetables            0.00    0.00                      0.00
## chicken                      0.00    0.00                      0.00
## white bread                  0.00    0.00                      0.00
## cream cheese                 0.00    0.00                      0.00
## waffles                      0.00    0.00                      0.00
## dessert                      0.00    0.00                      0.00
## salty snack                  0.00    0.00                      0.00
## long life bakery product     0.00    0.00                      0.00
## berries                      0.00    0.00                      0.00
## hamburger meat               0.00    0.00                      0.00
## sugar                        0.00    0.00                      0.00
## hygiene articles             0.00    0.00                      0.00
## UHT-milk                     0.00    0.00                      0.00
## onions                       0.00    0.00                      0.00
## candy                        0.00    0.00                      0.00
## specialty chocolate          0.00    0.00                      0.00
## butter milk                  0.00    0.00                      0.00
## oil                          0.00    0.00                      0.00
## frozen meals                 0.00    0.00                      0.00
## misc. beverages              0.00    0.00                      0.00
## specialty bar                0.00    0.00                      0.00
## ham                          0.00    0.00                      0.00
## beverages                    0.00    0.00                      0.00
## meat                         0.00    0.00                      0.00
## ice cream                    0.00    0.00                      0.00
## sliced cheese                0.00    0.00                      0.00
## hard cheese                  0.00    0.00                      0.00
## noodles                      0.00    0.00                      0.00
## grapes                       0.00    0.00                      0.00
## cat food                     0.00    0.00                      0.00
## chewing gum                  0.00    0.00                      0.00
## soda                         0.00    0.00                      0.00
## detergent                    0.00    0.00                      0.00
## red/blush wine               0.00    0.00                      0.00
## white wine                   0.00    0.00                      0.00
## turkey                       0.00    0.00                      0.00
## dishes                       0.00    0.00                      0.00
## bottled water                0.00    0.00                      0.00
## flour                        0.00    0.00                      0.00
## semi-finished bread          0.00    0.00                      0.00
## baking powder                0.00    0.00                      0.00
## pickled vegetables           0.00    0.00                      0.00
## herbs                        0.00    0.00                      0.00
## tropical herbs               0.00    0.00                      0.00
## soft cheese                  0.00    0.00                      0.00
## tea                          0.00    0.00                      0.00
## processed cheese             0.00    0.00                      0.00
## sausage                      0.00    0.00                      0.00
## pasta                        0.00    0.00                      0.00
## citrus herbs                 0.00    0.00                      0.00
## potted plants                0.00    0.00                      0.00
## canned fish                  0.00    0.00                      0.00
## seasonal products            0.00    0.00                      0.00
## cake bar                     0.00    0.00                      0.00
## carrots                      0.01    0.00                      0.00
## mustard                      0.00    0.01                      0.00
## packaged fruit/vegetables    0.00    0.00                      0.01
## spread cheese                0.00    0.00                      0.00
## frozen dessert               0.00    0.00                      0.00
## frozen fish                  0.00    0.00                      0.00
## cling film/bags              0.00    0.00                      0.00
## salt                         0.00    0.00                      0.00
## liquor                       0.00    0.00                      0.00
## canned vegetables            0.00    0.00                      0.00
## bottled beer                 0.00    0.00                      0.00
## flower (seeds)               0.00    0.00                      0.00
## cooking oil                  0.00    0.00                      0.00
## dish cleaner                 0.00    0.00                      0.00
## condensed milk               0.00    0.00                      0.00
## roll products                0.00    0.00                      0.00
## photo/film                   0.00    0.00                      0.00
## pet care                     0.00    0.00                      0.00
## chocolate marshmallow        0.00    0.00                      0.00
## herbs/vegetable juice        0.00    0.00                      0.00
## whole milk                   0.00    0.00                      0.00
## candles                      0.00    0.00                      0.00
## mayonnaise                   0.00    0.00                      0.00
## Instant food products        0.00    0.00                      0.00
## sweet spreads                0.00    0.00                      0.00
## liquor (appetizer)           0.00    0.00                      0.00
## specialty cheese             0.00    0.00                      0.00
## frozen potato products       0.00    0.00                      0.00
## house keeping products       0.00    0.00                      0.00
## dog food                     0.00    0.00                      0.00
## soy                          0.00    0.00                      0.00
## instant coffee               0.00    0.00                      0.00
## pip herbs                    0.00    0.00                      0.00
## zwieback                     0.00    0.00                      0.00
## finished products            0.00    0.00                      0.00
## popcorn                      0.00    0.00                      0.00
## vinegar                      0.00    0.00                      0.00
## soups                        0.00    0.00                      0.00
## female sanitary products     0.00    0.00                      0.00
## sparkling wine               0.00    0.00                      0.00
## dental care                  0.00    0.00                      0.00
## cereals                      0.00    0.00                      0.00
## kitchen towels               0.00    0.00                      0.00
## curd cheese                  0.00    0.00                      0.00
## other vegetables             0.00    0.00                      0.00
## rolls/buns                   0.00    0.00                      0.00
## softener                     0.00    0.00                      0.00
## cleaner                      0.00    0.00                      0.00
## spices                       0.00    0.00                      0.00
## jam                          0.00    0.00                      0.00
## sauces                       0.00    0.00                      0.00
## rum                          0.00    0.00                      0.00
## liver loaf                   0.00    0.00                      0.00
## male cosmetics               0.00    0.00                      0.00
## meat spreads                 0.00    0.00                      0.00
## packaged herbs/vegetables    0.00    0.00                      0.00
## brandy                       0.00    0.00                      0.00
## ketchup                      0.00    0.00                      0.00
## abrasive cleaner             0.00    0.00                      0.00
## light bulbs                  0.00    0.00                      0.00
## artif. sweetener             0.00    0.00                      0.00
## nuts/prunes                  0.00    0.00                      0.00
## specialty fat                0.00    0.00                      0.00
## skin care                    0.00    0.00                      0.00
## fish                         0.00    0.00                      0.00
## potato products              0.00    0.00                      0.00
## root vegetables              0.00    0.00                      0.00
## snack products               0.00    0.00                      0.00
## nut snack                    0.00    0.00                      0.00
## soap                         0.00    0.00                      0.00
## syrup                        0.00    0.00                      0.00
## bathroom cleaner             0.00    0.00                      0.00
## canned fruit                 0.00    0.00                      0.00
## cookware                     0.00    0.00                      0.00
## cooking chocolate            0.00    0.00                      0.00
## tidbits                      0.00    0.00                      0.00
## cocoa drinks                 0.00    0.00                      0.00
## pudding powder               0.00    0.00                      0.00
## ready soups                  0.00    0.00                      0.00
## organic marinated meat       0.00    0.00                      0.00
## flower soil/fertilizer       0.00    0.00                      0.00
## organic products             0.00    0.00                      0.00
## pot plants                   0.00    0.00                      0.00
## prosecco                     0.00    0.00                      0.00
## frankfurter                  0.00    0.00                      0.00
## decalcifier                  0.00    0.00                      0.00
## honey                        0.00    0.00                      0.00
## specialty vegetables         0.00    0.00                      0.00
## cream                        0.00    0.00                      0.00
## hair spray                   0.00    0.00                      0.00
## frozen fruits                0.00    0.00                      0.00
## rubbing alcohol              0.00    0.00                      0.00
## liqueur                      0.00    0.00                      0.00
## make up remover              0.00    0.00                      0.00
## salad dressing               0.00    0.00                      0.00
## frozen chicken               0.00    0.00                      0.00
## whisky                       0.00    0.00                      0.00
## baby cosmetics               0.00    0.00                      0.00
## toilet cleaner               0.00    0.00                      0.00
## bags                         0.00    0.00                      0.00
## canned herbs                 0.00    0.00                      0.00
## kitchen utensil              0.00    0.00                      0.00
## preservation products        0.00    0.00                      0.00
## baby food                    0.00    0.00                      0.00
## frozen herbss                0.00    0.00                      0.00
## organic sausage              0.00    0.00                      0.00
## sound storage medium         0.00    0.00                      0.00
##                           spread cheese frozen dessert frozen fish
## rice                               0.00           0.00        0.00
## veggies                            0.00           0.00        0.00
## loaf                               0.00           0.00        0.00
## coke                               0.00           0.00        0.00
## yogurt                             0.00           0.00        0.00
## vegetables                         0.00           0.00        0.00
## mineral water                      0.00           0.00        0.00
## Plastic bags                       0.00           0.00        0.00
## tropical fruit                     0.00           0.00        0.00
## marinated meat                     0.00           0.00        0.00
## pies/pasties                       0.00           0.00        0.00
## newspapers                         0.00           0.00        0.00
## citrus                             0.00           0.00        0.00
## whipped/sour cream                 0.00           0.00        0.00
## heinken                            0.00           0.00        0.00
## green tea                          0.00           0.00        0.00
## pip fruit                          0.00           0.00        0.00
## brown bread                        0.00           0.00        0.00
## fruit/vegetable juice              0.00           0.00        0.00
## domestic eggs                      0.00           0.00        0.00
## coffee                             0.00           0.00        0.00
## margarine                          0.00           0.00        0.00
## beef                               0.00           0.00        0.00
## curd                               0.00           0.00        0.00
## butter                             0.00           0.00        0.00
## marinated meats                    0.00           0.00        0.00
## napkins                            0.00           0.00        0.00
## halal meat                         0.00           0.00        0.00
## chocolate                          0.00           0.00        0.00
## frozen vegetables                  0.00           0.00        0.00
## chicken                            0.00           0.00        0.00
## white bread                        0.00           0.00        0.00
## cream cheese                       0.00           0.00        0.00
## waffles                            0.00           0.00        0.00
## dessert                            0.00           0.00        0.00
## salty snack                        0.00           0.00        0.00
## long life bakery product           0.00           0.00        0.00
## berries                            0.00           0.00        0.00
## hamburger meat                     0.00           0.00        0.00
## sugar                              0.00           0.00        0.00
## hygiene articles                   0.00           0.00        0.00
## UHT-milk                           0.00           0.00        0.00
## onions                             0.00           0.00        0.00
## candy                              0.00           0.00        0.00
## specialty chocolate                0.00           0.00        0.00
## butter milk                        0.00           0.00        0.00
## oil                                0.00           0.00        0.00
## frozen meals                       0.00           0.00        0.00
## misc. beverages                    0.00           0.00        0.00
## specialty bar                      0.00           0.00        0.00
## ham                                0.00           0.00        0.00
## beverages                          0.00           0.00        0.00
## meat                               0.00           0.00        0.00
## ice cream                          0.00           0.00        0.00
## sliced cheese                      0.00           0.00        0.00
## hard cheese                        0.00           0.00        0.00
## noodles                            0.00           0.00        0.00
## grapes                             0.00           0.00        0.00
## cat food                           0.00           0.00        0.00
## chewing gum                        0.00           0.00        0.00
## soda                               0.00           0.00        0.00
## detergent                          0.00           0.00        0.00
## red/blush wine                     0.00           0.00        0.00
## white wine                         0.00           0.00        0.00
## turkey                             0.00           0.00        0.00
## dishes                             0.00           0.00        0.00
## bottled water                      0.00           0.00        0.00
## flour                              0.00           0.00        0.00
## semi-finished bread                0.00           0.00        0.00
## baking powder                      0.00           0.00        0.00
## pickled vegetables                 0.00           0.00        0.00
## herbs                              0.00           0.00        0.00
## tropical herbs                     0.00           0.00        0.00
## soft cheese                        0.00           0.00        0.00
## tea                                0.00           0.00        0.00
## processed cheese                   0.00           0.00        0.00
## sausage                            0.00           0.00        0.00
## pasta                              0.00           0.00        0.00
## citrus herbs                       0.00           0.00        0.00
## potted plants                      0.00           0.00        0.00
## canned fish                        0.00           0.00        0.00
## seasonal products                  0.00           0.00        0.00
## cake bar                           0.00           0.00        0.00
## carrots                            0.00           0.00        0.00
## mustard                            0.00           0.00        0.00
## packaged fruit/vegetables          0.00           0.00        0.00
## spread cheese                      0.01           0.00        0.00
## frozen dessert                     0.00           0.01        0.00
## frozen fish                        0.00           0.00        0.01
## cling film/bags                    0.00           0.00        0.00
## salt                               0.00           0.00        0.00
## liquor                             0.00           0.00        0.00
## canned vegetables                  0.00           0.00        0.00
## bottled beer                       0.00           0.00        0.00
## flower (seeds)                     0.00           0.00        0.00
## cooking oil                        0.00           0.00        0.00
## dish cleaner                       0.00           0.00        0.00
## condensed milk                     0.00           0.00        0.00
## roll products                      0.00           0.00        0.00
## photo/film                         0.00           0.00        0.00
## pet care                           0.00           0.00        0.00
## chocolate marshmallow              0.00           0.00        0.00
## herbs/vegetable juice              0.00           0.00        0.00
## whole milk                         0.00           0.00        0.00
## candles                            0.00           0.00        0.00
## mayonnaise                         0.00           0.00        0.00
## Instant food products              0.00           0.00        0.00
## sweet spreads                      0.00           0.00        0.00
## liquor (appetizer)                 0.00           0.00        0.00
## specialty cheese                   0.00           0.00        0.00
## frozen potato products             0.00           0.00        0.00
## house keeping products             0.00           0.00        0.00
## dog food                           0.00           0.00        0.00
## soy                                0.00           0.00        0.00
## instant coffee                     0.00           0.00        0.00
## pip herbs                          0.00           0.00        0.00
## zwieback                           0.00           0.00        0.00
## finished products                  0.00           0.00        0.00
## popcorn                            0.00           0.00        0.00
## vinegar                            0.00           0.00        0.00
## soups                              0.00           0.00        0.00
## female sanitary products           0.00           0.00        0.00
## sparkling wine                     0.00           0.00        0.00
## dental care                        0.00           0.00        0.00
## cereals                            0.00           0.00        0.00
## kitchen towels                     0.00           0.00        0.00
## curd cheese                        0.00           0.00        0.00
## other vegetables                   0.00           0.00        0.00
## rolls/buns                         0.00           0.00        0.00
## softener                           0.00           0.00        0.00
## cleaner                            0.00           0.00        0.00
## spices                             0.00           0.00        0.00
## jam                                0.00           0.00        0.00
## sauces                             0.00           0.00        0.00
## rum                                0.00           0.00        0.00
## liver loaf                         0.00           0.00        0.00
## male cosmetics                     0.00           0.00        0.00
## meat spreads                       0.00           0.00        0.00
## packaged herbs/vegetables          0.00           0.00        0.00
## brandy                             0.00           0.00        0.00
## ketchup                            0.00           0.00        0.00
## abrasive cleaner                   0.00           0.00        0.00
## light bulbs                        0.00           0.00        0.00
## artif. sweetener                   0.00           0.00        0.00
## nuts/prunes                        0.00           0.00        0.00
## specialty fat                      0.00           0.00        0.00
## skin care                          0.00           0.00        0.00
## fish                               0.00           0.00        0.00
## potato products                    0.00           0.00        0.00
## root vegetables                    0.00           0.00        0.00
## snack products                     0.00           0.00        0.00
## nut snack                          0.00           0.00        0.00
## soap                               0.00           0.00        0.00
## syrup                              0.00           0.00        0.00
## bathroom cleaner                   0.00           0.00        0.00
## canned fruit                       0.00           0.00        0.00
## cookware                           0.00           0.00        0.00
## cooking chocolate                  0.00           0.00        0.00
## tidbits                            0.00           0.00        0.00
## cocoa drinks                       0.00           0.00        0.00
## pudding powder                     0.00           0.00        0.00
## ready soups                        0.00           0.00        0.00
## organic marinated meat             0.00           0.00        0.00
## flower soil/fertilizer             0.00           0.00        0.00
## organic products                   0.00           0.00        0.00
## pot plants                         0.00           0.00        0.00
## prosecco                           0.00           0.00        0.00
## frankfurter                        0.00           0.00        0.00
## decalcifier                        0.00           0.00        0.00
## honey                              0.00           0.00        0.00
## specialty vegetables               0.00           0.00        0.00
## cream                              0.00           0.00        0.00
## hair spray                         0.00           0.00        0.00
## frozen fruits                      0.00           0.00        0.00
## rubbing alcohol                    0.00           0.00        0.00
## liqueur                            0.00           0.00        0.00
## make up remover                    0.00           0.00        0.00
## salad dressing                     0.00           0.00        0.00
## frozen chicken                     0.00           0.00        0.00
## whisky                             0.00           0.00        0.00
## baby cosmetics                     0.00           0.00        0.00
## toilet cleaner                     0.00           0.00        0.00
## bags                               0.00           0.00        0.00
## canned herbs                       0.00           0.00        0.00
## kitchen utensil                    0.00           0.00        0.00
## preservation products              0.00           0.00        0.00
## baby food                          0.00           0.00        0.00
## frozen herbss                      0.00           0.00        0.00
## organic sausage                    0.00           0.00        0.00
## sound storage medium               0.00           0.00        0.00
##                           cling film/bags salt liquor canned vegetables
## rice                                 0.00 0.00   0.00              0.00
## veggies                              0.00 0.00   0.00              0.00
## loaf                                 0.00 0.00   0.00              0.00
## coke                                 0.00 0.00   0.00              0.00
## yogurt                               0.00 0.00   0.00              0.00
## vegetables                           0.00 0.00   0.00              0.00
## mineral water                        0.00 0.00   0.00              0.00
## Plastic bags                         0.00 0.00   0.00              0.00
## tropical fruit                       0.00 0.00   0.00              0.00
## marinated meat                       0.00 0.00   0.00              0.00
## pies/pasties                         0.00 0.00   0.00              0.00
## newspapers                           0.00 0.00   0.00              0.00
## citrus                               0.00 0.00   0.00              0.00
## whipped/sour cream                   0.00 0.00   0.00              0.00
## heinken                              0.00 0.00   0.00              0.00
## green tea                            0.00 0.00   0.00              0.00
## pip fruit                            0.00 0.00   0.00              0.00
## brown bread                          0.00 0.00   0.00              0.00
## fruit/vegetable juice                0.00 0.00   0.00              0.00
## domestic eggs                        0.00 0.00   0.00              0.00
## coffee                               0.00 0.00   0.00              0.00
## margarine                            0.00 0.00   0.00              0.00
## beef                                 0.00 0.00   0.00              0.00
## curd                                 0.00 0.00   0.00              0.00
## butter                               0.00 0.00   0.00              0.00
## marinated meats                      0.00 0.00   0.00              0.00
## napkins                              0.00 0.00   0.00              0.00
## halal meat                           0.00 0.00   0.00              0.00
## chocolate                            0.00 0.00   0.00              0.00
## frozen vegetables                    0.00 0.00   0.00              0.00
## chicken                              0.00 0.00   0.00              0.00
## white bread                          0.00 0.00   0.00              0.00
## cream cheese                         0.00 0.00   0.00              0.00
## waffles                              0.00 0.00   0.00              0.00
## dessert                              0.00 0.00   0.00              0.00
## salty snack                          0.00 0.00   0.00              0.00
## long life bakery product             0.00 0.00   0.00              0.00
## berries                              0.00 0.00   0.00              0.00
## hamburger meat                       0.00 0.00   0.00              0.00
## sugar                                0.00 0.00   0.00              0.00
## hygiene articles                     0.00 0.00   0.00              0.00
## UHT-milk                             0.00 0.00   0.00              0.00
## onions                               0.00 0.00   0.00              0.00
## candy                                0.00 0.00   0.00              0.00
## specialty chocolate                  0.00 0.00   0.00              0.00
## butter milk                          0.00 0.00   0.00              0.00
## oil                                  0.00 0.00   0.00              0.00
## frozen meals                         0.00 0.00   0.00              0.00
## misc. beverages                      0.00 0.00   0.00              0.00
## specialty bar                        0.00 0.00   0.00              0.00
## ham                                  0.00 0.00   0.00              0.00
## beverages                            0.00 0.00   0.00              0.00
## meat                                 0.00 0.00   0.00              0.00
## ice cream                            0.00 0.00   0.00              0.00
## sliced cheese                        0.00 0.00   0.00              0.00
## hard cheese                          0.00 0.00   0.00              0.00
## noodles                              0.00 0.00   0.00              0.00
## grapes                               0.00 0.00   0.00              0.00
## cat food                             0.00 0.00   0.00              0.00
## chewing gum                          0.00 0.00   0.00              0.00
## soda                                 0.00 0.00   0.00              0.00
## detergent                            0.00 0.00   0.00              0.00
## red/blush wine                       0.00 0.00   0.00              0.00
## white wine                           0.00 0.00   0.00              0.00
## turkey                               0.00 0.00   0.00              0.00
## dishes                               0.00 0.00   0.00              0.00
## bottled water                        0.00 0.00   0.00              0.00
## flour                                0.00 0.00   0.00              0.00
## semi-finished bread                  0.00 0.00   0.00              0.00
## baking powder                        0.00 0.00   0.00              0.00
## pickled vegetables                   0.00 0.00   0.00              0.00
## herbs                                0.00 0.00   0.00              0.00
## tropical herbs                       0.00 0.00   0.00              0.00
## soft cheese                          0.00 0.00   0.00              0.00
## tea                                  0.00 0.00   0.00              0.00
## processed cheese                     0.00 0.00   0.00              0.00
## sausage                              0.00 0.00   0.00              0.00
## pasta                                0.00 0.00   0.00              0.00
## citrus herbs                         0.00 0.00   0.00              0.00
## potted plants                        0.00 0.00   0.00              0.00
## canned fish                          0.00 0.00   0.00              0.00
## seasonal products                    0.00 0.00   0.00              0.00
## cake bar                             0.00 0.00   0.00              0.00
## carrots                              0.00 0.00   0.00              0.00
## mustard                              0.00 0.00   0.00              0.00
## packaged fruit/vegetables            0.00 0.00   0.00              0.00
## spread cheese                        0.00 0.00   0.00              0.00
## frozen dessert                       0.00 0.00   0.00              0.00
## frozen fish                          0.00 0.00   0.00              0.00
## cling film/bags                      0.01 0.00   0.00              0.00
## salt                                 0.00 0.01   0.00              0.00
## liquor                               0.00 0.00   0.01              0.00
## canned vegetables                    0.00 0.00   0.00              0.01
## bottled beer                         0.00 0.00   0.00              0.00
## flower (seeds)                       0.00 0.00   0.00              0.00
## cooking oil                          0.00 0.00   0.00              0.00
## dish cleaner                         0.00 0.00   0.00              0.00
## condensed milk                       0.00 0.00   0.00              0.00
## roll products                        0.00 0.00   0.00              0.00
## photo/film                           0.00 0.00   0.00              0.00
## pet care                             0.00 0.00   0.00              0.00
## chocolate marshmallow                0.00 0.00   0.00              0.00
## herbs/vegetable juice                0.00 0.00   0.00              0.00
## whole milk                           0.00 0.00   0.00              0.00
## candles                              0.00 0.00   0.00              0.00
## mayonnaise                           0.00 0.00   0.00              0.00
## Instant food products                0.00 0.00   0.00              0.00
## sweet spreads                        0.00 0.00   0.00              0.00
## liquor (appetizer)                   0.00 0.00   0.00              0.00
## specialty cheese                     0.00 0.00   0.00              0.00
## frozen potato products               0.00 0.00   0.00              0.00
## house keeping products               0.00 0.00   0.00              0.00
## dog food                             0.00 0.00   0.00              0.00
## soy                                  0.00 0.00   0.00              0.00
## instant coffee                       0.00 0.00   0.00              0.00
## pip herbs                            0.00 0.00   0.00              0.00
## zwieback                             0.00 0.00   0.00              0.00
## finished products                    0.00 0.00   0.00              0.00
## popcorn                              0.00 0.00   0.00              0.00
## vinegar                              0.00 0.00   0.00              0.00
## soups                                0.00 0.00   0.00              0.00
## female sanitary products             0.00 0.00   0.00              0.00
## sparkling wine                       0.00 0.00   0.00              0.00
## dental care                          0.00 0.00   0.00              0.00
## cereals                              0.00 0.00   0.00              0.00
## kitchen towels                       0.00 0.00   0.00              0.00
## curd cheese                          0.00 0.00   0.00              0.00
## other vegetables                     0.00 0.00   0.00              0.00
## rolls/buns                           0.00 0.00   0.00              0.00
## softener                             0.00 0.00   0.00              0.00
## cleaner                              0.00 0.00   0.00              0.00
## spices                               0.00 0.00   0.00              0.00
## jam                                  0.00 0.00   0.00              0.00
## sauces                               0.00 0.00   0.00              0.00
## rum                                  0.00 0.00   0.00              0.00
## liver loaf                           0.00 0.00   0.00              0.00
## male cosmetics                       0.00 0.00   0.00              0.00
## meat spreads                         0.00 0.00   0.00              0.00
## packaged herbs/vegetables            0.00 0.00   0.00              0.00
## brandy                               0.00 0.00   0.00              0.00
## ketchup                              0.00 0.00   0.00              0.00
## abrasive cleaner                     0.00 0.00   0.00              0.00
## light bulbs                          0.00 0.00   0.00              0.00
## artif. sweetener                     0.00 0.00   0.00              0.00
## nuts/prunes                          0.00 0.00   0.00              0.00
## specialty fat                        0.00 0.00   0.00              0.00
## skin care                            0.00 0.00   0.00              0.00
## fish                                 0.00 0.00   0.00              0.00
## potato products                      0.00 0.00   0.00              0.00
## root vegetables                      0.00 0.00   0.00              0.00
## snack products                       0.00 0.00   0.00              0.00
## nut snack                            0.00 0.00   0.00              0.00
## soap                                 0.00 0.00   0.00              0.00
## syrup                                0.00 0.00   0.00              0.00
## bathroom cleaner                     0.00 0.00   0.00              0.00
## canned fruit                         0.00 0.00   0.00              0.00
## cookware                             0.00 0.00   0.00              0.00
## cooking chocolate                    0.00 0.00   0.00              0.00
## tidbits                              0.00 0.00   0.00              0.00
## cocoa drinks                         0.00 0.00   0.00              0.00
## pudding powder                       0.00 0.00   0.00              0.00
## ready soups                          0.00 0.00   0.00              0.00
## organic marinated meat               0.00 0.00   0.00              0.00
## flower soil/fertilizer               0.00 0.00   0.00              0.00
## organic products                     0.00 0.00   0.00              0.00
## pot plants                           0.00 0.00   0.00              0.00
## prosecco                             0.00 0.00   0.00              0.00
## frankfurter                          0.00 0.00   0.00              0.00
## decalcifier                          0.00 0.00   0.00              0.00
## honey                                0.00 0.00   0.00              0.00
## specialty vegetables                 0.00 0.00   0.00              0.00
## cream                                0.00 0.00   0.00              0.00
## hair spray                           0.00 0.00   0.00              0.00
## frozen fruits                        0.00 0.00   0.00              0.00
## rubbing alcohol                      0.00 0.00   0.00              0.00
## liqueur                              0.00 0.00   0.00              0.00
## make up remover                      0.00 0.00   0.00              0.00
## salad dressing                       0.00 0.00   0.00              0.00
## frozen chicken                       0.00 0.00   0.00              0.00
## whisky                               0.00 0.00   0.00              0.00
## baby cosmetics                       0.00 0.00   0.00              0.00
## toilet cleaner                       0.00 0.00   0.00              0.00
## bags                                 0.00 0.00   0.00              0.00
## canned herbs                         0.00 0.00   0.00              0.00
## kitchen utensil                      0.00 0.00   0.00              0.00
## preservation products                0.00 0.00   0.00              0.00
## baby food                            0.00 0.00   0.00              0.00
## frozen herbss                        0.00 0.00   0.00              0.00
## organic sausage                      0.00 0.00   0.00              0.00
## sound storage medium                 0.00 0.00   0.00              0.00
##                           bottled beer flower (seeds) cooking oil dish cleaner
## rice                              0.00           0.00        0.00         0.00
## veggies                           0.00           0.00        0.00         0.00
## loaf                              0.00           0.00        0.00         0.00
## coke                              0.00           0.00        0.00         0.00
## yogurt                            0.00           0.00        0.00         0.00
## vegetables                        0.00           0.00        0.00         0.00
## mineral water                     0.00           0.00        0.00         0.00
## Plastic bags                      0.00           0.00        0.00         0.00
## tropical fruit                    0.00           0.00        0.00         0.00
## marinated meat                    0.00           0.00        0.00         0.00
## pies/pasties                      0.00           0.00        0.00         0.00
## newspapers                        0.00           0.00        0.00         0.00
## citrus                            0.00           0.00        0.00         0.00
## whipped/sour cream                0.00           0.00        0.00         0.00
## heinken                           0.00           0.00        0.00         0.00
## green tea                         0.00           0.00        0.00         0.00
## pip fruit                         0.00           0.00        0.00         0.00
## brown bread                       0.00           0.00        0.00         0.00
## fruit/vegetable juice             0.00           0.00        0.00         0.00
## domestic eggs                     0.00           0.00        0.00         0.00
## coffee                            0.00           0.00        0.00         0.00
## margarine                         0.00           0.00        0.00         0.00
## beef                              0.00           0.00        0.00         0.00
## curd                              0.00           0.00        0.00         0.00
## butter                            0.00           0.00        0.00         0.00
## marinated meats                   0.00           0.00        0.00         0.00
## napkins                           0.00           0.00        0.00         0.00
## halal meat                        0.00           0.00        0.00         0.00
## chocolate                         0.00           0.00        0.00         0.00
## frozen vegetables                 0.00           0.00        0.00         0.00
## chicken                           0.00           0.00        0.00         0.00
## white bread                       0.00           0.00        0.00         0.00
## cream cheese                      0.00           0.00        0.00         0.00
## waffles                           0.00           0.00        0.00         0.00
## dessert                           0.00           0.00        0.00         0.00
## salty snack                       0.00           0.00        0.00         0.00
## long life bakery product          0.00           0.00        0.00         0.00
## berries                           0.00           0.00        0.00         0.00
## hamburger meat                    0.00           0.00        0.00         0.00
## sugar                             0.00           0.00        0.00         0.00
## hygiene articles                  0.00           0.00        0.00         0.00
## UHT-milk                          0.00           0.00        0.00         0.00
## onions                            0.00           0.00        0.00         0.00
## candy                             0.00           0.00        0.00         0.00
## specialty chocolate               0.00           0.00        0.00         0.00
## butter milk                       0.00           0.00        0.00         0.00
## oil                               0.00           0.00        0.00         0.00
## frozen meals                      0.00           0.00        0.00         0.00
## misc. beverages                   0.00           0.00        0.00         0.00
## specialty bar                     0.00           0.00        0.00         0.00
## ham                               0.00           0.00        0.00         0.00
## beverages                         0.00           0.00        0.00         0.00
## meat                              0.00           0.00        0.00         0.00
## ice cream                         0.00           0.00        0.00         0.00
## sliced cheese                     0.00           0.00        0.00         0.00
## hard cheese                       0.00           0.00        0.00         0.00
## noodles                           0.00           0.00        0.00         0.00
## grapes                            0.00           0.00        0.00         0.00
## cat food                          0.00           0.00        0.00         0.00
## chewing gum                       0.00           0.00        0.00         0.00
## soda                              0.00           0.00        0.00         0.00
## detergent                         0.00           0.00        0.00         0.00
## red/blush wine                    0.00           0.00        0.00         0.00
## white wine                        0.00           0.00        0.00         0.00
## turkey                            0.00           0.00        0.00         0.00
## dishes                            0.00           0.00        0.00         0.00
## bottled water                     0.00           0.00        0.00         0.00
## flour                             0.00           0.00        0.00         0.00
## semi-finished bread               0.00           0.00        0.00         0.00
## baking powder                     0.00           0.00        0.00         0.00
## pickled vegetables                0.00           0.00        0.00         0.00
## herbs                             0.00           0.00        0.00         0.00
## tropical herbs                    0.00           0.00        0.00         0.00
## soft cheese                       0.00           0.00        0.00         0.00
## tea                               0.00           0.00        0.00         0.00
## processed cheese                  0.00           0.00        0.00         0.00
## sausage                           0.00           0.00        0.00         0.00
## pasta                             0.00           0.00        0.00         0.00
## citrus herbs                      0.00           0.00        0.00         0.00
## potted plants                     0.00           0.00        0.00         0.00
## canned fish                       0.00           0.00        0.00         0.00
## seasonal products                 0.00           0.00        0.00         0.00
## cake bar                          0.00           0.00        0.00         0.00
## carrots                           0.00           0.00        0.00         0.00
## mustard                           0.00           0.00        0.00         0.00
## packaged fruit/vegetables         0.00           0.00        0.00         0.00
## spread cheese                     0.00           0.00        0.00         0.00
## frozen dessert                    0.00           0.00        0.00         0.00
## frozen fish                       0.00           0.00        0.00         0.00
## cling film/bags                   0.00           0.00        0.00         0.00
## salt                              0.00           0.00        0.00         0.00
## liquor                            0.00           0.00        0.00         0.00
## canned vegetables                 0.00           0.00        0.00         0.00
## bottled beer                      0.01           0.00        0.00         0.00
## flower (seeds)                    0.00           0.01        0.00         0.00
## cooking oil                       0.00           0.00        0.01         0.00
## dish cleaner                      0.00           0.00        0.00         0.01
## condensed milk                    0.00           0.00        0.00         0.00
## roll products                     0.00           0.00        0.00         0.00
## photo/film                        0.00           0.00        0.00         0.00
## pet care                          0.00           0.00        0.00         0.00
## chocolate marshmallow             0.00           0.00        0.00         0.00
## herbs/vegetable juice             0.00           0.00        0.00         0.00
## whole milk                        0.00           0.00        0.00         0.00
## candles                           0.00           0.00        0.00         0.00
## mayonnaise                        0.00           0.00        0.00         0.00
## Instant food products             0.00           0.00        0.00         0.00
## sweet spreads                     0.00           0.00        0.00         0.00
## liquor (appetizer)                0.00           0.00        0.00         0.00
## specialty cheese                  0.00           0.00        0.00         0.00
## frozen potato products            0.00           0.00        0.00         0.00
## house keeping products            0.00           0.00        0.00         0.00
## dog food                          0.00           0.00        0.00         0.00
## soy                               0.00           0.00        0.00         0.00
## instant coffee                    0.00           0.00        0.00         0.00
## pip herbs                         0.00           0.00        0.00         0.00
## zwieback                          0.00           0.00        0.00         0.00
## finished products                 0.00           0.00        0.00         0.00
## popcorn                           0.00           0.00        0.00         0.00
## vinegar                           0.00           0.00        0.00         0.00
## soups                             0.00           0.00        0.00         0.00
## female sanitary products          0.00           0.00        0.00         0.00
## sparkling wine                    0.00           0.00        0.00         0.00
## dental care                       0.00           0.00        0.00         0.00
## cereals                           0.00           0.00        0.00         0.00
## kitchen towels                    0.00           0.00        0.00         0.00
## curd cheese                       0.00           0.00        0.00         0.00
## other vegetables                  0.00           0.00        0.00         0.00
## rolls/buns                        0.00           0.00        0.00         0.00
## softener                          0.00           0.00        0.00         0.00
## cleaner                           0.00           0.00        0.00         0.00
## spices                            0.00           0.00        0.00         0.00
## jam                               0.00           0.00        0.00         0.00
## sauces                            0.00           0.00        0.00         0.00
## rum                               0.00           0.00        0.00         0.00
## liver loaf                        0.00           0.00        0.00         0.00
## male cosmetics                    0.00           0.00        0.00         0.00
## meat spreads                      0.00           0.00        0.00         0.00
## packaged herbs/vegetables         0.00           0.00        0.00         0.00
## brandy                            0.00           0.00        0.00         0.00
## ketchup                           0.00           0.00        0.00         0.00
## abrasive cleaner                  0.00           0.00        0.00         0.00
## light bulbs                       0.00           0.00        0.00         0.00
## artif. sweetener                  0.00           0.00        0.00         0.00
## nuts/prunes                       0.00           0.00        0.00         0.00
## specialty fat                     0.00           0.00        0.00         0.00
## skin care                         0.00           0.00        0.00         0.00
## fish                              0.00           0.00        0.00         0.00
## potato products                   0.00           0.00        0.00         0.00
## root vegetables                   0.00           0.00        0.00         0.00
## snack products                    0.00           0.00        0.00         0.00
## nut snack                         0.00           0.00        0.00         0.00
## soap                              0.00           0.00        0.00         0.00
## syrup                             0.00           0.00        0.00         0.00
## bathroom cleaner                  0.00           0.00        0.00         0.00
## canned fruit                      0.00           0.00        0.00         0.00
## cookware                          0.00           0.00        0.00         0.00
## cooking chocolate                 0.00           0.00        0.00         0.00
## tidbits                           0.00           0.00        0.00         0.00
## cocoa drinks                      0.00           0.00        0.00         0.00
## pudding powder                    0.00           0.00        0.00         0.00
## ready soups                       0.00           0.00        0.00         0.00
## organic marinated meat            0.00           0.00        0.00         0.00
## flower soil/fertilizer            0.00           0.00        0.00         0.00
## organic products                  0.00           0.00        0.00         0.00
## pot plants                        0.00           0.00        0.00         0.00
## prosecco                          0.00           0.00        0.00         0.00
## frankfurter                       0.00           0.00        0.00         0.00
## decalcifier                       0.00           0.00        0.00         0.00
## honey                             0.00           0.00        0.00         0.00
## specialty vegetables              0.00           0.00        0.00         0.00
## cream                             0.00           0.00        0.00         0.00
## hair spray                        0.00           0.00        0.00         0.00
## frozen fruits                     0.00           0.00        0.00         0.00
## rubbing alcohol                   0.00           0.00        0.00         0.00
## liqueur                           0.00           0.00        0.00         0.00
## make up remover                   0.00           0.00        0.00         0.00
## salad dressing                    0.00           0.00        0.00         0.00
## frozen chicken                    0.00           0.00        0.00         0.00
## whisky                            0.00           0.00        0.00         0.00
## baby cosmetics                    0.00           0.00        0.00         0.00
## toilet cleaner                    0.00           0.00        0.00         0.00
## bags                              0.00           0.00        0.00         0.00
## canned herbs                      0.00           0.00        0.00         0.00
## kitchen utensil                   0.00           0.00        0.00         0.00
## preservation products             0.00           0.00        0.00         0.00
## baby food                         0.00           0.00        0.00         0.00
## frozen herbss                     0.00           0.00        0.00         0.00
## organic sausage                   0.00           0.00        0.00         0.00
## sound storage medium              0.00           0.00        0.00         0.00
##                           condensed milk roll products photo/film pet care
## rice                                0.00          0.00       0.00     0.00
## veggies                             0.00          0.00       0.00     0.00
## loaf                                0.00          0.00       0.00     0.00
## coke                                0.00          0.00       0.00     0.00
## yogurt                              0.00          0.00       0.00     0.00
## vegetables                          0.00          0.00       0.00     0.00
## mineral water                       0.00          0.00       0.00     0.00
## Plastic bags                        0.00          0.00       0.00     0.00
## tropical fruit                      0.00          0.00       0.00     0.00
## marinated meat                      0.00          0.00       0.00     0.00
## pies/pasties                        0.00          0.00       0.00     0.00
## newspapers                          0.00          0.00       0.00     0.00
## citrus                              0.00          0.00       0.00     0.00
## whipped/sour cream                  0.00          0.00       0.00     0.00
## heinken                             0.00          0.00       0.00     0.00
## green tea                           0.00          0.00       0.00     0.00
## pip fruit                           0.00          0.00       0.00     0.00
## brown bread                         0.00          0.00       0.00     0.00
## fruit/vegetable juice               0.00          0.00       0.00     0.00
## domestic eggs                       0.00          0.00       0.00     0.00
## coffee                              0.00          0.00       0.00     0.00
## margarine                           0.00          0.00       0.00     0.00
## beef                                0.00          0.00       0.00     0.00
## curd                                0.00          0.00       0.00     0.00
## butter                              0.00          0.00       0.00     0.00
## marinated meats                     0.00          0.00       0.00     0.00
## napkins                             0.00          0.00       0.00     0.00
## halal meat                          0.00          0.00       0.00     0.00
## chocolate                           0.00          0.00       0.00     0.00
## frozen vegetables                   0.00          0.00       0.00     0.00
## chicken                             0.00          0.00       0.00     0.00
## white bread                         0.00          0.00       0.00     0.00
## cream cheese                        0.00          0.00       0.00     0.00
## waffles                             0.00          0.00       0.00     0.00
## dessert                             0.00          0.00       0.00     0.00
## salty snack                         0.00          0.00       0.00     0.00
## long life bakery product            0.00          0.00       0.00     0.00
## berries                             0.00          0.00       0.00     0.00
## hamburger meat                      0.00          0.00       0.00     0.00
## sugar                               0.00          0.00       0.00     0.00
## hygiene articles                    0.00          0.00       0.00     0.00
## UHT-milk                            0.00          0.00       0.00     0.00
## onions                              0.00          0.00       0.00     0.00
## candy                               0.00          0.00       0.00     0.00
## specialty chocolate                 0.00          0.00       0.00     0.00
## butter milk                         0.00          0.00       0.00     0.00
## oil                                 0.00          0.00       0.00     0.00
## frozen meals                        0.00          0.00       0.00     0.00
## misc. beverages                     0.00          0.00       0.00     0.00
## specialty bar                       0.00          0.00       0.00     0.00
## ham                                 0.00          0.00       0.00     0.00
## beverages                           0.00          0.00       0.00     0.00
## meat                                0.00          0.00       0.00     0.00
## ice cream                           0.00          0.00       0.00     0.00
## sliced cheese                       0.00          0.00       0.00     0.00
## hard cheese                         0.00          0.00       0.00     0.00
## noodles                             0.00          0.00       0.00     0.00
## grapes                              0.00          0.00       0.00     0.00
## cat food                            0.00          0.00       0.00     0.00
## chewing gum                         0.00          0.00       0.00     0.00
## soda                                0.00          0.00       0.00     0.00
## detergent                           0.00          0.00       0.00     0.00
## red/blush wine                      0.00          0.00       0.00     0.00
## white wine                          0.00          0.00       0.00     0.00
## turkey                              0.00          0.00       0.00     0.00
## dishes                              0.00          0.00       0.00     0.00
## bottled water                       0.00          0.00       0.00     0.00
## flour                               0.00          0.00       0.00     0.00
## semi-finished bread                 0.00          0.00       0.00     0.00
## baking powder                       0.00          0.00       0.00     0.00
## pickled vegetables                  0.00          0.00       0.00     0.00
## herbs                               0.00          0.00       0.00     0.00
## tropical herbs                      0.00          0.00       0.00     0.00
## soft cheese                         0.00          0.00       0.00     0.00
## tea                                 0.00          0.00       0.00     0.00
## processed cheese                    0.00          0.00       0.00     0.00
## sausage                             0.00          0.00       0.00     0.00
## pasta                               0.00          0.00       0.00     0.00
## citrus herbs                        0.00          0.00       0.00     0.00
## potted plants                       0.00          0.00       0.00     0.00
## canned fish                         0.00          0.00       0.00     0.00
## seasonal products                   0.00          0.00       0.00     0.00
## cake bar                            0.00          0.00       0.00     0.00
## carrots                             0.00          0.00       0.00     0.00
## mustard                             0.00          0.00       0.00     0.00
## packaged fruit/vegetables           0.00          0.00       0.00     0.00
## spread cheese                       0.00          0.00       0.00     0.00
## frozen dessert                      0.00          0.00       0.00     0.00
## frozen fish                         0.00          0.00       0.00     0.00
## cling film/bags                     0.00          0.00       0.00     0.00
## salt                                0.00          0.00       0.00     0.00
## liquor                              0.00          0.00       0.00     0.00
## canned vegetables                   0.00          0.00       0.00     0.00
## bottled beer                        0.00          0.00       0.00     0.00
## flower (seeds)                      0.00          0.00       0.00     0.00
## cooking oil                         0.00          0.00       0.00     0.00
## dish cleaner                        0.00          0.00       0.00     0.00
## condensed milk                      0.01          0.00       0.00     0.00
## roll products                       0.00          0.01       0.00     0.00
## photo/film                          0.00          0.00       0.01     0.00
## pet care                            0.00          0.00       0.00     0.01
## chocolate marshmallow               0.00          0.00       0.00     0.00
## herbs/vegetable juice               0.00          0.00       0.00     0.00
## whole milk                          0.00          0.00       0.00     0.00
## candles                             0.00          0.00       0.00     0.00
## mayonnaise                          0.00          0.00       0.00     0.00
## Instant food products               0.00          0.00       0.00     0.00
## sweet spreads                       0.00          0.00       0.00     0.00
## liquor (appetizer)                  0.00          0.00       0.00     0.00
## specialty cheese                    0.00          0.00       0.00     0.00
## frozen potato products              0.00          0.00       0.00     0.00
## house keeping products              0.00          0.00       0.00     0.00
## dog food                            0.00          0.00       0.00     0.00
## soy                                 0.00          0.00       0.00     0.00
## instant coffee                      0.00          0.00       0.00     0.00
## pip herbs                           0.00          0.00       0.00     0.00
## zwieback                            0.00          0.00       0.00     0.00
## finished products                   0.00          0.00       0.00     0.00
## popcorn                             0.00          0.00       0.00     0.00
## vinegar                             0.00          0.00       0.00     0.00
## soups                               0.00          0.00       0.00     0.00
## female sanitary products            0.00          0.00       0.00     0.00
## sparkling wine                      0.00          0.00       0.00     0.00
## dental care                         0.00          0.00       0.00     0.00
## cereals                             0.00          0.00       0.00     0.00
## kitchen towels                      0.00          0.00       0.00     0.00
## curd cheese                         0.00          0.00       0.00     0.00
## other vegetables                    0.00          0.00       0.00     0.00
## rolls/buns                          0.00          0.00       0.00     0.00
## softener                            0.00          0.00       0.00     0.00
## cleaner                             0.00          0.00       0.00     0.00
## spices                              0.00          0.00       0.00     0.00
## jam                                 0.00          0.00       0.00     0.00
## sauces                              0.00          0.00       0.00     0.00
## rum                                 0.00          0.00       0.00     0.00
## liver loaf                          0.00          0.00       0.00     0.00
## male cosmetics                      0.00          0.00       0.00     0.00
## meat spreads                        0.00          0.00       0.00     0.00
## packaged herbs/vegetables           0.00          0.00       0.00     0.00
## brandy                              0.00          0.00       0.00     0.00
## ketchup                             0.00          0.00       0.00     0.00
## abrasive cleaner                    0.00          0.00       0.00     0.00
## light bulbs                         0.00          0.00       0.00     0.00
## artif. sweetener                    0.00          0.00       0.00     0.00
## nuts/prunes                         0.00          0.00       0.00     0.00
## specialty fat                       0.00          0.00       0.00     0.00
## skin care                           0.00          0.00       0.00     0.00
## fish                                0.00          0.00       0.00     0.00
## potato products                     0.00          0.00       0.00     0.00
## root vegetables                     0.00          0.00       0.00     0.00
## snack products                      0.00          0.00       0.00     0.00
## nut snack                           0.00          0.00       0.00     0.00
## soap                                0.00          0.00       0.00     0.00
## syrup                               0.00          0.00       0.00     0.00
## bathroom cleaner                    0.00          0.00       0.00     0.00
## canned fruit                        0.00          0.00       0.00     0.00
## cookware                            0.00          0.00       0.00     0.00
## cooking chocolate                   0.00          0.00       0.00     0.00
## tidbits                             0.00          0.00       0.00     0.00
## cocoa drinks                        0.00          0.00       0.00     0.00
## pudding powder                      0.00          0.00       0.00     0.00
## ready soups                         0.00          0.00       0.00     0.00
## organic marinated meat              0.00          0.00       0.00     0.00
## flower soil/fertilizer              0.00          0.00       0.00     0.00
## organic products                    0.00          0.00       0.00     0.00
## pot plants                          0.00          0.00       0.00     0.00
## prosecco                            0.00          0.00       0.00     0.00
## frankfurter                         0.00          0.00       0.00     0.00
## decalcifier                         0.00          0.00       0.00     0.00
## honey                               0.00          0.00       0.00     0.00
## specialty vegetables                0.00          0.00       0.00     0.00
## cream                               0.00          0.00       0.00     0.00
## hair spray                          0.00          0.00       0.00     0.00
## frozen fruits                       0.00          0.00       0.00     0.00
## rubbing alcohol                     0.00          0.00       0.00     0.00
## liqueur                             0.00          0.00       0.00     0.00
## make up remover                     0.00          0.00       0.00     0.00
## salad dressing                      0.00          0.00       0.00     0.00
## frozen chicken                      0.00          0.00       0.00     0.00
## whisky                              0.00          0.00       0.00     0.00
## baby cosmetics                      0.00          0.00       0.00     0.00
## toilet cleaner                      0.00          0.00       0.00     0.00
## bags                                0.00          0.00       0.00     0.00
## canned herbs                        0.00          0.00       0.00     0.00
## kitchen utensil                     0.00          0.00       0.00     0.00
## preservation products               0.00          0.00       0.00     0.00
## baby food                           0.00          0.00       0.00     0.00
## frozen herbss                       0.00          0.00       0.00     0.00
## organic sausage                     0.00          0.00       0.00     0.00
## sound storage medium                0.00          0.00       0.00     0.00
##                           chocolate marshmallow herbs/vegetable juice
## rice                                       0.00                  0.00
## veggies                                    0.00                  0.00
## loaf                                       0.00                  0.00
## coke                                       0.00                  0.00
## yogurt                                     0.00                  0.00
## vegetables                                 0.00                  0.00
## mineral water                              0.00                  0.00
## Plastic bags                               0.00                  0.00
## tropical fruit                             0.00                  0.00
## marinated meat                             0.00                  0.00
## pies/pasties                               0.00                  0.00
## newspapers                                 0.00                  0.00
## citrus                                     0.00                  0.00
## whipped/sour cream                         0.00                  0.00
## heinken                                    0.00                  0.00
## green tea                                  0.00                  0.00
## pip fruit                                  0.00                  0.00
## brown bread                                0.00                  0.00
## fruit/vegetable juice                      0.00                  0.00
## domestic eggs                              0.00                  0.00
## coffee                                     0.00                  0.00
## margarine                                  0.00                  0.00
## beef                                       0.00                  0.00
## curd                                       0.00                  0.00
## butter                                     0.00                  0.00
## marinated meats                            0.00                  0.00
## napkins                                    0.00                  0.00
## halal meat                                 0.00                  0.00
## chocolate                                  0.00                  0.00
## frozen vegetables                          0.00                  0.00
## chicken                                    0.00                  0.00
## white bread                                0.00                  0.00
## cream cheese                               0.00                  0.00
## waffles                                    0.00                  0.00
## dessert                                    0.00                  0.00
## salty snack                                0.00                  0.00
## long life bakery product                   0.00                  0.00
## berries                                    0.00                  0.00
## hamburger meat                             0.00                  0.00
## sugar                                      0.00                  0.00
## hygiene articles                           0.00                  0.00
## UHT-milk                                   0.00                  0.00
## onions                                     0.00                  0.00
## candy                                      0.00                  0.00
## specialty chocolate                        0.00                  0.00
## butter milk                                0.00                  0.00
## oil                                        0.00                  0.00
## frozen meals                               0.00                  0.00
## misc. beverages                            0.00                  0.00
## specialty bar                              0.00                  0.00
## ham                                        0.00                  0.00
## beverages                                  0.00                  0.00
## meat                                       0.00                  0.00
## ice cream                                  0.00                  0.00
## sliced cheese                              0.00                  0.00
## hard cheese                                0.00                  0.00
## noodles                                    0.00                  0.00
## grapes                                     0.00                  0.00
## cat food                                   0.00                  0.00
## chewing gum                                0.00                  0.00
## soda                                       0.00                  0.00
## detergent                                  0.00                  0.00
## red/blush wine                             0.00                  0.00
## white wine                                 0.00                  0.00
## turkey                                     0.00                  0.00
## dishes                                     0.00                  0.00
## bottled water                              0.00                  0.00
## flour                                      0.00                  0.00
## semi-finished bread                        0.00                  0.00
## baking powder                              0.00                  0.00
## pickled vegetables                         0.00                  0.00
## herbs                                      0.00                  0.00
## tropical herbs                             0.00                  0.00
## soft cheese                                0.00                  0.00
## tea                                        0.00                  0.00
## processed cheese                           0.00                  0.00
## sausage                                    0.00                  0.00
## pasta                                      0.00                  0.00
## citrus herbs                               0.00                  0.00
## potted plants                              0.00                  0.00
## canned fish                                0.00                  0.00
## seasonal products                          0.00                  0.00
## cake bar                                   0.00                  0.00
## carrots                                    0.00                  0.00
## mustard                                    0.00                  0.00
## packaged fruit/vegetables                  0.00                  0.00
## spread cheese                              0.00                  0.00
## frozen dessert                             0.00                  0.00
## frozen fish                                0.00                  0.00
## cling film/bags                            0.00                  0.00
## salt                                       0.00                  0.00
## liquor                                     0.00                  0.00
## canned vegetables                          0.00                  0.00
## bottled beer                               0.00                  0.00
## flower (seeds)                             0.00                  0.00
## cooking oil                                0.00                  0.00
## dish cleaner                               0.00                  0.00
## condensed milk                             0.00                  0.00
## roll products                              0.00                  0.00
## photo/film                                 0.00                  0.00
## pet care                                   0.00                  0.00
## chocolate marshmallow                      0.01                  0.00
## herbs/vegetable juice                      0.00                  0.01
## whole milk                                 0.00                  0.00
## candles                                    0.00                  0.00
## mayonnaise                                 0.00                  0.00
## Instant food products                      0.00                  0.00
## sweet spreads                              0.00                  0.00
## liquor (appetizer)                         0.00                  0.00
## specialty cheese                           0.00                  0.00
## frozen potato products                     0.00                  0.00
## house keeping products                     0.00                  0.00
## dog food                                   0.00                  0.00
## soy                                        0.00                  0.00
## instant coffee                             0.00                  0.00
## pip herbs                                  0.00                  0.00
## zwieback                                   0.00                  0.00
## finished products                          0.00                  0.00
## popcorn                                    0.00                  0.00
## vinegar                                    0.00                  0.00
## soups                                      0.00                  0.00
## female sanitary products                   0.00                  0.00
## sparkling wine                             0.00                  0.00
## dental care                                0.00                  0.00
## cereals                                    0.00                  0.00
## kitchen towels                             0.00                  0.00
## curd cheese                                0.00                  0.00
## other vegetables                           0.00                  0.00
## rolls/buns                                 0.00                  0.00
## softener                                   0.00                  0.00
## cleaner                                    0.00                  0.00
## spices                                     0.00                  0.00
## jam                                        0.00                  0.00
## sauces                                     0.00                  0.00
## rum                                        0.00                  0.00
## liver loaf                                 0.00                  0.00
## male cosmetics                             0.00                  0.00
## meat spreads                               0.00                  0.00
## packaged herbs/vegetables                  0.00                  0.00
## brandy                                     0.00                  0.00
## ketchup                                    0.00                  0.00
## abrasive cleaner                           0.00                  0.00
## light bulbs                                0.00                  0.00
## artif. sweetener                           0.00                  0.00
## nuts/prunes                                0.00                  0.00
## specialty fat                              0.00                  0.00
## skin care                                  0.00                  0.00
## fish                                       0.00                  0.00
## potato products                            0.00                  0.00
## root vegetables                            0.00                  0.00
## snack products                             0.00                  0.00
## nut snack                                  0.00                  0.00
## soap                                       0.00                  0.00
## syrup                                      0.00                  0.00
## bathroom cleaner                           0.00                  0.00
## canned fruit                               0.00                  0.00
## cookware                                   0.00                  0.00
## cooking chocolate                          0.00                  0.00
## tidbits                                    0.00                  0.00
## cocoa drinks                               0.00                  0.00
## pudding powder                             0.00                  0.00
## ready soups                                0.00                  0.00
## organic marinated meat                     0.00                  0.00
## flower soil/fertilizer                     0.00                  0.00
## organic products                           0.00                  0.00
## pot plants                                 0.00                  0.00
## prosecco                                   0.00                  0.00
## frankfurter                                0.00                  0.00
## decalcifier                                0.00                  0.00
## honey                                      0.00                  0.00
## specialty vegetables                       0.00                  0.00
## cream                                      0.00                  0.00
## hair spray                                 0.00                  0.00
## frozen fruits                              0.00                  0.00
## rubbing alcohol                            0.00                  0.00
## liqueur                                    0.00                  0.00
## make up remover                            0.00                  0.00
## salad dressing                             0.00                  0.00
## frozen chicken                             0.00                  0.00
## whisky                                     0.00                  0.00
## baby cosmetics                             0.00                  0.00
## toilet cleaner                             0.00                  0.00
## bags                                       0.00                  0.00
## canned herbs                               0.00                  0.00
## kitchen utensil                            0.00                  0.00
## preservation products                      0.00                  0.00
## baby food                                  0.00                  0.00
## frozen herbss                              0.00                  0.00
## organic sausage                            0.00                  0.00
## sound storage medium                       0.00                  0.00
##                           whole milk candles mayonnaise Instant food products
## rice                            0.00    0.00       0.00                  0.00
## veggies                         0.00    0.00       0.00                  0.00
## loaf                            0.00    0.00       0.00                  0.00
## coke                            0.00    0.00       0.00                  0.00
## yogurt                          0.00    0.00       0.00                  0.00
## vegetables                      0.00    0.00       0.00                  0.00
## mineral water                   0.00    0.00       0.00                  0.00
## Plastic bags                    0.00    0.00       0.00                  0.00
## tropical fruit                  0.00    0.00       0.00                  0.00
## marinated meat                  0.00    0.00       0.00                  0.00
## pies/pasties                    0.00    0.00       0.00                  0.00
## newspapers                      0.00    0.00       0.00                  0.00
## citrus                          0.00    0.00       0.00                  0.00
## whipped/sour cream              0.00    0.00       0.00                  0.00
## heinken                         0.00    0.00       0.00                  0.00
## green tea                       0.00    0.00       0.00                  0.00
## pip fruit                       0.00    0.00       0.00                  0.00
## brown bread                     0.00    0.00       0.00                  0.00
## fruit/vegetable juice           0.00    0.00       0.00                  0.00
## domestic eggs                   0.00    0.00       0.00                  0.00
## coffee                          0.00    0.00       0.00                  0.00
## margarine                       0.00    0.00       0.00                  0.00
## beef                            0.00    0.00       0.00                  0.00
## curd                            0.00    0.00       0.00                  0.00
## butter                          0.00    0.00       0.00                  0.00
## marinated meats                 0.00    0.00       0.00                  0.00
## napkins                         0.00    0.00       0.00                  0.00
## halal meat                      0.00    0.00       0.00                  0.00
## chocolate                       0.00    0.00       0.00                  0.00
## frozen vegetables               0.00    0.00       0.00                  0.00
## chicken                         0.00    0.00       0.00                  0.00
## white bread                     0.00    0.00       0.00                  0.00
## cream cheese                    0.00    0.00       0.00                  0.00
## waffles                         0.00    0.00       0.00                  0.00
## dessert                         0.00    0.00       0.00                  0.00
## salty snack                     0.00    0.00       0.00                  0.00
## long life bakery product        0.00    0.00       0.00                  0.00
## berries                         0.00    0.00       0.00                  0.00
## hamburger meat                  0.00    0.00       0.00                  0.00
## sugar                           0.00    0.00       0.00                  0.00
## hygiene articles                0.00    0.00       0.00                  0.00
## UHT-milk                        0.00    0.00       0.00                  0.00
## onions                          0.00    0.00       0.00                  0.00
## candy                           0.00    0.00       0.00                  0.00
## specialty chocolate             0.00    0.00       0.00                  0.00
## butter milk                     0.00    0.00       0.00                  0.00
## oil                             0.00    0.00       0.00                  0.00
## frozen meals                    0.00    0.00       0.00                  0.00
## misc. beverages                 0.00    0.00       0.00                  0.00
## specialty bar                   0.00    0.00       0.00                  0.00
## ham                             0.00    0.00       0.00                  0.00
## beverages                       0.00    0.00       0.00                  0.00
## meat                            0.00    0.00       0.00                  0.00
## ice cream                       0.00    0.00       0.00                  0.00
## sliced cheese                   0.00    0.00       0.00                  0.00
## hard cheese                     0.00    0.00       0.00                  0.00
## noodles                         0.00    0.00       0.00                  0.00
## grapes                          0.00    0.00       0.00                  0.00
## cat food                        0.00    0.00       0.00                  0.00
## chewing gum                     0.00    0.00       0.00                  0.00
## soda                            0.00    0.00       0.00                  0.00
## detergent                       0.00    0.00       0.00                  0.00
## red/blush wine                  0.00    0.00       0.00                  0.00
## white wine                      0.00    0.00       0.00                  0.00
## turkey                          0.00    0.00       0.00                  0.00
## dishes                          0.00    0.00       0.00                  0.00
## bottled water                   0.00    0.00       0.00                  0.00
## flour                           0.00    0.00       0.00                  0.00
## semi-finished bread             0.00    0.00       0.00                  0.00
## baking powder                   0.00    0.00       0.00                  0.00
## pickled vegetables              0.00    0.00       0.00                  0.00
## herbs                           0.00    0.00       0.00                  0.00
## tropical herbs                  0.00    0.00       0.00                  0.00
## soft cheese                     0.00    0.00       0.00                  0.00
## tea                             0.00    0.00       0.00                  0.00
## processed cheese                0.00    0.00       0.00                  0.00
## sausage                         0.00    0.00       0.00                  0.00
## pasta                           0.00    0.00       0.00                  0.00
## citrus herbs                    0.00    0.00       0.00                  0.00
## potted plants                   0.00    0.00       0.00                  0.00
## canned fish                     0.00    0.00       0.00                  0.00
## seasonal products               0.00    0.00       0.00                  0.00
## cake bar                        0.00    0.00       0.00                  0.00
## carrots                         0.00    0.00       0.00                  0.00
## mustard                         0.00    0.00       0.00                  0.00
## packaged fruit/vegetables       0.00    0.00       0.00                  0.00
## spread cheese                   0.00    0.00       0.00                  0.00
## frozen dessert                  0.00    0.00       0.00                  0.00
## frozen fish                     0.00    0.00       0.00                  0.00
## cling film/bags                 0.00    0.00       0.00                  0.00
## salt                            0.00    0.00       0.00                  0.00
## liquor                          0.00    0.00       0.00                  0.00
## canned vegetables               0.00    0.00       0.00                  0.00
## bottled beer                    0.00    0.00       0.00                  0.00
## flower (seeds)                  0.00    0.00       0.00                  0.00
## cooking oil                     0.00    0.00       0.00                  0.00
## dish cleaner                    0.00    0.00       0.00                  0.00
## condensed milk                  0.00    0.00       0.00                  0.00
## roll products                   0.00    0.00       0.00                  0.00
## photo/film                      0.00    0.00       0.00                  0.00
## pet care                        0.00    0.00       0.00                  0.00
## chocolate marshmallow           0.00    0.00       0.00                  0.00
## herbs/vegetable juice           0.00    0.00       0.00                  0.00
## whole milk                      0.01    0.00       0.00                  0.00
## candles                         0.00    0.01       0.00                  0.00
## mayonnaise                      0.00    0.00       0.01                  0.00
## Instant food products           0.00    0.00       0.00                  0.01
## sweet spreads                   0.00    0.00       0.00                  0.00
## liquor (appetizer)              0.00    0.00       0.00                  0.00
## specialty cheese                0.00    0.00       0.00                  0.00
## frozen potato products          0.00    0.00       0.00                  0.00
## house keeping products          0.00    0.00       0.00                  0.00
## dog food                        0.00    0.00       0.00                  0.00
## soy                             0.00    0.00       0.00                  0.00
## instant coffee                  0.00    0.00       0.00                  0.00
## pip herbs                       0.00    0.00       0.00                  0.00
## zwieback                        0.00    0.00       0.00                  0.00
## finished products               0.00    0.00       0.00                  0.00
## popcorn                         0.00    0.00       0.00                  0.00
## vinegar                         0.00    0.00       0.00                  0.00
## soups                           0.00    0.00       0.00                  0.00
## female sanitary products        0.00    0.00       0.00                  0.00
## sparkling wine                  0.00    0.00       0.00                  0.00
## dental care                     0.00    0.00       0.00                  0.00
## cereals                         0.00    0.00       0.00                  0.00
## kitchen towels                  0.00    0.00       0.00                  0.00
## curd cheese                     0.00    0.00       0.00                  0.00
## other vegetables                0.00    0.00       0.00                  0.00
## rolls/buns                      0.00    0.00       0.00                  0.00
## softener                        0.00    0.00       0.00                  0.00
## cleaner                         0.00    0.00       0.00                  0.00
## spices                          0.00    0.00       0.00                  0.00
## jam                             0.00    0.00       0.00                  0.00
## sauces                          0.00    0.00       0.00                  0.00
## rum                             0.00    0.00       0.00                  0.00
## liver loaf                      0.00    0.00       0.00                  0.00
## male cosmetics                  0.00    0.00       0.00                  0.00
## meat spreads                    0.00    0.00       0.00                  0.00
## packaged herbs/vegetables       0.00    0.00       0.00                  0.00
## brandy                          0.00    0.00       0.00                  0.00
## ketchup                         0.00    0.00       0.00                  0.00
## abrasive cleaner                0.00    0.00       0.00                  0.00
## light bulbs                     0.00    0.00       0.00                  0.00
## artif. sweetener                0.00    0.00       0.00                  0.00
## nuts/prunes                     0.00    0.00       0.00                  0.00
## specialty fat                   0.00    0.00       0.00                  0.00
## skin care                       0.00    0.00       0.00                  0.00
## fish                            0.00    0.00       0.00                  0.00
## potato products                 0.00    0.00       0.00                  0.00
## root vegetables                 0.00    0.00       0.00                  0.00
## snack products                  0.00    0.00       0.00                  0.00
## nut snack                       0.00    0.00       0.00                  0.00
## soap                            0.00    0.00       0.00                  0.00
## syrup                           0.00    0.00       0.00                  0.00
## bathroom cleaner                0.00    0.00       0.00                  0.00
## canned fruit                    0.00    0.00       0.00                  0.00
## cookware                        0.00    0.00       0.00                  0.00
## cooking chocolate               0.00    0.00       0.00                  0.00
## tidbits                         0.00    0.00       0.00                  0.00
## cocoa drinks                    0.00    0.00       0.00                  0.00
## pudding powder                  0.00    0.00       0.00                  0.00
## ready soups                     0.00    0.00       0.00                  0.00
## organic marinated meat          0.00    0.00       0.00                  0.00
## flower soil/fertilizer          0.00    0.00       0.00                  0.00
## organic products                0.00    0.00       0.00                  0.00
## pot plants                      0.00    0.00       0.00                  0.00
## prosecco                        0.00    0.00       0.00                  0.00
## frankfurter                     0.00    0.00       0.00                  0.00
## decalcifier                     0.00    0.00       0.00                  0.00
## honey                           0.00    0.00       0.00                  0.00
## specialty vegetables            0.00    0.00       0.00                  0.00
## cream                           0.00    0.00       0.00                  0.00
## hair spray                      0.00    0.00       0.00                  0.00
## frozen fruits                   0.00    0.00       0.00                  0.00
## rubbing alcohol                 0.00    0.00       0.00                  0.00
## liqueur                         0.00    0.00       0.00                  0.00
## make up remover                 0.00    0.00       0.00                  0.00
## salad dressing                  0.00    0.00       0.00                  0.00
## frozen chicken                  0.00    0.00       0.00                  0.00
## whisky                          0.00    0.00       0.00                  0.00
## baby cosmetics                  0.00    0.00       0.00                  0.00
## toilet cleaner                  0.00    0.00       0.00                  0.00
## bags                            0.00    0.00       0.00                  0.00
## canned herbs                    0.00    0.00       0.00                  0.00
## kitchen utensil                 0.00    0.00       0.00                  0.00
## preservation products           0.00    0.00       0.00                  0.00
## baby food                       0.00    0.00       0.00                  0.00
## frozen herbss                   0.00    0.00       0.00                  0.00
## organic sausage                 0.00    0.00       0.00                  0.00
## sound storage medium            0.00    0.00       0.00                  0.00
##                           sweet spreads liquor (appetizer) specialty cheese
## rice                               0.00               0.00             0.00
## veggies                            0.00               0.00             0.00
## loaf                               0.00               0.00             0.00
## coke                               0.00               0.00             0.00
## yogurt                             0.00               0.00             0.00
## vegetables                         0.00               0.00             0.00
## mineral water                      0.00               0.00             0.00
## Plastic bags                       0.00               0.00             0.00
## tropical fruit                     0.00               0.00             0.00
## marinated meat                     0.00               0.00             0.00
## pies/pasties                       0.00               0.00             0.00
## newspapers                         0.00               0.00             0.00
## citrus                             0.00               0.00             0.00
## whipped/sour cream                 0.00               0.00             0.00
## heinken                            0.00               0.00             0.00
## green tea                          0.00               0.00             0.00
## pip fruit                          0.00               0.00             0.00
## brown bread                        0.00               0.00             0.00
## fruit/vegetable juice              0.00               0.00             0.00
## domestic eggs                      0.00               0.00             0.00
## coffee                             0.00               0.00             0.00
## margarine                          0.00               0.00             0.00
## beef                               0.00               0.00             0.00
## curd                               0.00               0.00             0.00
## butter                             0.00               0.00             0.00
## marinated meats                    0.00               0.00             0.00
## napkins                            0.00               0.00             0.00
## halal meat                         0.00               0.00             0.00
## chocolate                          0.00               0.00             0.00
## frozen vegetables                  0.00               0.00             0.00
## chicken                            0.00               0.00             0.00
## white bread                        0.00               0.00             0.00
## cream cheese                       0.00               0.00             0.00
## waffles                            0.00               0.00             0.00
## dessert                            0.00               0.00             0.00
## salty snack                        0.00               0.00             0.00
## long life bakery product           0.00               0.00             0.00
## berries                            0.00               0.00             0.00
## hamburger meat                     0.00               0.00             0.00
## sugar                              0.00               0.00             0.00
## hygiene articles                   0.00               0.00             0.00
## UHT-milk                           0.00               0.00             0.00
## onions                             0.00               0.00             0.00
## candy                              0.00               0.00             0.00
## specialty chocolate                0.00               0.00             0.00
## butter milk                        0.00               0.00             0.00
## oil                                0.00               0.00             0.00
## frozen meals                       0.00               0.00             0.00
## misc. beverages                    0.00               0.00             0.00
## specialty bar                      0.00               0.00             0.00
## ham                                0.00               0.00             0.00
## beverages                          0.00               0.00             0.00
## meat                               0.00               0.00             0.00
## ice cream                          0.00               0.00             0.00
## sliced cheese                      0.00               0.00             0.00
## hard cheese                        0.00               0.00             0.00
## noodles                            0.00               0.00             0.00
## grapes                             0.00               0.00             0.00
## cat food                           0.00               0.00             0.00
## chewing gum                        0.00               0.00             0.00
## soda                               0.00               0.00             0.00
## detergent                          0.00               0.00             0.00
## red/blush wine                     0.00               0.00             0.00
## white wine                         0.00               0.00             0.00
## turkey                             0.00               0.00             0.00
## dishes                             0.00               0.00             0.00
## bottled water                      0.00               0.00             0.00
## flour                              0.00               0.00             0.00
## semi-finished bread                0.00               0.00             0.00
## baking powder                      0.00               0.00             0.00
## pickled vegetables                 0.00               0.00             0.00
## herbs                              0.00               0.00             0.00
## tropical herbs                     0.00               0.00             0.00
## soft cheese                        0.00               0.00             0.00
## tea                                0.00               0.00             0.00
## processed cheese                   0.00               0.00             0.00
## sausage                            0.00               0.00             0.00
## pasta                              0.00               0.00             0.00
## citrus herbs                       0.00               0.00             0.00
## potted plants                      0.00               0.00             0.00
## canned fish                        0.00               0.00             0.00
## seasonal products                  0.00               0.00             0.00
## cake bar                           0.00               0.00             0.00
## carrots                            0.00               0.00             0.00
## mustard                            0.00               0.00             0.00
## packaged fruit/vegetables          0.00               0.00             0.00
## spread cheese                      0.00               0.00             0.00
## frozen dessert                     0.00               0.00             0.00
## frozen fish                        0.00               0.00             0.00
## cling film/bags                    0.00               0.00             0.00
## salt                               0.00               0.00             0.00
## liquor                             0.00               0.00             0.00
## canned vegetables                  0.00               0.00             0.00
## bottled beer                       0.00               0.00             0.00
## flower (seeds)                     0.00               0.00             0.00
## cooking oil                        0.00               0.00             0.00
## dish cleaner                       0.00               0.00             0.00
## condensed milk                     0.00               0.00             0.00
## roll products                      0.00               0.00             0.00
## photo/film                         0.00               0.00             0.00
## pet care                           0.00               0.00             0.00
## chocolate marshmallow              0.00               0.00             0.00
## herbs/vegetable juice              0.00               0.00             0.00
## whole milk                         0.00               0.00             0.00
## candles                            0.00               0.00             0.00
## mayonnaise                         0.00               0.00             0.00
## Instant food products              0.00               0.00             0.00
## sweet spreads                      0.01               0.00             0.00
## liquor (appetizer)                 0.00               0.01             0.00
## specialty cheese                   0.00               0.00             0.01
## frozen potato products             0.00               0.00             0.00
## house keeping products             0.00               0.00             0.00
## dog food                           0.00               0.00             0.00
## soy                                0.00               0.00             0.00
## instant coffee                     0.00               0.00             0.00
## pip herbs                          0.00               0.00             0.00
## zwieback                           0.00               0.00             0.00
## finished products                  0.00               0.00             0.00
## popcorn                            0.00               0.00             0.00
## vinegar                            0.00               0.00             0.00
## soups                              0.00               0.00             0.00
## female sanitary products           0.00               0.00             0.00
## sparkling wine                     0.00               0.00             0.00
## dental care                        0.00               0.00             0.00
## cereals                            0.00               0.00             0.00
## kitchen towels                     0.00               0.00             0.00
## curd cheese                        0.00               0.00             0.00
## other vegetables                   0.00               0.00             0.00
## rolls/buns                         0.00               0.00             0.00
## softener                           0.00               0.00             0.00
## cleaner                            0.00               0.00             0.00
## spices                             0.00               0.00             0.00
## jam                                0.00               0.00             0.00
## sauces                             0.00               0.00             0.00
## rum                                0.00               0.00             0.00
## liver loaf                         0.00               0.00             0.00
## male cosmetics                     0.00               0.00             0.00
## meat spreads                       0.00               0.00             0.00
## packaged herbs/vegetables          0.00               0.00             0.00
## brandy                             0.00               0.00             0.00
## ketchup                            0.00               0.00             0.00
## abrasive cleaner                   0.00               0.00             0.00
## light bulbs                        0.00               0.00             0.00
## artif. sweetener                   0.00               0.00             0.00
## nuts/prunes                        0.00               0.00             0.00
## specialty fat                      0.00               0.00             0.00
## skin care                          0.00               0.00             0.00
## fish                               0.00               0.00             0.00
## potato products                    0.00               0.00             0.00
## root vegetables                    0.00               0.00             0.00
## snack products                     0.00               0.00             0.00
## nut snack                          0.00               0.00             0.00
## soap                               0.00               0.00             0.00
## syrup                              0.00               0.00             0.00
## bathroom cleaner                   0.00               0.00             0.00
## canned fruit                       0.00               0.00             0.00
## cookware                           0.00               0.00             0.00
## cooking chocolate                  0.00               0.00             0.00
## tidbits                            0.00               0.00             0.00
## cocoa drinks                       0.00               0.00             0.00
## pudding powder                     0.00               0.00             0.00
## ready soups                        0.00               0.00             0.00
## organic marinated meat             0.00               0.00             0.00
## flower soil/fertilizer             0.00               0.00             0.00
## organic products                   0.00               0.00             0.00
## pot plants                         0.00               0.00             0.00
## prosecco                           0.00               0.00             0.00
## frankfurter                        0.00               0.00             0.00
## decalcifier                        0.00               0.00             0.00
## honey                              0.00               0.00             0.00
## specialty vegetables               0.00               0.00             0.00
## cream                              0.00               0.00             0.00
## hair spray                         0.00               0.00             0.00
## frozen fruits                      0.00               0.00             0.00
## rubbing alcohol                    0.00               0.00             0.00
## liqueur                            0.00               0.00             0.00
## make up remover                    0.00               0.00             0.00
## salad dressing                     0.00               0.00             0.00
## frozen chicken                     0.00               0.00             0.00
## whisky                             0.00               0.00             0.00
## baby cosmetics                     0.00               0.00             0.00
## toilet cleaner                     0.00               0.00             0.00
## bags                               0.00               0.00             0.00
## canned herbs                       0.00               0.00             0.00
## kitchen utensil                    0.00               0.00             0.00
## preservation products              0.00               0.00             0.00
## baby food                          0.00               0.00             0.00
## frozen herbss                      0.00               0.00             0.00
## organic sausage                    0.00               0.00             0.00
## sound storage medium               0.00               0.00             0.00
##                           frozen potato products house keeping products
## rice                                        0.00                   0.00
## veggies                                     0.00                   0.00
## loaf                                        0.00                   0.00
## coke                                        0.00                   0.00
## yogurt                                      0.00                   0.00
## vegetables                                  0.00                   0.00
## mineral water                               0.00                   0.00
## Plastic bags                                0.00                   0.00
## tropical fruit                              0.00                   0.00
## marinated meat                              0.00                   0.00
## pies/pasties                                0.00                   0.00
## newspapers                                  0.00                   0.00
## citrus                                      0.00                   0.00
## whipped/sour cream                          0.00                   0.00
## heinken                                     0.00                   0.00
## green tea                                   0.00                   0.00
## pip fruit                                   0.00                   0.00
## brown bread                                 0.00                   0.00
## fruit/vegetable juice                       0.00                   0.00
## domestic eggs                               0.00                   0.00
## coffee                                      0.00                   0.00
## margarine                                   0.00                   0.00
## beef                                        0.00                   0.00
## curd                                        0.00                   0.00
## butter                                      0.00                   0.00
## marinated meats                             0.00                   0.00
## napkins                                     0.00                   0.00
## halal meat                                  0.00                   0.00
## chocolate                                   0.00                   0.00
## frozen vegetables                           0.00                   0.00
## chicken                                     0.00                   0.00
## white bread                                 0.00                   0.00
## cream cheese                                0.00                   0.00
## waffles                                     0.00                   0.00
## dessert                                     0.00                   0.00
## salty snack                                 0.00                   0.00
## long life bakery product                    0.00                   0.00
## berries                                     0.00                   0.00
## hamburger meat                              0.00                   0.00
## sugar                                       0.00                   0.00
## hygiene articles                            0.00                   0.00
## UHT-milk                                    0.00                   0.00
## onions                                      0.00                   0.00
## candy                                       0.00                   0.00
## specialty chocolate                         0.00                   0.00
## butter milk                                 0.00                   0.00
## oil                                         0.00                   0.00
## frozen meals                                0.00                   0.00
## misc. beverages                             0.00                   0.00
## specialty bar                               0.00                   0.00
## ham                                         0.00                   0.00
## beverages                                   0.00                   0.00
## meat                                        0.00                   0.00
## ice cream                                   0.00                   0.00
## sliced cheese                               0.00                   0.00
## hard cheese                                 0.00                   0.00
## noodles                                     0.00                   0.00
## grapes                                      0.00                   0.00
## cat food                                    0.00                   0.00
## chewing gum                                 0.00                   0.00
## soda                                        0.00                   0.00
## detergent                                   0.00                   0.00
## red/blush wine                              0.00                   0.00
## white wine                                  0.00                   0.00
## turkey                                      0.00                   0.00
## dishes                                      0.00                   0.00
## bottled water                               0.00                   0.00
## flour                                       0.00                   0.00
## semi-finished bread                         0.00                   0.00
## baking powder                               0.00                   0.00
## pickled vegetables                          0.00                   0.00
## herbs                                       0.00                   0.00
## tropical herbs                              0.00                   0.00
## soft cheese                                 0.00                   0.00
## tea                                         0.00                   0.00
## processed cheese                            0.00                   0.00
## sausage                                     0.00                   0.00
## pasta                                       0.00                   0.00
## citrus herbs                                0.00                   0.00
## potted plants                               0.00                   0.00
## canned fish                                 0.00                   0.00
## seasonal products                           0.00                   0.00
## cake bar                                    0.00                   0.00
## carrots                                     0.00                   0.00
## mustard                                     0.00                   0.00
## packaged fruit/vegetables                   0.00                   0.00
## spread cheese                               0.00                   0.00
## frozen dessert                              0.00                   0.00
## frozen fish                                 0.00                   0.00
## cling film/bags                             0.00                   0.00
## salt                                        0.00                   0.00
## liquor                                      0.00                   0.00
## canned vegetables                           0.00                   0.00
## bottled beer                                0.00                   0.00
## flower (seeds)                              0.00                   0.00
## cooking oil                                 0.00                   0.00
## dish cleaner                                0.00                   0.00
## condensed milk                              0.00                   0.00
## roll products                               0.00                   0.00
## photo/film                                  0.00                   0.00
## pet care                                    0.00                   0.00
## chocolate marshmallow                       0.00                   0.00
## herbs/vegetable juice                       0.00                   0.00
## whole milk                                  0.00                   0.00
## candles                                     0.00                   0.00
## mayonnaise                                  0.00                   0.00
## Instant food products                       0.00                   0.00
## sweet spreads                               0.00                   0.00
## liquor (appetizer)                          0.00                   0.00
## specialty cheese                            0.00                   0.00
## frozen potato products                      0.01                   0.00
## house keeping products                      0.00                   0.01
## dog food                                    0.00                   0.00
## soy                                         0.00                   0.00
## instant coffee                              0.00                   0.00
## pip herbs                                   0.00                   0.00
## zwieback                                    0.00                   0.00
## finished products                           0.00                   0.00
## popcorn                                     0.00                   0.00
## vinegar                                     0.00                   0.00
## soups                                       0.00                   0.00
## female sanitary products                    0.00                   0.00
## sparkling wine                              0.00                   0.00
## dental care                                 0.00                   0.00
## cereals                                     0.00                   0.00
## kitchen towels                              0.00                   0.00
## curd cheese                                 0.00                   0.00
## other vegetables                            0.00                   0.00
## rolls/buns                                  0.00                   0.00
## softener                                    0.00                   0.00
## cleaner                                     0.00                   0.00
## spices                                      0.00                   0.00
## jam                                         0.00                   0.00
## sauces                                      0.00                   0.00
## rum                                         0.00                   0.00
## liver loaf                                  0.00                   0.00
## male cosmetics                              0.00                   0.00
## meat spreads                                0.00                   0.00
## packaged herbs/vegetables                   0.00                   0.00
## brandy                                      0.00                   0.00
## ketchup                                     0.00                   0.00
## abrasive cleaner                            0.00                   0.00
## light bulbs                                 0.00                   0.00
## artif. sweetener                            0.00                   0.00
## nuts/prunes                                 0.00                   0.00
## specialty fat                               0.00                   0.00
## skin care                                   0.00                   0.00
## fish                                        0.00                   0.00
## potato products                             0.00                   0.00
## root vegetables                             0.00                   0.00
## snack products                              0.00                   0.00
## nut snack                                   0.00                   0.00
## soap                                        0.00                   0.00
## syrup                                       0.00                   0.00
## bathroom cleaner                            0.00                   0.00
## canned fruit                                0.00                   0.00
## cookware                                    0.00                   0.00
## cooking chocolate                           0.00                   0.00
## tidbits                                     0.00                   0.00
## cocoa drinks                                0.00                   0.00
## pudding powder                              0.00                   0.00
## ready soups                                 0.00                   0.00
## organic marinated meat                      0.00                   0.00
## flower soil/fertilizer                      0.00                   0.00
## organic products                            0.00                   0.00
## pot plants                                  0.00                   0.00
## prosecco                                    0.00                   0.00
## frankfurter                                 0.00                   0.00
## decalcifier                                 0.00                   0.00
## honey                                       0.00                   0.00
## specialty vegetables                        0.00                   0.00
## cream                                       0.00                   0.00
## hair spray                                  0.00                   0.00
## frozen fruits                               0.00                   0.00
## rubbing alcohol                             0.00                   0.00
## liqueur                                     0.00                   0.00
## make up remover                             0.00                   0.00
## salad dressing                              0.00                   0.00
## frozen chicken                              0.00                   0.00
## whisky                                      0.00                   0.00
## baby cosmetics                              0.00                   0.00
## toilet cleaner                              0.00                   0.00
## bags                                        0.00                   0.00
## canned herbs                                0.00                   0.00
## kitchen utensil                             0.00                   0.00
## preservation products                       0.00                   0.00
## baby food                                   0.00                   0.00
## frozen herbss                               0.00                   0.00
## organic sausage                             0.00                   0.00
## sound storage medium                        0.00                   0.00
##                           dog food  soy instant coffee pip herbs zwieback
## rice                          0.00 0.00           0.00      0.00     0.00
## veggies                       0.00 0.00           0.00      0.00     0.00
## loaf                          0.00 0.00           0.00      0.00     0.00
## coke                          0.00 0.00           0.00      0.00     0.00
## yogurt                        0.00 0.00           0.00      0.00     0.00
## vegetables                    0.00 0.00           0.00      0.00     0.00
## mineral water                 0.00 0.00           0.00      0.00     0.00
## Plastic bags                  0.00 0.00           0.00      0.00     0.00
## tropical fruit                0.00 0.00           0.00      0.00     0.00
## marinated meat                0.00 0.00           0.00      0.00     0.00
## pies/pasties                  0.00 0.00           0.00      0.00     0.00
## newspapers                    0.00 0.00           0.00      0.00     0.00
## citrus                        0.00 0.00           0.00      0.00     0.00
## whipped/sour cream            0.00 0.00           0.00      0.00     0.00
## heinken                       0.00 0.00           0.00      0.00     0.00
## green tea                     0.00 0.00           0.00      0.00     0.00
## pip fruit                     0.00 0.00           0.00      0.00     0.00
## brown bread                   0.00 0.00           0.00      0.00     0.00
## fruit/vegetable juice         0.00 0.00           0.00      0.00     0.00
## domestic eggs                 0.00 0.00           0.00      0.00     0.00
## coffee                        0.00 0.00           0.00      0.00     0.00
## margarine                     0.00 0.00           0.00      0.00     0.00
## beef                          0.00 0.00           0.00      0.00     0.00
## curd                          0.00 0.00           0.00      0.00     0.00
## butter                        0.00 0.00           0.00      0.00     0.00
## marinated meats               0.00 0.00           0.00      0.00     0.00
## napkins                       0.00 0.00           0.00      0.00     0.00
## halal meat                    0.00 0.00           0.00      0.00     0.00
## chocolate                     0.00 0.00           0.00      0.00     0.00
## frozen vegetables             0.00 0.00           0.00      0.00     0.00
## chicken                       0.00 0.00           0.00      0.00     0.00
## white bread                   0.00 0.00           0.00      0.00     0.00
## cream cheese                  0.00 0.00           0.00      0.00     0.00
## waffles                       0.00 0.00           0.00      0.00     0.00
## dessert                       0.00 0.00           0.00      0.00     0.00
## salty snack                   0.00 0.00           0.00      0.00     0.00
## long life bakery product      0.00 0.00           0.00      0.00     0.00
## berries                       0.00 0.00           0.00      0.00     0.00
## hamburger meat                0.00 0.00           0.00      0.00     0.00
## sugar                         0.00 0.00           0.00      0.00     0.00
## hygiene articles              0.00 0.00           0.00      0.00     0.00
## UHT-milk                      0.00 0.00           0.00      0.00     0.00
## onions                        0.00 0.00           0.00      0.00     0.00
## candy                         0.00 0.00           0.00      0.00     0.00
## specialty chocolate           0.00 0.00           0.00      0.00     0.00
## butter milk                   0.00 0.00           0.00      0.00     0.00
## oil                           0.00 0.00           0.00      0.00     0.00
## frozen meals                  0.00 0.00           0.00      0.00     0.00
## misc. beverages               0.00 0.00           0.00      0.00     0.00
## specialty bar                 0.00 0.00           0.00      0.00     0.00
## ham                           0.00 0.00           0.00      0.00     0.00
## beverages                     0.00 0.00           0.00      0.00     0.00
## meat                          0.00 0.00           0.00      0.00     0.00
## ice cream                     0.00 0.00           0.00      0.00     0.00
## sliced cheese                 0.00 0.00           0.00      0.00     0.00
## hard cheese                   0.00 0.00           0.00      0.00     0.00
## noodles                       0.00 0.00           0.00      0.00     0.00
## grapes                        0.00 0.00           0.00      0.00     0.00
## cat food                      0.00 0.00           0.00      0.00     0.00
## chewing gum                   0.00 0.00           0.00      0.00     0.00
## soda                          0.00 0.00           0.00      0.00     0.00
## detergent                     0.00 0.00           0.00      0.00     0.00
## red/blush wine                0.00 0.00           0.00      0.00     0.00
## white wine                    0.00 0.00           0.00      0.00     0.00
## turkey                        0.00 0.00           0.00      0.00     0.00
## dishes                        0.00 0.00           0.00      0.00     0.00
## bottled water                 0.00 0.00           0.00      0.00     0.00
## flour                         0.00 0.00           0.00      0.00     0.00
## semi-finished bread           0.00 0.00           0.00      0.00     0.00
## baking powder                 0.00 0.00           0.00      0.00     0.00
## pickled vegetables            0.00 0.00           0.00      0.00     0.00
## herbs                         0.00 0.00           0.00      0.00     0.00
## tropical herbs                0.00 0.00           0.00      0.00     0.00
## soft cheese                   0.00 0.00           0.00      0.00     0.00
## tea                           0.00 0.00           0.00      0.00     0.00
## processed cheese              0.00 0.00           0.00      0.00     0.00
## sausage                       0.00 0.00           0.00      0.00     0.00
## pasta                         0.00 0.00           0.00      0.00     0.00
## citrus herbs                  0.00 0.00           0.00      0.00     0.00
## potted plants                 0.00 0.00           0.00      0.00     0.00
## canned fish                   0.00 0.00           0.00      0.00     0.00
## seasonal products             0.00 0.00           0.00      0.00     0.00
## cake bar                      0.00 0.00           0.00      0.00     0.00
## carrots                       0.00 0.00           0.00      0.00     0.00
## mustard                       0.00 0.00           0.00      0.00     0.00
## packaged fruit/vegetables     0.00 0.00           0.00      0.00     0.00
## spread cheese                 0.00 0.00           0.00      0.00     0.00
## frozen dessert                0.00 0.00           0.00      0.00     0.00
## frozen fish                   0.00 0.00           0.00      0.00     0.00
## cling film/bags               0.00 0.00           0.00      0.00     0.00
## salt                          0.00 0.00           0.00      0.00     0.00
## liquor                        0.00 0.00           0.00      0.00     0.00
## canned vegetables             0.00 0.00           0.00      0.00     0.00
## bottled beer                  0.00 0.00           0.00      0.00     0.00
## flower (seeds)                0.00 0.00           0.00      0.00     0.00
## cooking oil                   0.00 0.00           0.00      0.00     0.00
## dish cleaner                  0.00 0.00           0.00      0.00     0.00
## condensed milk                0.00 0.00           0.00      0.00     0.00
## roll products                 0.00 0.00           0.00      0.00     0.00
## photo/film                    0.00 0.00           0.00      0.00     0.00
## pet care                      0.00 0.00           0.00      0.00     0.00
## chocolate marshmallow         0.00 0.00           0.00      0.00     0.00
## herbs/vegetable juice         0.00 0.00           0.00      0.00     0.00
## whole milk                    0.00 0.00           0.00      0.00     0.00
## candles                       0.00 0.00           0.00      0.00     0.00
## mayonnaise                    0.00 0.00           0.00      0.00     0.00
## Instant food products         0.00 0.00           0.00      0.00     0.00
## sweet spreads                 0.00 0.00           0.00      0.00     0.00
## liquor (appetizer)            0.00 0.00           0.00      0.00     0.00
## specialty cheese              0.00 0.00           0.00      0.00     0.00
## frozen potato products        0.00 0.00           0.00      0.00     0.00
## house keeping products        0.00 0.00           0.00      0.00     0.00
## dog food                      0.01 0.00           0.00      0.00     0.00
## soy                           0.00 0.01           0.00      0.00     0.00
## instant coffee                0.00 0.00           0.01      0.00     0.00
## pip herbs                     0.00 0.00           0.00      0.01     0.00
## zwieback                      0.00 0.00           0.00      0.00     0.01
## finished products             0.00 0.00           0.00      0.00     0.00
## popcorn                       0.00 0.00           0.00      0.00     0.00
## vinegar                       0.00 0.00           0.00      0.00     0.00
## soups                         0.00 0.00           0.00      0.00     0.00
## female sanitary products      0.00 0.00           0.00      0.00     0.00
## sparkling wine                0.00 0.00           0.00      0.00     0.00
## dental care                   0.00 0.00           0.00      0.00     0.00
## cereals                       0.00 0.00           0.00      0.00     0.00
## kitchen towels                0.00 0.00           0.00      0.00     0.00
## curd cheese                   0.00 0.00           0.00      0.00     0.00
## other vegetables              0.00 0.00           0.00      0.00     0.00
## rolls/buns                    0.00 0.00           0.00      0.00     0.00
## softener                      0.00 0.00           0.00      0.00     0.00
## cleaner                       0.00 0.00           0.00      0.00     0.00
## spices                        0.00 0.00           0.00      0.00     0.00
## jam                           0.00 0.00           0.00      0.00     0.00
## sauces                        0.00 0.00           0.00      0.00     0.00
## rum                           0.00 0.00           0.00      0.00     0.00
## liver loaf                    0.00 0.00           0.00      0.00     0.00
## male cosmetics                0.00 0.00           0.00      0.00     0.00
## meat spreads                  0.00 0.00           0.00      0.00     0.00
## packaged herbs/vegetables     0.00 0.00           0.00      0.00     0.00
## brandy                        0.00 0.00           0.00      0.00     0.00
## ketchup                       0.00 0.00           0.00      0.00     0.00
## abrasive cleaner              0.00 0.00           0.00      0.00     0.00
## light bulbs                   0.00 0.00           0.00      0.00     0.00
## artif. sweetener              0.00 0.00           0.00      0.00     0.00
## nuts/prunes                   0.00 0.00           0.00      0.00     0.00
## specialty fat                 0.00 0.00           0.00      0.00     0.00
## skin care                     0.00 0.00           0.00      0.00     0.00
## fish                          0.00 0.00           0.00      0.00     0.00
## potato products               0.00 0.00           0.00      0.00     0.00
## root vegetables               0.00 0.00           0.00      0.00     0.00
## snack products                0.00 0.00           0.00      0.00     0.00
## nut snack                     0.00 0.00           0.00      0.00     0.00
## soap                          0.00 0.00           0.00      0.00     0.00
## syrup                         0.00 0.00           0.00      0.00     0.00
## bathroom cleaner              0.00 0.00           0.00      0.00     0.00
## canned fruit                  0.00 0.00           0.00      0.00     0.00
## cookware                      0.00 0.00           0.00      0.00     0.00
## cooking chocolate             0.00 0.00           0.00      0.00     0.00
## tidbits                       0.00 0.00           0.00      0.00     0.00
## cocoa drinks                  0.00 0.00           0.00      0.00     0.00
## pudding powder                0.00 0.00           0.00      0.00     0.00
## ready soups                   0.00 0.00           0.00      0.00     0.00
## organic marinated meat        0.00 0.00           0.00      0.00     0.00
## flower soil/fertilizer        0.00 0.00           0.00      0.00     0.00
## organic products              0.00 0.00           0.00      0.00     0.00
## pot plants                    0.00 0.00           0.00      0.00     0.00
## prosecco                      0.00 0.00           0.00      0.00     0.00
## frankfurter                   0.00 0.00           0.00      0.00     0.00
## decalcifier                   0.00 0.00           0.00      0.00     0.00
## honey                         0.00 0.00           0.00      0.00     0.00
## specialty vegetables          0.00 0.00           0.00      0.00     0.00
## cream                         0.00 0.00           0.00      0.00     0.00
## hair spray                    0.00 0.00           0.00      0.00     0.00
## frozen fruits                 0.00 0.00           0.00      0.00     0.00
## rubbing alcohol               0.00 0.00           0.00      0.00     0.00
## liqueur                       0.00 0.00           0.00      0.00     0.00
## make up remover               0.00 0.00           0.00      0.00     0.00
## salad dressing                0.00 0.00           0.00      0.00     0.00
## frozen chicken                0.00 0.00           0.00      0.00     0.00
## whisky                        0.00 0.00           0.00      0.00     0.00
## baby cosmetics                0.00 0.00           0.00      0.00     0.00
## toilet cleaner                0.00 0.00           0.00      0.00     0.00
## bags                          0.00 0.00           0.00      0.00     0.00
## canned herbs                  0.00 0.00           0.00      0.00     0.00
## kitchen utensil               0.00 0.00           0.00      0.00     0.00
## preservation products         0.00 0.00           0.00      0.00     0.00
## baby food                     0.00 0.00           0.00      0.00     0.00
## frozen herbss                 0.00 0.00           0.00      0.00     0.00
## organic sausage               0.00 0.00           0.00      0.00     0.00
## sound storage medium          0.00 0.00           0.00      0.00     0.00
##                           finished products popcorn vinegar soups
## rice                                   0.00    0.00    0.00  0.00
## veggies                                0.00    0.00    0.00  0.00
## loaf                                   0.00    0.00    0.00  0.00
## coke                                   0.00    0.00    0.00  0.00
## yogurt                                 0.00    0.00    0.00  0.00
## vegetables                             0.00    0.00    0.00  0.00
## mineral water                          0.00    0.00    0.00  0.00
## Plastic bags                           0.00    0.00    0.00  0.00
## tropical fruit                         0.00    0.00    0.00  0.00
## marinated meat                         0.00    0.00    0.00  0.00
## pies/pasties                           0.00    0.00    0.00  0.00
## newspapers                             0.00    0.00    0.00  0.00
## citrus                                 0.00    0.00    0.00  0.00
## whipped/sour cream                     0.00    0.00    0.00  0.00
## heinken                                0.00    0.00    0.00  0.00
## green tea                              0.00    0.00    0.00  0.00
## pip fruit                              0.00    0.00    0.00  0.00
## brown bread                            0.00    0.00    0.00  0.00
## fruit/vegetable juice                  0.00    0.00    0.00  0.00
## domestic eggs                          0.00    0.00    0.00  0.00
## coffee                                 0.00    0.00    0.00  0.00
## margarine                              0.00    0.00    0.00  0.00
## beef                                   0.00    0.00    0.00  0.00
## curd                                   0.00    0.00    0.00  0.00
## butter                                 0.00    0.00    0.00  0.00
## marinated meats                        0.00    0.00    0.00  0.00
## napkins                                0.00    0.00    0.00  0.00
## halal meat                             0.00    0.00    0.00  0.00
## chocolate                              0.00    0.00    0.00  0.00
## frozen vegetables                      0.00    0.00    0.00  0.00
## chicken                                0.00    0.00    0.00  0.00
## white bread                            0.00    0.00    0.00  0.00
## cream cheese                           0.00    0.00    0.00  0.00
## waffles                                0.00    0.00    0.00  0.00
## dessert                                0.00    0.00    0.00  0.00
## salty snack                            0.00    0.00    0.00  0.00
## long life bakery product               0.00    0.00    0.00  0.00
## berries                                0.00    0.00    0.00  0.00
## hamburger meat                         0.00    0.00    0.00  0.00
## sugar                                  0.00    0.00    0.00  0.00
## hygiene articles                       0.00    0.00    0.00  0.00
## UHT-milk                               0.00    0.00    0.00  0.00
## onions                                 0.00    0.00    0.00  0.00
## candy                                  0.00    0.00    0.00  0.00
## specialty chocolate                    0.00    0.00    0.00  0.00
## butter milk                            0.00    0.00    0.00  0.00
## oil                                    0.00    0.00    0.00  0.00
## frozen meals                           0.00    0.00    0.00  0.00
## misc. beverages                        0.00    0.00    0.00  0.00
## specialty bar                          0.00    0.00    0.00  0.00
## ham                                    0.00    0.00    0.00  0.00
## beverages                              0.00    0.00    0.00  0.00
## meat                                   0.00    0.00    0.00  0.00
## ice cream                              0.00    0.00    0.00  0.00
## sliced cheese                          0.00    0.00    0.00  0.00
## hard cheese                            0.00    0.00    0.00  0.00
## noodles                                0.00    0.00    0.00  0.00
## grapes                                 0.00    0.00    0.00  0.00
## cat food                               0.00    0.00    0.00  0.00
## chewing gum                            0.00    0.00    0.00  0.00
## soda                                   0.00    0.00    0.00  0.00
## detergent                              0.00    0.00    0.00  0.00
## red/blush wine                         0.00    0.00    0.00  0.00
## white wine                             0.00    0.00    0.00  0.00
## turkey                                 0.00    0.00    0.00  0.00
## dishes                                 0.00    0.00    0.00  0.00
## bottled water                          0.00    0.00    0.00  0.00
## flour                                  0.00    0.00    0.00  0.00
## semi-finished bread                    0.00    0.00    0.00  0.00
## baking powder                          0.00    0.00    0.00  0.00
## pickled vegetables                     0.00    0.00    0.00  0.00
## herbs                                  0.00    0.00    0.00  0.00
## tropical herbs                         0.00    0.00    0.00  0.00
## soft cheese                            0.00    0.00    0.00  0.00
## tea                                    0.00    0.00    0.00  0.00
## processed cheese                       0.00    0.00    0.00  0.00
## sausage                                0.00    0.00    0.00  0.00
## pasta                                  0.00    0.00    0.00  0.00
## citrus herbs                           0.00    0.00    0.00  0.00
## potted plants                          0.00    0.00    0.00  0.00
## canned fish                            0.00    0.00    0.00  0.00
## seasonal products                      0.00    0.00    0.00  0.00
## cake bar                               0.00    0.00    0.00  0.00
## carrots                                0.00    0.00    0.00  0.00
## mustard                                0.00    0.00    0.00  0.00
## packaged fruit/vegetables              0.00    0.00    0.00  0.00
## spread cheese                          0.00    0.00    0.00  0.00
## frozen dessert                         0.00    0.00    0.00  0.00
## frozen fish                            0.00    0.00    0.00  0.00
## cling film/bags                        0.00    0.00    0.00  0.00
## salt                                   0.00    0.00    0.00  0.00
## liquor                                 0.00    0.00    0.00  0.00
## canned vegetables                      0.00    0.00    0.00  0.00
## bottled beer                           0.00    0.00    0.00  0.00
## flower (seeds)                         0.00    0.00    0.00  0.00
## cooking oil                            0.00    0.00    0.00  0.00
## dish cleaner                           0.00    0.00    0.00  0.00
## condensed milk                         0.00    0.00    0.00  0.00
## roll products                          0.00    0.00    0.00  0.00
## photo/film                             0.00    0.00    0.00  0.00
## pet care                               0.00    0.00    0.00  0.00
## chocolate marshmallow                  0.00    0.00    0.00  0.00
## herbs/vegetable juice                  0.00    0.00    0.00  0.00
## whole milk                             0.00    0.00    0.00  0.00
## candles                                0.00    0.00    0.00  0.00
## mayonnaise                             0.00    0.00    0.00  0.00
## Instant food products                  0.00    0.00    0.00  0.00
## sweet spreads                          0.00    0.00    0.00  0.00
## liquor (appetizer)                     0.00    0.00    0.00  0.00
## specialty cheese                       0.00    0.00    0.00  0.00
## frozen potato products                 0.00    0.00    0.00  0.00
## house keeping products                 0.00    0.00    0.00  0.00
## dog food                               0.00    0.00    0.00  0.00
## soy                                    0.00    0.00    0.00  0.00
## instant coffee                         0.00    0.00    0.00  0.00
## pip herbs                              0.00    0.00    0.00  0.00
## zwieback                               0.00    0.00    0.00  0.00
## finished products                      0.01    0.00    0.00  0.00
## popcorn                                0.00    0.01    0.00  0.00
## vinegar                                0.00    0.00    0.01  0.00
## soups                                  0.00    0.00    0.00  0.01
## female sanitary products               0.00    0.00    0.00  0.00
## sparkling wine                         0.00    0.00    0.00  0.00
## dental care                            0.00    0.00    0.00  0.00
## cereals                                0.00    0.00    0.00  0.00
## kitchen towels                         0.00    0.00    0.00  0.00
## curd cheese                            0.00    0.00    0.00  0.00
## other vegetables                       0.00    0.00    0.00  0.00
## rolls/buns                             0.00    0.00    0.00  0.00
## softener                               0.00    0.00    0.00  0.00
## cleaner                                0.00    0.00    0.00  0.00
## spices                                 0.00    0.00    0.00  0.00
## jam                                    0.00    0.00    0.00  0.00
## sauces                                 0.00    0.00    0.00  0.00
## rum                                    0.00    0.00    0.00  0.00
## liver loaf                             0.00    0.00    0.00  0.00
## male cosmetics                         0.00    0.00    0.00  0.00
## meat spreads                           0.00    0.00    0.00  0.00
## packaged herbs/vegetables              0.00    0.00    0.00  0.00
## brandy                                 0.00    0.00    0.00  0.00
## ketchup                                0.00    0.00    0.00  0.00
## abrasive cleaner                       0.00    0.00    0.00  0.00
## light bulbs                            0.00    0.00    0.00  0.00
## artif. sweetener                       0.00    0.00    0.00  0.00
## nuts/prunes                            0.00    0.00    0.00  0.00
## specialty fat                          0.00    0.00    0.00  0.00
## skin care                              0.00    0.00    0.00  0.00
## fish                                   0.00    0.00    0.00  0.00
## potato products                        0.00    0.00    0.00  0.00
## root vegetables                        0.00    0.00    0.00  0.00
## snack products                         0.00    0.00    0.00  0.00
## nut snack                              0.00    0.00    0.00  0.00
## soap                                   0.00    0.00    0.00  0.00
## syrup                                  0.00    0.00    0.00  0.00
## bathroom cleaner                       0.00    0.00    0.00  0.00
## canned fruit                           0.00    0.00    0.00  0.00
## cookware                               0.00    0.00    0.00  0.00
## cooking chocolate                      0.00    0.00    0.00  0.00
## tidbits                                0.00    0.00    0.00  0.00
## cocoa drinks                           0.00    0.00    0.00  0.00
## pudding powder                         0.00    0.00    0.00  0.00
## ready soups                            0.00    0.00    0.00  0.00
## organic marinated meat                 0.00    0.00    0.00  0.00
## flower soil/fertilizer                 0.00    0.00    0.00  0.00
## organic products                       0.00    0.00    0.00  0.00
## pot plants                             0.00    0.00    0.00  0.00
## prosecco                               0.00    0.00    0.00  0.00
## frankfurter                            0.00    0.00    0.00  0.00
## decalcifier                            0.00    0.00    0.00  0.00
## honey                                  0.00    0.00    0.00  0.00
## specialty vegetables                   0.00    0.00    0.00  0.00
## cream                                  0.00    0.00    0.00  0.00
## hair spray                             0.00    0.00    0.00  0.00
## frozen fruits                          0.00    0.00    0.00  0.00
## rubbing alcohol                        0.00    0.00    0.00  0.00
## liqueur                                0.00    0.00    0.00  0.00
## make up remover                        0.00    0.00    0.00  0.00
## salad dressing                         0.00    0.00    0.00  0.00
## frozen chicken                         0.00    0.00    0.00  0.00
## whisky                                 0.00    0.00    0.00  0.00
## baby cosmetics                         0.00    0.00    0.00  0.00
## toilet cleaner                         0.00    0.00    0.00  0.00
## bags                                   0.00    0.00    0.00  0.00
## canned herbs                           0.00    0.00    0.00  0.00
## kitchen utensil                        0.00    0.00    0.00  0.00
## preservation products                  0.00    0.00    0.00  0.00
## baby food                              0.00    0.00    0.00  0.00
## frozen herbss                          0.00    0.00    0.00  0.00
## organic sausage                        0.00    0.00    0.00  0.00
## sound storage medium                   0.00    0.00    0.00  0.00
##                           female sanitary products sparkling wine dental care
## rice                                          0.00           0.00        0.00
## veggies                                       0.00           0.00        0.00
## loaf                                          0.00           0.00        0.00
## coke                                          0.00           0.00        0.00
## yogurt                                        0.00           0.00        0.00
## vegetables                                    0.00           0.00        0.00
## mineral water                                 0.00           0.00        0.00
## Plastic bags                                  0.00           0.00        0.00
## tropical fruit                                0.00           0.00        0.00
## marinated meat                                0.00           0.00        0.00
## pies/pasties                                  0.00           0.00        0.00
## newspapers                                    0.00           0.00        0.00
## citrus                                        0.00           0.00        0.00
## whipped/sour cream                            0.00           0.00        0.00
## heinken                                       0.00           0.00        0.00
## green tea                                     0.00           0.00        0.00
## pip fruit                                     0.00           0.00        0.00
## brown bread                                   0.00           0.00        0.00
## fruit/vegetable juice                         0.00           0.00        0.00
## domestic eggs                                 0.00           0.00        0.00
## coffee                                        0.00           0.00        0.00
## margarine                                     0.00           0.00        0.00
## beef                                          0.00           0.00        0.00
## curd                                          0.00           0.00        0.00
## butter                                        0.00           0.00        0.00
## marinated meats                               0.00           0.00        0.00
## napkins                                       0.00           0.00        0.00
## halal meat                                    0.00           0.00        0.00
## chocolate                                     0.00           0.00        0.00
## frozen vegetables                             0.00           0.00        0.00
## chicken                                       0.00           0.00        0.00
## white bread                                   0.00           0.00        0.00
## cream cheese                                  0.00           0.00        0.00
## waffles                                       0.00           0.00        0.00
## dessert                                       0.00           0.00        0.00
## salty snack                                   0.00           0.00        0.00
## long life bakery product                      0.00           0.00        0.00
## berries                                       0.00           0.00        0.00
## hamburger meat                                0.00           0.00        0.00
## sugar                                         0.00           0.00        0.00
## hygiene articles                              0.00           0.00        0.00
## UHT-milk                                      0.00           0.00        0.00
## onions                                        0.00           0.00        0.00
## candy                                         0.00           0.00        0.00
## specialty chocolate                           0.00           0.00        0.00
## butter milk                                   0.00           0.00        0.00
## oil                                           0.00           0.00        0.00
## frozen meals                                  0.00           0.00        0.00
## misc. beverages                               0.00           0.00        0.00
## specialty bar                                 0.00           0.00        0.00
## ham                                           0.00           0.00        0.00
## beverages                                     0.00           0.00        0.00
## meat                                          0.00           0.00        0.00
## ice cream                                     0.00           0.00        0.00
## sliced cheese                                 0.00           0.00        0.00
## hard cheese                                   0.00           0.00        0.00
## noodles                                       0.00           0.00        0.00
## grapes                                        0.00           0.00        0.00
## cat food                                      0.00           0.00        0.00
## chewing gum                                   0.00           0.00        0.00
## soda                                          0.00           0.00        0.00
## detergent                                     0.00           0.00        0.00
## red/blush wine                                0.00           0.00        0.00
## white wine                                    0.00           0.00        0.00
## turkey                                        0.00           0.00        0.00
## dishes                                        0.00           0.00        0.00
## bottled water                                 0.00           0.00        0.00
## flour                                         0.00           0.00        0.00
## semi-finished bread                           0.00           0.00        0.00
## baking powder                                 0.00           0.00        0.00
## pickled vegetables                            0.00           0.00        0.00
## herbs                                         0.00           0.00        0.00
## tropical herbs                                0.00           0.00        0.00
## soft cheese                                   0.00           0.00        0.00
## tea                                           0.00           0.00        0.00
## processed cheese                              0.00           0.00        0.00
## sausage                                       0.00           0.00        0.00
## pasta                                         0.00           0.00        0.00
## citrus herbs                                  0.00           0.00        0.00
## potted plants                                 0.00           0.00        0.00
## canned fish                                   0.00           0.00        0.00
## seasonal products                             0.00           0.00        0.00
## cake bar                                      0.00           0.00        0.00
## carrots                                       0.00           0.00        0.00
## mustard                                       0.00           0.00        0.00
## packaged fruit/vegetables                     0.00           0.00        0.00
## spread cheese                                 0.00           0.00        0.00
## frozen dessert                                0.00           0.00        0.00
## frozen fish                                   0.00           0.00        0.00
## cling film/bags                               0.00           0.00        0.00
## salt                                          0.00           0.00        0.00
## liquor                                        0.00           0.00        0.00
## canned vegetables                             0.00           0.00        0.00
## bottled beer                                  0.00           0.00        0.00
## flower (seeds)                                0.00           0.00        0.00
## cooking oil                                   0.00           0.00        0.00
## dish cleaner                                  0.00           0.00        0.00
## condensed milk                                0.00           0.00        0.00
## roll products                                 0.00           0.00        0.00
## photo/film                                    0.00           0.00        0.00
## pet care                                      0.00           0.00        0.00
## chocolate marshmallow                         0.00           0.00        0.00
## herbs/vegetable juice                         0.00           0.00        0.00
## whole milk                                    0.00           0.00        0.00
## candles                                       0.00           0.00        0.00
## mayonnaise                                    0.00           0.00        0.00
## Instant food products                         0.00           0.00        0.00
## sweet spreads                                 0.00           0.00        0.00
## liquor (appetizer)                            0.00           0.00        0.00
## specialty cheese                              0.00           0.00        0.00
## frozen potato products                        0.00           0.00        0.00
## house keeping products                        0.00           0.00        0.00
## dog food                                      0.00           0.00        0.00
## soy                                           0.00           0.00        0.00
## instant coffee                                0.00           0.00        0.00
## pip herbs                                     0.00           0.00        0.00
## zwieback                                      0.00           0.00        0.00
## finished products                             0.00           0.00        0.00
## popcorn                                       0.00           0.00        0.00
## vinegar                                       0.00           0.00        0.00
## soups                                         0.00           0.00        0.00
## female sanitary products                      0.01           0.00        0.00
## sparkling wine                                0.00           0.01        0.00
## dental care                                   0.00           0.00        0.01
## cereals                                       0.00           0.00        0.00
## kitchen towels                                0.00           0.00        0.00
## curd cheese                                   0.00           0.00        0.00
## other vegetables                              0.00           0.00        0.00
## rolls/buns                                    0.00           0.00        0.00
## softener                                      0.00           0.00        0.00
## cleaner                                       0.00           0.00        0.00
## spices                                        0.00           0.00        0.00
## jam                                           0.00           0.00        0.00
## sauces                                        0.00           0.00        0.00
## rum                                           0.00           0.00        0.00
## liver loaf                                    0.00           0.00        0.00
## male cosmetics                                0.00           0.00        0.00
## meat spreads                                  0.00           0.00        0.00
## packaged herbs/vegetables                     0.00           0.00        0.00
## brandy                                        0.00           0.00        0.00
## ketchup                                       0.00           0.00        0.00
## abrasive cleaner                              0.00           0.00        0.00
## light bulbs                                   0.00           0.00        0.00
## artif. sweetener                              0.00           0.00        0.00
## nuts/prunes                                   0.00           0.00        0.00
## specialty fat                                 0.00           0.00        0.00
## skin care                                     0.00           0.00        0.00
## fish                                          0.00           0.00        0.00
## potato products                               0.00           0.00        0.00
## root vegetables                               0.00           0.00        0.00
## snack products                                0.00           0.00        0.00
## nut snack                                     0.00           0.00        0.00
## soap                                          0.00           0.00        0.00
## syrup                                         0.00           0.00        0.00
## bathroom cleaner                              0.00           0.00        0.00
## canned fruit                                  0.00           0.00        0.00
## cookware                                      0.00           0.00        0.00
## cooking chocolate                             0.00           0.00        0.00
## tidbits                                       0.00           0.00        0.00
## cocoa drinks                                  0.00           0.00        0.00
## pudding powder                                0.00           0.00        0.00
## ready soups                                   0.00           0.00        0.00
## organic marinated meat                        0.00           0.00        0.00
## flower soil/fertilizer                        0.00           0.00        0.00
## organic products                              0.00           0.00        0.00
## pot plants                                    0.00           0.00        0.00
## prosecco                                      0.00           0.00        0.00
## frankfurter                                   0.00           0.00        0.00
## decalcifier                                   0.00           0.00        0.00
## honey                                         0.00           0.00        0.00
## specialty vegetables                          0.00           0.00        0.00
## cream                                         0.00           0.00        0.00
## hair spray                                    0.00           0.00        0.00
## frozen fruits                                 0.00           0.00        0.00
## rubbing alcohol                               0.00           0.00        0.00
## liqueur                                       0.00           0.00        0.00
## make up remover                               0.00           0.00        0.00
## salad dressing                                0.00           0.00        0.00
## frozen chicken                                0.00           0.00        0.00
## whisky                                        0.00           0.00        0.00
## baby cosmetics                                0.00           0.00        0.00
## toilet cleaner                                0.00           0.00        0.00
## bags                                          0.00           0.00        0.00
## canned herbs                                  0.00           0.00        0.00
## kitchen utensil                               0.00           0.00        0.00
## preservation products                         0.00           0.00        0.00
## baby food                                     0.00           0.00        0.00
## frozen herbss                                 0.00           0.00        0.00
## organic sausage                               0.00           0.00        0.00
## sound storage medium                          0.00           0.00        0.00
##                           cereals kitchen towels curd cheese other vegetables
## rice                         0.00           0.00        0.00             0.00
## veggies                      0.00           0.00        0.00             0.00
## loaf                         0.00           0.00        0.00             0.00
## coke                         0.00           0.00        0.00             0.00
## yogurt                       0.00           0.00        0.00             0.00
## vegetables                   0.00           0.00        0.00             0.00
## mineral water                0.00           0.00        0.00             0.00
## Plastic bags                 0.00           0.00        0.00             0.00
## tropical fruit               0.00           0.00        0.00             0.00
## marinated meat               0.00           0.00        0.00             0.00
## pies/pasties                 0.00           0.00        0.00             0.00
## newspapers                   0.00           0.00        0.00             0.00
## citrus                       0.00           0.00        0.00             0.00
## whipped/sour cream           0.00           0.00        0.00             0.00
## heinken                      0.00           0.00        0.00             0.00
## green tea                    0.00           0.00        0.00             0.00
## pip fruit                    0.00           0.00        0.00             0.00
## brown bread                  0.00           0.00        0.00             0.00
## fruit/vegetable juice        0.00           0.00        0.00             0.00
## domestic eggs                0.00           0.00        0.00             0.00
## coffee                       0.00           0.00        0.00             0.00
## margarine                    0.00           0.00        0.00             0.00
## beef                         0.00           0.00        0.00             0.00
## curd                         0.00           0.00        0.00             0.00
## butter                       0.00           0.00        0.00             0.00
## marinated meats              0.00           0.00        0.00             0.00
## napkins                      0.00           0.00        0.00             0.00
## halal meat                   0.00           0.00        0.00             0.00
## chocolate                    0.00           0.00        0.00             0.00
## frozen vegetables            0.00           0.00        0.00             0.00
## chicken                      0.00           0.00        0.00             0.00
## white bread                  0.00           0.00        0.00             0.00
## cream cheese                 0.00           0.00        0.00             0.00
## waffles                      0.00           0.00        0.00             0.00
## dessert                      0.00           0.00        0.00             0.00
## salty snack                  0.00           0.00        0.00             0.00
## long life bakery product     0.00           0.00        0.00             0.00
## berries                      0.00           0.00        0.00             0.00
## hamburger meat               0.00           0.00        0.00             0.00
## sugar                        0.00           0.00        0.00             0.00
## hygiene articles             0.00           0.00        0.00             0.00
## UHT-milk                     0.00           0.00        0.00             0.00
## onions                       0.00           0.00        0.00             0.00
## candy                        0.00           0.00        0.00             0.00
## specialty chocolate          0.00           0.00        0.00             0.00
## butter milk                  0.00           0.00        0.00             0.00
## oil                          0.00           0.00        0.00             0.00
## frozen meals                 0.00           0.00        0.00             0.00
## misc. beverages              0.00           0.00        0.00             0.00
## specialty bar                0.00           0.00        0.00             0.00
## ham                          0.00           0.00        0.00             0.00
## beverages                    0.00           0.00        0.00             0.00
## meat                         0.00           0.00        0.00             0.00
## ice cream                    0.00           0.00        0.00             0.00
## sliced cheese                0.00           0.00        0.00             0.00
## hard cheese                  0.00           0.00        0.00             0.00
## noodles                      0.00           0.00        0.00             0.00
## grapes                       0.00           0.00        0.00             0.00
## cat food                     0.00           0.00        0.00             0.00
## chewing gum                  0.00           0.00        0.00             0.00
## soda                         0.00           0.00        0.00             0.00
## detergent                    0.00           0.00        0.00             0.00
## red/blush wine               0.00           0.00        0.00             0.00
## white wine                   0.00           0.00        0.00             0.00
## turkey                       0.00           0.00        0.00             0.00
## dishes                       0.00           0.00        0.00             0.00
## bottled water                0.00           0.00        0.00             0.00
## flour                        0.00           0.00        0.00             0.00
## semi-finished bread          0.00           0.00        0.00             0.00
## baking powder                0.00           0.00        0.00             0.00
## pickled vegetables           0.00           0.00        0.00             0.00
## herbs                        0.00           0.00        0.00             0.00
## tropical herbs               0.00           0.00        0.00             0.00
## soft cheese                  0.00           0.00        0.00             0.00
## tea                          0.00           0.00        0.00             0.00
## processed cheese             0.00           0.00        0.00             0.00
## sausage                      0.00           0.00        0.00             0.00
## pasta                        0.00           0.00        0.00             0.00
## citrus herbs                 0.00           0.00        0.00             0.00
## potted plants                0.00           0.00        0.00             0.00
## canned fish                  0.00           0.00        0.00             0.00
## seasonal products            0.00           0.00        0.00             0.00
## cake bar                     0.00           0.00        0.00             0.00
## carrots                      0.00           0.00        0.00             0.00
## mustard                      0.00           0.00        0.00             0.00
## packaged fruit/vegetables    0.00           0.00        0.00             0.00
## spread cheese                0.00           0.00        0.00             0.00
## frozen dessert               0.00           0.00        0.00             0.00
## frozen fish                  0.00           0.00        0.00             0.00
## cling film/bags              0.00           0.00        0.00             0.00
## salt                         0.00           0.00        0.00             0.00
## liquor                       0.00           0.00        0.00             0.00
## canned vegetables            0.00           0.00        0.00             0.00
## bottled beer                 0.00           0.00        0.00             0.00
## flower (seeds)               0.00           0.00        0.00             0.00
## cooking oil                  0.00           0.00        0.00             0.00
## dish cleaner                 0.00           0.00        0.00             0.00
## condensed milk               0.00           0.00        0.00             0.00
## roll products                0.00           0.00        0.00             0.00
## photo/film                   0.00           0.00        0.00             0.00
## pet care                     0.00           0.00        0.00             0.00
## chocolate marshmallow        0.00           0.00        0.00             0.00
## herbs/vegetable juice        0.00           0.00        0.00             0.00
## whole milk                   0.00           0.00        0.00             0.00
## candles                      0.00           0.00        0.00             0.00
## mayonnaise                   0.00           0.00        0.00             0.00
## Instant food products        0.00           0.00        0.00             0.00
## sweet spreads                0.00           0.00        0.00             0.00
## liquor (appetizer)           0.00           0.00        0.00             0.00
## specialty cheese             0.00           0.00        0.00             0.00
## frozen potato products       0.00           0.00        0.00             0.00
## house keeping products       0.00           0.00        0.00             0.00
## dog food                     0.00           0.00        0.00             0.00
## soy                          0.00           0.00        0.00             0.00
## instant coffee               0.00           0.00        0.00             0.00
## pip herbs                    0.00           0.00        0.00             0.00
## zwieback                     0.00           0.00        0.00             0.00
## finished products            0.00           0.00        0.00             0.00
## popcorn                      0.00           0.00        0.00             0.00
## vinegar                      0.00           0.00        0.00             0.00
## soups                        0.00           0.00        0.00             0.00
## female sanitary products     0.00           0.00        0.00             0.00
## sparkling wine               0.00           0.00        0.00             0.00
## dental care                  0.00           0.00        0.00             0.00
## cereals                      0.01           0.00        0.00             0.00
## kitchen towels               0.00           0.01        0.00             0.00
## curd cheese                  0.00           0.00        0.01             0.00
## other vegetables             0.00           0.00        0.00             0.01
## rolls/buns                   0.00           0.00        0.00             0.00
## softener                     0.00           0.00        0.00             0.00
## cleaner                      0.00           0.00        0.00             0.00
## spices                       0.00           0.00        0.00             0.00
## jam                          0.00           0.00        0.00             0.00
## sauces                       0.00           0.00        0.00             0.00
## rum                          0.00           0.00        0.00             0.00
## liver loaf                   0.00           0.00        0.00             0.00
## male cosmetics               0.00           0.00        0.00             0.00
## meat spreads                 0.00           0.00        0.00             0.00
## packaged herbs/vegetables    0.00           0.00        0.00             0.00
## brandy                       0.00           0.00        0.00             0.00
## ketchup                      0.00           0.00        0.00             0.00
## abrasive cleaner             0.00           0.00        0.00             0.00
## light bulbs                  0.00           0.00        0.00             0.00
## artif. sweetener             0.00           0.00        0.00             0.00
## nuts/prunes                  0.00           0.00        0.00             0.00
## specialty fat                0.00           0.00        0.00             0.00
## skin care                    0.00           0.00        0.00             0.00
## fish                         0.00           0.00        0.00             0.00
## potato products              0.00           0.00        0.00             0.00
## root vegetables              0.00           0.00        0.00             0.00
## snack products               0.00           0.00        0.00             0.00
## nut snack                    0.00           0.00        0.00             0.00
## soap                         0.00           0.00        0.00             0.00
## syrup                        0.00           0.00        0.00             0.00
## bathroom cleaner             0.00           0.00        0.00             0.00
## canned fruit                 0.00           0.00        0.00             0.00
## cookware                     0.00           0.00        0.00             0.00
## cooking chocolate            0.00           0.00        0.00             0.00
## tidbits                      0.00           0.00        0.00             0.00
## cocoa drinks                 0.00           0.00        0.00             0.00
## pudding powder               0.00           0.00        0.00             0.00
## ready soups                  0.00           0.00        0.00             0.00
## organic marinated meat       0.00           0.00        0.00             0.00
## flower soil/fertilizer       0.00           0.00        0.00             0.00
## organic products             0.00           0.00        0.00             0.00
## pot plants                   0.00           0.00        0.00             0.00
## prosecco                     0.00           0.00        0.00             0.00
## frankfurter                  0.00           0.00        0.00             0.00
## decalcifier                  0.00           0.00        0.00             0.00
## honey                        0.00           0.00        0.00             0.00
## specialty vegetables         0.00           0.00        0.00             0.00
## cream                        0.00           0.00        0.00             0.00
## hair spray                   0.00           0.00        0.00             0.00
## frozen fruits                0.00           0.00        0.00             0.00
## rubbing alcohol              0.00           0.00        0.00             0.00
## liqueur                      0.00           0.00        0.00             0.00
## make up remover              0.00           0.00        0.00             0.00
## salad dressing               0.00           0.00        0.00             0.00
## frozen chicken               0.00           0.00        0.00             0.00
## whisky                       0.00           0.00        0.00             0.00
## baby cosmetics               0.00           0.00        0.00             0.00
## toilet cleaner               0.00           0.00        0.00             0.00
## bags                         0.00           0.00        0.00             0.00
## canned herbs                 0.00           0.00        0.00             0.00
## kitchen utensil              0.00           0.00        0.00             0.00
## preservation products        0.00           0.00        0.00             0.00
## baby food                    0.00           0.00        0.00             0.00
## frozen herbss                0.00           0.00        0.00             0.00
## organic sausage              0.00           0.00        0.00             0.00
## sound storage medium         0.00           0.00        0.00             0.00
##                           rolls/buns softener cleaner spices  jam sauces rum
## rice                            0.00     0.00    0.00   0.00 0.00   0.00   0
## veggies                         0.00     0.00    0.00   0.00 0.00   0.00   0
## loaf                            0.00     0.00    0.00   0.00 0.00   0.00   0
## coke                            0.00     0.00    0.00   0.00 0.00   0.00   0
## yogurt                          0.00     0.00    0.00   0.00 0.00   0.00   0
## vegetables                      0.00     0.00    0.00   0.00 0.00   0.00   0
## mineral water                   0.00     0.00    0.00   0.00 0.00   0.00   0
## Plastic bags                    0.00     0.00    0.00   0.00 0.00   0.00   0
## tropical fruit                  0.00     0.00    0.00   0.00 0.00   0.00   0
## marinated meat                  0.00     0.00    0.00   0.00 0.00   0.00   0
## pies/pasties                    0.00     0.00    0.00   0.00 0.00   0.00   0
## newspapers                      0.00     0.00    0.00   0.00 0.00   0.00   0
## citrus                          0.00     0.00    0.00   0.00 0.00   0.00   0
## whipped/sour cream              0.00     0.00    0.00   0.00 0.00   0.00   0
## heinken                         0.00     0.00    0.00   0.00 0.00   0.00   0
## green tea                       0.00     0.00    0.00   0.00 0.00   0.00   0
## pip fruit                       0.00     0.00    0.00   0.00 0.00   0.00   0
## brown bread                     0.00     0.00    0.00   0.00 0.00   0.00   0
## fruit/vegetable juice           0.00     0.00    0.00   0.00 0.00   0.00   0
## domestic eggs                   0.00     0.00    0.00   0.00 0.00   0.00   0
## coffee                          0.00     0.00    0.00   0.00 0.00   0.00   0
## margarine                       0.00     0.00    0.00   0.00 0.00   0.00   0
## beef                            0.00     0.00    0.00   0.00 0.00   0.00   0
## curd                            0.00     0.00    0.00   0.00 0.00   0.00   0
## butter                          0.00     0.00    0.00   0.00 0.00   0.00   0
## marinated meats                 0.00     0.00    0.00   0.00 0.00   0.00   0
## napkins                         0.00     0.00    0.00   0.00 0.00   0.00   0
## halal meat                      0.00     0.00    0.00   0.00 0.00   0.00   0
## chocolate                       0.00     0.00    0.00   0.00 0.00   0.00   0
## frozen vegetables               0.00     0.00    0.00   0.00 0.00   0.00   0
## chicken                         0.00     0.00    0.00   0.00 0.00   0.00   0
## white bread                     0.00     0.00    0.00   0.00 0.00   0.00   0
## cream cheese                    0.00     0.00    0.00   0.00 0.00   0.00   0
## waffles                         0.00     0.00    0.00   0.00 0.00   0.00   0
## dessert                         0.00     0.00    0.00   0.00 0.00   0.00   0
## salty snack                     0.00     0.00    0.00   0.00 0.00   0.00   0
## long life bakery product        0.00     0.00    0.00   0.00 0.00   0.00   0
## berries                         0.00     0.00    0.00   0.00 0.00   0.00   0
## hamburger meat                  0.00     0.00    0.00   0.00 0.00   0.00   0
## sugar                           0.00     0.00    0.00   0.00 0.00   0.00   0
## hygiene articles                0.00     0.00    0.00   0.00 0.00   0.00   0
## UHT-milk                        0.00     0.00    0.00   0.00 0.00   0.00   0
## onions                          0.00     0.00    0.00   0.00 0.00   0.00   0
## candy                           0.00     0.00    0.00   0.00 0.00   0.00   0
## specialty chocolate             0.00     0.00    0.00   0.00 0.00   0.00   0
## butter milk                     0.00     0.00    0.00   0.00 0.00   0.00   0
## oil                             0.00     0.00    0.00   0.00 0.00   0.00   0
## frozen meals                    0.00     0.00    0.00   0.00 0.00   0.00   0
## misc. beverages                 0.00     0.00    0.00   0.00 0.00   0.00   0
## specialty bar                   0.00     0.00    0.00   0.00 0.00   0.00   0
## ham                             0.00     0.00    0.00   0.00 0.00   0.00   0
## beverages                       0.00     0.00    0.00   0.00 0.00   0.00   0
## meat                            0.00     0.00    0.00   0.00 0.00   0.00   0
## ice cream                       0.00     0.00    0.00   0.00 0.00   0.00   0
## sliced cheese                   0.00     0.00    0.00   0.00 0.00   0.00   0
## hard cheese                     0.00     0.00    0.00   0.00 0.00   0.00   0
## noodles                         0.00     0.00    0.00   0.00 0.00   0.00   0
## grapes                          0.00     0.00    0.00   0.00 0.00   0.00   0
## cat food                        0.00     0.00    0.00   0.00 0.00   0.00   0
## chewing gum                     0.00     0.00    0.00   0.00 0.00   0.00   0
## soda                            0.00     0.00    0.00   0.00 0.00   0.00   0
## detergent                       0.00     0.00    0.00   0.00 0.00   0.00   0
## red/blush wine                  0.00     0.00    0.00   0.00 0.00   0.00   0
## white wine                      0.00     0.00    0.00   0.00 0.00   0.00   0
## turkey                          0.00     0.00    0.00   0.00 0.00   0.00   0
## dishes                          0.00     0.00    0.00   0.00 0.00   0.00   0
## bottled water                   0.00     0.00    0.00   0.00 0.00   0.00   0
## flour                           0.00     0.00    0.00   0.00 0.00   0.00   0
## semi-finished bread             0.00     0.00    0.00   0.00 0.00   0.00   0
## baking powder                   0.00     0.00    0.00   0.00 0.00   0.00   0
## pickled vegetables              0.00     0.00    0.00   0.00 0.00   0.00   0
## herbs                           0.00     0.00    0.00   0.00 0.00   0.00   0
## tropical herbs                  0.00     0.00    0.00   0.00 0.00   0.00   0
## soft cheese                     0.00     0.00    0.00   0.00 0.00   0.00   0
## tea                             0.00     0.00    0.00   0.00 0.00   0.00   0
## processed cheese                0.00     0.00    0.00   0.00 0.00   0.00   0
## sausage                         0.00     0.00    0.00   0.00 0.00   0.00   0
## pasta                           0.00     0.00    0.00   0.00 0.00   0.00   0
## citrus herbs                    0.00     0.00    0.00   0.00 0.00   0.00   0
## potted plants                   0.00     0.00    0.00   0.00 0.00   0.00   0
## canned fish                     0.00     0.00    0.00   0.00 0.00   0.00   0
## seasonal products               0.00     0.00    0.00   0.00 0.00   0.00   0
## cake bar                        0.00     0.00    0.00   0.00 0.00   0.00   0
## carrots                         0.00     0.00    0.00   0.00 0.00   0.00   0
## mustard                         0.00     0.00    0.00   0.00 0.00   0.00   0
## packaged fruit/vegetables       0.00     0.00    0.00   0.00 0.00   0.00   0
## spread cheese                   0.00     0.00    0.00   0.00 0.00   0.00   0
## frozen dessert                  0.00     0.00    0.00   0.00 0.00   0.00   0
## frozen fish                     0.00     0.00    0.00   0.00 0.00   0.00   0
## cling film/bags                 0.00     0.00    0.00   0.00 0.00   0.00   0
## salt                            0.00     0.00    0.00   0.00 0.00   0.00   0
## liquor                          0.00     0.00    0.00   0.00 0.00   0.00   0
## canned vegetables               0.00     0.00    0.00   0.00 0.00   0.00   0
## bottled beer                    0.00     0.00    0.00   0.00 0.00   0.00   0
## flower (seeds)                  0.00     0.00    0.00   0.00 0.00   0.00   0
## cooking oil                     0.00     0.00    0.00   0.00 0.00   0.00   0
## dish cleaner                    0.00     0.00    0.00   0.00 0.00   0.00   0
## condensed milk                  0.00     0.00    0.00   0.00 0.00   0.00   0
## roll products                   0.00     0.00    0.00   0.00 0.00   0.00   0
## photo/film                      0.00     0.00    0.00   0.00 0.00   0.00   0
## pet care                        0.00     0.00    0.00   0.00 0.00   0.00   0
## chocolate marshmallow           0.00     0.00    0.00   0.00 0.00   0.00   0
## herbs/vegetable juice           0.00     0.00    0.00   0.00 0.00   0.00   0
## whole milk                      0.00     0.00    0.00   0.00 0.00   0.00   0
## candles                         0.00     0.00    0.00   0.00 0.00   0.00   0
## mayonnaise                      0.00     0.00    0.00   0.00 0.00   0.00   0
## Instant food products           0.00     0.00    0.00   0.00 0.00   0.00   0
## sweet spreads                   0.00     0.00    0.00   0.00 0.00   0.00   0
## liquor (appetizer)              0.00     0.00    0.00   0.00 0.00   0.00   0
## specialty cheese                0.00     0.00    0.00   0.00 0.00   0.00   0
## frozen potato products          0.00     0.00    0.00   0.00 0.00   0.00   0
## house keeping products          0.00     0.00    0.00   0.00 0.00   0.00   0
## dog food                        0.00     0.00    0.00   0.00 0.00   0.00   0
## soy                             0.00     0.00    0.00   0.00 0.00   0.00   0
## instant coffee                  0.00     0.00    0.00   0.00 0.00   0.00   0
## pip herbs                       0.00     0.00    0.00   0.00 0.00   0.00   0
## zwieback                        0.00     0.00    0.00   0.00 0.00   0.00   0
## finished products               0.00     0.00    0.00   0.00 0.00   0.00   0
## popcorn                         0.00     0.00    0.00   0.00 0.00   0.00   0
## vinegar                         0.00     0.00    0.00   0.00 0.00   0.00   0
## soups                           0.00     0.00    0.00   0.00 0.00   0.00   0
## female sanitary products        0.00     0.00    0.00   0.00 0.00   0.00   0
## sparkling wine                  0.00     0.00    0.00   0.00 0.00   0.00   0
## dental care                     0.00     0.00    0.00   0.00 0.00   0.00   0
## cereals                         0.00     0.00    0.00   0.00 0.00   0.00   0
## kitchen towels                  0.00     0.00    0.00   0.00 0.00   0.00   0
## curd cheese                     0.00     0.00    0.00   0.00 0.00   0.00   0
## other vegetables                0.00     0.00    0.00   0.00 0.00   0.00   0
## rolls/buns                      0.01     0.00    0.00   0.00 0.00   0.00   0
## softener                        0.00     0.01    0.00   0.00 0.00   0.00   0
## cleaner                         0.00     0.00    0.01   0.00 0.00   0.00   0
## spices                          0.00     0.00    0.00   0.01 0.00   0.00   0
## jam                             0.00     0.00    0.00   0.00 0.01   0.00   0
## sauces                          0.00     0.00    0.00   0.00 0.00   0.01   0
## rum                             0.00     0.00    0.00   0.00 0.00   0.00   0
## liver loaf                      0.00     0.00    0.00   0.00 0.00   0.00   0
## male cosmetics                  0.00     0.00    0.00   0.00 0.00   0.00   0
## meat spreads                    0.00     0.00    0.00   0.00 0.00   0.00   0
## packaged herbs/vegetables       0.00     0.00    0.00   0.00 0.00   0.00   0
## brandy                          0.00     0.00    0.00   0.00 0.00   0.00   0
## ketchup                         0.00     0.00    0.00   0.00 0.00   0.00   0
## abrasive cleaner                0.00     0.00    0.00   0.00 0.00   0.00   0
## light bulbs                     0.00     0.00    0.00   0.00 0.00   0.00   0
## artif. sweetener                0.00     0.00    0.00   0.00 0.00   0.00   0
## nuts/prunes                     0.00     0.00    0.00   0.00 0.00   0.00   0
## specialty fat                   0.00     0.00    0.00   0.00 0.00   0.00   0
## skin care                       0.00     0.00    0.00   0.00 0.00   0.00   0
## fish                            0.00     0.00    0.00   0.00 0.00   0.00   0
## potato products                 0.00     0.00    0.00   0.00 0.00   0.00   0
## root vegetables                 0.00     0.00    0.00   0.00 0.00   0.00   0
## snack products                  0.00     0.00    0.00   0.00 0.00   0.00   0
## nut snack                       0.00     0.00    0.00   0.00 0.00   0.00   0
## soap                            0.00     0.00    0.00   0.00 0.00   0.00   0
## syrup                           0.00     0.00    0.00   0.00 0.00   0.00   0
## bathroom cleaner                0.00     0.00    0.00   0.00 0.00   0.00   0
## canned fruit                    0.00     0.00    0.00   0.00 0.00   0.00   0
## cookware                        0.00     0.00    0.00   0.00 0.00   0.00   0
## cooking chocolate               0.00     0.00    0.00   0.00 0.00   0.00   0
## tidbits                         0.00     0.00    0.00   0.00 0.00   0.00   0
## cocoa drinks                    0.00     0.00    0.00   0.00 0.00   0.00   0
## pudding powder                  0.00     0.00    0.00   0.00 0.00   0.00   0
## ready soups                     0.00     0.00    0.00   0.00 0.00   0.00   0
## organic marinated meat          0.00     0.00    0.00   0.00 0.00   0.00   0
## flower soil/fertilizer          0.00     0.00    0.00   0.00 0.00   0.00   0
## organic products                0.00     0.00    0.00   0.00 0.00   0.00   0
## pot plants                      0.00     0.00    0.00   0.00 0.00   0.00   0
## prosecco                        0.00     0.00    0.00   0.00 0.00   0.00   0
## frankfurter                     0.00     0.00    0.00   0.00 0.00   0.00   0
## decalcifier                     0.00     0.00    0.00   0.00 0.00   0.00   0
## honey                           0.00     0.00    0.00   0.00 0.00   0.00   0
## specialty vegetables            0.00     0.00    0.00   0.00 0.00   0.00   0
## cream                           0.00     0.00    0.00   0.00 0.00   0.00   0
## hair spray                      0.00     0.00    0.00   0.00 0.00   0.00   0
## frozen fruits                   0.00     0.00    0.00   0.00 0.00   0.00   0
## rubbing alcohol                 0.00     0.00    0.00   0.00 0.00   0.00   0
## liqueur                         0.00     0.00    0.00   0.00 0.00   0.00   0
## make up remover                 0.00     0.00    0.00   0.00 0.00   0.00   0
## salad dressing                  0.00     0.00    0.00   0.00 0.00   0.00   0
## frozen chicken                  0.00     0.00    0.00   0.00 0.00   0.00   0
## whisky                          0.00     0.00    0.00   0.00 0.00   0.00   0
## baby cosmetics                  0.00     0.00    0.00   0.00 0.00   0.00   0
## toilet cleaner                  0.00     0.00    0.00   0.00 0.00   0.00   0
## bags                            0.00     0.00    0.00   0.00 0.00   0.00   0
## canned herbs                    0.00     0.00    0.00   0.00 0.00   0.00   0
## kitchen utensil                 0.00     0.00    0.00   0.00 0.00   0.00   0
## preservation products           0.00     0.00    0.00   0.00 0.00   0.00   0
## baby food                       0.00     0.00    0.00   0.00 0.00   0.00   0
## frozen herbss                   0.00     0.00    0.00   0.00 0.00   0.00   0
## organic sausage                 0.00     0.00    0.00   0.00 0.00   0.00   0
## sound storage medium            0.00     0.00    0.00   0.00 0.00   0.00   0
##                           liver loaf male cosmetics meat spreads
## rice                               0              0            0
## veggies                            0              0            0
## loaf                               0              0            0
## coke                               0              0            0
## yogurt                             0              0            0
## vegetables                         0              0            0
## mineral water                      0              0            0
## Plastic bags                       0              0            0
## tropical fruit                     0              0            0
## marinated meat                     0              0            0
## pies/pasties                       0              0            0
## newspapers                         0              0            0
## citrus                             0              0            0
## whipped/sour cream                 0              0            0
## heinken                            0              0            0
## green tea                          0              0            0
## pip fruit                          0              0            0
## brown bread                        0              0            0
## fruit/vegetable juice              0              0            0
## domestic eggs                      0              0            0
## coffee                             0              0            0
## margarine                          0              0            0
## beef                               0              0            0
## curd                               0              0            0
## butter                             0              0            0
## marinated meats                    0              0            0
## napkins                            0              0            0
## halal meat                         0              0            0
## chocolate                          0              0            0
## frozen vegetables                  0              0            0
## chicken                            0              0            0
## white bread                        0              0            0
## cream cheese                       0              0            0
## waffles                            0              0            0
## dessert                            0              0            0
## salty snack                        0              0            0
## long life bakery product           0              0            0
## berries                            0              0            0
## hamburger meat                     0              0            0
## sugar                              0              0            0
## hygiene articles                   0              0            0
## UHT-milk                           0              0            0
## onions                             0              0            0
## candy                              0              0            0
## specialty chocolate                0              0            0
## butter milk                        0              0            0
## oil                                0              0            0
## frozen meals                       0              0            0
## misc. beverages                    0              0            0
## specialty bar                      0              0            0
## ham                                0              0            0
## beverages                          0              0            0
## meat                               0              0            0
## ice cream                          0              0            0
## sliced cheese                      0              0            0
## hard cheese                        0              0            0
## noodles                            0              0            0
## grapes                             0              0            0
## cat food                           0              0            0
## chewing gum                        0              0            0
## soda                               0              0            0
## detergent                          0              0            0
## red/blush wine                     0              0            0
## white wine                         0              0            0
## turkey                             0              0            0
## dishes                             0              0            0
## bottled water                      0              0            0
## flour                              0              0            0
## semi-finished bread                0              0            0
## baking powder                      0              0            0
## pickled vegetables                 0              0            0
## herbs                              0              0            0
## tropical herbs                     0              0            0
## soft cheese                        0              0            0
## tea                                0              0            0
## processed cheese                   0              0            0
## sausage                            0              0            0
## pasta                              0              0            0
## citrus herbs                       0              0            0
## potted plants                      0              0            0
## canned fish                        0              0            0
## seasonal products                  0              0            0
## cake bar                           0              0            0
## carrots                            0              0            0
## mustard                            0              0            0
## packaged fruit/vegetables          0              0            0
## spread cheese                      0              0            0
## frozen dessert                     0              0            0
## frozen fish                        0              0            0
## cling film/bags                    0              0            0
## salt                               0              0            0
## liquor                             0              0            0
## canned vegetables                  0              0            0
## bottled beer                       0              0            0
## flower (seeds)                     0              0            0
## cooking oil                        0              0            0
## dish cleaner                       0              0            0
## condensed milk                     0              0            0
## roll products                      0              0            0
## photo/film                         0              0            0
## pet care                           0              0            0
## chocolate marshmallow              0              0            0
## herbs/vegetable juice              0              0            0
## whole milk                         0              0            0
## candles                            0              0            0
## mayonnaise                         0              0            0
## Instant food products              0              0            0
## sweet spreads                      0              0            0
## liquor (appetizer)                 0              0            0
## specialty cheese                   0              0            0
## frozen potato products             0              0            0
## house keeping products             0              0            0
## dog food                           0              0            0
## soy                                0              0            0
## instant coffee                     0              0            0
## pip herbs                          0              0            0
## zwieback                           0              0            0
## finished products                  0              0            0
## popcorn                            0              0            0
## vinegar                            0              0            0
## soups                              0              0            0
## female sanitary products           0              0            0
## sparkling wine                     0              0            0
## dental care                        0              0            0
## cereals                            0              0            0
## kitchen towels                     0              0            0
## curd cheese                        0              0            0
## other vegetables                   0              0            0
## rolls/buns                         0              0            0
## softener                           0              0            0
## cleaner                            0              0            0
## spices                             0              0            0
## jam                                0              0            0
## sauces                             0              0            0
## rum                                0              0            0
## liver loaf                         0              0            0
## male cosmetics                     0              0            0
## meat spreads                       0              0            0
## packaged herbs/vegetables          0              0            0
## brandy                             0              0            0
## ketchup                            0              0            0
## abrasive cleaner                   0              0            0
## light bulbs                        0              0            0
## artif. sweetener                   0              0            0
## nuts/prunes                        0              0            0
## specialty fat                      0              0            0
## skin care                          0              0            0
## fish                               0              0            0
## potato products                    0              0            0
## root vegetables                    0              0            0
## snack products                     0              0            0
## nut snack                          0              0            0
## soap                               0              0            0
## syrup                              0              0            0
## bathroom cleaner                   0              0            0
## canned fruit                       0              0            0
## cookware                           0              0            0
## cooking chocolate                  0              0            0
## tidbits                            0              0            0
## cocoa drinks                       0              0            0
## pudding powder                     0              0            0
## ready soups                        0              0            0
## organic marinated meat             0              0            0
## flower soil/fertilizer             0              0            0
## organic products                   0              0            0
## pot plants                         0              0            0
## prosecco                           0              0            0
## frankfurter                        0              0            0
## decalcifier                        0              0            0
## honey                              0              0            0
## specialty vegetables               0              0            0
## cream                              0              0            0
## hair spray                         0              0            0
## frozen fruits                      0              0            0
## rubbing alcohol                    0              0            0
## liqueur                            0              0            0
## make up remover                    0              0            0
## salad dressing                     0              0            0
## frozen chicken                     0              0            0
## whisky                             0              0            0
## baby cosmetics                     0              0            0
## toilet cleaner                     0              0            0
## bags                               0              0            0
## canned herbs                       0              0            0
## kitchen utensil                    0              0            0
## preservation products              0              0            0
## baby food                          0              0            0
## frozen herbss                      0              0            0
## organic sausage                    0              0            0
## sound storage medium               0              0            0
##                           packaged herbs/vegetables brandy ketchup
## rice                                              0      0       0
## veggies                                           0      0       0
## loaf                                              0      0       0
## coke                                              0      0       0
## yogurt                                            0      0       0
## vegetables                                        0      0       0
## mineral water                                     0      0       0
## Plastic bags                                      0      0       0
## tropical fruit                                    0      0       0
## marinated meat                                    0      0       0
## pies/pasties                                      0      0       0
## newspapers                                        0      0       0
## citrus                                            0      0       0
## whipped/sour cream                                0      0       0
## heinken                                           0      0       0
## green tea                                         0      0       0
## pip fruit                                         0      0       0
## brown bread                                       0      0       0
## fruit/vegetable juice                             0      0       0
## domestic eggs                                     0      0       0
## coffee                                            0      0       0
## margarine                                         0      0       0
## beef                                              0      0       0
## curd                                              0      0       0
## butter                                            0      0       0
## marinated meats                                   0      0       0
## napkins                                           0      0       0
## halal meat                                        0      0       0
## chocolate                                         0      0       0
## frozen vegetables                                 0      0       0
## chicken                                           0      0       0
## white bread                                       0      0       0
## cream cheese                                      0      0       0
## waffles                                           0      0       0
## dessert                                           0      0       0
## salty snack                                       0      0       0
## long life bakery product                          0      0       0
## berries                                           0      0       0
## hamburger meat                                    0      0       0
## sugar                                             0      0       0
## hygiene articles                                  0      0       0
## UHT-milk                                          0      0       0
## onions                                            0      0       0
## candy                                             0      0       0
## specialty chocolate                               0      0       0
## butter milk                                       0      0       0
## oil                                               0      0       0
## frozen meals                                      0      0       0
## misc. beverages                                   0      0       0
## specialty bar                                     0      0       0
## ham                                               0      0       0
## beverages                                         0      0       0
## meat                                              0      0       0
## ice cream                                         0      0       0
## sliced cheese                                     0      0       0
## hard cheese                                       0      0       0
## noodles                                           0      0       0
## grapes                                            0      0       0
## cat food                                          0      0       0
## chewing gum                                       0      0       0
## soda                                              0      0       0
## detergent                                         0      0       0
## red/blush wine                                    0      0       0
## white wine                                        0      0       0
## turkey                                            0      0       0
## dishes                                            0      0       0
## bottled water                                     0      0       0
## flour                                             0      0       0
## semi-finished bread                               0      0       0
## baking powder                                     0      0       0
## pickled vegetables                                0      0       0
## herbs                                             0      0       0
## tropical herbs                                    0      0       0
## soft cheese                                       0      0       0
## tea                                               0      0       0
## processed cheese                                  0      0       0
## sausage                                           0      0       0
## pasta                                             0      0       0
## citrus herbs                                      0      0       0
## potted plants                                     0      0       0
## canned fish                                       0      0       0
## seasonal products                                 0      0       0
## cake bar                                          0      0       0
## carrots                                           0      0       0
## mustard                                           0      0       0
## packaged fruit/vegetables                         0      0       0
## spread cheese                                     0      0       0
## frozen dessert                                    0      0       0
## frozen fish                                       0      0       0
## cling film/bags                                   0      0       0
## salt                                              0      0       0
## liquor                                            0      0       0
## canned vegetables                                 0      0       0
## bottled beer                                      0      0       0
## flower (seeds)                                    0      0       0
## cooking oil                                       0      0       0
## dish cleaner                                      0      0       0
## condensed milk                                    0      0       0
## roll products                                     0      0       0
## photo/film                                        0      0       0
## pet care                                          0      0       0
## chocolate marshmallow                             0      0       0
## herbs/vegetable juice                             0      0       0
## whole milk                                        0      0       0
## candles                                           0      0       0
## mayonnaise                                        0      0       0
## Instant food products                             0      0       0
## sweet spreads                                     0      0       0
## liquor (appetizer)                                0      0       0
## specialty cheese                                  0      0       0
## frozen potato products                            0      0       0
## house keeping products                            0      0       0
## dog food                                          0      0       0
## soy                                               0      0       0
## instant coffee                                    0      0       0
## pip herbs                                         0      0       0
## zwieback                                          0      0       0
## finished products                                 0      0       0
## popcorn                                           0      0       0
## vinegar                                           0      0       0
## soups                                             0      0       0
## female sanitary products                          0      0       0
## sparkling wine                                    0      0       0
## dental care                                       0      0       0
## cereals                                           0      0       0
## kitchen towels                                    0      0       0
## curd cheese                                       0      0       0
## other vegetables                                  0      0       0
## rolls/buns                                        0      0       0
## softener                                          0      0       0
## cleaner                                           0      0       0
## spices                                            0      0       0
## jam                                               0      0       0
## sauces                                            0      0       0
## rum                                               0      0       0
## liver loaf                                        0      0       0
## male cosmetics                                    0      0       0
## meat spreads                                      0      0       0
## packaged herbs/vegetables                         0      0       0
## brandy                                            0      0       0
## ketchup                                           0      0       0
## abrasive cleaner                                  0      0       0
## light bulbs                                       0      0       0
## artif. sweetener                                  0      0       0
## nuts/prunes                                       0      0       0
## specialty fat                                     0      0       0
## skin care                                         0      0       0
## fish                                              0      0       0
## potato products                                   0      0       0
## root vegetables                                   0      0       0
## snack products                                    0      0       0
## nut snack                                         0      0       0
## soap                                              0      0       0
## syrup                                             0      0       0
## bathroom cleaner                                  0      0       0
## canned fruit                                      0      0       0
## cookware                                          0      0       0
## cooking chocolate                                 0      0       0
## tidbits                                           0      0       0
## cocoa drinks                                      0      0       0
## pudding powder                                    0      0       0
## ready soups                                       0      0       0
## organic marinated meat                            0      0       0
## flower soil/fertilizer                            0      0       0
## organic products                                  0      0       0
## pot plants                                        0      0       0
## prosecco                                          0      0       0
## frankfurter                                       0      0       0
## decalcifier                                       0      0       0
## honey                                             0      0       0
## specialty vegetables                              0      0       0
## cream                                             0      0       0
## hair spray                                        0      0       0
## frozen fruits                                     0      0       0
## rubbing alcohol                                   0      0       0
## liqueur                                           0      0       0
## make up remover                                   0      0       0
## salad dressing                                    0      0       0
## frozen chicken                                    0      0       0
## whisky                                            0      0       0
## baby cosmetics                                    0      0       0
## toilet cleaner                                    0      0       0
## bags                                              0      0       0
## canned herbs                                      0      0       0
## kitchen utensil                                   0      0       0
## preservation products                             0      0       0
## baby food                                         0      0       0
## frozen herbss                                     0      0       0
## organic sausage                                   0      0       0
## sound storage medium                              0      0       0
##                           abrasive cleaner light bulbs artif. sweetener
## rice                                     0           0                0
## veggies                                  0           0                0
## loaf                                     0           0                0
## coke                                     0           0                0
## yogurt                                   0           0                0
## vegetables                               0           0                0
## mineral water                            0           0                0
## Plastic bags                             0           0                0
## tropical fruit                           0           0                0
## marinated meat                           0           0                0
## pies/pasties                             0           0                0
## newspapers                               0           0                0
## citrus                                   0           0                0
## whipped/sour cream                       0           0                0
## heinken                                  0           0                0
## green tea                                0           0                0
## pip fruit                                0           0                0
## brown bread                              0           0                0
## fruit/vegetable juice                    0           0                0
## domestic eggs                            0           0                0
## coffee                                   0           0                0
## margarine                                0           0                0
## beef                                     0           0                0
## curd                                     0           0                0
## butter                                   0           0                0
## marinated meats                          0           0                0
## napkins                                  0           0                0
## halal meat                               0           0                0
## chocolate                                0           0                0
## frozen vegetables                        0           0                0
## chicken                                  0           0                0
## white bread                              0           0                0
## cream cheese                             0           0                0
## waffles                                  0           0                0
## dessert                                  0           0                0
## salty snack                              0           0                0
## long life bakery product                 0           0                0
## berries                                  0           0                0
## hamburger meat                           0           0                0
## sugar                                    0           0                0
## hygiene articles                         0           0                0
## UHT-milk                                 0           0                0
## onions                                   0           0                0
## candy                                    0           0                0
## specialty chocolate                      0           0                0
## butter milk                              0           0                0
## oil                                      0           0                0
## frozen meals                             0           0                0
## misc. beverages                          0           0                0
## specialty bar                            0           0                0
## ham                                      0           0                0
## beverages                                0           0                0
## meat                                     0           0                0
## ice cream                                0           0                0
## sliced cheese                            0           0                0
## hard cheese                              0           0                0
## noodles                                  0           0                0
## grapes                                   0           0                0
## cat food                                 0           0                0
## chewing gum                              0           0                0
## soda                                     0           0                0
## detergent                                0           0                0
## red/blush wine                           0           0                0
## white wine                               0           0                0
## turkey                                   0           0                0
## dishes                                   0           0                0
## bottled water                            0           0                0
## flour                                    0           0                0
## semi-finished bread                      0           0                0
## baking powder                            0           0                0
## pickled vegetables                       0           0                0
## herbs                                    0           0                0
## tropical herbs                           0           0                0
## soft cheese                              0           0                0
## tea                                      0           0                0
## processed cheese                         0           0                0
## sausage                                  0           0                0
## pasta                                    0           0                0
## citrus herbs                             0           0                0
## potted plants                            0           0                0
## canned fish                              0           0                0
## seasonal products                        0           0                0
## cake bar                                 0           0                0
## carrots                                  0           0                0
## mustard                                  0           0                0
## packaged fruit/vegetables                0           0                0
## spread cheese                            0           0                0
## frozen dessert                           0           0                0
## frozen fish                              0           0                0
## cling film/bags                          0           0                0
## salt                                     0           0                0
## liquor                                   0           0                0
## canned vegetables                        0           0                0
## bottled beer                             0           0                0
## flower (seeds)                           0           0                0
## cooking oil                              0           0                0
## dish cleaner                             0           0                0
## condensed milk                           0           0                0
## roll products                            0           0                0
## photo/film                               0           0                0
## pet care                                 0           0                0
## chocolate marshmallow                    0           0                0
## herbs/vegetable juice                    0           0                0
## whole milk                               0           0                0
## candles                                  0           0                0
## mayonnaise                               0           0                0
## Instant food products                    0           0                0
## sweet spreads                            0           0                0
## liquor (appetizer)                       0           0                0
## specialty cheese                         0           0                0
## frozen potato products                   0           0                0
## house keeping products                   0           0                0
## dog food                                 0           0                0
## soy                                      0           0                0
## instant coffee                           0           0                0
## pip herbs                                0           0                0
## zwieback                                 0           0                0
## finished products                        0           0                0
## popcorn                                  0           0                0
## vinegar                                  0           0                0
## soups                                    0           0                0
## female sanitary products                 0           0                0
## sparkling wine                           0           0                0
## dental care                              0           0                0
## cereals                                  0           0                0
## kitchen towels                           0           0                0
## curd cheese                              0           0                0
## other vegetables                         0           0                0
## rolls/buns                               0           0                0
## softener                                 0           0                0
## cleaner                                  0           0                0
## spices                                   0           0                0
## jam                                      0           0                0
## sauces                                   0           0                0
## rum                                      0           0                0
## liver loaf                               0           0                0
## male cosmetics                           0           0                0
## meat spreads                             0           0                0
## packaged herbs/vegetables                0           0                0
## brandy                                   0           0                0
## ketchup                                  0           0                0
## abrasive cleaner                         0           0                0
## light bulbs                              0           0                0
## artif. sweetener                         0           0                0
## nuts/prunes                              0           0                0
## specialty fat                            0           0                0
## skin care                                0           0                0
## fish                                     0           0                0
## potato products                          0           0                0
## root vegetables                          0           0                0
## snack products                           0           0                0
## nut snack                                0           0                0
## soap                                     0           0                0
## syrup                                    0           0                0
## bathroom cleaner                         0           0                0
## canned fruit                             0           0                0
## cookware                                 0           0                0
## cooking chocolate                        0           0                0
## tidbits                                  0           0                0
## cocoa drinks                             0           0                0
## pudding powder                           0           0                0
## ready soups                              0           0                0
## organic marinated meat                   0           0                0
## flower soil/fertilizer                   0           0                0
## organic products                         0           0                0
## pot plants                               0           0                0
## prosecco                                 0           0                0
## frankfurter                              0           0                0
## decalcifier                              0           0                0
## honey                                    0           0                0
## specialty vegetables                     0           0                0
## cream                                    0           0                0
## hair spray                               0           0                0
## frozen fruits                            0           0                0
## rubbing alcohol                          0           0                0
## liqueur                                  0           0                0
## make up remover                          0           0                0
## salad dressing                           0           0                0
## frozen chicken                           0           0                0
## whisky                                   0           0                0
## baby cosmetics                           0           0                0
## toilet cleaner                           0           0                0
## bags                                     0           0                0
## canned herbs                             0           0                0
## kitchen utensil                          0           0                0
## preservation products                    0           0                0
## baby food                                0           0                0
## frozen herbss                            0           0                0
## organic sausage                          0           0                0
## sound storage medium                     0           0                0
##                           nuts/prunes specialty fat skin care fish
## rice                                0             0         0    0
## veggies                             0             0         0    0
## loaf                                0             0         0    0
## coke                                0             0         0    0
## yogurt                              0             0         0    0
## vegetables                          0             0         0    0
## mineral water                       0             0         0    0
## Plastic bags                        0             0         0    0
## tropical fruit                      0             0         0    0
## marinated meat                      0             0         0    0
## pies/pasties                        0             0         0    0
## newspapers                          0             0         0    0
## citrus                              0             0         0    0
## whipped/sour cream                  0             0         0    0
## heinken                             0             0         0    0
## green tea                           0             0         0    0
## pip fruit                           0             0         0    0
## brown bread                         0             0         0    0
## fruit/vegetable juice               0             0         0    0
## domestic eggs                       0             0         0    0
## coffee                              0             0         0    0
## margarine                           0             0         0    0
## beef                                0             0         0    0
## curd                                0             0         0    0
## butter                              0             0         0    0
## marinated meats                     0             0         0    0
## napkins                             0             0         0    0
## halal meat                          0             0         0    0
## chocolate                           0             0         0    0
## frozen vegetables                   0             0         0    0
## chicken                             0             0         0    0
## white bread                         0             0         0    0
## cream cheese                        0             0         0    0
## waffles                             0             0         0    0
## dessert                             0             0         0    0
## salty snack                         0             0         0    0
## long life bakery product            0             0         0    0
## berries                             0             0         0    0
## hamburger meat                      0             0         0    0
## sugar                               0             0         0    0
## hygiene articles                    0             0         0    0
## UHT-milk                            0             0         0    0
## onions                              0             0         0    0
## candy                               0             0         0    0
## specialty chocolate                 0             0         0    0
## butter milk                         0             0         0    0
## oil                                 0             0         0    0
## frozen meals                        0             0         0    0
## misc. beverages                     0             0         0    0
## specialty bar                       0             0         0    0
## ham                                 0             0         0    0
## beverages                           0             0         0    0
## meat                                0             0         0    0
## ice cream                           0             0         0    0
## sliced cheese                       0             0         0    0
## hard cheese                         0             0         0    0
## noodles                             0             0         0    0
## grapes                              0             0         0    0
## cat food                            0             0         0    0
## chewing gum                         0             0         0    0
## soda                                0             0         0    0
## detergent                           0             0         0    0
## red/blush wine                      0             0         0    0
## white wine                          0             0         0    0
## turkey                              0             0         0    0
## dishes                              0             0         0    0
## bottled water                       0             0         0    0
## flour                               0             0         0    0
## semi-finished bread                 0             0         0    0
## baking powder                       0             0         0    0
## pickled vegetables                  0             0         0    0
## herbs                               0             0         0    0
## tropical herbs                      0             0         0    0
## soft cheese                         0             0         0    0
## tea                                 0             0         0    0
## processed cheese                    0             0         0    0
## sausage                             0             0         0    0
## pasta                               0             0         0    0
## citrus herbs                        0             0         0    0
## potted plants                       0             0         0    0
## canned fish                         0             0         0    0
## seasonal products                   0             0         0    0
## cake bar                            0             0         0    0
## carrots                             0             0         0    0
## mustard                             0             0         0    0
## packaged fruit/vegetables           0             0         0    0
## spread cheese                       0             0         0    0
## frozen dessert                      0             0         0    0
## frozen fish                         0             0         0    0
## cling film/bags                     0             0         0    0
## salt                                0             0         0    0
## liquor                              0             0         0    0
## canned vegetables                   0             0         0    0
## bottled beer                        0             0         0    0
## flower (seeds)                      0             0         0    0
## cooking oil                         0             0         0    0
## dish cleaner                        0             0         0    0
## condensed milk                      0             0         0    0
## roll products                       0             0         0    0
## photo/film                          0             0         0    0
## pet care                            0             0         0    0
## chocolate marshmallow               0             0         0    0
## herbs/vegetable juice               0             0         0    0
## whole milk                          0             0         0    0
## candles                             0             0         0    0
## mayonnaise                          0             0         0    0
## Instant food products               0             0         0    0
## sweet spreads                       0             0         0    0
## liquor (appetizer)                  0             0         0    0
## specialty cheese                    0             0         0    0
## frozen potato products              0             0         0    0
## house keeping products              0             0         0    0
## dog food                            0             0         0    0
## soy                                 0             0         0    0
## instant coffee                      0             0         0    0
## pip herbs                           0             0         0    0
## zwieback                            0             0         0    0
## finished products                   0             0         0    0
## popcorn                             0             0         0    0
## vinegar                             0             0         0    0
## soups                               0             0         0    0
## female sanitary products            0             0         0    0
## sparkling wine                      0             0         0    0
## dental care                         0             0         0    0
## cereals                             0             0         0    0
## kitchen towels                      0             0         0    0
## curd cheese                         0             0         0    0
## other vegetables                    0             0         0    0
## rolls/buns                          0             0         0    0
## softener                            0             0         0    0
## cleaner                             0             0         0    0
## spices                              0             0         0    0
## jam                                 0             0         0    0
## sauces                              0             0         0    0
## rum                                 0             0         0    0
## liver loaf                          0             0         0    0
## male cosmetics                      0             0         0    0
## meat spreads                        0             0         0    0
## packaged herbs/vegetables           0             0         0    0
## brandy                              0             0         0    0
## ketchup                             0             0         0    0
## abrasive cleaner                    0             0         0    0
## light bulbs                         0             0         0    0
## artif. sweetener                    0             0         0    0
## nuts/prunes                         0             0         0    0
## specialty fat                       0             0         0    0
## skin care                           0             0         0    0
## fish                                0             0         0    0
## potato products                     0             0         0    0
## root vegetables                     0             0         0    0
## snack products                      0             0         0    0
## nut snack                           0             0         0    0
## soap                                0             0         0    0
## syrup                               0             0         0    0
## bathroom cleaner                    0             0         0    0
## canned fruit                        0             0         0    0
## cookware                            0             0         0    0
## cooking chocolate                   0             0         0    0
## tidbits                             0             0         0    0
## cocoa drinks                        0             0         0    0
## pudding powder                      0             0         0    0
## ready soups                         0             0         0    0
## organic marinated meat              0             0         0    0
## flower soil/fertilizer              0             0         0    0
## organic products                    0             0         0    0
## pot plants                          0             0         0    0
## prosecco                            0             0         0    0
## frankfurter                         0             0         0    0
## decalcifier                         0             0         0    0
## honey                               0             0         0    0
## specialty vegetables                0             0         0    0
## cream                               0             0         0    0
## hair spray                          0             0         0    0
## frozen fruits                       0             0         0    0
## rubbing alcohol                     0             0         0    0
## liqueur                             0             0         0    0
## make up remover                     0             0         0    0
## salad dressing                      0             0         0    0
## frozen chicken                      0             0         0    0
## whisky                              0             0         0    0
## baby cosmetics                      0             0         0    0
## toilet cleaner                      0             0         0    0
## bags                                0             0         0    0
## canned herbs                        0             0         0    0
## kitchen utensil                     0             0         0    0
## preservation products               0             0         0    0
## baby food                           0             0         0    0
## frozen herbss                       0             0         0    0
## organic sausage                     0             0         0    0
## sound storage medium                0             0         0    0
##                           potato products root vegetables snack products
## rice                                    0               0              0
## veggies                                 0               0              0
## loaf                                    0               0              0
## coke                                    0               0              0
## yogurt                                  0               0              0
## vegetables                              0               0              0
## mineral water                           0               0              0
## Plastic bags                            0               0              0
## tropical fruit                          0               0              0
## marinated meat                          0               0              0
## pies/pasties                            0               0              0
## newspapers                              0               0              0
## citrus                                  0               0              0
## whipped/sour cream                      0               0              0
## heinken                                 0               0              0
## green tea                               0               0              0
## pip fruit                               0               0              0
## brown bread                             0               0              0
## fruit/vegetable juice                   0               0              0
## domestic eggs                           0               0              0
## coffee                                  0               0              0
## margarine                               0               0              0
## beef                                    0               0              0
## curd                                    0               0              0
## butter                                  0               0              0
## marinated meats                         0               0              0
## napkins                                 0               0              0
## halal meat                              0               0              0
## chocolate                               0               0              0
## frozen vegetables                       0               0              0
## chicken                                 0               0              0
## white bread                             0               0              0
## cream cheese                            0               0              0
## waffles                                 0               0              0
## dessert                                 0               0              0
## salty snack                             0               0              0
## long life bakery product                0               0              0
## berries                                 0               0              0
## hamburger meat                          0               0              0
## sugar                                   0               0              0
## hygiene articles                        0               0              0
## UHT-milk                                0               0              0
## onions                                  0               0              0
## candy                                   0               0              0
## specialty chocolate                     0               0              0
## butter milk                             0               0              0
## oil                                     0               0              0
## frozen meals                            0               0              0
## misc. beverages                         0               0              0
## specialty bar                           0               0              0
## ham                                     0               0              0
## beverages                               0               0              0
## meat                                    0               0              0
## ice cream                               0               0              0
## sliced cheese                           0               0              0
## hard cheese                             0               0              0
## noodles                                 0               0              0
## grapes                                  0               0              0
## cat food                                0               0              0
## chewing gum                             0               0              0
## soda                                    0               0              0
## detergent                               0               0              0
## red/blush wine                          0               0              0
## white wine                              0               0              0
## turkey                                  0               0              0
## dishes                                  0               0              0
## bottled water                           0               0              0
## flour                                   0               0              0
## semi-finished bread                     0               0              0
## baking powder                           0               0              0
## pickled vegetables                      0               0              0
## herbs                                   0               0              0
## tropical herbs                          0               0              0
## soft cheese                             0               0              0
## tea                                     0               0              0
## processed cheese                        0               0              0
## sausage                                 0               0              0
## pasta                                   0               0              0
## citrus herbs                            0               0              0
## potted plants                           0               0              0
## canned fish                             0               0              0
## seasonal products                       0               0              0
## cake bar                                0               0              0
## carrots                                 0               0              0
## mustard                                 0               0              0
## packaged fruit/vegetables               0               0              0
## spread cheese                           0               0              0
## frozen dessert                          0               0              0
## frozen fish                             0               0              0
## cling film/bags                         0               0              0
## salt                                    0               0              0
## liquor                                  0               0              0
## canned vegetables                       0               0              0
## bottled beer                            0               0              0
## flower (seeds)                          0               0              0
## cooking oil                             0               0              0
## dish cleaner                            0               0              0
## condensed milk                          0               0              0
## roll products                           0               0              0
## photo/film                              0               0              0
## pet care                                0               0              0
## chocolate marshmallow                   0               0              0
## herbs/vegetable juice                   0               0              0
## whole milk                              0               0              0
## candles                                 0               0              0
## mayonnaise                              0               0              0
## Instant food products                   0               0              0
## sweet spreads                           0               0              0
## liquor (appetizer)                      0               0              0
## specialty cheese                        0               0              0
## frozen potato products                  0               0              0
## house keeping products                  0               0              0
## dog food                                0               0              0
## soy                                     0               0              0
## instant coffee                          0               0              0
## pip herbs                               0               0              0
## zwieback                                0               0              0
## finished products                       0               0              0
## popcorn                                 0               0              0
## vinegar                                 0               0              0
## soups                                   0               0              0
## female sanitary products                0               0              0
## sparkling wine                          0               0              0
## dental care                             0               0              0
## cereals                                 0               0              0
## kitchen towels                          0               0              0
## curd cheese                             0               0              0
## other vegetables                        0               0              0
## rolls/buns                              0               0              0
## softener                                0               0              0
## cleaner                                 0               0              0
## spices                                  0               0              0
## jam                                     0               0              0
## sauces                                  0               0              0
## rum                                     0               0              0
## liver loaf                              0               0              0
## male cosmetics                          0               0              0
## meat spreads                            0               0              0
## packaged herbs/vegetables               0               0              0
## brandy                                  0               0              0
## ketchup                                 0               0              0
## abrasive cleaner                        0               0              0
## light bulbs                             0               0              0
## artif. sweetener                        0               0              0
## nuts/prunes                             0               0              0
## specialty fat                           0               0              0
## skin care                               0               0              0
## fish                                    0               0              0
## potato products                         0               0              0
## root vegetables                         0               0              0
## snack products                          0               0              0
## nut snack                               0               0              0
## soap                                    0               0              0
## syrup                                   0               0              0
## bathroom cleaner                        0               0              0
## canned fruit                            0               0              0
## cookware                                0               0              0
## cooking chocolate                       0               0              0
## tidbits                                 0               0              0
## cocoa drinks                            0               0              0
## pudding powder                          0               0              0
## ready soups                             0               0              0
## organic marinated meat                  0               0              0
## flower soil/fertilizer                  0               0              0
## organic products                        0               0              0
## pot plants                              0               0              0
## prosecco                                0               0              0
## frankfurter                             0               0              0
## decalcifier                             0               0              0
## honey                                   0               0              0
## specialty vegetables                    0               0              0
## cream                                   0               0              0
## hair spray                              0               0              0
## frozen fruits                           0               0              0
## rubbing alcohol                         0               0              0
## liqueur                                 0               0              0
## make up remover                         0               0              0
## salad dressing                          0               0              0
## frozen chicken                          0               0              0
## whisky                                  0               0              0
## baby cosmetics                          0               0              0
## toilet cleaner                          0               0              0
## bags                                    0               0              0
## canned herbs                            0               0              0
## kitchen utensil                         0               0              0
## preservation products                   0               0              0
## baby food                               0               0              0
## frozen herbss                           0               0              0
## organic sausage                         0               0              0
## sound storage medium                    0               0              0
##                           nut snack soap syrup bathroom cleaner canned fruit
## rice                              0    0     0                0            0
## veggies                           0    0     0                0            0
## loaf                              0    0     0                0            0
## coke                              0    0     0                0            0
## yogurt                            0    0     0                0            0
## vegetables                        0    0     0                0            0
## mineral water                     0    0     0                0            0
## Plastic bags                      0    0     0                0            0
## tropical fruit                    0    0     0                0            0
## marinated meat                    0    0     0                0            0
## pies/pasties                      0    0     0                0            0
## newspapers                        0    0     0                0            0
## citrus                            0    0     0                0            0
## whipped/sour cream                0    0     0                0            0
## heinken                           0    0     0                0            0
## green tea                         0    0     0                0            0
## pip fruit                         0    0     0                0            0
## brown bread                       0    0     0                0            0
## fruit/vegetable juice             0    0     0                0            0
## domestic eggs                     0    0     0                0            0
## coffee                            0    0     0                0            0
## margarine                         0    0     0                0            0
## beef                              0    0     0                0            0
## curd                              0    0     0                0            0
## butter                            0    0     0                0            0
## marinated meats                   0    0     0                0            0
## napkins                           0    0     0                0            0
## halal meat                        0    0     0                0            0
## chocolate                         0    0     0                0            0
## frozen vegetables                 0    0     0                0            0
## chicken                           0    0     0                0            0
## white bread                       0    0     0                0            0
## cream cheese                      0    0     0                0            0
## waffles                           0    0     0                0            0
## dessert                           0    0     0                0            0
## salty snack                       0    0     0                0            0
## long life bakery product          0    0     0                0            0
## berries                           0    0     0                0            0
## hamburger meat                    0    0     0                0            0
## sugar                             0    0     0                0            0
## hygiene articles                  0    0     0                0            0
## UHT-milk                          0    0     0                0            0
## onions                            0    0     0                0            0
## candy                             0    0     0                0            0
## specialty chocolate               0    0     0                0            0
## butter milk                       0    0     0                0            0
## oil                               0    0     0                0            0
## frozen meals                      0    0     0                0            0
## misc. beverages                   0    0     0                0            0
## specialty bar                     0    0     0                0            0
## ham                               0    0     0                0            0
## beverages                         0    0     0                0            0
## meat                              0    0     0                0            0
## ice cream                         0    0     0                0            0
## sliced cheese                     0    0     0                0            0
## hard cheese                       0    0     0                0            0
## noodles                           0    0     0                0            0
## grapes                            0    0     0                0            0
## cat food                          0    0     0                0            0
## chewing gum                       0    0     0                0            0
## soda                              0    0     0                0            0
## detergent                         0    0     0                0            0
## red/blush wine                    0    0     0                0            0
## white wine                        0    0     0                0            0
## turkey                            0    0     0                0            0
## dishes                            0    0     0                0            0
## bottled water                     0    0     0                0            0
## flour                             0    0     0                0            0
## semi-finished bread               0    0     0                0            0
## baking powder                     0    0     0                0            0
## pickled vegetables                0    0     0                0            0
## herbs                             0    0     0                0            0
## tropical herbs                    0    0     0                0            0
## soft cheese                       0    0     0                0            0
## tea                               0    0     0                0            0
## processed cheese                  0    0     0                0            0
## sausage                           0    0     0                0            0
## pasta                             0    0     0                0            0
## citrus herbs                      0    0     0                0            0
## potted plants                     0    0     0                0            0
## canned fish                       0    0     0                0            0
## seasonal products                 0    0     0                0            0
## cake bar                          0    0     0                0            0
## carrots                           0    0     0                0            0
## mustard                           0    0     0                0            0
## packaged fruit/vegetables         0    0     0                0            0
## spread cheese                     0    0     0                0            0
## frozen dessert                    0    0     0                0            0
## frozen fish                       0    0     0                0            0
## cling film/bags                   0    0     0                0            0
## salt                              0    0     0                0            0
## liquor                            0    0     0                0            0
## canned vegetables                 0    0     0                0            0
## bottled beer                      0    0     0                0            0
## flower (seeds)                    0    0     0                0            0
## cooking oil                       0    0     0                0            0
## dish cleaner                      0    0     0                0            0
## condensed milk                    0    0     0                0            0
## roll products                     0    0     0                0            0
## photo/film                        0    0     0                0            0
## pet care                          0    0     0                0            0
## chocolate marshmallow             0    0     0                0            0
## herbs/vegetable juice             0    0     0                0            0
## whole milk                        0    0     0                0            0
## candles                           0    0     0                0            0
## mayonnaise                        0    0     0                0            0
## Instant food products             0    0     0                0            0
## sweet spreads                     0    0     0                0            0
## liquor (appetizer)                0    0     0                0            0
## specialty cheese                  0    0     0                0            0
## frozen potato products            0    0     0                0            0
## house keeping products            0    0     0                0            0
## dog food                          0    0     0                0            0
## soy                               0    0     0                0            0
## instant coffee                    0    0     0                0            0
## pip herbs                         0    0     0                0            0
## zwieback                          0    0     0                0            0
## finished products                 0    0     0                0            0
## popcorn                           0    0     0                0            0
## vinegar                           0    0     0                0            0
## soups                             0    0     0                0            0
## female sanitary products          0    0     0                0            0
## sparkling wine                    0    0     0                0            0
## dental care                       0    0     0                0            0
## cereals                           0    0     0                0            0
## kitchen towels                    0    0     0                0            0
## curd cheese                       0    0     0                0            0
## other vegetables                  0    0     0                0            0
## rolls/buns                        0    0     0                0            0
## softener                          0    0     0                0            0
## cleaner                           0    0     0                0            0
## spices                            0    0     0                0            0
## jam                               0    0     0                0            0
## sauces                            0    0     0                0            0
## rum                               0    0     0                0            0
## liver loaf                        0    0     0                0            0
## male cosmetics                    0    0     0                0            0
## meat spreads                      0    0     0                0            0
## packaged herbs/vegetables         0    0     0                0            0
## brandy                            0    0     0                0            0
## ketchup                           0    0     0                0            0
## abrasive cleaner                  0    0     0                0            0
## light bulbs                       0    0     0                0            0
## artif. sweetener                  0    0     0                0            0
## nuts/prunes                       0    0     0                0            0
## specialty fat                     0    0     0                0            0
## skin care                         0    0     0                0            0
## fish                              0    0     0                0            0
## potato products                   0    0     0                0            0
## root vegetables                   0    0     0                0            0
## snack products                    0    0     0                0            0
## nut snack                         0    0     0                0            0
## soap                              0    0     0                0            0
## syrup                             0    0     0                0            0
## bathroom cleaner                  0    0     0                0            0
## canned fruit                      0    0     0                0            0
## cookware                          0    0     0                0            0
## cooking chocolate                 0    0     0                0            0
## tidbits                           0    0     0                0            0
## cocoa drinks                      0    0     0                0            0
## pudding powder                    0    0     0                0            0
## ready soups                       0    0     0                0            0
## organic marinated meat            0    0     0                0            0
## flower soil/fertilizer            0    0     0                0            0
## organic products                  0    0     0                0            0
## pot plants                        0    0     0                0            0
## prosecco                          0    0     0                0            0
## frankfurter                       0    0     0                0            0
## decalcifier                       0    0     0                0            0
## honey                             0    0     0                0            0
## specialty vegetables              0    0     0                0            0
## cream                             0    0     0                0            0
## hair spray                        0    0     0                0            0
## frozen fruits                     0    0     0                0            0
## rubbing alcohol                   0    0     0                0            0
## liqueur                           0    0     0                0            0
## make up remover                   0    0     0                0            0
## salad dressing                    0    0     0                0            0
## frozen chicken                    0    0     0                0            0
## whisky                            0    0     0                0            0
## baby cosmetics                    0    0     0                0            0
## toilet cleaner                    0    0     0                0            0
## bags                              0    0     0                0            0
## canned herbs                      0    0     0                0            0
## kitchen utensil                   0    0     0                0            0
## preservation products             0    0     0                0            0
## baby food                         0    0     0                0            0
## frozen herbss                     0    0     0                0            0
## organic sausage                   0    0     0                0            0
## sound storage medium              0    0     0                0            0
##                           cookware cooking chocolate tidbits cocoa drinks
## rice                             0                 0       0            0
## veggies                          0                 0       0            0
## loaf                             0                 0       0            0
## coke                             0                 0       0            0
## yogurt                           0                 0       0            0
## vegetables                       0                 0       0            0
## mineral water                    0                 0       0            0
## Plastic bags                     0                 0       0            0
## tropical fruit                   0                 0       0            0
## marinated meat                   0                 0       0            0
## pies/pasties                     0                 0       0            0
## newspapers                       0                 0       0            0
## citrus                           0                 0       0            0
## whipped/sour cream               0                 0       0            0
## heinken                          0                 0       0            0
## green tea                        0                 0       0            0
## pip fruit                        0                 0       0            0
## brown bread                      0                 0       0            0
## fruit/vegetable juice            0                 0       0            0
## domestic eggs                    0                 0       0            0
## coffee                           0                 0       0            0
## margarine                        0                 0       0            0
## beef                             0                 0       0            0
## curd                             0                 0       0            0
## butter                           0                 0       0            0
## marinated meats                  0                 0       0            0
## napkins                          0                 0       0            0
## halal meat                       0                 0       0            0
## chocolate                        0                 0       0            0
## frozen vegetables                0                 0       0            0
## chicken                          0                 0       0            0
## white bread                      0                 0       0            0
## cream cheese                     0                 0       0            0
## waffles                          0                 0       0            0
## dessert                          0                 0       0            0
## salty snack                      0                 0       0            0
## long life bakery product         0                 0       0            0
## berries                          0                 0       0            0
## hamburger meat                   0                 0       0            0
## sugar                            0                 0       0            0
## hygiene articles                 0                 0       0            0
## UHT-milk                         0                 0       0            0
## onions                           0                 0       0            0
## candy                            0                 0       0            0
## specialty chocolate              0                 0       0            0
## butter milk                      0                 0       0            0
## oil                              0                 0       0            0
## frozen meals                     0                 0       0            0
## misc. beverages                  0                 0       0            0
## specialty bar                    0                 0       0            0
## ham                              0                 0       0            0
## beverages                        0                 0       0            0
## meat                             0                 0       0            0
## ice cream                        0                 0       0            0
## sliced cheese                    0                 0       0            0
## hard cheese                      0                 0       0            0
## noodles                          0                 0       0            0
## grapes                           0                 0       0            0
## cat food                         0                 0       0            0
## chewing gum                      0                 0       0            0
## soda                             0                 0       0            0
## detergent                        0                 0       0            0
## red/blush wine                   0                 0       0            0
## white wine                       0                 0       0            0
## turkey                           0                 0       0            0
## dishes                           0                 0       0            0
## bottled water                    0                 0       0            0
## flour                            0                 0       0            0
## semi-finished bread              0                 0       0            0
## baking powder                    0                 0       0            0
## pickled vegetables               0                 0       0            0
## herbs                            0                 0       0            0
## tropical herbs                   0                 0       0            0
## soft cheese                      0                 0       0            0
## tea                              0                 0       0            0
## processed cheese                 0                 0       0            0
## sausage                          0                 0       0            0
## pasta                            0                 0       0            0
## citrus herbs                     0                 0       0            0
## potted plants                    0                 0       0            0
## canned fish                      0                 0       0            0
## seasonal products                0                 0       0            0
## cake bar                         0                 0       0            0
## carrots                          0                 0       0            0
## mustard                          0                 0       0            0
## packaged fruit/vegetables        0                 0       0            0
## spread cheese                    0                 0       0            0
## frozen dessert                   0                 0       0            0
## frozen fish                      0                 0       0            0
## cling film/bags                  0                 0       0            0
## salt                             0                 0       0            0
## liquor                           0                 0       0            0
## canned vegetables                0                 0       0            0
## bottled beer                     0                 0       0            0
## flower (seeds)                   0                 0       0            0
## cooking oil                      0                 0       0            0
## dish cleaner                     0                 0       0            0
## condensed milk                   0                 0       0            0
## roll products                    0                 0       0            0
## photo/film                       0                 0       0            0
## pet care                         0                 0       0            0
## chocolate marshmallow            0                 0       0            0
## herbs/vegetable juice            0                 0       0            0
## whole milk                       0                 0       0            0
## candles                          0                 0       0            0
## mayonnaise                       0                 0       0            0
## Instant food products            0                 0       0            0
## sweet spreads                    0                 0       0            0
## liquor (appetizer)               0                 0       0            0
## specialty cheese                 0                 0       0            0
## frozen potato products           0                 0       0            0
## house keeping products           0                 0       0            0
## dog food                         0                 0       0            0
## soy                              0                 0       0            0
## instant coffee                   0                 0       0            0
## pip herbs                        0                 0       0            0
## zwieback                         0                 0       0            0
## finished products                0                 0       0            0
## popcorn                          0                 0       0            0
## vinegar                          0                 0       0            0
## soups                            0                 0       0            0
## female sanitary products         0                 0       0            0
## sparkling wine                   0                 0       0            0
## dental care                      0                 0       0            0
## cereals                          0                 0       0            0
## kitchen towels                   0                 0       0            0
## curd cheese                      0                 0       0            0
## other vegetables                 0                 0       0            0
## rolls/buns                       0                 0       0            0
## softener                         0                 0       0            0
## cleaner                          0                 0       0            0
## spices                           0                 0       0            0
## jam                              0                 0       0            0
## sauces                           0                 0       0            0
## rum                              0                 0       0            0
## liver loaf                       0                 0       0            0
## male cosmetics                   0                 0       0            0
## meat spreads                     0                 0       0            0
## packaged herbs/vegetables        0                 0       0            0
## brandy                           0                 0       0            0
## ketchup                          0                 0       0            0
## abrasive cleaner                 0                 0       0            0
## light bulbs                      0                 0       0            0
## artif. sweetener                 0                 0       0            0
## nuts/prunes                      0                 0       0            0
## specialty fat                    0                 0       0            0
## skin care                        0                 0       0            0
## fish                             0                 0       0            0
## potato products                  0                 0       0            0
## root vegetables                  0                 0       0            0
## snack products                   0                 0       0            0
## nut snack                        0                 0       0            0
## soap                             0                 0       0            0
## syrup                            0                 0       0            0
## bathroom cleaner                 0                 0       0            0
## canned fruit                     0                 0       0            0
## cookware                         0                 0       0            0
## cooking chocolate                0                 0       0            0
## tidbits                          0                 0       0            0
## cocoa drinks                     0                 0       0            0
## pudding powder                   0                 0       0            0
## ready soups                      0                 0       0            0
## organic marinated meat           0                 0       0            0
## flower soil/fertilizer           0                 0       0            0
## organic products                 0                 0       0            0
## pot plants                       0                 0       0            0
## prosecco                         0                 0       0            0
## frankfurter                      0                 0       0            0
## decalcifier                      0                 0       0            0
## honey                            0                 0       0            0
## specialty vegetables             0                 0       0            0
## cream                            0                 0       0            0
## hair spray                       0                 0       0            0
## frozen fruits                    0                 0       0            0
## rubbing alcohol                  0                 0       0            0
## liqueur                          0                 0       0            0
## make up remover                  0                 0       0            0
## salad dressing                   0                 0       0            0
## frozen chicken                   0                 0       0            0
## whisky                           0                 0       0            0
## baby cosmetics                   0                 0       0            0
## toilet cleaner                   0                 0       0            0
## bags                             0                 0       0            0
## canned herbs                     0                 0       0            0
## kitchen utensil                  0                 0       0            0
## preservation products            0                 0       0            0
## baby food                        0                 0       0            0
## frozen herbss                    0                 0       0            0
## organic sausage                  0                 0       0            0
## sound storage medium             0                 0       0            0
##                           pudding powder ready soups organic marinated meat
## rice                                   0           0                      0
## veggies                                0           0                      0
## loaf                                   0           0                      0
## coke                                   0           0                      0
## yogurt                                 0           0                      0
## vegetables                             0           0                      0
## mineral water                          0           0                      0
## Plastic bags                           0           0                      0
## tropical fruit                         0           0                      0
## marinated meat                         0           0                      0
## pies/pasties                           0           0                      0
## newspapers                             0           0                      0
## citrus                                 0           0                      0
## whipped/sour cream                     0           0                      0
## heinken                                0           0                      0
## green tea                              0           0                      0
## pip fruit                              0           0                      0
## brown bread                            0           0                      0
## fruit/vegetable juice                  0           0                      0
## domestic eggs                          0           0                      0
## coffee                                 0           0                      0
## margarine                              0           0                      0
## beef                                   0           0                      0
## curd                                   0           0                      0
## butter                                 0           0                      0
## marinated meats                        0           0                      0
## napkins                                0           0                      0
## halal meat                             0           0                      0
## chocolate                              0           0                      0
## frozen vegetables                      0           0                      0
## chicken                                0           0                      0
## white bread                            0           0                      0
## cream cheese                           0           0                      0
## waffles                                0           0                      0
## dessert                                0           0                      0
## salty snack                            0           0                      0
## long life bakery product               0           0                      0
## berries                                0           0                      0
## hamburger meat                         0           0                      0
## sugar                                  0           0                      0
## hygiene articles                       0           0                      0
## UHT-milk                               0           0                      0
## onions                                 0           0                      0
## candy                                  0           0                      0
## specialty chocolate                    0           0                      0
## butter milk                            0           0                      0
## oil                                    0           0                      0
## frozen meals                           0           0                      0
## misc. beverages                        0           0                      0
## specialty bar                          0           0                      0
## ham                                    0           0                      0
## beverages                              0           0                      0
## meat                                   0           0                      0
## ice cream                              0           0                      0
## sliced cheese                          0           0                      0
## hard cheese                            0           0                      0
## noodles                                0           0                      0
## grapes                                 0           0                      0
## cat food                               0           0                      0
## chewing gum                            0           0                      0
## soda                                   0           0                      0
## detergent                              0           0                      0
## red/blush wine                         0           0                      0
## white wine                             0           0                      0
## turkey                                 0           0                      0
## dishes                                 0           0                      0
## bottled water                          0           0                      0
## flour                                  0           0                      0
## semi-finished bread                    0           0                      0
## baking powder                          0           0                      0
## pickled vegetables                     0           0                      0
## herbs                                  0           0                      0
## tropical herbs                         0           0                      0
## soft cheese                            0           0                      0
## tea                                    0           0                      0
## processed cheese                       0           0                      0
## sausage                                0           0                      0
## pasta                                  0           0                      0
## citrus herbs                           0           0                      0
## potted plants                          0           0                      0
## canned fish                            0           0                      0
## seasonal products                      0           0                      0
## cake bar                               0           0                      0
## carrots                                0           0                      0
## mustard                                0           0                      0
## packaged fruit/vegetables              0           0                      0
## spread cheese                          0           0                      0
## frozen dessert                         0           0                      0
## frozen fish                            0           0                      0
## cling film/bags                        0           0                      0
## salt                                   0           0                      0
## liquor                                 0           0                      0
## canned vegetables                      0           0                      0
## bottled beer                           0           0                      0
## flower (seeds)                         0           0                      0
## cooking oil                            0           0                      0
## dish cleaner                           0           0                      0
## condensed milk                         0           0                      0
## roll products                          0           0                      0
## photo/film                             0           0                      0
## pet care                               0           0                      0
## chocolate marshmallow                  0           0                      0
## herbs/vegetable juice                  0           0                      0
## whole milk                             0           0                      0
## candles                                0           0                      0
## mayonnaise                             0           0                      0
## Instant food products                  0           0                      0
## sweet spreads                          0           0                      0
## liquor (appetizer)                     0           0                      0
## specialty cheese                       0           0                      0
## frozen potato products                 0           0                      0
## house keeping products                 0           0                      0
## dog food                               0           0                      0
## soy                                    0           0                      0
## instant coffee                         0           0                      0
## pip herbs                              0           0                      0
## zwieback                               0           0                      0
## finished products                      0           0                      0
## popcorn                                0           0                      0
## vinegar                                0           0                      0
## soups                                  0           0                      0
## female sanitary products               0           0                      0
## sparkling wine                         0           0                      0
## dental care                            0           0                      0
## cereals                                0           0                      0
## kitchen towels                         0           0                      0
## curd cheese                            0           0                      0
## other vegetables                       0           0                      0
## rolls/buns                             0           0                      0
## softener                               0           0                      0
## cleaner                                0           0                      0
## spices                                 0           0                      0
## jam                                    0           0                      0
## sauces                                 0           0                      0
## rum                                    0           0                      0
## liver loaf                             0           0                      0
## male cosmetics                         0           0                      0
## meat spreads                           0           0                      0
## packaged herbs/vegetables              0           0                      0
## brandy                                 0           0                      0
## ketchup                                0           0                      0
## abrasive cleaner                       0           0                      0
## light bulbs                            0           0                      0
## artif. sweetener                       0           0                      0
## nuts/prunes                            0           0                      0
## specialty fat                          0           0                      0
## skin care                              0           0                      0
## fish                                   0           0                      0
## potato products                        0           0                      0
## root vegetables                        0           0                      0
## snack products                         0           0                      0
## nut snack                              0           0                      0
## soap                                   0           0                      0
## syrup                                  0           0                      0
## bathroom cleaner                       0           0                      0
## canned fruit                           0           0                      0
## cookware                               0           0                      0
## cooking chocolate                      0           0                      0
## tidbits                                0           0                      0
## cocoa drinks                           0           0                      0
## pudding powder                         0           0                      0
## ready soups                            0           0                      0
## organic marinated meat                 0           0                      0
## flower soil/fertilizer                 0           0                      0
## organic products                       0           0                      0
## pot plants                             0           0                      0
## prosecco                               0           0                      0
## frankfurter                            0           0                      0
## decalcifier                            0           0                      0
## honey                                  0           0                      0
## specialty vegetables                   0           0                      0
## cream                                  0           0                      0
## hair spray                             0           0                      0
## frozen fruits                          0           0                      0
## rubbing alcohol                        0           0                      0
## liqueur                                0           0                      0
## make up remover                        0           0                      0
## salad dressing                         0           0                      0
## frozen chicken                         0           0                      0
## whisky                                 0           0                      0
## baby cosmetics                         0           0                      0
## toilet cleaner                         0           0                      0
## bags                                   0           0                      0
## canned herbs                           0           0                      0
## kitchen utensil                        0           0                      0
## preservation products                  0           0                      0
## baby food                              0           0                      0
## frozen herbss                          0           0                      0
## organic sausage                        0           0                      0
## sound storage medium                   0           0                      0
##                           flower soil/fertilizer organic products pot plants
## rice                                           0                0          0
## veggies                                        0                0          0
## loaf                                           0                0          0
## coke                                           0                0          0
## yogurt                                         0                0          0
## vegetables                                     0                0          0
## mineral water                                  0                0          0
## Plastic bags                                   0                0          0
## tropical fruit                                 0                0          0
## marinated meat                                 0                0          0
## pies/pasties                                   0                0          0
## newspapers                                     0                0          0
## citrus                                         0                0          0
## whipped/sour cream                             0                0          0
## heinken                                        0                0          0
## green tea                                      0                0          0
## pip fruit                                      0                0          0
## brown bread                                    0                0          0
## fruit/vegetable juice                          0                0          0
## domestic eggs                                  0                0          0
## coffee                                         0                0          0
## margarine                                      0                0          0
## beef                                           0                0          0
## curd                                           0                0          0
## butter                                         0                0          0
## marinated meats                                0                0          0
## napkins                                        0                0          0
## halal meat                                     0                0          0
## chocolate                                      0                0          0
## frozen vegetables                              0                0          0
## chicken                                        0                0          0
## white bread                                    0                0          0
## cream cheese                                   0                0          0
## waffles                                        0                0          0
## dessert                                        0                0          0
## salty snack                                    0                0          0
## long life bakery product                       0                0          0
## berries                                        0                0          0
## hamburger meat                                 0                0          0
## sugar                                          0                0          0
## hygiene articles                               0                0          0
## UHT-milk                                       0                0          0
## onions                                         0                0          0
## candy                                          0                0          0
## specialty chocolate                            0                0          0
## butter milk                                    0                0          0
## oil                                            0                0          0
## frozen meals                                   0                0          0
## misc. beverages                                0                0          0
## specialty bar                                  0                0          0
## ham                                            0                0          0
## beverages                                      0                0          0
## meat                                           0                0          0
## ice cream                                      0                0          0
## sliced cheese                                  0                0          0
## hard cheese                                    0                0          0
## noodles                                        0                0          0
## grapes                                         0                0          0
## cat food                                       0                0          0
## chewing gum                                    0                0          0
## soda                                           0                0          0
## detergent                                      0                0          0
## red/blush wine                                 0                0          0
## white wine                                     0                0          0
## turkey                                         0                0          0
## dishes                                         0                0          0
## bottled water                                  0                0          0
## flour                                          0                0          0
## semi-finished bread                            0                0          0
## baking powder                                  0                0          0
## pickled vegetables                             0                0          0
## herbs                                          0                0          0
## tropical herbs                                 0                0          0
## soft cheese                                    0                0          0
## tea                                            0                0          0
## processed cheese                               0                0          0
## sausage                                        0                0          0
## pasta                                          0                0          0
## citrus herbs                                   0                0          0
## potted plants                                  0                0          0
## canned fish                                    0                0          0
## seasonal products                              0                0          0
## cake bar                                       0                0          0
## carrots                                        0                0          0
## mustard                                        0                0          0
## packaged fruit/vegetables                      0                0          0
## spread cheese                                  0                0          0
## frozen dessert                                 0                0          0
## frozen fish                                    0                0          0
## cling film/bags                                0                0          0
## salt                                           0                0          0
## liquor                                         0                0          0
## canned vegetables                              0                0          0
## bottled beer                                   0                0          0
## flower (seeds)                                 0                0          0
## cooking oil                                    0                0          0
## dish cleaner                                   0                0          0
## condensed milk                                 0                0          0
## roll products                                  0                0          0
## photo/film                                     0                0          0
## pet care                                       0                0          0
## chocolate marshmallow                          0                0          0
## herbs/vegetable juice                          0                0          0
## whole milk                                     0                0          0
## candles                                        0                0          0
## mayonnaise                                     0                0          0
## Instant food products                          0                0          0
## sweet spreads                                  0                0          0
## liquor (appetizer)                             0                0          0
## specialty cheese                               0                0          0
## frozen potato products                         0                0          0
## house keeping products                         0                0          0
## dog food                                       0                0          0
## soy                                            0                0          0
## instant coffee                                 0                0          0
## pip herbs                                      0                0          0
## zwieback                                       0                0          0
## finished products                              0                0          0
## popcorn                                        0                0          0
## vinegar                                        0                0          0
## soups                                          0                0          0
## female sanitary products                       0                0          0
## sparkling wine                                 0                0          0
## dental care                                    0                0          0
## cereals                                        0                0          0
## kitchen towels                                 0                0          0
## curd cheese                                    0                0          0
## other vegetables                               0                0          0
## rolls/buns                                     0                0          0
## softener                                       0                0          0
## cleaner                                        0                0          0
## spices                                         0                0          0
## jam                                            0                0          0
## sauces                                         0                0          0
## rum                                            0                0          0
## liver loaf                                     0                0          0
## male cosmetics                                 0                0          0
## meat spreads                                   0                0          0
## packaged herbs/vegetables                      0                0          0
## brandy                                         0                0          0
## ketchup                                        0                0          0
## abrasive cleaner                               0                0          0
## light bulbs                                    0                0          0
## artif. sweetener                               0                0          0
## nuts/prunes                                    0                0          0
## specialty fat                                  0                0          0
## skin care                                      0                0          0
## fish                                           0                0          0
## potato products                                0                0          0
## root vegetables                                0                0          0
## snack products                                 0                0          0
## nut snack                                      0                0          0
## soap                                           0                0          0
## syrup                                          0                0          0
## bathroom cleaner                               0                0          0
## canned fruit                                   0                0          0
## cookware                                       0                0          0
## cooking chocolate                              0                0          0
## tidbits                                        0                0          0
## cocoa drinks                                   0                0          0
## pudding powder                                 0                0          0
## ready soups                                    0                0          0
## organic marinated meat                         0                0          0
## flower soil/fertilizer                         0                0          0
## organic products                               0                0          0
## pot plants                                     0                0          0
## prosecco                                       0                0          0
## frankfurter                                    0                0          0
## decalcifier                                    0                0          0
## honey                                          0                0          0
## specialty vegetables                           0                0          0
## cream                                          0                0          0
## hair spray                                     0                0          0
## frozen fruits                                  0                0          0
## rubbing alcohol                                0                0          0
## liqueur                                        0                0          0
## make up remover                                0                0          0
## salad dressing                                 0                0          0
## frozen chicken                                 0                0          0
## whisky                                         0                0          0
## baby cosmetics                                 0                0          0
## toilet cleaner                                 0                0          0
## bags                                           0                0          0
## canned herbs                                   0                0          0
## kitchen utensil                                0                0          0
## preservation products                          0                0          0
## baby food                                      0                0          0
## frozen herbss                                  0                0          0
## organic sausage                                0                0          0
## sound storage medium                           0                0          0
##                           prosecco frankfurter decalcifier honey
## rice                             0           0           0     0
## veggies                          0           0           0     0
## loaf                             0           0           0     0
## coke                             0           0           0     0
## yogurt                           0           0           0     0
## vegetables                       0           0           0     0
## mineral water                    0           0           0     0
## Plastic bags                     0           0           0     0
## tropical fruit                   0           0           0     0
## marinated meat                   0           0           0     0
## pies/pasties                     0           0           0     0
## newspapers                       0           0           0     0
## citrus                           0           0           0     0
## whipped/sour cream               0           0           0     0
## heinken                          0           0           0     0
## green tea                        0           0           0     0
## pip fruit                        0           0           0     0
## brown bread                      0           0           0     0
## fruit/vegetable juice            0           0           0     0
## domestic eggs                    0           0           0     0
## coffee                           0           0           0     0
## margarine                        0           0           0     0
## beef                             0           0           0     0
## curd                             0           0           0     0
## butter                           0           0           0     0
## marinated meats                  0           0           0     0
## napkins                          0           0           0     0
## halal meat                       0           0           0     0
## chocolate                        0           0           0     0
## frozen vegetables                0           0           0     0
## chicken                          0           0           0     0
## white bread                      0           0           0     0
## cream cheese                     0           0           0     0
## waffles                          0           0           0     0
## dessert                          0           0           0     0
## salty snack                      0           0           0     0
## long life bakery product         0           0           0     0
## berries                          0           0           0     0
## hamburger meat                   0           0           0     0
## sugar                            0           0           0     0
## hygiene articles                 0           0           0     0
## UHT-milk                         0           0           0     0
## onions                           0           0           0     0
## candy                            0           0           0     0
## specialty chocolate              0           0           0     0
## butter milk                      0           0           0     0
## oil                              0           0           0     0
## frozen meals                     0           0           0     0
## misc. beverages                  0           0           0     0
## specialty bar                    0           0           0     0
## ham                              0           0           0     0
## beverages                        0           0           0     0
## meat                             0           0           0     0
## ice cream                        0           0           0     0
## sliced cheese                    0           0           0     0
## hard cheese                      0           0           0     0
## noodles                          0           0           0     0
## grapes                           0           0           0     0
## cat food                         0           0           0     0
## chewing gum                      0           0           0     0
## soda                             0           0           0     0
## detergent                        0           0           0     0
## red/blush wine                   0           0           0     0
## white wine                       0           0           0     0
## turkey                           0           0           0     0
## dishes                           0           0           0     0
## bottled water                    0           0           0     0
## flour                            0           0           0     0
## semi-finished bread              0           0           0     0
## baking powder                    0           0           0     0
## pickled vegetables               0           0           0     0
## herbs                            0           0           0     0
## tropical herbs                   0           0           0     0
## soft cheese                      0           0           0     0
## tea                              0           0           0     0
## processed cheese                 0           0           0     0
## sausage                          0           0           0     0
## pasta                            0           0           0     0
## citrus herbs                     0           0           0     0
## potted plants                    0           0           0     0
## canned fish                      0           0           0     0
## seasonal products                0           0           0     0
## cake bar                         0           0           0     0
## carrots                          0           0           0     0
## mustard                          0           0           0     0
## packaged fruit/vegetables        0           0           0     0
## spread cheese                    0           0           0     0
## frozen dessert                   0           0           0     0
## frozen fish                      0           0           0     0
## cling film/bags                  0           0           0     0
## salt                             0           0           0     0
## liquor                           0           0           0     0
## canned vegetables                0           0           0     0
## bottled beer                     0           0           0     0
## flower (seeds)                   0           0           0     0
## cooking oil                      0           0           0     0
## dish cleaner                     0           0           0     0
## condensed milk                   0           0           0     0
## roll products                    0           0           0     0
## photo/film                       0           0           0     0
## pet care                         0           0           0     0
## chocolate marshmallow            0           0           0     0
## herbs/vegetable juice            0           0           0     0
## whole milk                       0           0           0     0
## candles                          0           0           0     0
## mayonnaise                       0           0           0     0
## Instant food products            0           0           0     0
## sweet spreads                    0           0           0     0
## liquor (appetizer)               0           0           0     0
## specialty cheese                 0           0           0     0
## frozen potato products           0           0           0     0
## house keeping products           0           0           0     0
## dog food                         0           0           0     0
## soy                              0           0           0     0
## instant coffee                   0           0           0     0
## pip herbs                        0           0           0     0
## zwieback                         0           0           0     0
## finished products                0           0           0     0
## popcorn                          0           0           0     0
## vinegar                          0           0           0     0
## soups                            0           0           0     0
## female sanitary products         0           0           0     0
## sparkling wine                   0           0           0     0
## dental care                      0           0           0     0
## cereals                          0           0           0     0
## kitchen towels                   0           0           0     0
## curd cheese                      0           0           0     0
## other vegetables                 0           0           0     0
## rolls/buns                       0           0           0     0
## softener                         0           0           0     0
## cleaner                          0           0           0     0
## spices                           0           0           0     0
## jam                              0           0           0     0
## sauces                           0           0           0     0
## rum                              0           0           0     0
## liver loaf                       0           0           0     0
## male cosmetics                   0           0           0     0
## meat spreads                     0           0           0     0
## packaged herbs/vegetables        0           0           0     0
## brandy                           0           0           0     0
## ketchup                          0           0           0     0
## abrasive cleaner                 0           0           0     0
## light bulbs                      0           0           0     0
## artif. sweetener                 0           0           0     0
## nuts/prunes                      0           0           0     0
## specialty fat                    0           0           0     0
## skin care                        0           0           0     0
## fish                             0           0           0     0
## potato products                  0           0           0     0
## root vegetables                  0           0           0     0
## snack products                   0           0           0     0
## nut snack                        0           0           0     0
## soap                             0           0           0     0
## syrup                            0           0           0     0
## bathroom cleaner                 0           0           0     0
## canned fruit                     0           0           0     0
## cookware                         0           0           0     0
## cooking chocolate                0           0           0     0
## tidbits                          0           0           0     0
## cocoa drinks                     0           0           0     0
## pudding powder                   0           0           0     0
## ready soups                      0           0           0     0
## organic marinated meat           0           0           0     0
## flower soil/fertilizer           0           0           0     0
## organic products                 0           0           0     0
## pot plants                       0           0           0     0
## prosecco                         0           0           0     0
## frankfurter                      0           0           0     0
## decalcifier                      0           0           0     0
## honey                            0           0           0     0
## specialty vegetables             0           0           0     0
## cream                            0           0           0     0
## hair spray                       0           0           0     0
## frozen fruits                    0           0           0     0
## rubbing alcohol                  0           0           0     0
## liqueur                          0           0           0     0
## make up remover                  0           0           0     0
## salad dressing                   0           0           0     0
## frozen chicken                   0           0           0     0
## whisky                           0           0           0     0
## baby cosmetics                   0           0           0     0
## toilet cleaner                   0           0           0     0
## bags                             0           0           0     0
## canned herbs                     0           0           0     0
## kitchen utensil                  0           0           0     0
## preservation products            0           0           0     0
## baby food                        0           0           0     0
## frozen herbss                    0           0           0     0
## organic sausage                  0           0           0     0
## sound storage medium             0           0           0     0
##                           specialty vegetables cream hair spray frozen fruits
## rice                                         0     0          0             0
## veggies                                      0     0          0             0
## loaf                                         0     0          0             0
## coke                                         0     0          0             0
## yogurt                                       0     0          0             0
## vegetables                                   0     0          0             0
## mineral water                                0     0          0             0
## Plastic bags                                 0     0          0             0
## tropical fruit                               0     0          0             0
## marinated meat                               0     0          0             0
## pies/pasties                                 0     0          0             0
## newspapers                                   0     0          0             0
## citrus                                       0     0          0             0
## whipped/sour cream                           0     0          0             0
## heinken                                      0     0          0             0
## green tea                                    0     0          0             0
## pip fruit                                    0     0          0             0
## brown bread                                  0     0          0             0
## fruit/vegetable juice                        0     0          0             0
## domestic eggs                                0     0          0             0
## coffee                                       0     0          0             0
## margarine                                    0     0          0             0
## beef                                         0     0          0             0
## curd                                         0     0          0             0
## butter                                       0     0          0             0
## marinated meats                              0     0          0             0
## napkins                                      0     0          0             0
## halal meat                                   0     0          0             0
## chocolate                                    0     0          0             0
## frozen vegetables                            0     0          0             0
## chicken                                      0     0          0             0
## white bread                                  0     0          0             0
## cream cheese                                 0     0          0             0
## waffles                                      0     0          0             0
## dessert                                      0     0          0             0
## salty snack                                  0     0          0             0
## long life bakery product                     0     0          0             0
## berries                                      0     0          0             0
## hamburger meat                               0     0          0             0
## sugar                                        0     0          0             0
## hygiene articles                             0     0          0             0
## UHT-milk                                     0     0          0             0
## onions                                       0     0          0             0
## candy                                        0     0          0             0
## specialty chocolate                          0     0          0             0
## butter milk                                  0     0          0             0
## oil                                          0     0          0             0
## frozen meals                                 0     0          0             0
## misc. beverages                              0     0          0             0
## specialty bar                                0     0          0             0
## ham                                          0     0          0             0
## beverages                                    0     0          0             0
## meat                                         0     0          0             0
## ice cream                                    0     0          0             0
## sliced cheese                                0     0          0             0
## hard cheese                                  0     0          0             0
## noodles                                      0     0          0             0
## grapes                                       0     0          0             0
## cat food                                     0     0          0             0
## chewing gum                                  0     0          0             0
## soda                                         0     0          0             0
## detergent                                    0     0          0             0
## red/blush wine                               0     0          0             0
## white wine                                   0     0          0             0
## turkey                                       0     0          0             0
## dishes                                       0     0          0             0
## bottled water                                0     0          0             0
## flour                                        0     0          0             0
## semi-finished bread                          0     0          0             0
## baking powder                                0     0          0             0
## pickled vegetables                           0     0          0             0
## herbs                                        0     0          0             0
## tropical herbs                               0     0          0             0
## soft cheese                                  0     0          0             0
## tea                                          0     0          0             0
## processed cheese                             0     0          0             0
## sausage                                      0     0          0             0
## pasta                                        0     0          0             0
## citrus herbs                                 0     0          0             0
## potted plants                                0     0          0             0
## canned fish                                  0     0          0             0
## seasonal products                            0     0          0             0
## cake bar                                     0     0          0             0
## carrots                                      0     0          0             0
## mustard                                      0     0          0             0
## packaged fruit/vegetables                    0     0          0             0
## spread cheese                                0     0          0             0
## frozen dessert                               0     0          0             0
## frozen fish                                  0     0          0             0
## cling film/bags                              0     0          0             0
## salt                                         0     0          0             0
## liquor                                       0     0          0             0
## canned vegetables                            0     0          0             0
## bottled beer                                 0     0          0             0
## flower (seeds)                               0     0          0             0
## cooking oil                                  0     0          0             0
## dish cleaner                                 0     0          0             0
## condensed milk                               0     0          0             0
## roll products                                0     0          0             0
## photo/film                                   0     0          0             0
## pet care                                     0     0          0             0
## chocolate marshmallow                        0     0          0             0
## herbs/vegetable juice                        0     0          0             0
## whole milk                                   0     0          0             0
## candles                                      0     0          0             0
## mayonnaise                                   0     0          0             0
## Instant food products                        0     0          0             0
## sweet spreads                                0     0          0             0
## liquor (appetizer)                           0     0          0             0
## specialty cheese                             0     0          0             0
## frozen potato products                       0     0          0             0
## house keeping products                       0     0          0             0
## dog food                                     0     0          0             0
## soy                                          0     0          0             0
## instant coffee                               0     0          0             0
## pip herbs                                    0     0          0             0
## zwieback                                     0     0          0             0
## finished products                            0     0          0             0
## popcorn                                      0     0          0             0
## vinegar                                      0     0          0             0
## soups                                        0     0          0             0
## female sanitary products                     0     0          0             0
## sparkling wine                               0     0          0             0
## dental care                                  0     0          0             0
## cereals                                      0     0          0             0
## kitchen towels                               0     0          0             0
## curd cheese                                  0     0          0             0
## other vegetables                             0     0          0             0
## rolls/buns                                   0     0          0             0
## softener                                     0     0          0             0
## cleaner                                      0     0          0             0
## spices                                       0     0          0             0
## jam                                          0     0          0             0
## sauces                                       0     0          0             0
## rum                                          0     0          0             0
## liver loaf                                   0     0          0             0
## male cosmetics                               0     0          0             0
## meat spreads                                 0     0          0             0
## packaged herbs/vegetables                    0     0          0             0
## brandy                                       0     0          0             0
## ketchup                                      0     0          0             0
## abrasive cleaner                             0     0          0             0
## light bulbs                                  0     0          0             0
## artif. sweetener                             0     0          0             0
## nuts/prunes                                  0     0          0             0
## specialty fat                                0     0          0             0
## skin care                                    0     0          0             0
## fish                                         0     0          0             0
## potato products                              0     0          0             0
## root vegetables                              0     0          0             0
## snack products                               0     0          0             0
## nut snack                                    0     0          0             0
## soap                                         0     0          0             0
## syrup                                        0     0          0             0
## bathroom cleaner                             0     0          0             0
## canned fruit                                 0     0          0             0
## cookware                                     0     0          0             0
## cooking chocolate                            0     0          0             0
## tidbits                                      0     0          0             0
## cocoa drinks                                 0     0          0             0
## pudding powder                               0     0          0             0
## ready soups                                  0     0          0             0
## organic marinated meat                       0     0          0             0
## flower soil/fertilizer                       0     0          0             0
## organic products                             0     0          0             0
## pot plants                                   0     0          0             0
## prosecco                                     0     0          0             0
## frankfurter                                  0     0          0             0
## decalcifier                                  0     0          0             0
## honey                                        0     0          0             0
## specialty vegetables                         0     0          0             0
## cream                                        0     0          0             0
## hair spray                                   0     0          0             0
## frozen fruits                                0     0          0             0
## rubbing alcohol                              0     0          0             0
## liqueur                                      0     0          0             0
## make up remover                              0     0          0             0
## salad dressing                               0     0          0             0
## frozen chicken                               0     0          0             0
## whisky                                       0     0          0             0
## baby cosmetics                               0     0          0             0
## toilet cleaner                               0     0          0             0
## bags                                         0     0          0             0
## canned herbs                                 0     0          0             0
## kitchen utensil                              0     0          0             0
## preservation products                        0     0          0             0
## baby food                                    0     0          0             0
## frozen herbss                                0     0          0             0
## organic sausage                              0     0          0             0
## sound storage medium                         0     0          0             0
##                           rubbing alcohol liqueur make up remover
## rice                                    0       0               0
## veggies                                 0       0               0
## loaf                                    0       0               0
## coke                                    0       0               0
## yogurt                                  0       0               0
## vegetables                              0       0               0
## mineral water                           0       0               0
## Plastic bags                            0       0               0
## tropical fruit                          0       0               0
## marinated meat                          0       0               0
## pies/pasties                            0       0               0
## newspapers                              0       0               0
## citrus                                  0       0               0
## whipped/sour cream                      0       0               0
## heinken                                 0       0               0
## green tea                               0       0               0
## pip fruit                               0       0               0
## brown bread                             0       0               0
## fruit/vegetable juice                   0       0               0
## domestic eggs                           0       0               0
## coffee                                  0       0               0
## margarine                               0       0               0
## beef                                    0       0               0
## curd                                    0       0               0
## butter                                  0       0               0
## marinated meats                         0       0               0
## napkins                                 0       0               0
## halal meat                              0       0               0
## chocolate                               0       0               0
## frozen vegetables                       0       0               0
## chicken                                 0       0               0
## white bread                             0       0               0
## cream cheese                            0       0               0
## waffles                                 0       0               0
## dessert                                 0       0               0
## salty snack                             0       0               0
## long life bakery product                0       0               0
## berries                                 0       0               0
## hamburger meat                          0       0               0
## sugar                                   0       0               0
## hygiene articles                        0       0               0
## UHT-milk                                0       0               0
## onions                                  0       0               0
## candy                                   0       0               0
## specialty chocolate                     0       0               0
## butter milk                             0       0               0
## oil                                     0       0               0
## frozen meals                            0       0               0
## misc. beverages                         0       0               0
## specialty bar                           0       0               0
## ham                                     0       0               0
## beverages                               0       0               0
## meat                                    0       0               0
## ice cream                               0       0               0
## sliced cheese                           0       0               0
## hard cheese                             0       0               0
## noodles                                 0       0               0
## grapes                                  0       0               0
## cat food                                0       0               0
## chewing gum                             0       0               0
## soda                                    0       0               0
## detergent                               0       0               0
## red/blush wine                          0       0               0
## white wine                              0       0               0
## turkey                                  0       0               0
## dishes                                  0       0               0
## bottled water                           0       0               0
## flour                                   0       0               0
## semi-finished bread                     0       0               0
## baking powder                           0       0               0
## pickled vegetables                      0       0               0
## herbs                                   0       0               0
## tropical herbs                          0       0               0
## soft cheese                             0       0               0
## tea                                     0       0               0
## processed cheese                        0       0               0
## sausage                                 0       0               0
## pasta                                   0       0               0
## citrus herbs                            0       0               0
## potted plants                           0       0               0
## canned fish                             0       0               0
## seasonal products                       0       0               0
## cake bar                                0       0               0
## carrots                                 0       0               0
## mustard                                 0       0               0
## packaged fruit/vegetables               0       0               0
## spread cheese                           0       0               0
## frozen dessert                          0       0               0
## frozen fish                             0       0               0
## cling film/bags                         0       0               0
## salt                                    0       0               0
## liquor                                  0       0               0
## canned vegetables                       0       0               0
## bottled beer                            0       0               0
## flower (seeds)                          0       0               0
## cooking oil                             0       0               0
## dish cleaner                            0       0               0
## condensed milk                          0       0               0
## roll products                           0       0               0
## photo/film                              0       0               0
## pet care                                0       0               0
## chocolate marshmallow                   0       0               0
## herbs/vegetable juice                   0       0               0
## whole milk                              0       0               0
## candles                                 0       0               0
## mayonnaise                              0       0               0
## Instant food products                   0       0               0
## sweet spreads                           0       0               0
## liquor (appetizer)                      0       0               0
## specialty cheese                        0       0               0
## frozen potato products                  0       0               0
## house keeping products                  0       0               0
## dog food                                0       0               0
## soy                                     0       0               0
## instant coffee                          0       0               0
## pip herbs                               0       0               0
## zwieback                                0       0               0
## finished products                       0       0               0
## popcorn                                 0       0               0
## vinegar                                 0       0               0
## soups                                   0       0               0
## female sanitary products                0       0               0
## sparkling wine                          0       0               0
## dental care                             0       0               0
## cereals                                 0       0               0
## kitchen towels                          0       0               0
## curd cheese                             0       0               0
## other vegetables                        0       0               0
## rolls/buns                              0       0               0
## softener                                0       0               0
## cleaner                                 0       0               0
## spices                                  0       0               0
## jam                                     0       0               0
## sauces                                  0       0               0
## rum                                     0       0               0
## liver loaf                              0       0               0
## male cosmetics                          0       0               0
## meat spreads                            0       0               0
## packaged herbs/vegetables               0       0               0
## brandy                                  0       0               0
## ketchup                                 0       0               0
## abrasive cleaner                        0       0               0
## light bulbs                             0       0               0
## artif. sweetener                        0       0               0
## nuts/prunes                             0       0               0
## specialty fat                           0       0               0
## skin care                               0       0               0
## fish                                    0       0               0
## potato products                         0       0               0
## root vegetables                         0       0               0
## snack products                          0       0               0
## nut snack                               0       0               0
## soap                                    0       0               0
## syrup                                   0       0               0
## bathroom cleaner                        0       0               0
## canned fruit                            0       0               0
## cookware                                0       0               0
## cooking chocolate                       0       0               0
## tidbits                                 0       0               0
## cocoa drinks                            0       0               0
## pudding powder                          0       0               0
## ready soups                             0       0               0
## organic marinated meat                  0       0               0
## flower soil/fertilizer                  0       0               0
## organic products                        0       0               0
## pot plants                              0       0               0
## prosecco                                0       0               0
## frankfurter                             0       0               0
## decalcifier                             0       0               0
## honey                                   0       0               0
## specialty vegetables                    0       0               0
## cream                                   0       0               0
## hair spray                              0       0               0
## frozen fruits                           0       0               0
## rubbing alcohol                         0       0               0
## liqueur                                 0       0               0
## make up remover                         0       0               0
## salad dressing                          0       0               0
## frozen chicken                          0       0               0
## whisky                                  0       0               0
## baby cosmetics                          0       0               0
## toilet cleaner                          0       0               0
## bags                                    0       0               0
## canned herbs                            0       0               0
## kitchen utensil                         0       0               0
## preservation products                   0       0               0
## baby food                               0       0               0
## frozen herbss                           0       0               0
## organic sausage                         0       0               0
## sound storage medium                    0       0               0
##                           salad dressing frozen chicken whisky baby cosmetics
## rice                                   0              0      0              0
## veggies                                0              0      0              0
## loaf                                   0              0      0              0
## coke                                   0              0      0              0
## yogurt                                 0              0      0              0
## vegetables                             0              0      0              0
## mineral water                          0              0      0              0
## Plastic bags                           0              0      0              0
## tropical fruit                         0              0      0              0
## marinated meat                         0              0      0              0
## pies/pasties                           0              0      0              0
## newspapers                             0              0      0              0
## citrus                                 0              0      0              0
## whipped/sour cream                     0              0      0              0
## heinken                                0              0      0              0
## green tea                              0              0      0              0
## pip fruit                              0              0      0              0
## brown bread                            0              0      0              0
## fruit/vegetable juice                  0              0      0              0
## domestic eggs                          0              0      0              0
## coffee                                 0              0      0              0
## margarine                              0              0      0              0
## beef                                   0              0      0              0
## curd                                   0              0      0              0
## butter                                 0              0      0              0
## marinated meats                        0              0      0              0
## napkins                                0              0      0              0
## halal meat                             0              0      0              0
## chocolate                              0              0      0              0
## frozen vegetables                      0              0      0              0
## chicken                                0              0      0              0
## white bread                            0              0      0              0
## cream cheese                           0              0      0              0
## waffles                                0              0      0              0
## dessert                                0              0      0              0
## salty snack                            0              0      0              0
## long life bakery product               0              0      0              0
## berries                                0              0      0              0
## hamburger meat                         0              0      0              0
## sugar                                  0              0      0              0
## hygiene articles                       0              0      0              0
## UHT-milk                               0              0      0              0
## onions                                 0              0      0              0
## candy                                  0              0      0              0
## specialty chocolate                    0              0      0              0
## butter milk                            0              0      0              0
## oil                                    0              0      0              0
## frozen meals                           0              0      0              0
## misc. beverages                        0              0      0              0
## specialty bar                          0              0      0              0
## ham                                    0              0      0              0
## beverages                              0              0      0              0
## meat                                   0              0      0              0
## ice cream                              0              0      0              0
## sliced cheese                          0              0      0              0
## hard cheese                            0              0      0              0
## noodles                                0              0      0              0
## grapes                                 0              0      0              0
## cat food                               0              0      0              0
## chewing gum                            0              0      0              0
## soda                                   0              0      0              0
## detergent                              0              0      0              0
## red/blush wine                         0              0      0              0
## white wine                             0              0      0              0
## turkey                                 0              0      0              0
## dishes                                 0              0      0              0
## bottled water                          0              0      0              0
## flour                                  0              0      0              0
## semi-finished bread                    0              0      0              0
## baking powder                          0              0      0              0
## pickled vegetables                     0              0      0              0
## herbs                                  0              0      0              0
## tropical herbs                         0              0      0              0
## soft cheese                            0              0      0              0
## tea                                    0              0      0              0
## processed cheese                       0              0      0              0
## sausage                                0              0      0              0
## pasta                                  0              0      0              0
## citrus herbs                           0              0      0              0
## potted plants                          0              0      0              0
## canned fish                            0              0      0              0
## seasonal products                      0              0      0              0
## cake bar                               0              0      0              0
## carrots                                0              0      0              0
## mustard                                0              0      0              0
## packaged fruit/vegetables              0              0      0              0
## spread cheese                          0              0      0              0
## frozen dessert                         0              0      0              0
## frozen fish                            0              0      0              0
## cling film/bags                        0              0      0              0
## salt                                   0              0      0              0
## liquor                                 0              0      0              0
## canned vegetables                      0              0      0              0
## bottled beer                           0              0      0              0
## flower (seeds)                         0              0      0              0
## cooking oil                            0              0      0              0
## dish cleaner                           0              0      0              0
## condensed milk                         0              0      0              0
## roll products                          0              0      0              0
## photo/film                             0              0      0              0
## pet care                               0              0      0              0
## chocolate marshmallow                  0              0      0              0
## herbs/vegetable juice                  0              0      0              0
## whole milk                             0              0      0              0
## candles                                0              0      0              0
## mayonnaise                             0              0      0              0
## Instant food products                  0              0      0              0
## sweet spreads                          0              0      0              0
## liquor (appetizer)                     0              0      0              0
## specialty cheese                       0              0      0              0
## frozen potato products                 0              0      0              0
## house keeping products                 0              0      0              0
## dog food                               0              0      0              0
## soy                                    0              0      0              0
## instant coffee                         0              0      0              0
## pip herbs                              0              0      0              0
## zwieback                               0              0      0              0
## finished products                      0              0      0              0
## popcorn                                0              0      0              0
## vinegar                                0              0      0              0
## soups                                  0              0      0              0
## female sanitary products               0              0      0              0
## sparkling wine                         0              0      0              0
## dental care                            0              0      0              0
## cereals                                0              0      0              0
## kitchen towels                         0              0      0              0
## curd cheese                            0              0      0              0
## other vegetables                       0              0      0              0
## rolls/buns                             0              0      0              0
## softener                               0              0      0              0
## cleaner                                0              0      0              0
## spices                                 0              0      0              0
## jam                                    0              0      0              0
## sauces                                 0              0      0              0
## rum                                    0              0      0              0
## liver loaf                             0              0      0              0
## male cosmetics                         0              0      0              0
## meat spreads                           0              0      0              0
## packaged herbs/vegetables              0              0      0              0
## brandy                                 0              0      0              0
## ketchup                                0              0      0              0
## abrasive cleaner                       0              0      0              0
## light bulbs                            0              0      0              0
## artif. sweetener                       0              0      0              0
## nuts/prunes                            0              0      0              0
## specialty fat                          0              0      0              0
## skin care                              0              0      0              0
## fish                                   0              0      0              0
## potato products                        0              0      0              0
## root vegetables                        0              0      0              0
## snack products                         0              0      0              0
## nut snack                              0              0      0              0
## soap                                   0              0      0              0
## syrup                                  0              0      0              0
## bathroom cleaner                       0              0      0              0
## canned fruit                           0              0      0              0
## cookware                               0              0      0              0
## cooking chocolate                      0              0      0              0
## tidbits                                0              0      0              0
## cocoa drinks                           0              0      0              0
## pudding powder                         0              0      0              0
## ready soups                            0              0      0              0
## organic marinated meat                 0              0      0              0
## flower soil/fertilizer                 0              0      0              0
## organic products                       0              0      0              0
## pot plants                             0              0      0              0
## prosecco                               0              0      0              0
## frankfurter                            0              0      0              0
## decalcifier                            0              0      0              0
## honey                                  0              0      0              0
## specialty vegetables                   0              0      0              0
## cream                                  0              0      0              0
## hair spray                             0              0      0              0
## frozen fruits                          0              0      0              0
## rubbing alcohol                        0              0      0              0
## liqueur                                0              0      0              0
## make up remover                        0              0      0              0
## salad dressing                         0              0      0              0
## frozen chicken                         0              0      0              0
## whisky                                 0              0      0              0
## baby cosmetics                         0              0      0              0
## toilet cleaner                         0              0      0              0
## bags                                   0              0      0              0
## canned herbs                           0              0      0              0
## kitchen utensil                        0              0      0              0
## preservation products                  0              0      0              0
## baby food                              0              0      0              0
## frozen herbss                          0              0      0              0
## organic sausage                        0              0      0              0
## sound storage medium                   0              0      0              0
##                           toilet cleaner bags canned herbs kitchen utensil
## rice                                   0    0            0               0
## veggies                                0    0            0               0
## loaf                                   0    0            0               0
## coke                                   0    0            0               0
## yogurt                                 0    0            0               0
## vegetables                             0    0            0               0
## mineral water                          0    0            0               0
## Plastic bags                           0    0            0               0
## tropical fruit                         0    0            0               0
## marinated meat                         0    0            0               0
## pies/pasties                           0    0            0               0
## newspapers                             0    0            0               0
## citrus                                 0    0            0               0
## whipped/sour cream                     0    0            0               0
## heinken                                0    0            0               0
## green tea                              0    0            0               0
## pip fruit                              0    0            0               0
## brown bread                            0    0            0               0
## fruit/vegetable juice                  0    0            0               0
## domestic eggs                          0    0            0               0
## coffee                                 0    0            0               0
## margarine                              0    0            0               0
## beef                                   0    0            0               0
## curd                                   0    0            0               0
## butter                                 0    0            0               0
## marinated meats                        0    0            0               0
## napkins                                0    0            0               0
## halal meat                             0    0            0               0
## chocolate                              0    0            0               0
## frozen vegetables                      0    0            0               0
## chicken                                0    0            0               0
## white bread                            0    0            0               0
## cream cheese                           0    0            0               0
## waffles                                0    0            0               0
## dessert                                0    0            0               0
## salty snack                            0    0            0               0
## long life bakery product               0    0            0               0
## berries                                0    0            0               0
## hamburger meat                         0    0            0               0
## sugar                                  0    0            0               0
## hygiene articles                       0    0            0               0
## UHT-milk                               0    0            0               0
## onions                                 0    0            0               0
## candy                                  0    0            0               0
## specialty chocolate                    0    0            0               0
## butter milk                            0    0            0               0
## oil                                    0    0            0               0
## frozen meals                           0    0            0               0
## misc. beverages                        0    0            0               0
## specialty bar                          0    0            0               0
## ham                                    0    0            0               0
## beverages                              0    0            0               0
## meat                                   0    0            0               0
## ice cream                              0    0            0               0
## sliced cheese                          0    0            0               0
## hard cheese                            0    0            0               0
## noodles                                0    0            0               0
## grapes                                 0    0            0               0
## cat food                               0    0            0               0
## chewing gum                            0    0            0               0
## soda                                   0    0            0               0
## detergent                              0    0            0               0
## red/blush wine                         0    0            0               0
## white wine                             0    0            0               0
## turkey                                 0    0            0               0
## dishes                                 0    0            0               0
## bottled water                          0    0            0               0
## flour                                  0    0            0               0
## semi-finished bread                    0    0            0               0
## baking powder                          0    0            0               0
## pickled vegetables                     0    0            0               0
## herbs                                  0    0            0               0
## tropical herbs                         0    0            0               0
## soft cheese                            0    0            0               0
## tea                                    0    0            0               0
## processed cheese                       0    0            0               0
## sausage                                0    0            0               0
## pasta                                  0    0            0               0
## citrus herbs                           0    0            0               0
## potted plants                          0    0            0               0
## canned fish                            0    0            0               0
## seasonal products                      0    0            0               0
## cake bar                               0    0            0               0
## carrots                                0    0            0               0
## mustard                                0    0            0               0
## packaged fruit/vegetables              0    0            0               0
## spread cheese                          0    0            0               0
## frozen dessert                         0    0            0               0
## frozen fish                            0    0            0               0
## cling film/bags                        0    0            0               0
## salt                                   0    0            0               0
## liquor                                 0    0            0               0
## canned vegetables                      0    0            0               0
## bottled beer                           0    0            0               0
## flower (seeds)                         0    0            0               0
## cooking oil                            0    0            0               0
## dish cleaner                           0    0            0               0
## condensed milk                         0    0            0               0
## roll products                          0    0            0               0
## photo/film                             0    0            0               0
## pet care                               0    0            0               0
## chocolate marshmallow                  0    0            0               0
## herbs/vegetable juice                  0    0            0               0
## whole milk                             0    0            0               0
## candles                                0    0            0               0
## mayonnaise                             0    0            0               0
## Instant food products                  0    0            0               0
## sweet spreads                          0    0            0               0
## liquor (appetizer)                     0    0            0               0
## specialty cheese                       0    0            0               0
## frozen potato products                 0    0            0               0
## house keeping products                 0    0            0               0
## dog food                               0    0            0               0
## soy                                    0    0            0               0
## instant coffee                         0    0            0               0
## pip herbs                              0    0            0               0
## zwieback                               0    0            0               0
## finished products                      0    0            0               0
## popcorn                                0    0            0               0
## vinegar                                0    0            0               0
## soups                                  0    0            0               0
## female sanitary products               0    0            0               0
## sparkling wine                         0    0            0               0
## dental care                            0    0            0               0
## cereals                                0    0            0               0
## kitchen towels                         0    0            0               0
## curd cheese                            0    0            0               0
## other vegetables                       0    0            0               0
## rolls/buns                             0    0            0               0
## softener                               0    0            0               0
## cleaner                                0    0            0               0
## spices                                 0    0            0               0
## jam                                    0    0            0               0
## sauces                                 0    0            0               0
## rum                                    0    0            0               0
## liver loaf                             0    0            0               0
## male cosmetics                         0    0            0               0
## meat spreads                           0    0            0               0
## packaged herbs/vegetables              0    0            0               0
## brandy                                 0    0            0               0
## ketchup                                0    0            0               0
## abrasive cleaner                       0    0            0               0
## light bulbs                            0    0            0               0
## artif. sweetener                       0    0            0               0
## nuts/prunes                            0    0            0               0
## specialty fat                          0    0            0               0
## skin care                              0    0            0               0
## fish                                   0    0            0               0
## potato products                        0    0            0               0
## root vegetables                        0    0            0               0
## snack products                         0    0            0               0
## nut snack                              0    0            0               0
## soap                                   0    0            0               0
## syrup                                  0    0            0               0
## bathroom cleaner                       0    0            0               0
## canned fruit                           0    0            0               0
## cookware                               0    0            0               0
## cooking chocolate                      0    0            0               0
## tidbits                                0    0            0               0
## cocoa drinks                           0    0            0               0
## pudding powder                         0    0            0               0
## ready soups                            0    0            0               0
## organic marinated meat                 0    0            0               0
## flower soil/fertilizer                 0    0            0               0
## organic products                       0    0            0               0
## pot plants                             0    0            0               0
## prosecco                               0    0            0               0
## frankfurter                            0    0            0               0
## decalcifier                            0    0            0               0
## honey                                  0    0            0               0
## specialty vegetables                   0    0            0               0
## cream                                  0    0            0               0
## hair spray                             0    0            0               0
## frozen fruits                          0    0            0               0
## rubbing alcohol                        0    0            0               0
## liqueur                                0    0            0               0
## make up remover                        0    0            0               0
## salad dressing                         0    0            0               0
## frozen chicken                         0    0            0               0
## whisky                                 0    0            0               0
## baby cosmetics                         0    0            0               0
## toilet cleaner                         0    0            0               0
## bags                                   0    0            0               0
## canned herbs                           0    0            0               0
## kitchen utensil                        0    0            0               0
## preservation products                  0    0            0               0
## baby food                              0    0            0               0
## frozen herbss                          0    0            0               0
## organic sausage                        0    0            0               0
## sound storage medium                   0    0            0               0
##                           preservation products baby food frozen herbss
## rice                                          0         0             0
## veggies                                       0         0             0
## loaf                                          0         0             0
## coke                                          0         0             0
## yogurt                                        0         0             0
## vegetables                                    0         0             0
## mineral water                                 0         0             0
## Plastic bags                                  0         0             0
## tropical fruit                                0         0             0
## marinated meat                                0         0             0
## pies/pasties                                  0         0             0
## newspapers                                    0         0             0
## citrus                                        0         0             0
## whipped/sour cream                            0         0             0
## heinken                                       0         0             0
## green tea                                     0         0             0
## pip fruit                                     0         0             0
## brown bread                                   0         0             0
## fruit/vegetable juice                         0         0             0
## domestic eggs                                 0         0             0
## coffee                                        0         0             0
## margarine                                     0         0             0
## beef                                          0         0             0
## curd                                          0         0             0
## butter                                        0         0             0
## marinated meats                               0         0             0
## napkins                                       0         0             0
## halal meat                                    0         0             0
## chocolate                                     0         0             0
## frozen vegetables                             0         0             0
## chicken                                       0         0             0
## white bread                                   0         0             0
## cream cheese                                  0         0             0
## waffles                                       0         0             0
## dessert                                       0         0             0
## salty snack                                   0         0             0
## long life bakery product                      0         0             0
## berries                                       0         0             0
## hamburger meat                                0         0             0
## sugar                                         0         0             0
## hygiene articles                              0         0             0
## UHT-milk                                      0         0             0
## onions                                        0         0             0
## candy                                         0         0             0
## specialty chocolate                           0         0             0
## butter milk                                   0         0             0
## oil                                           0         0             0
## frozen meals                                  0         0             0
## misc. beverages                               0         0             0
## specialty bar                                 0         0             0
## ham                                           0         0             0
## beverages                                     0         0             0
## meat                                          0         0             0
## ice cream                                     0         0             0
## sliced cheese                                 0         0             0
## hard cheese                                   0         0             0
## noodles                                       0         0             0
## grapes                                        0         0             0
## cat food                                      0         0             0
## chewing gum                                   0         0             0
## soda                                          0         0             0
## detergent                                     0         0             0
## red/blush wine                                0         0             0
## white wine                                    0         0             0
## turkey                                        0         0             0
## dishes                                        0         0             0
## bottled water                                 0         0             0
## flour                                         0         0             0
## semi-finished bread                           0         0             0
## baking powder                                 0         0             0
## pickled vegetables                            0         0             0
## herbs                                         0         0             0
## tropical herbs                                0         0             0
## soft cheese                                   0         0             0
## tea                                           0         0             0
## processed cheese                              0         0             0
## sausage                                       0         0             0
## pasta                                         0         0             0
## citrus herbs                                  0         0             0
## potted plants                                 0         0             0
## canned fish                                   0         0             0
## seasonal products                             0         0             0
## cake bar                                      0         0             0
## carrots                                       0         0             0
## mustard                                       0         0             0
## packaged fruit/vegetables                     0         0             0
## spread cheese                                 0         0             0
## frozen dessert                                0         0             0
## frozen fish                                   0         0             0
## cling film/bags                               0         0             0
## salt                                          0         0             0
## liquor                                        0         0             0
## canned vegetables                             0         0             0
## bottled beer                                  0         0             0
## flower (seeds)                                0         0             0
## cooking oil                                   0         0             0
## dish cleaner                                  0         0             0
## condensed milk                                0         0             0
## roll products                                 0         0             0
## photo/film                                    0         0             0
## pet care                                      0         0             0
## chocolate marshmallow                         0         0             0
## herbs/vegetable juice                         0         0             0
## whole milk                                    0         0             0
## candles                                       0         0             0
## mayonnaise                                    0         0             0
## Instant food products                         0         0             0
## sweet spreads                                 0         0             0
## liquor (appetizer)                            0         0             0
## specialty cheese                              0         0             0
## frozen potato products                        0         0             0
## house keeping products                        0         0             0
## dog food                                      0         0             0
## soy                                           0         0             0
## instant coffee                                0         0             0
## pip herbs                                     0         0             0
## zwieback                                      0         0             0
## finished products                             0         0             0
## popcorn                                       0         0             0
## vinegar                                       0         0             0
## soups                                         0         0             0
## female sanitary products                      0         0             0
## sparkling wine                                0         0             0
## dental care                                   0         0             0
## cereals                                       0         0             0
## kitchen towels                                0         0             0
## curd cheese                                   0         0             0
## other vegetables                              0         0             0
## rolls/buns                                    0         0             0
## softener                                      0         0             0
## cleaner                                       0         0             0
## spices                                        0         0             0
## jam                                           0         0             0
## sauces                                        0         0             0
## rum                                           0         0             0
## liver loaf                                    0         0             0
## male cosmetics                                0         0             0
## meat spreads                                  0         0             0
## packaged herbs/vegetables                     0         0             0
## brandy                                        0         0             0
## ketchup                                       0         0             0
## abrasive cleaner                              0         0             0
## light bulbs                                   0         0             0
## artif. sweetener                              0         0             0
## nuts/prunes                                   0         0             0
## specialty fat                                 0         0             0
## skin care                                     0         0             0
## fish                                          0         0             0
## potato products                               0         0             0
## root vegetables                               0         0             0
## snack products                                0         0             0
## nut snack                                     0         0             0
## soap                                          0         0             0
## syrup                                         0         0             0
## bathroom cleaner                              0         0             0
## canned fruit                                  0         0             0
## cookware                                      0         0             0
## cooking chocolate                             0         0             0
## tidbits                                       0         0             0
## cocoa drinks                                  0         0             0
## pudding powder                                0         0             0
## ready soups                                   0         0             0
## organic marinated meat                        0         0             0
## flower soil/fertilizer                        0         0             0
## organic products                              0         0             0
## pot plants                                    0         0             0
## prosecco                                      0         0             0
## frankfurter                                   0         0             0
## decalcifier                                   0         0             0
## honey                                         0         0             0
## specialty vegetables                          0         0             0
## cream                                         0         0             0
## hair spray                                    0         0             0
## frozen fruits                                 0         0             0
## rubbing alcohol                               0         0             0
## liqueur                                       0         0             0
## make up remover                               0         0             0
## salad dressing                                0         0             0
## frozen chicken                                0         0             0
## whisky                                        0         0             0
## baby cosmetics                                0         0             0
## toilet cleaner                                0         0             0
## bags                                          0         0             0
## canned herbs                                  0         0             0
## kitchen utensil                               0         0             0
## preservation products                         0         0             0
## baby food                                     0         0             0
## frozen herbss                                 0         0             0
## organic sausage                               0         0             0
## sound storage medium                          0         0             0
##                           organic sausage sound storage medium
## rice                                    0                    0
## veggies                                 0                    0
## loaf                                    0                    0
## coke                                    0                    0
## yogurt                                  0                    0
## vegetables                              0                    0
## mineral water                           0                    0
## Plastic bags                            0                    0
## tropical fruit                          0                    0
## marinated meat                          0                    0
## pies/pasties                            0                    0
## newspapers                              0                    0
## citrus                                  0                    0
## whipped/sour cream                      0                    0
## heinken                                 0                    0
## green tea                               0                    0
## pip fruit                               0                    0
## brown bread                             0                    0
## fruit/vegetable juice                   0                    0
## domestic eggs                           0                    0
## coffee                                  0                    0
## margarine                               0                    0
## beef                                    0                    0
## curd                                    0                    0
## butter                                  0                    0
## marinated meats                         0                    0
## napkins                                 0                    0
## halal meat                              0                    0
## chocolate                               0                    0
## frozen vegetables                       0                    0
## chicken                                 0                    0
## white bread                             0                    0
## cream cheese                            0                    0
## waffles                                 0                    0
## dessert                                 0                    0
## salty snack                             0                    0
## long life bakery product                0                    0
## berries                                 0                    0
## hamburger meat                          0                    0
## sugar                                   0                    0
## hygiene articles                        0                    0
## UHT-milk                                0                    0
## onions                                  0                    0
## candy                                   0                    0
## specialty chocolate                     0                    0
## butter milk                             0                    0
## oil                                     0                    0
## frozen meals                            0                    0
## misc. beverages                         0                    0
## specialty bar                           0                    0
## ham                                     0                    0
## beverages                               0                    0
## meat                                    0                    0
## ice cream                               0                    0
## sliced cheese                           0                    0
## hard cheese                             0                    0
## noodles                                 0                    0
## grapes                                  0                    0
## cat food                                0                    0
## chewing gum                             0                    0
## soda                                    0                    0
## detergent                               0                    0
## red/blush wine                          0                    0
## white wine                              0                    0
## turkey                                  0                    0
## dishes                                  0                    0
## bottled water                           0                    0
## flour                                   0                    0
## semi-finished bread                     0                    0
## baking powder                           0                    0
## pickled vegetables                      0                    0
## herbs                                   0                    0
## tropical herbs                          0                    0
## soft cheese                             0                    0
## tea                                     0                    0
## processed cheese                        0                    0
## sausage                                 0                    0
## pasta                                   0                    0
## citrus herbs                            0                    0
## potted plants                           0                    0
## canned fish                             0                    0
## seasonal products                       0                    0
## cake bar                                0                    0
## carrots                                 0                    0
## mustard                                 0                    0
## packaged fruit/vegetables               0                    0
## spread cheese                           0                    0
## frozen dessert                          0                    0
## frozen fish                             0                    0
## cling film/bags                         0                    0
## salt                                    0                    0
## liquor                                  0                    0
## canned vegetables                       0                    0
## bottled beer                            0                    0
## flower (seeds)                          0                    0
## cooking oil                             0                    0
## dish cleaner                            0                    0
## condensed milk                          0                    0
## roll products                           0                    0
## photo/film                              0                    0
## pet care                                0                    0
## chocolate marshmallow                   0                    0
## herbs/vegetable juice                   0                    0
## whole milk                              0                    0
## candles                                 0                    0
## mayonnaise                              0                    0
## Instant food products                   0                    0
## sweet spreads                           0                    0
## liquor (appetizer)                      0                    0
## specialty cheese                        0                    0
## frozen potato products                  0                    0
## house keeping products                  0                    0
## dog food                                0                    0
## soy                                     0                    0
## instant coffee                          0                    0
## pip herbs                               0                    0
## zwieback                                0                    0
## finished products                       0                    0
## popcorn                                 0                    0
## vinegar                                 0                    0
## soups                                   0                    0
## female sanitary products                0                    0
## sparkling wine                          0                    0
## dental care                             0                    0
## cereals                                 0                    0
## kitchen towels                          0                    0
## curd cheese                             0                    0
## other vegetables                        0                    0
## rolls/buns                              0                    0
## softener                                0                    0
## cleaner                                 0                    0
## spices                                  0                    0
## jam                                     0                    0
## sauces                                  0                    0
## rum                                     0                    0
## liver loaf                              0                    0
## male cosmetics                          0                    0
## meat spreads                            0                    0
## packaged herbs/vegetables               0                    0
## brandy                                  0                    0
## ketchup                                 0                    0
## abrasive cleaner                        0                    0
## light bulbs                             0                    0
## artif. sweetener                        0                    0
## nuts/prunes                             0                    0
## specialty fat                           0                    0
## skin care                               0                    0
## fish                                    0                    0
## potato products                         0                    0
## root vegetables                         0                    0
## snack products                          0                    0
## nut snack                               0                    0
## soap                                    0                    0
## syrup                                   0                    0
## bathroom cleaner                        0                    0
## canned fruit                            0                    0
## cookware                                0                    0
## cooking chocolate                       0                    0
## tidbits                                 0                    0
## cocoa drinks                            0                    0
## pudding powder                          0                    0
## ready soups                             0                    0
## organic marinated meat                  0                    0
## flower soil/fertilizer                  0                    0
## organic products                        0                    0
## pot plants                              0                    0
## prosecco                                0                    0
## frankfurter                             0                    0
## decalcifier                             0                    0
## honey                                   0                    0
## specialty vegetables                    0                    0
## cream                                   0                    0
## hair spray                              0                    0
## frozen fruits                           0                    0
## rubbing alcohol                         0                    0
## liqueur                                 0                    0
## make up remover                         0                    0
## salad dressing                          0                    0
## frozen chicken                          0                    0
## whisky                                  0                    0
## baby cosmetics                          0                    0
## toilet cleaner                          0                    0
## bags                                    0                    0
## canned herbs                            0                    0
## kitchen utensil                         0                    0
## preservation products                   0                    0
## baby food                               0                    0
## frozen herbss                           0                    0
## organic sausage                         0                    0
## sound storage medium                    0                    0

Calculate confidence

confidence_tab <- crossTable(shopping, measure = "support", sort = TRUE)
round(confidence_tab, 2)
##                           rice veggies loaf coke yogurt vegetables
## rice                      0.26    0.07 0.05 0.04   0.06       0.05
## veggies                   0.07    0.17 0.04 0.03   0.04       0.04
## loaf                      0.05    0.04 0.16 0.03   0.03       0.02
## coke                      0.04    0.03 0.03 0.15   0.02       0.02
## yogurt                    0.06    0.04 0.03 0.02   0.14       0.03
## vegetables                0.05    0.04 0.02 0.02   0.03       0.12
## mineral water             0.03    0.02 0.02 0.03   0.02       0.01
## Plastic bags              0.02    0.02 0.02 0.02   0.02       0.01
## tropical fruit            0.04    0.03 0.02 0.02   0.03       0.02
## marinated meat            0.03    0.02 0.03 0.02   0.02       0.01
## pies/pasties              0.03    0.02 0.02 0.02   0.02       0.01
## newspapers                0.03    0.02 0.02 0.01   0.01       0.01
## citrus                    0.03    0.03 0.01 0.01   0.02       0.02
## whipped/sour cream        0.03    0.03 0.01 0.01   0.02       0.02
## heinken                   0.02    0.01 0.01 0.01   0.01       0.01
## green tea                 0.01    0.01 0.01 0.01   0.00       0.00
## pip fruit                 0.03    0.02 0.01 0.01   0.02       0.01
## brown bread               0.02    0.02 0.01 0.01   0.01       0.01
## fruit/vegetable juice     0.02    0.02 0.01 0.02   0.02       0.01
## domestic eggs             0.03    0.02 0.01 0.01   0.01       0.01
## coffee                    0.02    0.01 0.01 0.01   0.01       0.01
## margarine                 0.02    0.02 0.01 0.01   0.01       0.01
## beef                      0.02    0.02 0.01 0.01   0.01       0.02
## curd                      0.03    0.02 0.01 0.01   0.02       0.01
## butter                    0.03    0.02 0.01 0.01   0.01       0.01
## marinated meats           0.02    0.01 0.02 0.01   0.01       0.01
## napkins                   0.02    0.01 0.01 0.01   0.01       0.01
## halal meat                0.02    0.02 0.01 0.01   0.01       0.01
## chocolate                 0.02    0.01 0.01 0.01   0.01       0.01
## frozen vegetables         0.02    0.02 0.01 0.01   0.01       0.01
## chicken                   0.02    0.02 0.01 0.01   0.01       0.01
## white bread               0.02    0.01 0.01 0.01   0.01       0.01
## cream cheese              0.02    0.01 0.01 0.01   0.01       0.01
## waffles                   0.01    0.01 0.01 0.01   0.01       0.01
## dessert                   0.01    0.01 0.01 0.01   0.01       0.01
## salty snack               0.01    0.01 0.00 0.01   0.01       0.01
## long life bakery product  0.01    0.01 0.01 0.01   0.01       0.01
## berries                   0.01    0.01 0.01 0.01   0.01       0.01
## hamburger meat            0.02    0.01 0.01 0.01   0.01       0.01
## sugar                     0.01    0.01 0.01 0.01   0.01       0.01
## hygiene articles          0.01    0.01 0.01 0.01   0.01       0.01
## UHT-milk                  0.00    0.01 0.01 0.01   0.01       0.01
## onions                    0.01    0.01 0.01 0.00   0.01       0.01
## candy                     0.01    0.01 0.01 0.01   0.01       0.00
## specialty chocolate       0.01    0.01 0.00 0.01   0.00       0.00
## butter milk               0.01    0.01 0.01 0.00   0.01       0.01
## oil                       0.01    0.01 0.00 0.00   0.01       0.01
## frozen meals              0.01    0.01 0.00 0.01   0.01       0.00
## misc. beverages           0.01    0.00 0.00 0.01   0.00       0.00
## specialty bar             0.01    0.00 0.00 0.01   0.00       0.00
## ham                       0.01    0.01 0.01 0.00   0.01       0.00
## beverages                 0.01    0.00 0.00 0.00   0.01       0.00
## meat                      0.01    0.01 0.01 0.00   0.00       0.01
## ice cream                 0.01    0.00 0.00 0.01   0.00       0.00
## sliced cheese             0.01    0.01 0.01 0.00   0.01       0.01
## hard cheese               0.01    0.01 0.01 0.00   0.01       0.01
## noodles                   0.01    0.00 0.00 0.00   0.00       0.01
## grapes                    0.01    0.01 0.00 0.00   0.00       0.00
## cat food                  0.01    0.01 0.00 0.00   0.01       0.00
## chewing gum               0.00    0.00 0.00 0.00   0.00       0.00
## soda                      0.01    0.00 0.00 0.00   0.00       0.00
## detergent                 0.01    0.01 0.00 0.00   0.00       0.00
## red/blush wine            0.00    0.00 0.00 0.00   0.00       0.00
## white wine                0.00    0.00 0.00 0.00   0.00       0.00
## turkey                    0.01    0.00 0.00 0.00   0.00       0.01
## dishes                    0.01    0.01 0.00 0.00   0.00       0.00
## bottled water             0.00    0.00 0.00 0.00   0.00       0.00
## flour                     0.01    0.01 0.00 0.00   0.00       0.00
## semi-finished bread       0.01    0.00 0.00 0.00   0.00       0.00
## baking powder             0.01    0.01 0.00 0.00   0.00       0.00
## pickled vegetables        0.01    0.01 0.00 0.00   0.00       0.00
## herbs                     0.01    0.01 0.00 0.00   0.00       0.01
## tropical herbs            0.00    0.00 0.00 0.00   0.00       0.00
## soft cheese               0.01    0.01 0.00 0.00   0.01       0.00
## tea                       0.01    0.00 0.00 0.00   0.00       0.00
## processed cheese          0.01    0.00 0.00 0.00   0.00       0.00
## sausage                   0.00    0.00 0.00 0.00   0.00       0.00
## pasta                     0.01    0.00 0.00 0.00   0.00       0.00
## citrus herbs              0.01    0.00 0.00 0.00   0.00       0.00
## potted plants             0.01    0.00 0.00 0.00   0.00       0.00
## canned fish               0.00    0.00 0.00 0.00   0.00       0.00
## seasonal products         0.00    0.00 0.00 0.00   0.00       0.00
## cake bar                  0.01    0.00 0.00 0.00   0.00       0.00
## carrots                   0.01    0.00 0.00 0.00   0.00       0.00
## mustard                   0.01    0.00 0.00 0.00   0.00       0.00
## packaged fruit/vegetables 0.00    0.00 0.00 0.00   0.00       0.00
## spread cheese             0.00    0.00 0.00 0.00   0.00       0.00
## frozen dessert            0.00    0.00 0.00 0.00   0.00       0.00
## frozen fish               0.00    0.00 0.00 0.00   0.00       0.00
## cling film/bags           0.00    0.00 0.00 0.00   0.00       0.00
## salt                      0.00    0.00 0.00 0.00   0.00       0.00
## liquor                    0.00    0.00 0.00 0.00   0.00       0.00
## canned vegetables         0.00    0.00 0.00 0.00   0.00       0.00
## bottled beer              0.00    0.00 0.00 0.00   0.00       0.00
## flower (seeds)            0.00    0.00 0.00 0.00   0.00       0.00
## cooking oil               0.00    0.00 0.00 0.00   0.00       0.00
## dish cleaner              0.00    0.00 0.00 0.00   0.00       0.00
## condensed milk            0.00    0.00 0.00 0.00   0.00       0.00
## roll products             0.00    0.00 0.00 0.00   0.00       0.00
## photo/film                0.00    0.00 0.00 0.00   0.00       0.00
## pet care                  0.00    0.00 0.00 0.00   0.00       0.00
## chocolate marshmallow     0.00    0.00 0.00 0.00   0.00       0.00
## herbs/vegetable juice     0.00    0.00 0.00 0.00   0.00       0.00
## whole milk                0.00    0.00 0.00 0.00   0.00       0.00
## candles                   0.00    0.00 0.00 0.00   0.00       0.00
## mayonnaise                0.00    0.00 0.00 0.00   0.00       0.00
## Instant food products     0.00    0.00 0.00 0.00   0.00       0.00
## sweet spreads             0.00    0.00 0.00 0.00   0.00       0.00
## liquor (appetizer)        0.00    0.00 0.00 0.00   0.00       0.00
## specialty cheese          0.00    0.00 0.00 0.00   0.00       0.00
## frozen potato products    0.00    0.00 0.00 0.00   0.00       0.00
## house keeping products    0.00    0.00 0.00 0.00   0.00       0.00
## dog food                  0.00    0.00 0.00 0.00   0.00       0.00
## soy                       0.00    0.00 0.00 0.00   0.00       0.00
## instant coffee            0.00    0.00 0.00 0.00   0.00       0.00
## pip herbs                 0.00    0.00 0.00 0.00   0.00       0.00
## zwieback                  0.00    0.00 0.00 0.00   0.00       0.00
## finished products         0.00    0.00 0.00 0.00   0.00       0.00
## popcorn                   0.00    0.00 0.00 0.00   0.00       0.00
## vinegar                   0.00    0.00 0.00 0.00   0.00       0.00
## soups                     0.00    0.00 0.00 0.00   0.00       0.00
## female sanitary products  0.00    0.00 0.00 0.00   0.00       0.00
## sparkling wine            0.00    0.00 0.00 0.00   0.00       0.00
## dental care               0.00    0.00 0.00 0.00   0.00       0.00
## cereals                   0.00    0.00 0.00 0.00   0.00       0.00
## kitchen towels            0.00    0.00 0.00 0.00   0.00       0.00
## curd cheese               0.00    0.00 0.00 0.00   0.00       0.00
## other vegetables          0.00    0.00 0.00 0.00   0.00       0.00
## rolls/buns                0.00    0.00 0.00 0.00   0.00       0.00
## softener                  0.00    0.00 0.00 0.00   0.00       0.00
## cleaner                   0.00    0.00 0.00 0.00   0.00       0.00
## spices                    0.00    0.00 0.00 0.00   0.00       0.00
## jam                       0.00    0.00 0.00 0.00   0.00       0.00
## sauces                    0.00    0.00 0.00 0.00   0.00       0.00
## rum                       0.00    0.00 0.00 0.00   0.00       0.00
## liver loaf                0.00    0.00 0.00 0.00   0.00       0.00
## male cosmetics            0.00    0.00 0.00 0.00   0.00       0.00
## meat spreads              0.00    0.00 0.00 0.00   0.00       0.00
## packaged herbs/vegetables 0.00    0.00 0.00 0.00   0.00       0.00
## brandy                    0.00    0.00 0.00 0.00   0.00       0.00
## ketchup                   0.00    0.00 0.00 0.00   0.00       0.00
## abrasive cleaner          0.00    0.00 0.00 0.00   0.00       0.00
## light bulbs               0.00    0.00 0.00 0.00   0.00       0.00
## artif. sweetener          0.00    0.00 0.00 0.00   0.00       0.00
## nuts/prunes               0.00    0.00 0.00 0.00   0.00       0.00
## specialty fat             0.00    0.00 0.00 0.00   0.00       0.00
## skin care                 0.00    0.00 0.00 0.00   0.00       0.00
## fish                      0.00    0.00 0.00 0.00   0.00       0.00
## potato products           0.00    0.00 0.00 0.00   0.00       0.00
## root vegetables           0.00    0.00 0.00 0.00   0.00       0.00
## snack products            0.00    0.00 0.00 0.00   0.00       0.00
## nut snack                 0.00    0.00 0.00 0.00   0.00       0.00
## soap                      0.00    0.00 0.00 0.00   0.00       0.00
## syrup                     0.00    0.00 0.00 0.00   0.00       0.00
## bathroom cleaner          0.00    0.00 0.00 0.00   0.00       0.00
## canned fruit              0.00    0.00 0.00 0.00   0.00       0.00
## cookware                  0.00    0.00 0.00 0.00   0.00       0.00
## cooking chocolate         0.00    0.00 0.00 0.00   0.00       0.00
## tidbits                   0.00    0.00 0.00 0.00   0.00       0.00
## cocoa drinks              0.00    0.00 0.00 0.00   0.00       0.00
## pudding powder            0.00    0.00 0.00 0.00   0.00       0.00
## ready soups               0.00    0.00 0.00 0.00   0.00       0.00
## organic marinated meat    0.00    0.00 0.00 0.00   0.00       0.00
## flower soil/fertilizer    0.00    0.00 0.00 0.00   0.00       0.00
## organic products          0.00    0.00 0.00 0.00   0.00       0.00
## pot plants                0.00    0.00 0.00 0.00   0.00       0.00
## prosecco                  0.00    0.00 0.00 0.00   0.00       0.00
## frankfurter               0.00    0.00 0.00 0.00   0.00       0.00
## decalcifier               0.00    0.00 0.00 0.00   0.00       0.00
## honey                     0.00    0.00 0.00 0.00   0.00       0.00
## specialty vegetables      0.00    0.00 0.00 0.00   0.00       0.00
## cream                     0.00    0.00 0.00 0.00   0.00       0.00
## hair spray                0.00    0.00 0.00 0.00   0.00       0.00
## frozen fruits             0.00    0.00 0.00 0.00   0.00       0.00
## rubbing alcohol           0.00    0.00 0.00 0.00   0.00       0.00
## liqueur                   0.00    0.00 0.00 0.00   0.00       0.00
## make up remover           0.00    0.00 0.00 0.00   0.00       0.00
## salad dressing            0.00    0.00 0.00 0.00   0.00       0.00
## frozen chicken            0.00    0.00 0.00 0.00   0.00       0.00
## whisky                    0.00    0.00 0.00 0.00   0.00       0.00
## baby cosmetics            0.00    0.00 0.00 0.00   0.00       0.00
## toilet cleaner            0.00    0.00 0.00 0.00   0.00       0.00
## bags                      0.00    0.00 0.00 0.00   0.00       0.00
## canned herbs              0.00    0.00 0.00 0.00   0.00       0.00
## kitchen utensil           0.00    0.00 0.00 0.00   0.00       0.00
## preservation products     0.00    0.00 0.00 0.00   0.00       0.00
## baby food                 0.00    0.00 0.00 0.00   0.00       0.00
## frozen herbss             0.00    0.00 0.00 0.00   0.00       0.00
## organic sausage           0.00    0.00 0.00 0.00   0.00       0.00
## sound storage medium      0.00    0.00 0.00 0.00   0.00       0.00
##                           mineral water Plastic bags tropical fruit
## rice                               0.03         0.02           0.04
## veggies                            0.02         0.02           0.03
## loaf                               0.02         0.02           0.02
## coke                               0.03         0.02           0.02
## yogurt                             0.02         0.02           0.03
## vegetables                         0.01         0.01           0.02
## mineral water                      0.10         0.01           0.02
## Plastic bags                       0.01         0.10           0.01
## tropical fruit                     0.02         0.01           0.09
## marinated meat                     0.01         0.01           0.01
## pies/pasties                       0.01         0.01           0.01
## newspapers                         0.01         0.01           0.01
## citrus                             0.01         0.01           0.02
## whipped/sour cream                 0.01         0.01           0.01
## heinken                            0.01         0.00           0.01
## green tea                          0.01         0.01           0.00
## pip fruit                          0.01         0.01           0.02
## brown bread                        0.01         0.01           0.01
## fruit/vegetable juice              0.01         0.01           0.01
## domestic eggs                      0.01         0.01           0.01
## coffee                             0.01         0.01           0.01
## margarine                          0.01         0.01           0.01
## beef                               0.01         0.00           0.01
## curd                               0.01         0.01           0.01
## butter                             0.01         0.00           0.01
## marinated meats                    0.01         0.01           0.01
## napkins                            0.01         0.01           0.01
## halal meat                         0.01         0.01           0.01
## chocolate                          0.01         0.01           0.01
## frozen vegetables                  0.01         0.00           0.01
## chicken                            0.00         0.00           0.01
## white bread                        0.00         0.01           0.01
## cream cheese                       0.01         0.01           0.01
## waffles                            0.00         0.01           0.01
## dessert                            0.00         0.01           0.01
## salty snack                        0.00         0.01           0.00
## long life bakery product           0.00         0.01           0.01
## berries                            0.00         0.00           0.01
## hamburger meat                     0.00         0.00           0.00
## sugar                              0.00         0.00           0.00
## hygiene articles                   0.00         0.00           0.01
## UHT-milk                           0.01         0.00           0.00
## onions                             0.01         0.00           0.00
## candy                              0.00         0.00           0.00
## specialty chocolate                0.00         0.00           0.00
## butter milk                        0.00         0.00           0.00
## oil                                0.00         0.00           0.00
## frozen meals                       0.00         0.00           0.00
## misc. beverages                    0.00         0.00           0.00
## specialty bar                      0.00         0.00           0.00
## ham                                0.00         0.00           0.00
## beverages                          0.00         0.00           0.00
## meat                               0.00         0.00           0.00
## ice cream                          0.00         0.00           0.00
## sliced cheese                      0.00         0.00           0.00
## hard cheese                        0.00         0.00           0.00
## noodles                            0.00         0.00           0.00
## grapes                             0.00         0.00           0.01
## cat food                           0.00         0.00           0.00
## chewing gum                        0.00         0.00           0.00
## soda                               0.00         0.00           0.00
## detergent                          0.00         0.00           0.00
## red/blush wine                     0.00         0.00           0.00
## white wine                         0.00         0.00           0.00
## turkey                             0.00         0.00           0.00
## dishes                             0.00         0.00           0.00
## bottled water                      0.00         0.00           0.00
## flour                              0.00         0.00           0.00
## semi-finished bread                0.00         0.00           0.00
## baking powder                      0.00         0.00           0.00
## pickled vegetables                 0.00         0.00           0.00
## herbs                              0.00         0.00           0.00
## tropical herbs                     0.00         0.00           0.00
## soft cheese                        0.00         0.00           0.00
## tea                                0.00         0.00           0.00
## processed cheese                   0.00         0.00           0.00
## sausage                            0.00         0.00           0.00
## pasta                              0.00         0.00           0.00
## citrus herbs                       0.00         0.00           0.00
## potted plants                      0.00         0.00           0.00
## canned fish                        0.00         0.00           0.00
## seasonal products                  0.00         0.00           0.00
## cake bar                           0.00         0.00           0.00
## carrots                            0.00         0.00           0.00
## mustard                            0.00         0.00           0.00
## packaged fruit/vegetables          0.00         0.00           0.00
## spread cheese                      0.00         0.00           0.00
## frozen dessert                     0.00         0.00           0.00
## frozen fish                        0.00         0.00           0.00
## cling film/bags                    0.00         0.00           0.00
## salt                               0.00         0.00           0.00
## liquor                             0.00         0.00           0.00
## canned vegetables                  0.00         0.00           0.00
## bottled beer                       0.00         0.00           0.00
## flower (seeds)                     0.00         0.00           0.00
## cooking oil                        0.00         0.00           0.00
## dish cleaner                       0.00         0.00           0.00
## condensed milk                     0.00         0.00           0.00
## roll products                      0.00         0.00           0.00
## photo/film                         0.00         0.00           0.00
## pet care                           0.00         0.00           0.00
## chocolate marshmallow              0.00         0.00           0.00
## herbs/vegetable juice              0.00         0.00           0.00
## whole milk                         0.00         0.00           0.00
## candles                            0.00         0.00           0.00
## mayonnaise                         0.00         0.00           0.00
## Instant food products              0.00         0.00           0.00
## sweet spreads                      0.00         0.00           0.00
## liquor (appetizer)                 0.00         0.00           0.00
## specialty cheese                   0.00         0.00           0.00
## frozen potato products             0.00         0.00           0.00
## house keeping products             0.00         0.00           0.00
## dog food                           0.00         0.00           0.00
## soy                                0.00         0.00           0.00
## instant coffee                     0.00         0.00           0.00
## pip herbs                          0.00         0.00           0.00
## zwieback                           0.00         0.00           0.00
## finished products                  0.00         0.00           0.00
## popcorn                            0.00         0.00           0.00
## vinegar                            0.00         0.00           0.00
## soups                              0.00         0.00           0.00
## female sanitary products           0.00         0.00           0.00
## sparkling wine                     0.00         0.00           0.00
## dental care                        0.00         0.00           0.00
## cereals                            0.00         0.00           0.00
## kitchen towels                     0.00         0.00           0.00
## curd cheese                        0.00         0.00           0.00
## other vegetables                   0.00         0.00           0.00
## rolls/buns                         0.00         0.00           0.00
## softener                           0.00         0.00           0.00
## cleaner                            0.00         0.00           0.00
## spices                             0.00         0.00           0.00
## jam                                0.00         0.00           0.00
## sauces                             0.00         0.00           0.00
## rum                                0.00         0.00           0.00
## liver loaf                         0.00         0.00           0.00
## male cosmetics                     0.00         0.00           0.00
## meat spreads                       0.00         0.00           0.00
## packaged herbs/vegetables          0.00         0.00           0.00
## brandy                             0.00         0.00           0.00
## ketchup                            0.00         0.00           0.00
## abrasive cleaner                   0.00         0.00           0.00
## light bulbs                        0.00         0.00           0.00
## artif. sweetener                   0.00         0.00           0.00
## nuts/prunes                        0.00         0.00           0.00
## specialty fat                      0.00         0.00           0.00
## skin care                          0.00         0.00           0.00
## fish                               0.00         0.00           0.00
## potato products                    0.00         0.00           0.00
## root vegetables                    0.00         0.00           0.00
## snack products                     0.00         0.00           0.00
## nut snack                          0.00         0.00           0.00
## soap                               0.00         0.00           0.00
## syrup                              0.00         0.00           0.00
## bathroom cleaner                   0.00         0.00           0.00
## canned fruit                       0.00         0.00           0.00
## cookware                           0.00         0.00           0.00
## cooking chocolate                  0.00         0.00           0.00
## tidbits                            0.00         0.00           0.00
## cocoa drinks                       0.00         0.00           0.00
## pudding powder                     0.00         0.00           0.00
## ready soups                        0.00         0.00           0.00
## organic marinated meat             0.00         0.00           0.00
## flower soil/fertilizer             0.00         0.00           0.00
## organic products                   0.00         0.00           0.00
## pot plants                         0.00         0.00           0.00
## prosecco                           0.00         0.00           0.00
## frankfurter                        0.00         0.00           0.00
## decalcifier                        0.00         0.00           0.00
## honey                              0.00         0.00           0.00
## specialty vegetables               0.00         0.00           0.00
## cream                              0.00         0.00           0.00
## hair spray                         0.00         0.00           0.00
## frozen fruits                      0.00         0.00           0.00
## rubbing alcohol                    0.00         0.00           0.00
## liqueur                            0.00         0.00           0.00
## make up remover                    0.00         0.00           0.00
## salad dressing                     0.00         0.00           0.00
## frozen chicken                     0.00         0.00           0.00
## whisky                             0.00         0.00           0.00
## baby cosmetics                     0.00         0.00           0.00
## toilet cleaner                     0.00         0.00           0.00
## bags                               0.00         0.00           0.00
## canned herbs                       0.00         0.00           0.00
## kitchen utensil                    0.00         0.00           0.00
## preservation products              0.00         0.00           0.00
## baby food                          0.00         0.00           0.00
## frozen herbss                      0.00         0.00           0.00
## organic sausage                    0.00         0.00           0.00
## sound storage medium               0.00         0.00           0.00
##                           marinated meat pies/pasties newspapers citrus
## rice                                0.03         0.03       0.03   0.03
## veggies                             0.02         0.02       0.02   0.03
## loaf                                0.03         0.02       0.02   0.01
## coke                                0.02         0.02       0.01   0.01
## yogurt                              0.02         0.02       0.01   0.02
## vegetables                          0.01         0.01       0.01   0.02
## mineral water                       0.01         0.01       0.01   0.01
## Plastic bags                        0.01         0.01       0.01   0.01
## tropical fruit                      0.01         0.01       0.01   0.02
## marinated meat                      0.08         0.01       0.01   0.01
## pies/pasties                        0.01         0.08       0.01   0.01
## newspapers                          0.01         0.01       0.08   0.01
## citrus                              0.01         0.01       0.01   0.07
## whipped/sour cream                  0.01         0.01       0.01   0.01
## heinken                             0.01         0.00       0.00   0.01
## green tea                           0.01         0.00       0.00   0.00
## pip fruit                           0.01         0.01       0.01   0.01
## brown bread                         0.01         0.01       0.01   0.01
## fruit/vegetable juice               0.01         0.01       0.01   0.01
## domestic eggs                       0.01         0.01       0.01   0.01
## coffee                              0.01         0.01       0.01   0.01
## margarine                           0.01         0.01       0.01   0.01
## beef                                0.00         0.01       0.01   0.01
## curd                                0.01         0.01       0.01   0.01
## butter                              0.01         0.01       0.01   0.01
## marinated meats                     0.01         0.01       0.00   0.01
## napkins                             0.01         0.01       0.01   0.01
## halal meat                          0.01         0.01       0.01   0.01
## chocolate                           0.01         0.01       0.01   0.01
## frozen vegetables                   0.01         0.00       0.00   0.01
## chicken                             0.00         0.00       0.00   0.01
## white bread                         0.01         0.01       0.00   0.00
## cream cheese                        0.00         0.00       0.00   0.00
## waffles                             0.00         0.01       0.00   0.00
## dessert                             0.01         0.01       0.00   0.00
## salty snack                         0.00         0.00       0.00   0.00
## long life bakery product            0.00         0.01       0.00   0.00
## berries                             0.00         0.00       0.00   0.00
## hamburger meat                      0.00         0.00       0.00   0.00
## sugar                               0.00         0.00       0.00   0.00
## hygiene articles                    0.00         0.00       0.00   0.00
## UHT-milk                            0.00         0.00       0.00   0.00
## onions                              0.00         0.00       0.00   0.00
## candy                               0.00         0.00       0.00   0.00
## specialty chocolate                 0.00         0.00       0.00   0.00
## butter milk                         0.00         0.00       0.00   0.00
## oil                                 0.00         0.00       0.00   0.00
## frozen meals                        0.00         0.00       0.00   0.00
## misc. beverages                     0.00         0.00       0.00   0.00
## specialty bar                       0.00         0.00       0.00   0.00
## ham                                 0.00         0.00       0.00   0.00
## beverages                           0.00         0.00       0.00   0.00
## meat                                0.00         0.00       0.00   0.00
## ice cream                           0.00         0.00       0.00   0.00
## sliced cheese                       0.01         0.00       0.00   0.00
## hard cheese                         0.00         0.00       0.00   0.00
## noodles                             0.00         0.00       0.00   0.00
## grapes                              0.00         0.00       0.00   0.00
## cat food                            0.00         0.00       0.00   0.00
## chewing gum                         0.00         0.00       0.00   0.00
## soda                                0.00         0.00       0.00   0.00
## detergent                           0.00         0.00       0.00   0.00
## red/blush wine                      0.00         0.00       0.00   0.00
## white wine                          0.00         0.00       0.00   0.00
## turkey                              0.00         0.00       0.00   0.00
## dishes                              0.00         0.00       0.00   0.00
## bottled water                       0.00         0.00       0.00   0.00
## flour                               0.00         0.00       0.00   0.00
## semi-finished bread                 0.00         0.00       0.00   0.00
## baking powder                       0.00         0.00       0.00   0.00
## pickled vegetables                  0.00         0.00       0.00   0.00
## herbs                               0.00         0.00       0.00   0.00
## tropical herbs                      0.00         0.00       0.00   0.00
## soft cheese                         0.00         0.00       0.00   0.00
## tea                                 0.00         0.00       0.00   0.00
## processed cheese                    0.00         0.00       0.00   0.00
## sausage                             0.00         0.00       0.00   0.00
## pasta                               0.00         0.00       0.00   0.00
## citrus herbs                        0.00         0.00       0.00   0.00
## potted plants                       0.00         0.00       0.00   0.00
## canned fish                         0.00         0.00       0.00   0.00
## seasonal products                   0.00         0.00       0.00   0.00
## cake bar                            0.00         0.00       0.00   0.00
## carrots                             0.00         0.00       0.00   0.00
## mustard                             0.00         0.00       0.00   0.00
## packaged fruit/vegetables           0.00         0.00       0.00   0.00
## spread cheese                       0.00         0.00       0.00   0.00
## frozen dessert                      0.00         0.00       0.00   0.00
## frozen fish                         0.00         0.00       0.00   0.00
## cling film/bags                     0.00         0.00       0.00   0.00
## salt                                0.00         0.00       0.00   0.00
## liquor                              0.00         0.00       0.00   0.00
## canned vegetables                   0.00         0.00       0.00   0.00
## bottled beer                        0.00         0.00       0.00   0.00
## flower (seeds)                      0.00         0.00       0.00   0.00
## cooking oil                         0.00         0.00       0.00   0.00
## dish cleaner                        0.00         0.00       0.00   0.00
## condensed milk                      0.00         0.00       0.00   0.00
## roll products                       0.00         0.00       0.00   0.00
## photo/film                          0.00         0.00       0.00   0.00
## pet care                            0.00         0.00       0.00   0.00
## chocolate marshmallow               0.00         0.00       0.00   0.00
## herbs/vegetable juice               0.00         0.00       0.00   0.00
## whole milk                          0.00         0.00       0.00   0.00
## candles                             0.00         0.00       0.00   0.00
## mayonnaise                          0.00         0.00       0.00   0.00
## Instant food products               0.00         0.00       0.00   0.00
## sweet spreads                       0.00         0.00       0.00   0.00
## liquor (appetizer)                  0.00         0.00       0.00   0.00
## specialty cheese                    0.00         0.00       0.00   0.00
## frozen potato products              0.00         0.00       0.00   0.00
## house keeping products              0.00         0.00       0.00   0.00
## dog food                            0.00         0.00       0.00   0.00
## soy                                 0.00         0.00       0.00   0.00
## instant coffee                      0.00         0.00       0.00   0.00
## pip herbs                           0.00         0.00       0.00   0.00
## zwieback                            0.00         0.00       0.00   0.00
## finished products                   0.00         0.00       0.00   0.00
## popcorn                             0.00         0.00       0.00   0.00
## vinegar                             0.00         0.00       0.00   0.00
## soups                               0.00         0.00       0.00   0.00
## female sanitary products            0.00         0.00       0.00   0.00
## sparkling wine                      0.00         0.00       0.00   0.00
## dental care                         0.00         0.00       0.00   0.00
## cereals                             0.00         0.00       0.00   0.00
## kitchen towels                      0.00         0.00       0.00   0.00
## curd cheese                         0.00         0.00       0.00   0.00
## other vegetables                    0.00         0.00       0.00   0.00
## rolls/buns                          0.00         0.00       0.00   0.00
## softener                            0.00         0.00       0.00   0.00
## cleaner                             0.00         0.00       0.00   0.00
## spices                              0.00         0.00       0.00   0.00
## jam                                 0.00         0.00       0.00   0.00
## sauces                              0.00         0.00       0.00   0.00
## rum                                 0.00         0.00       0.00   0.00
## liver loaf                          0.00         0.00       0.00   0.00
## male cosmetics                      0.00         0.00       0.00   0.00
## meat spreads                        0.00         0.00       0.00   0.00
## packaged herbs/vegetables           0.00         0.00       0.00   0.00
## brandy                              0.00         0.00       0.00   0.00
## ketchup                             0.00         0.00       0.00   0.00
## abrasive cleaner                    0.00         0.00       0.00   0.00
## light bulbs                         0.00         0.00       0.00   0.00
## artif. sweetener                    0.00         0.00       0.00   0.00
## nuts/prunes                         0.00         0.00       0.00   0.00
## specialty fat                       0.00         0.00       0.00   0.00
## skin care                           0.00         0.00       0.00   0.00
## fish                                0.00         0.00       0.00   0.00
## potato products                     0.00         0.00       0.00   0.00
## root vegetables                     0.00         0.00       0.00   0.00
## snack products                      0.00         0.00       0.00   0.00
## nut snack                           0.00         0.00       0.00   0.00
## soap                                0.00         0.00       0.00   0.00
## syrup                               0.00         0.00       0.00   0.00
## bathroom cleaner                    0.00         0.00       0.00   0.00
## canned fruit                        0.00         0.00       0.00   0.00
## cookware                            0.00         0.00       0.00   0.00
## cooking chocolate                   0.00         0.00       0.00   0.00
## tidbits                             0.00         0.00       0.00   0.00
## cocoa drinks                        0.00         0.00       0.00   0.00
## pudding powder                      0.00         0.00       0.00   0.00
## ready soups                         0.00         0.00       0.00   0.00
## organic marinated meat              0.00         0.00       0.00   0.00
## flower soil/fertilizer              0.00         0.00       0.00   0.00
## organic products                    0.00         0.00       0.00   0.00
## pot plants                          0.00         0.00       0.00   0.00
## prosecco                            0.00         0.00       0.00   0.00
## frankfurter                         0.00         0.00       0.00   0.00
## decalcifier                         0.00         0.00       0.00   0.00
## honey                               0.00         0.00       0.00   0.00
## specialty vegetables                0.00         0.00       0.00   0.00
## cream                               0.00         0.00       0.00   0.00
## hair spray                          0.00         0.00       0.00   0.00
## frozen fruits                       0.00         0.00       0.00   0.00
## rubbing alcohol                     0.00         0.00       0.00   0.00
## liqueur                             0.00         0.00       0.00   0.00
## make up remover                     0.00         0.00       0.00   0.00
## salad dressing                      0.00         0.00       0.00   0.00
## frozen chicken                      0.00         0.00       0.00   0.00
## whisky                              0.00         0.00       0.00   0.00
## baby cosmetics                      0.00         0.00       0.00   0.00
## toilet cleaner                      0.00         0.00       0.00   0.00
## bags                                0.00         0.00       0.00   0.00
## canned herbs                        0.00         0.00       0.00   0.00
## kitchen utensil                     0.00         0.00       0.00   0.00
## preservation products               0.00         0.00       0.00   0.00
## baby food                           0.00         0.00       0.00   0.00
## frozen herbss                       0.00         0.00       0.00   0.00
## organic sausage                     0.00         0.00       0.00   0.00
## sound storage medium                0.00         0.00       0.00   0.00
##                           whipped/sour cream heinken green tea pip fruit
## rice                                    0.03    0.02      0.01      0.03
## veggies                                 0.03    0.01      0.01      0.02
## loaf                                    0.01    0.01      0.01      0.01
## coke                                    0.01    0.01      0.01      0.01
## yogurt                                  0.02    0.01      0.00      0.02
## vegetables                              0.02    0.01      0.00      0.01
## mineral water                           0.01    0.01      0.01      0.01
## Plastic bags                            0.01    0.00      0.01      0.01
## tropical fruit                          0.01    0.01      0.00      0.02
## marinated meat                          0.01    0.01      0.01      0.01
## pies/pasties                            0.01    0.00      0.00      0.01
## newspapers                              0.01    0.00      0.00      0.01
## citrus                                  0.01    0.01      0.00      0.01
## whipped/sour cream                      0.07    0.00      0.00      0.01
## heinken                                 0.00    0.07      0.00      0.01
## green tea                               0.00    0.00      0.07      0.00
## pip fruit                               0.01    0.01      0.00      0.07
## brown bread                             0.00    0.00      0.00      0.01
## fruit/vegetable juice                   0.01    0.01      0.00      0.01
## domestic eggs                           0.01    0.00      0.00      0.01
## coffee                                  0.01    0.00      0.00      0.01
## margarine                               0.01    0.01      0.00      0.01
## beef                                    0.01    0.00      0.00      0.00
## curd                                    0.01    0.00      0.00      0.01
## butter                                  0.01    0.01      0.00      0.01
## marinated meats                         0.01    0.00      0.00      0.01
## napkins                                 0.01    0.00      0.00      0.01
## halal meat                              0.01    0.00      0.00      0.01
## chocolate                               0.00    0.00      0.00      0.01
## frozen vegetables                       0.01    0.00      0.00      0.01
## chicken                                 0.01    0.00      0.00      0.00
## white bread                             0.01    0.00      0.00      0.01
## cream cheese                            0.01    0.00      0.00      0.01
## waffles                                 0.01    0.00      0.00      0.00
## dessert                                 0.00    0.00      0.00      0.00
## salty snack                             0.00    0.00      0.00      0.00
## long life bakery product                0.01    0.00      0.00      0.00
## berries                                 0.01    0.00      0.00      0.00
## hamburger meat                          0.00    0.00      0.00      0.00
## sugar                                   0.01    0.00      0.00      0.00
## hygiene articles                        0.00    0.00      0.00      0.00
## UHT-milk                                0.00    0.00      0.00      0.00
## onions                                  0.00    0.00      0.00      0.00
## candy                                   0.00    0.00      0.00      0.00
## specialty chocolate                     0.00    0.00      0.00      0.00
## butter milk                             0.00    0.00      0.00      0.00
## oil                                     0.00    0.00      0.00      0.00
## frozen meals                            0.00    0.00      0.00      0.00
## misc. beverages                         0.00    0.00      0.00      0.00
## specialty bar                           0.00    0.00      0.00      0.00
## ham                                     0.00    0.00      0.00      0.00
## beverages                               0.00    0.00      0.00      0.00
## meat                                    0.00    0.00      0.00      0.00
## ice cream                               0.00    0.00      0.00      0.00
## sliced cheese                           0.00    0.00      0.00      0.00
## hard cheese                             0.00    0.00      0.00      0.00
## noodles                                 0.00    0.00      0.00      0.00
## grapes                                  0.00    0.00      0.00      0.00
## cat food                                0.00    0.00      0.00      0.00
## chewing gum                             0.00    0.00      0.00      0.00
## soda                                    0.00    0.00      0.00      0.00
## detergent                               0.00    0.00      0.00      0.00
## red/blush wine                          0.00    0.00      0.00      0.00
## white wine                              0.00    0.00      0.00      0.00
## turkey                                  0.00    0.00      0.00      0.00
## dishes                                  0.00    0.00      0.00      0.00
## bottled water                           0.00    0.00      0.00      0.00
## flour                                   0.00    0.00      0.00      0.00
## semi-finished bread                     0.00    0.00      0.00      0.00
## baking powder                           0.00    0.00      0.00      0.00
## pickled vegetables                      0.00    0.00      0.00      0.00
## herbs                                   0.00    0.00      0.00      0.00
## tropical herbs                          0.00    0.00      0.00      0.00
## soft cheese                             0.00    0.00      0.00      0.00
## tea                                     0.00    0.00      0.00      0.00
## processed cheese                        0.00    0.00      0.00      0.00
## sausage                                 0.00    0.00      0.00      0.00
## pasta                                   0.00    0.00      0.00      0.00
## citrus herbs                            0.00    0.00      0.00      0.00
## potted plants                           0.00    0.00      0.00      0.00
## canned fish                             0.00    0.00      0.00      0.00
## seasonal products                       0.00    0.00      0.00      0.00
## cake bar                                0.00    0.00      0.00      0.00
## carrots                                 0.00    0.00      0.00      0.00
## mustard                                 0.00    0.00      0.00      0.00
## packaged fruit/vegetables               0.00    0.00      0.00      0.00
## spread cheese                           0.00    0.00      0.00      0.00
## frozen dessert                          0.00    0.00      0.00      0.00
## frozen fish                             0.00    0.00      0.00      0.00
## cling film/bags                         0.00    0.00      0.00      0.00
## salt                                    0.00    0.00      0.00      0.00
## liquor                                  0.00    0.00      0.00      0.00
## canned vegetables                       0.00    0.00      0.00      0.00
## bottled beer                            0.00    0.00      0.00      0.00
## flower (seeds)                          0.00    0.00      0.00      0.00
## cooking oil                             0.00    0.00      0.00      0.00
## dish cleaner                            0.00    0.00      0.00      0.00
## condensed milk                          0.00    0.00      0.00      0.00
## roll products                           0.00    0.00      0.00      0.00
## photo/film                              0.00    0.00      0.00      0.00
## pet care                                0.00    0.00      0.00      0.00
## chocolate marshmallow                   0.00    0.00      0.00      0.00
## herbs/vegetable juice                   0.00    0.00      0.00      0.00
## whole milk                              0.00    0.00      0.00      0.00
## candles                                 0.00    0.00      0.00      0.00
## mayonnaise                              0.00    0.00      0.00      0.00
## Instant food products                   0.00    0.00      0.00      0.00
## sweet spreads                           0.00    0.00      0.00      0.00
## liquor (appetizer)                      0.00    0.00      0.00      0.00
## specialty cheese                        0.00    0.00      0.00      0.00
## frozen potato products                  0.00    0.00      0.00      0.00
## house keeping products                  0.00    0.00      0.00      0.00
## dog food                                0.00    0.00      0.00      0.00
## soy                                     0.00    0.00      0.00      0.00
## instant coffee                          0.00    0.00      0.00      0.00
## pip herbs                               0.00    0.00      0.00      0.00
## zwieback                                0.00    0.00      0.00      0.00
## finished products                       0.00    0.00      0.00      0.00
## popcorn                                 0.00    0.00      0.00      0.00
## vinegar                                 0.00    0.00      0.00      0.00
## soups                                   0.00    0.00      0.00      0.00
## female sanitary products                0.00    0.00      0.00      0.00
## sparkling wine                          0.00    0.00      0.00      0.00
## dental care                             0.00    0.00      0.00      0.00
## cereals                                 0.00    0.00      0.00      0.00
## kitchen towels                          0.00    0.00      0.00      0.00
## curd cheese                             0.00    0.00      0.00      0.00
## other vegetables                        0.00    0.00      0.00      0.00
## rolls/buns                              0.00    0.00      0.00      0.00
## softener                                0.00    0.00      0.00      0.00
## cleaner                                 0.00    0.00      0.00      0.00
## spices                                  0.00    0.00      0.00      0.00
## jam                                     0.00    0.00      0.00      0.00
## sauces                                  0.00    0.00      0.00      0.00
## rum                                     0.00    0.00      0.00      0.00
## liver loaf                              0.00    0.00      0.00      0.00
## male cosmetics                          0.00    0.00      0.00      0.00
## meat spreads                            0.00    0.00      0.00      0.00
## packaged herbs/vegetables               0.00    0.00      0.00      0.00
## brandy                                  0.00    0.00      0.00      0.00
## ketchup                                 0.00    0.00      0.00      0.00
## abrasive cleaner                        0.00    0.00      0.00      0.00
## light bulbs                             0.00    0.00      0.00      0.00
## artif. sweetener                        0.00    0.00      0.00      0.00
## nuts/prunes                             0.00    0.00      0.00      0.00
## specialty fat                           0.00    0.00      0.00      0.00
## skin care                               0.00    0.00      0.00      0.00
## fish                                    0.00    0.00      0.00      0.00
## potato products                         0.00    0.00      0.00      0.00
## root vegetables                         0.00    0.00      0.00      0.00
## snack products                          0.00    0.00      0.00      0.00
## nut snack                               0.00    0.00      0.00      0.00
## soap                                    0.00    0.00      0.00      0.00
## syrup                                   0.00    0.00      0.00      0.00
## bathroom cleaner                        0.00    0.00      0.00      0.00
## canned fruit                            0.00    0.00      0.00      0.00
## cookware                                0.00    0.00      0.00      0.00
## cooking chocolate                       0.00    0.00      0.00      0.00
## tidbits                                 0.00    0.00      0.00      0.00
## cocoa drinks                            0.00    0.00      0.00      0.00
## pudding powder                          0.00    0.00      0.00      0.00
## ready soups                             0.00    0.00      0.00      0.00
## organic marinated meat                  0.00    0.00      0.00      0.00
## flower soil/fertilizer                  0.00    0.00      0.00      0.00
## organic products                        0.00    0.00      0.00      0.00
## pot plants                              0.00    0.00      0.00      0.00
## prosecco                                0.00    0.00      0.00      0.00
## frankfurter                             0.00    0.00      0.00      0.00
## decalcifier                             0.00    0.00      0.00      0.00
## honey                                   0.00    0.00      0.00      0.00
## specialty vegetables                    0.00    0.00      0.00      0.00
## cream                                   0.00    0.00      0.00      0.00
## hair spray                              0.00    0.00      0.00      0.00
## frozen fruits                           0.00    0.00      0.00      0.00
## rubbing alcohol                         0.00    0.00      0.00      0.00
## liqueur                                 0.00    0.00      0.00      0.00
## make up remover                         0.00    0.00      0.00      0.00
## salad dressing                          0.00    0.00      0.00      0.00
## frozen chicken                          0.00    0.00      0.00      0.00
## whisky                                  0.00    0.00      0.00      0.00
## baby cosmetics                          0.00    0.00      0.00      0.00
## toilet cleaner                          0.00    0.00      0.00      0.00
## bags                                    0.00    0.00      0.00      0.00
## canned herbs                            0.00    0.00      0.00      0.00
## kitchen utensil                         0.00    0.00      0.00      0.00
## preservation products                   0.00    0.00      0.00      0.00
## baby food                               0.00    0.00      0.00      0.00
## frozen herbss                           0.00    0.00      0.00      0.00
## organic sausage                         0.00    0.00      0.00      0.00
## sound storage medium                    0.00    0.00      0.00      0.00
##                           brown bread fruit/vegetable juice domestic eggs
## rice                             0.02                  0.02          0.03
## veggies                          0.02                  0.02          0.02
## loaf                             0.01                  0.01          0.01
## coke                             0.01                  0.02          0.01
## yogurt                           0.01                  0.02          0.01
## vegetables                       0.01                  0.01          0.01
## mineral water                    0.01                  0.01          0.01
## Plastic bags                     0.01                  0.01          0.01
## tropical fruit                   0.01                  0.01          0.01
## marinated meat                   0.01                  0.01          0.01
## pies/pasties                     0.01                  0.01          0.01
## newspapers                       0.01                  0.01          0.01
## citrus                           0.01                  0.01          0.01
## whipped/sour cream               0.00                  0.01          0.01
## heinken                          0.00                  0.01          0.00
## green tea                        0.00                  0.00          0.00
## pip fruit                        0.01                  0.01          0.01
## brown bread                      0.06                  0.01          0.01
## fruit/vegetable juice            0.01                  0.06          0.01
## domestic eggs                    0.01                  0.01          0.06
## coffee                           0.00                  0.01          0.01
## margarine                        0.01                  0.01          0.01
## beef                             0.00                  0.00          0.01
## curd                             0.00                  0.00          0.01
## butter                           0.01                  0.01          0.01
## marinated meats                  0.01                  0.00          0.01
## napkins                          0.00                  0.01          0.01
## halal meat                       0.00                  0.00          0.00
## chocolate                        0.00                  0.01          0.00
## frozen vegetables                0.00                  0.01          0.01
## chicken                          0.00                  0.00          0.01
## white bread                      0.00                  0.01          0.01
## cream cheese                     0.00                  0.00          0.01
## waffles                          0.00                  0.00          0.00
## dessert                          0.00                  0.01          0.00
## salty snack                      0.00                  0.01          0.00
## long life bakery product         0.00                  0.01          0.00
## berries                          0.00                  0.00          0.00
## hamburger meat                   0.00                  0.00          0.00
## sugar                            0.00                  0.00          0.00
## hygiene articles                 0.00                  0.00          0.01
## UHT-milk                         0.00                  0.00          0.00
## onions                           0.00                  0.00          0.01
## candy                            0.00                  0.00          0.00
## specialty chocolate              0.00                  0.00          0.00
## butter milk                      0.00                  0.00          0.00
## oil                              0.00                  0.00          0.00
## frozen meals                     0.00                  0.00          0.00
## misc. beverages                  0.00                  0.00          0.00
## specialty bar                    0.00                  0.00          0.00
## ham                              0.00                  0.00          0.00
## beverages                        0.00                  0.00          0.00
## meat                             0.00                  0.00          0.00
## ice cream                        0.00                  0.00          0.00
## sliced cheese                    0.00                  0.00          0.00
## hard cheese                      0.00                  0.00          0.00
## noodles                          0.00                  0.00          0.00
## grapes                           0.00                  0.00          0.00
## cat food                         0.00                  0.00          0.00
## chewing gum                      0.00                  0.00          0.00
## soda                             0.00                  0.00          0.00
## detergent                        0.00                  0.00          0.00
## red/blush wine                   0.00                  0.00          0.00
## white wine                       0.00                  0.00          0.00
## turkey                           0.00                  0.00          0.00
## dishes                           0.00                  0.00          0.00
## bottled water                    0.00                  0.00          0.00
## flour                            0.00                  0.00          0.00
## semi-finished bread              0.00                  0.00          0.00
## baking powder                    0.00                  0.00          0.00
## pickled vegetables               0.00                  0.00          0.00
## herbs                            0.00                  0.00          0.00
## tropical herbs                   0.00                  0.00          0.00
## soft cheese                      0.00                  0.00          0.00
## tea                              0.00                  0.00          0.00
## processed cheese                 0.00                  0.00          0.00
## sausage                          0.00                  0.00          0.00
## pasta                            0.00                  0.00          0.00
## citrus herbs                     0.00                  0.00          0.00
## potted plants                    0.00                  0.00          0.00
## canned fish                      0.00                  0.00          0.00
## seasonal products                0.00                  0.00          0.00
## cake bar                         0.00                  0.00          0.00
## carrots                          0.00                  0.00          0.00
## mustard                          0.00                  0.00          0.00
## packaged fruit/vegetables        0.00                  0.00          0.00
## spread cheese                    0.00                  0.00          0.00
## frozen dessert                   0.00                  0.00          0.00
## frozen fish                      0.00                  0.00          0.00
## cling film/bags                  0.00                  0.00          0.00
## salt                             0.00                  0.00          0.00
## liquor                           0.00                  0.00          0.00
## canned vegetables                0.00                  0.00          0.00
## bottled beer                     0.00                  0.00          0.00
## flower (seeds)                   0.00                  0.00          0.00
## cooking oil                      0.00                  0.00          0.00
## dish cleaner                     0.00                  0.00          0.00
## condensed milk                   0.00                  0.00          0.00
## roll products                    0.00                  0.00          0.00
## photo/film                       0.00                  0.00          0.00
## pet care                         0.00                  0.00          0.00
## chocolate marshmallow            0.00                  0.00          0.00
## herbs/vegetable juice            0.00                  0.00          0.00
## whole milk                       0.00                  0.00          0.00
## candles                          0.00                  0.00          0.00
## mayonnaise                       0.00                  0.00          0.00
## Instant food products            0.00                  0.00          0.00
## sweet spreads                    0.00                  0.00          0.00
## liquor (appetizer)               0.00                  0.00          0.00
## specialty cheese                 0.00                  0.00          0.00
## frozen potato products           0.00                  0.00          0.00
## house keeping products           0.00                  0.00          0.00
## dog food                         0.00                  0.00          0.00
## soy                              0.00                  0.00          0.00
## instant coffee                   0.00                  0.00          0.00
## pip herbs                        0.00                  0.00          0.00
## zwieback                         0.00                  0.00          0.00
## finished products                0.00                  0.00          0.00
## popcorn                          0.00                  0.00          0.00
## vinegar                          0.00                  0.00          0.00
## soups                            0.00                  0.00          0.00
## female sanitary products         0.00                  0.00          0.00
## sparkling wine                   0.00                  0.00          0.00
## dental care                      0.00                  0.00          0.00
## cereals                          0.00                  0.00          0.00
## kitchen towels                   0.00                  0.00          0.00
## curd cheese                      0.00                  0.00          0.00
## other vegetables                 0.00                  0.00          0.00
## rolls/buns                       0.00                  0.00          0.00
## softener                         0.00                  0.00          0.00
## cleaner                          0.00                  0.00          0.00
## spices                           0.00                  0.00          0.00
## jam                              0.00                  0.00          0.00
## sauces                           0.00                  0.00          0.00
## rum                              0.00                  0.00          0.00
## liver loaf                       0.00                  0.00          0.00
## male cosmetics                   0.00                  0.00          0.00
## meat spreads                     0.00                  0.00          0.00
## packaged herbs/vegetables        0.00                  0.00          0.00
## brandy                           0.00                  0.00          0.00
## ketchup                          0.00                  0.00          0.00
## abrasive cleaner                 0.00                  0.00          0.00
## light bulbs                      0.00                  0.00          0.00
## artif. sweetener                 0.00                  0.00          0.00
## nuts/prunes                      0.00                  0.00          0.00
## specialty fat                    0.00                  0.00          0.00
## skin care                        0.00                  0.00          0.00
## fish                             0.00                  0.00          0.00
## potato products                  0.00                  0.00          0.00
## root vegetables                  0.00                  0.00          0.00
## snack products                   0.00                  0.00          0.00
## nut snack                        0.00                  0.00          0.00
## soap                             0.00                  0.00          0.00
## syrup                            0.00                  0.00          0.00
## bathroom cleaner                 0.00                  0.00          0.00
## canned fruit                     0.00                  0.00          0.00
## cookware                         0.00                  0.00          0.00
## cooking chocolate                0.00                  0.00          0.00
## tidbits                          0.00                  0.00          0.00
## cocoa drinks                     0.00                  0.00          0.00
## pudding powder                   0.00                  0.00          0.00
## ready soups                      0.00                  0.00          0.00
## organic marinated meat           0.00                  0.00          0.00
## flower soil/fertilizer           0.00                  0.00          0.00
## organic products                 0.00                  0.00          0.00
## pot plants                       0.00                  0.00          0.00
## prosecco                         0.00                  0.00          0.00
## frankfurter                      0.00                  0.00          0.00
## decalcifier                      0.00                  0.00          0.00
## honey                            0.00                  0.00          0.00
## specialty vegetables             0.00                  0.00          0.00
## cream                            0.00                  0.00          0.00
## hair spray                       0.00                  0.00          0.00
## frozen fruits                    0.00                  0.00          0.00
## rubbing alcohol                  0.00                  0.00          0.00
## liqueur                          0.00                  0.00          0.00
## make up remover                  0.00                  0.00          0.00
## salad dressing                   0.00                  0.00          0.00
## frozen chicken                   0.00                  0.00          0.00
## whisky                           0.00                  0.00          0.00
## baby cosmetics                   0.00                  0.00          0.00
## toilet cleaner                   0.00                  0.00          0.00
## bags                             0.00                  0.00          0.00
## canned herbs                     0.00                  0.00          0.00
## kitchen utensil                  0.00                  0.00          0.00
## preservation products            0.00                  0.00          0.00
## baby food                        0.00                  0.00          0.00
## frozen herbss                    0.00                  0.00          0.00
## organic sausage                  0.00                  0.00          0.00
## sound storage medium             0.00                  0.00          0.00
##                           coffee margarine beef curd butter marinated meats
## rice                        0.02      0.02 0.02 0.03   0.03            0.02
## veggies                     0.01      0.02 0.02 0.02   0.02            0.01
## loaf                        0.01      0.01 0.01 0.01   0.01            0.02
## coke                        0.01      0.01 0.01 0.01   0.01            0.01
## yogurt                      0.01      0.01 0.01 0.02   0.01            0.01
## vegetables                  0.01      0.01 0.02 0.01   0.01            0.01
## mineral water               0.01      0.01 0.01 0.01   0.01            0.01
## Plastic bags                0.01      0.01 0.00 0.01   0.00            0.01
## tropical fruit              0.01      0.01 0.01 0.01   0.01            0.01
## marinated meat              0.01      0.01 0.00 0.01   0.01            0.01
## pies/pasties                0.01      0.01 0.01 0.01   0.01            0.01
## newspapers                  0.01      0.01 0.01 0.01   0.01            0.00
## citrus                      0.01      0.01 0.01 0.01   0.01            0.01
## whipped/sour cream          0.01      0.01 0.01 0.01   0.01            0.01
## heinken                     0.00      0.01 0.00 0.00   0.01            0.00
## green tea                   0.00      0.00 0.00 0.00   0.00            0.00
## pip fruit                   0.01      0.01 0.00 0.01   0.01            0.01
## brown bread                 0.00      0.01 0.00 0.00   0.01            0.01
## fruit/vegetable juice       0.01      0.01 0.00 0.00   0.01            0.00
## domestic eggs               0.01      0.01 0.01 0.01   0.01            0.01
## coffee                      0.06      0.00 0.00 0.00   0.00            0.00
## margarine                   0.00      0.06 0.01 0.01   0.01            0.01
## beef                        0.00      0.01 0.06 0.01   0.01            0.00
## curd                        0.00      0.01 0.01 0.06   0.01            0.00
## butter                      0.00      0.01 0.01 0.01   0.06            0.00
## marinated meats             0.00      0.01 0.00 0.00   0.00            0.05
## napkins                     0.00      0.00 0.00 0.01   0.00            0.00
## halal meat                  0.00      0.01 0.01 0.00   0.00            0.01
## chocolate                   0.00      0.00 0.00 0.00   0.01            0.00
## frozen vegetables           0.00      0.00 0.00 0.00   0.01            0.00
## chicken                     0.00      0.00 0.00 0.00   0.01            0.00
## white bread                 0.00      0.00 0.00 0.00   0.00            0.00
## cream cheese                0.00      0.00 0.00 0.01   0.00            0.00
## waffles                     0.00      0.00 0.00 0.00   0.00            0.00
## dessert                     0.00      0.00 0.00 0.01   0.00            0.00
## salty snack                 0.00      0.00 0.00 0.00   0.00            0.00
## long life bakery product    0.00      0.00 0.00 0.00   0.00            0.00
## berries                     0.00      0.00 0.01 0.00   0.00            0.00
## hamburger meat              0.00      0.00 0.00 0.00   0.00            0.00
## sugar                       0.00      0.01 0.00 0.00   0.00            0.00
## hygiene articles            0.00      0.00 0.00 0.00   0.00            0.00
## UHT-milk                    0.00      0.00 0.00 0.00   0.00            0.00
## onions                      0.00      0.00 0.00 0.00   0.00            0.00
## candy                       0.00      0.00 0.00 0.00   0.00            0.00
## specialty chocolate         0.00      0.00 0.00 0.00   0.00            0.00
## butter milk                 0.00      0.00 0.00 0.00   0.00            0.00
## oil                         0.00      0.00 0.00 0.00   0.00            0.00
## frozen meals                0.00      0.00 0.00 0.00   0.00            0.00
## misc. beverages             0.00      0.00 0.00 0.00   0.00            0.00
## specialty bar               0.00      0.00 0.00 0.00   0.00            0.00
## ham                         0.00      0.00 0.00 0.00   0.00            0.00
## beverages                   0.00      0.00 0.00 0.00   0.00            0.00
## meat                        0.00      0.00 0.00 0.00   0.00            0.00
## ice cream                   0.00      0.00 0.00 0.00   0.00            0.00
## sliced cheese               0.00      0.00 0.00 0.00   0.00            0.00
## hard cheese                 0.00      0.00 0.00 0.00   0.00            0.00
## noodles                     0.00      0.00 0.00 0.00   0.00            0.00
## grapes                      0.00      0.00 0.00 0.00   0.00            0.00
## cat food                    0.00      0.00 0.00 0.00   0.00            0.00
## chewing gum                 0.00      0.00 0.00 0.00   0.00            0.00
## soda                        0.00      0.00 0.00 0.00   0.00            0.00
## detergent                   0.00      0.00 0.00 0.00   0.00            0.00
## red/blush wine              0.00      0.00 0.00 0.00   0.00            0.00
## white wine                  0.00      0.00 0.00 0.00   0.00            0.00
## turkey                      0.00      0.00 0.00 0.00   0.00            0.00
## dishes                      0.00      0.00 0.00 0.00   0.00            0.00
## bottled water               0.00      0.00 0.00 0.00   0.00            0.00
## flour                       0.00      0.00 0.00 0.00   0.00            0.00
## semi-finished bread         0.00      0.00 0.00 0.00   0.00            0.00
## baking powder               0.00      0.00 0.00 0.00   0.00            0.00
## pickled vegetables          0.00      0.00 0.00 0.00   0.00            0.00
## herbs                       0.00      0.00 0.00 0.00   0.00            0.00
## tropical herbs              0.00      0.00 0.00 0.00   0.00            0.00
## soft cheese                 0.00      0.00 0.00 0.00   0.00            0.00
## tea                         0.00      0.00 0.00 0.00   0.00            0.00
## processed cheese            0.00      0.00 0.00 0.00   0.00            0.00
## sausage                     0.00      0.00 0.00 0.00   0.00            0.00
## pasta                       0.00      0.00 0.00 0.00   0.00            0.00
## citrus herbs                0.00      0.00 0.00 0.00   0.00            0.00
## potted plants               0.00      0.00 0.00 0.00   0.00            0.00
## canned fish                 0.00      0.00 0.00 0.00   0.00            0.00
## seasonal products           0.00      0.00 0.00 0.00   0.00            0.00
## cake bar                    0.00      0.00 0.00 0.00   0.00            0.00
## carrots                     0.00      0.00 0.00 0.00   0.00            0.00
## mustard                     0.00      0.00 0.00 0.00   0.00            0.00
## packaged fruit/vegetables   0.00      0.00 0.00 0.00   0.00            0.00
## spread cheese               0.00      0.00 0.00 0.00   0.00            0.00
## frozen dessert              0.00      0.00 0.00 0.00   0.00            0.00
## frozen fish                 0.00      0.00 0.00 0.00   0.00            0.00
## cling film/bags             0.00      0.00 0.00 0.00   0.00            0.00
## salt                        0.00      0.00 0.00 0.00   0.00            0.00
## liquor                      0.00      0.00 0.00 0.00   0.00            0.00
## canned vegetables           0.00      0.00 0.00 0.00   0.00            0.00
## bottled beer                0.00      0.00 0.00 0.00   0.00            0.00
## flower (seeds)              0.00      0.00 0.00 0.00   0.00            0.00
## cooking oil                 0.00      0.00 0.00 0.00   0.00            0.00
## dish cleaner                0.00      0.00 0.00 0.00   0.00            0.00
## condensed milk              0.00      0.00 0.00 0.00   0.00            0.00
## roll products               0.00      0.00 0.00 0.00   0.00            0.00
## photo/film                  0.00      0.00 0.00 0.00   0.00            0.00
## pet care                    0.00      0.00 0.00 0.00   0.00            0.00
## chocolate marshmallow       0.00      0.00 0.00 0.00   0.00            0.00
## herbs/vegetable juice       0.00      0.00 0.00 0.00   0.00            0.00
## whole milk                  0.00      0.00 0.00 0.00   0.00            0.00
## candles                     0.00      0.00 0.00 0.00   0.00            0.00
## mayonnaise                  0.00      0.00 0.00 0.00   0.00            0.00
## Instant food products       0.00      0.00 0.00 0.00   0.00            0.00
## sweet spreads               0.00      0.00 0.00 0.00   0.00            0.00
## liquor (appetizer)          0.00      0.00 0.00 0.00   0.00            0.00
## specialty cheese            0.00      0.00 0.00 0.00   0.00            0.00
## frozen potato products      0.00      0.00 0.00 0.00   0.00            0.00
## house keeping products      0.00      0.00 0.00 0.00   0.00            0.00
## dog food                    0.00      0.00 0.00 0.00   0.00            0.00
## soy                         0.00      0.00 0.00 0.00   0.00            0.00
## instant coffee              0.00      0.00 0.00 0.00   0.00            0.00
## pip herbs                   0.00      0.00 0.00 0.00   0.00            0.00
## zwieback                    0.00      0.00 0.00 0.00   0.00            0.00
## finished products           0.00      0.00 0.00 0.00   0.00            0.00
## popcorn                     0.00      0.00 0.00 0.00   0.00            0.00
## vinegar                     0.00      0.00 0.00 0.00   0.00            0.00
## soups                       0.00      0.00 0.00 0.00   0.00            0.00
## female sanitary products    0.00      0.00 0.00 0.00   0.00            0.00
## sparkling wine              0.00      0.00 0.00 0.00   0.00            0.00
## dental care                 0.00      0.00 0.00 0.00   0.00            0.00
## cereals                     0.00      0.00 0.00 0.00   0.00            0.00
## kitchen towels              0.00      0.00 0.00 0.00   0.00            0.00
## curd cheese                 0.00      0.00 0.00 0.00   0.00            0.00
## other vegetables            0.00      0.00 0.00 0.00   0.00            0.00
## rolls/buns                  0.00      0.00 0.00 0.00   0.00            0.00
## softener                    0.00      0.00 0.00 0.00   0.00            0.00
## cleaner                     0.00      0.00 0.00 0.00   0.00            0.00
## spices                      0.00      0.00 0.00 0.00   0.00            0.00
## jam                         0.00      0.00 0.00 0.00   0.00            0.00
## sauces                      0.00      0.00 0.00 0.00   0.00            0.00
## rum                         0.00      0.00 0.00 0.00   0.00            0.00
## liver loaf                  0.00      0.00 0.00 0.00   0.00            0.00
## male cosmetics              0.00      0.00 0.00 0.00   0.00            0.00
## meat spreads                0.00      0.00 0.00 0.00   0.00            0.00
## packaged herbs/vegetables   0.00      0.00 0.00 0.00   0.00            0.00
## brandy                      0.00      0.00 0.00 0.00   0.00            0.00
## ketchup                     0.00      0.00 0.00 0.00   0.00            0.00
## abrasive cleaner            0.00      0.00 0.00 0.00   0.00            0.00
## light bulbs                 0.00      0.00 0.00 0.00   0.00            0.00
## artif. sweetener            0.00      0.00 0.00 0.00   0.00            0.00
## nuts/prunes                 0.00      0.00 0.00 0.00   0.00            0.00
## specialty fat               0.00      0.00 0.00 0.00   0.00            0.00
## skin care                   0.00      0.00 0.00 0.00   0.00            0.00
## fish                        0.00      0.00 0.00 0.00   0.00            0.00
## potato products             0.00      0.00 0.00 0.00   0.00            0.00
## root vegetables             0.00      0.00 0.00 0.00   0.00            0.00
## snack products              0.00      0.00 0.00 0.00   0.00            0.00
## nut snack                   0.00      0.00 0.00 0.00   0.00            0.00
## soap                        0.00      0.00 0.00 0.00   0.00            0.00
## syrup                       0.00      0.00 0.00 0.00   0.00            0.00
## bathroom cleaner            0.00      0.00 0.00 0.00   0.00            0.00
## canned fruit                0.00      0.00 0.00 0.00   0.00            0.00
## cookware                    0.00      0.00 0.00 0.00   0.00            0.00
## cooking chocolate           0.00      0.00 0.00 0.00   0.00            0.00
## tidbits                     0.00      0.00 0.00 0.00   0.00            0.00
## cocoa drinks                0.00      0.00 0.00 0.00   0.00            0.00
## pudding powder              0.00      0.00 0.00 0.00   0.00            0.00
## ready soups                 0.00      0.00 0.00 0.00   0.00            0.00
## organic marinated meat      0.00      0.00 0.00 0.00   0.00            0.00
## flower soil/fertilizer      0.00      0.00 0.00 0.00   0.00            0.00
## organic products            0.00      0.00 0.00 0.00   0.00            0.00
## pot plants                  0.00      0.00 0.00 0.00   0.00            0.00
## prosecco                    0.00      0.00 0.00 0.00   0.00            0.00
## frankfurter                 0.00      0.00 0.00 0.00   0.00            0.00
## decalcifier                 0.00      0.00 0.00 0.00   0.00            0.00
## honey                       0.00      0.00 0.00 0.00   0.00            0.00
## specialty vegetables        0.00      0.00 0.00 0.00   0.00            0.00
## cream                       0.00      0.00 0.00 0.00   0.00            0.00
## hair spray                  0.00      0.00 0.00 0.00   0.00            0.00
## frozen fruits               0.00      0.00 0.00 0.00   0.00            0.00
## rubbing alcohol             0.00      0.00 0.00 0.00   0.00            0.00
## liqueur                     0.00      0.00 0.00 0.00   0.00            0.00
## make up remover             0.00      0.00 0.00 0.00   0.00            0.00
## salad dressing              0.00      0.00 0.00 0.00   0.00            0.00
## frozen chicken              0.00      0.00 0.00 0.00   0.00            0.00
## whisky                      0.00      0.00 0.00 0.00   0.00            0.00
## baby cosmetics              0.00      0.00 0.00 0.00   0.00            0.00
## toilet cleaner              0.00      0.00 0.00 0.00   0.00            0.00
## bags                        0.00      0.00 0.00 0.00   0.00            0.00
## canned herbs                0.00      0.00 0.00 0.00   0.00            0.00
## kitchen utensil             0.00      0.00 0.00 0.00   0.00            0.00
## preservation products       0.00      0.00 0.00 0.00   0.00            0.00
## baby food                   0.00      0.00 0.00 0.00   0.00            0.00
## frozen herbss               0.00      0.00 0.00 0.00   0.00            0.00
## organic sausage             0.00      0.00 0.00 0.00   0.00            0.00
## sound storage medium        0.00      0.00 0.00 0.00   0.00            0.00
##                           napkins halal meat chocolate frozen vegetables
## rice                         0.02       0.02      0.02              0.02
## veggies                      0.01       0.02      0.01              0.02
## loaf                         0.01       0.01      0.01              0.01
## coke                         0.01       0.01      0.01              0.01
## yogurt                       0.01       0.01      0.01              0.01
## vegetables                   0.01       0.01      0.01              0.01
## mineral water                0.01       0.01      0.01              0.01
## Plastic bags                 0.01       0.01      0.01              0.00
## tropical fruit               0.01       0.01      0.01              0.01
## marinated meat               0.01       0.01      0.01              0.01
## pies/pasties                 0.01       0.01      0.01              0.00
## newspapers                   0.01       0.01      0.01              0.00
## citrus                       0.01       0.01      0.01              0.01
## whipped/sour cream           0.01       0.01      0.00              0.01
## heinken                      0.00       0.00      0.00              0.00
## green tea                    0.00       0.00      0.00              0.00
## pip fruit                    0.01       0.01      0.01              0.01
## brown bread                  0.00       0.00      0.00              0.00
## fruit/vegetable juice        0.01       0.00      0.01              0.01
## domestic eggs                0.01       0.00      0.00              0.01
## coffee                       0.00       0.00      0.00              0.00
## margarine                    0.00       0.01      0.00              0.00
## beef                         0.00       0.01      0.00              0.00
## curd                         0.01       0.00      0.00              0.00
## butter                       0.00       0.00      0.01              0.01
## marinated meats              0.00       0.01      0.00              0.00
## napkins                      0.05       0.00      0.00              0.00
## halal meat                   0.00       0.05      0.00              0.01
## chocolate                    0.00       0.00      0.05              0.00
## frozen vegetables            0.00       0.01      0.00              0.05
## chicken                      0.00       0.01      0.00              0.01
## white bread                  0.00       0.00      0.00              0.00
## cream cheese                 0.00       0.00      0.00              0.00
## waffles                      0.00       0.00      0.01              0.00
## dessert                      0.00       0.00      0.00              0.00
## salty snack                  0.00       0.00      0.00              0.00
## long life bakery product     0.00       0.00      0.00              0.00
## berries                      0.00       0.00      0.00              0.00
## hamburger meat               0.00       0.00      0.00              0.00
## sugar                        0.00       0.00      0.00              0.00
## hygiene articles             0.01       0.00      0.00              0.00
## UHT-milk                     0.00       0.00      0.00              0.00
## onions                       0.00       0.00      0.00              0.00
## candy                        0.00       0.00      0.00              0.00
## specialty chocolate          0.00       0.00      0.00              0.00
## butter milk                  0.00       0.00      0.00              0.00
## oil                          0.00       0.00      0.00              0.00
## frozen meals                 0.00       0.00      0.00              0.00
## misc. beverages              0.00       0.00      0.00              0.00
## specialty bar                0.00       0.00      0.00              0.00
## ham                          0.00       0.00      0.00              0.00
## beverages                    0.00       0.00      0.00              0.00
## meat                         0.00       0.00      0.00              0.00
## ice cream                    0.00       0.00      0.00              0.00
## sliced cheese                0.00       0.00      0.00              0.00
## hard cheese                  0.00       0.00      0.00              0.00
## noodles                      0.00       0.00      0.00              0.00
## grapes                       0.00       0.00      0.00              0.00
## cat food                     0.00       0.00      0.00              0.00
## chewing gum                  0.00       0.00      0.00              0.00
## soda                         0.00       0.00      0.00              0.00
## detergent                    0.00       0.00      0.00              0.00
## red/blush wine               0.00       0.00      0.00              0.00
## white wine                   0.00       0.00      0.00              0.00
## turkey                       0.00       0.00      0.00              0.00
## dishes                       0.00       0.00      0.00              0.00
## bottled water                0.00       0.00      0.00              0.00
## flour                        0.00       0.00      0.00              0.00
## semi-finished bread          0.00       0.00      0.00              0.00
## baking powder                0.00       0.00      0.00              0.00
## pickled vegetables           0.00       0.00      0.00              0.00
## herbs                        0.00       0.00      0.00              0.00
## tropical herbs               0.00       0.00      0.00              0.00
## soft cheese                  0.00       0.00      0.00              0.00
## tea                          0.00       0.00      0.00              0.00
## processed cheese             0.00       0.00      0.00              0.00
## sausage                      0.00       0.00      0.00              0.00
## pasta                        0.00       0.00      0.00              0.00
## citrus herbs                 0.00       0.00      0.00              0.00
## potted plants                0.00       0.00      0.00              0.00
## canned fish                  0.00       0.00      0.00              0.00
## seasonal products            0.00       0.00      0.00              0.00
## cake bar                     0.00       0.00      0.00              0.00
## carrots                      0.00       0.00      0.00              0.00
## mustard                      0.00       0.00      0.00              0.00
## packaged fruit/vegetables    0.00       0.00      0.00              0.00
## spread cheese                0.00       0.00      0.00              0.00
## frozen dessert               0.00       0.00      0.00              0.00
## frozen fish                  0.00       0.00      0.00              0.00
## cling film/bags              0.00       0.00      0.00              0.00
## salt                         0.00       0.00      0.00              0.00
## liquor                       0.00       0.00      0.00              0.00
## canned vegetables            0.00       0.00      0.00              0.00
## bottled beer                 0.00       0.00      0.00              0.00
## flower (seeds)               0.00       0.00      0.00              0.00
## cooking oil                  0.00       0.00      0.00              0.00
## dish cleaner                 0.00       0.00      0.00              0.00
## condensed milk               0.00       0.00      0.00              0.00
## roll products                0.00       0.00      0.00              0.00
## photo/film                   0.00       0.00      0.00              0.00
## pet care                     0.00       0.00      0.00              0.00
## chocolate marshmallow        0.00       0.00      0.00              0.00
## herbs/vegetable juice        0.00       0.00      0.00              0.00
## whole milk                   0.00       0.00      0.00              0.00
## candles                      0.00       0.00      0.00              0.00
## mayonnaise                   0.00       0.00      0.00              0.00
## Instant food products        0.00       0.00      0.00              0.00
## sweet spreads                0.00       0.00      0.00              0.00
## liquor (appetizer)           0.00       0.00      0.00              0.00
## specialty cheese             0.00       0.00      0.00              0.00
## frozen potato products       0.00       0.00      0.00              0.00
## house keeping products       0.00       0.00      0.00              0.00
## dog food                     0.00       0.00      0.00              0.00
## soy                          0.00       0.00      0.00              0.00
## instant coffee               0.00       0.00      0.00              0.00
## pip herbs                    0.00       0.00      0.00              0.00
## zwieback                     0.00       0.00      0.00              0.00
## finished products            0.00       0.00      0.00              0.00
## popcorn                      0.00       0.00      0.00              0.00
## vinegar                      0.00       0.00      0.00              0.00
## soups                        0.00       0.00      0.00              0.00
## female sanitary products     0.00       0.00      0.00              0.00
## sparkling wine               0.00       0.00      0.00              0.00
## dental care                  0.00       0.00      0.00              0.00
## cereals                      0.00       0.00      0.00              0.00
## kitchen towels               0.00       0.00      0.00              0.00
## curd cheese                  0.00       0.00      0.00              0.00
## other vegetables             0.00       0.00      0.00              0.00
## rolls/buns                   0.00       0.00      0.00              0.00
## softener                     0.00       0.00      0.00              0.00
## cleaner                      0.00       0.00      0.00              0.00
## spices                       0.00       0.00      0.00              0.00
## jam                          0.00       0.00      0.00              0.00
## sauces                       0.00       0.00      0.00              0.00
## rum                          0.00       0.00      0.00              0.00
## liver loaf                   0.00       0.00      0.00              0.00
## male cosmetics               0.00       0.00      0.00              0.00
## meat spreads                 0.00       0.00      0.00              0.00
## packaged herbs/vegetables    0.00       0.00      0.00              0.00
## brandy                       0.00       0.00      0.00              0.00
## ketchup                      0.00       0.00      0.00              0.00
## abrasive cleaner             0.00       0.00      0.00              0.00
## light bulbs                  0.00       0.00      0.00              0.00
## artif. sweetener             0.00       0.00      0.00              0.00
## nuts/prunes                  0.00       0.00      0.00              0.00
## specialty fat                0.00       0.00      0.00              0.00
## skin care                    0.00       0.00      0.00              0.00
## fish                         0.00       0.00      0.00              0.00
## potato products              0.00       0.00      0.00              0.00
## root vegetables              0.00       0.00      0.00              0.00
## snack products               0.00       0.00      0.00              0.00
## nut snack                    0.00       0.00      0.00              0.00
## soap                         0.00       0.00      0.00              0.00
## syrup                        0.00       0.00      0.00              0.00
## bathroom cleaner             0.00       0.00      0.00              0.00
## canned fruit                 0.00       0.00      0.00              0.00
## cookware                     0.00       0.00      0.00              0.00
## cooking chocolate            0.00       0.00      0.00              0.00
## tidbits                      0.00       0.00      0.00              0.00
## cocoa drinks                 0.00       0.00      0.00              0.00
## pudding powder               0.00       0.00      0.00              0.00
## ready soups                  0.00       0.00      0.00              0.00
## organic marinated meat       0.00       0.00      0.00              0.00
## flower soil/fertilizer       0.00       0.00      0.00              0.00
## organic products             0.00       0.00      0.00              0.00
## pot plants                   0.00       0.00      0.00              0.00
## prosecco                     0.00       0.00      0.00              0.00
## frankfurter                  0.00       0.00      0.00              0.00
## decalcifier                  0.00       0.00      0.00              0.00
## honey                        0.00       0.00      0.00              0.00
## specialty vegetables         0.00       0.00      0.00              0.00
## cream                        0.00       0.00      0.00              0.00
## hair spray                   0.00       0.00      0.00              0.00
## frozen fruits                0.00       0.00      0.00              0.00
## rubbing alcohol              0.00       0.00      0.00              0.00
## liqueur                      0.00       0.00      0.00              0.00
## make up remover              0.00       0.00      0.00              0.00
## salad dressing               0.00       0.00      0.00              0.00
## frozen chicken               0.00       0.00      0.00              0.00
## whisky                       0.00       0.00      0.00              0.00
## baby cosmetics               0.00       0.00      0.00              0.00
## toilet cleaner               0.00       0.00      0.00              0.00
## bags                         0.00       0.00      0.00              0.00
## canned herbs                 0.00       0.00      0.00              0.00
## kitchen utensil              0.00       0.00      0.00              0.00
## preservation products        0.00       0.00      0.00              0.00
## baby food                    0.00       0.00      0.00              0.00
## frozen herbss                0.00       0.00      0.00              0.00
## organic sausage              0.00       0.00      0.00              0.00
## sound storage medium         0.00       0.00      0.00              0.00
##                           chicken white bread cream cheese waffles dessert
## rice                         0.02        0.02         0.02    0.01    0.01
## veggies                      0.02        0.01         0.01    0.01    0.01
## loaf                         0.01        0.01         0.01    0.01    0.01
## coke                         0.01        0.01         0.01    0.01    0.01
## yogurt                       0.01        0.01         0.01    0.01    0.01
## vegetables                   0.01        0.01         0.01    0.01    0.01
## mineral water                0.00        0.00         0.01    0.00    0.00
## Plastic bags                 0.00        0.01         0.01    0.01    0.01
## tropical fruit               0.01        0.01         0.01    0.01    0.01
## marinated meat               0.00        0.01         0.00    0.00    0.01
## pies/pasties                 0.00        0.01         0.00    0.01    0.01
## newspapers                   0.00        0.00         0.00    0.00    0.00
## citrus                       0.01        0.00         0.00    0.00    0.00
## whipped/sour cream           0.01        0.01         0.01    0.01    0.00
## heinken                      0.00        0.00         0.00    0.00    0.00
## green tea                    0.00        0.00         0.00    0.00    0.00
## pip fruit                    0.00        0.01         0.01    0.00    0.00
## brown bread                  0.00        0.00         0.00    0.00    0.00
## fruit/vegetable juice        0.00        0.01         0.00    0.00    0.01
## domestic eggs                0.01        0.01         0.01    0.00    0.00
## coffee                       0.00        0.00         0.00    0.00    0.00
## margarine                    0.00        0.00         0.00    0.00    0.00
## beef                         0.00        0.00         0.00    0.00    0.00
## curd                         0.00        0.00         0.01    0.00    0.01
## butter                       0.01        0.00         0.00    0.00    0.00
## marinated meats              0.00        0.00         0.00    0.00    0.00
## napkins                      0.00        0.00         0.00    0.00    0.00
## halal meat                   0.01        0.00         0.00    0.00    0.00
## chocolate                    0.00        0.00         0.00    0.01    0.00
## frozen vegetables            0.01        0.00         0.00    0.00    0.00
## chicken                      0.04        0.00         0.00    0.00    0.00
## white bread                  0.00        0.04         0.00    0.00    0.00
## cream cheese                 0.00        0.00         0.04    0.00    0.00
## waffles                      0.00        0.00         0.00    0.04    0.00
## dessert                      0.00        0.00         0.00    0.00    0.04
## salty snack                  0.00        0.00         0.00    0.00    0.00
## long life bakery product     0.00        0.00         0.00    0.00    0.00
## berries                      0.00        0.00         0.00    0.00    0.00
## hamburger meat               0.00        0.00         0.00    0.00    0.00
## sugar                        0.00        0.00         0.00    0.00    0.00
## hygiene articles             0.00        0.00         0.00    0.00    0.00
## UHT-milk                     0.00        0.00         0.00    0.00    0.00
## onions                       0.00        0.00         0.00    0.00    0.00
## candy                        0.00        0.00         0.00    0.00    0.00
## specialty chocolate          0.00        0.00         0.00    0.00    0.00
## butter milk                  0.00        0.00         0.00    0.00    0.00
## oil                          0.00        0.00         0.00    0.00    0.00
## frozen meals                 0.00        0.00         0.00    0.00    0.00
## misc. beverages              0.00        0.00         0.00    0.00    0.00
## specialty bar                0.00        0.00         0.00    0.00    0.00
## ham                          0.00        0.01         0.00    0.00    0.00
## beverages                    0.00        0.00         0.00    0.00    0.00
## meat                         0.00        0.00         0.00    0.00    0.00
## ice cream                    0.00        0.00         0.00    0.00    0.00
## sliced cheese                0.00        0.00         0.00    0.00    0.00
## hard cheese                  0.00        0.00         0.00    0.00    0.00
## noodles                      0.00        0.00         0.00    0.00    0.00
## grapes                       0.00        0.00         0.00    0.00    0.00
## cat food                     0.00        0.00         0.00    0.00    0.00
## chewing gum                  0.00        0.00         0.00    0.00    0.00
## soda                         0.00        0.00         0.00    0.00    0.00
## detergent                    0.00        0.00         0.00    0.00    0.00
## red/blush wine               0.00        0.00         0.00    0.00    0.00
## white wine                   0.00        0.00         0.00    0.00    0.00
## turkey                       0.00        0.00         0.00    0.00    0.00
## dishes                       0.00        0.00         0.00    0.00    0.00
## bottled water                0.00        0.00         0.00    0.00    0.00
## flour                        0.00        0.00         0.00    0.00    0.00
## semi-finished bread          0.00        0.00         0.00    0.00    0.00
## baking powder                0.00        0.00         0.00    0.00    0.00
## pickled vegetables           0.00        0.00         0.00    0.00    0.00
## herbs                        0.00        0.00         0.00    0.00    0.00
## tropical herbs               0.00        0.00         0.00    0.00    0.00
## soft cheese                  0.00        0.00         0.00    0.00    0.00
## tea                          0.00        0.00         0.00    0.00    0.00
## processed cheese             0.00        0.00         0.00    0.00    0.00
## sausage                      0.00        0.00         0.00    0.00    0.00
## pasta                        0.00        0.00         0.00    0.00    0.00
## citrus herbs                 0.00        0.00         0.00    0.00    0.00
## potted plants                0.00        0.00         0.00    0.00    0.00
## canned fish                  0.00        0.00         0.00    0.00    0.00
## seasonal products            0.00        0.00         0.00    0.00    0.00
## cake bar                     0.00        0.00         0.00    0.00    0.00
## carrots                      0.00        0.00         0.00    0.00    0.00
## mustard                      0.00        0.00         0.00    0.00    0.00
## packaged fruit/vegetables    0.00        0.00         0.00    0.00    0.00
## spread cheese                0.00        0.00         0.00    0.00    0.00
## frozen dessert               0.00        0.00         0.00    0.00    0.00
## frozen fish                  0.00        0.00         0.00    0.00    0.00
## cling film/bags              0.00        0.00         0.00    0.00    0.00
## salt                         0.00        0.00         0.00    0.00    0.00
## liquor                       0.00        0.00         0.00    0.00    0.00
## canned vegetables            0.00        0.00         0.00    0.00    0.00
## bottled beer                 0.00        0.00         0.00    0.00    0.00
## flower (seeds)               0.00        0.00         0.00    0.00    0.00
## cooking oil                  0.00        0.00         0.00    0.00    0.00
## dish cleaner                 0.00        0.00         0.00    0.00    0.00
## condensed milk               0.00        0.00         0.00    0.00    0.00
## roll products                0.00        0.00         0.00    0.00    0.00
## photo/film                   0.00        0.00         0.00    0.00    0.00
## pet care                     0.00        0.00         0.00    0.00    0.00
## chocolate marshmallow        0.00        0.00         0.00    0.00    0.00
## herbs/vegetable juice        0.00        0.00         0.00    0.00    0.00
## whole milk                   0.00        0.00         0.00    0.00    0.00
## candles                      0.00        0.00         0.00    0.00    0.00
## mayonnaise                   0.00        0.00         0.00    0.00    0.00
## Instant food products        0.00        0.00         0.00    0.00    0.00
## sweet spreads                0.00        0.00         0.00    0.00    0.00
## liquor (appetizer)           0.00        0.00         0.00    0.00    0.00
## specialty cheese             0.00        0.00         0.00    0.00    0.00
## frozen potato products       0.00        0.00         0.00    0.00    0.00
## house keeping products       0.00        0.00         0.00    0.00    0.00
## dog food                     0.00        0.00         0.00    0.00    0.00
## soy                          0.00        0.00         0.00    0.00    0.00
## instant coffee               0.00        0.00         0.00    0.00    0.00
## pip herbs                    0.00        0.00         0.00    0.00    0.00
## zwieback                     0.00        0.00         0.00    0.00    0.00
## finished products            0.00        0.00         0.00    0.00    0.00
## popcorn                      0.00        0.00         0.00    0.00    0.00
## vinegar                      0.00        0.00         0.00    0.00    0.00
## soups                        0.00        0.00         0.00    0.00    0.00
## female sanitary products     0.00        0.00         0.00    0.00    0.00
## sparkling wine               0.00        0.00         0.00    0.00    0.00
## dental care                  0.00        0.00         0.00    0.00    0.00
## cereals                      0.00        0.00         0.00    0.00    0.00
## kitchen towels               0.00        0.00         0.00    0.00    0.00
## curd cheese                  0.00        0.00         0.00    0.00    0.00
## other vegetables             0.00        0.00         0.00    0.00    0.00
## rolls/buns                   0.00        0.00         0.00    0.00    0.00
## softener                     0.00        0.00         0.00    0.00    0.00
## cleaner                      0.00        0.00         0.00    0.00    0.00
## spices                       0.00        0.00         0.00    0.00    0.00
## jam                          0.00        0.00         0.00    0.00    0.00
## sauces                       0.00        0.00         0.00    0.00    0.00
## rum                          0.00        0.00         0.00    0.00    0.00
## liver loaf                   0.00        0.00         0.00    0.00    0.00
## male cosmetics               0.00        0.00         0.00    0.00    0.00
## meat spreads                 0.00        0.00         0.00    0.00    0.00
## packaged herbs/vegetables    0.00        0.00         0.00    0.00    0.00
## brandy                       0.00        0.00         0.00    0.00    0.00
## ketchup                      0.00        0.00         0.00    0.00    0.00
## abrasive cleaner             0.00        0.00         0.00    0.00    0.00
## light bulbs                  0.00        0.00         0.00    0.00    0.00
## artif. sweetener             0.00        0.00         0.00    0.00    0.00
## nuts/prunes                  0.00        0.00         0.00    0.00    0.00
## specialty fat                0.00        0.00         0.00    0.00    0.00
## skin care                    0.00        0.00         0.00    0.00    0.00
## fish                         0.00        0.00         0.00    0.00    0.00
## potato products              0.00        0.00         0.00    0.00    0.00
## root vegetables              0.00        0.00         0.00    0.00    0.00
## snack products               0.00        0.00         0.00    0.00    0.00
## nut snack                    0.00        0.00         0.00    0.00    0.00
## soap                         0.00        0.00         0.00    0.00    0.00
## syrup                        0.00        0.00         0.00    0.00    0.00
## bathroom cleaner             0.00        0.00         0.00    0.00    0.00
## canned fruit                 0.00        0.00         0.00    0.00    0.00
## cookware                     0.00        0.00         0.00    0.00    0.00
## cooking chocolate            0.00        0.00         0.00    0.00    0.00
## tidbits                      0.00        0.00         0.00    0.00    0.00
## cocoa drinks                 0.00        0.00         0.00    0.00    0.00
## pudding powder               0.00        0.00         0.00    0.00    0.00
## ready soups                  0.00        0.00         0.00    0.00    0.00
## organic marinated meat       0.00        0.00         0.00    0.00    0.00
## flower soil/fertilizer       0.00        0.00         0.00    0.00    0.00
## organic products             0.00        0.00         0.00    0.00    0.00
## pot plants                   0.00        0.00         0.00    0.00    0.00
## prosecco                     0.00        0.00         0.00    0.00    0.00
## frankfurter                  0.00        0.00         0.00    0.00    0.00
## decalcifier                  0.00        0.00         0.00    0.00    0.00
## honey                        0.00        0.00         0.00    0.00    0.00
## specialty vegetables         0.00        0.00         0.00    0.00    0.00
## cream                        0.00        0.00         0.00    0.00    0.00
## hair spray                   0.00        0.00         0.00    0.00    0.00
## frozen fruits                0.00        0.00         0.00    0.00    0.00
## rubbing alcohol              0.00        0.00         0.00    0.00    0.00
## liqueur                      0.00        0.00         0.00    0.00    0.00
## make up remover              0.00        0.00         0.00    0.00    0.00
## salad dressing               0.00        0.00         0.00    0.00    0.00
## frozen chicken               0.00        0.00         0.00    0.00    0.00
## whisky                       0.00        0.00         0.00    0.00    0.00
## baby cosmetics               0.00        0.00         0.00    0.00    0.00
## toilet cleaner               0.00        0.00         0.00    0.00    0.00
## bags                         0.00        0.00         0.00    0.00    0.00
## canned herbs                 0.00        0.00         0.00    0.00    0.00
## kitchen utensil              0.00        0.00         0.00    0.00    0.00
## preservation products        0.00        0.00         0.00    0.00    0.00
## baby food                    0.00        0.00         0.00    0.00    0.00
## frozen herbss                0.00        0.00         0.00    0.00    0.00
## organic sausage              0.00        0.00         0.00    0.00    0.00
## sound storage medium         0.00        0.00         0.00    0.00    0.00
##                           salty snack long life bakery product berries
## rice                             0.01                     0.01    0.01
## veggies                          0.01                     0.01    0.01
## loaf                             0.00                     0.01    0.01
## coke                             0.01                     0.01    0.01
## yogurt                           0.01                     0.01    0.01
## vegetables                       0.01                     0.01    0.01
## mineral water                    0.00                     0.00    0.00
## Plastic bags                     0.01                     0.01    0.00
## tropical fruit                   0.00                     0.01    0.01
## marinated meat                   0.00                     0.00    0.00
## pies/pasties                     0.00                     0.01    0.00
## newspapers                       0.00                     0.00    0.00
## citrus                           0.00                     0.00    0.00
## whipped/sour cream               0.00                     0.01    0.01
## heinken                          0.00                     0.00    0.00
## green tea                        0.00                     0.00    0.00
## pip fruit                        0.00                     0.00    0.00
## brown bread                      0.00                     0.00    0.00
## fruit/vegetable juice            0.01                     0.01    0.00
## domestic eggs                    0.00                     0.00    0.00
## coffee                           0.00                     0.00    0.00
## margarine                        0.00                     0.00    0.00
## beef                             0.00                     0.00    0.01
## curd                             0.00                     0.00    0.00
## butter                           0.00                     0.00    0.00
## marinated meats                  0.00                     0.00    0.00
## napkins                          0.00                     0.00    0.00
## halal meat                       0.00                     0.00    0.00
## chocolate                        0.00                     0.00    0.00
## frozen vegetables                0.00                     0.00    0.00
## chicken                          0.00                     0.00    0.00
## white bread                      0.00                     0.00    0.00
## cream cheese                     0.00                     0.00    0.00
## waffles                          0.00                     0.00    0.00
## dessert                          0.00                     0.00    0.00
## salty snack                      0.04                     0.00    0.00
## long life bakery product         0.00                     0.04    0.00
## berries                          0.00                     0.00    0.04
## hamburger meat                   0.00                     0.00    0.00
## sugar                            0.00                     0.00    0.00
## hygiene articles                 0.00                     0.00    0.00
## UHT-milk                         0.00                     0.00    0.00
## onions                           0.00                     0.00    0.00
## candy                            0.00                     0.00    0.00
## specialty chocolate              0.00                     0.00    0.00
## butter milk                      0.00                     0.00    0.00
## oil                              0.00                     0.00    0.00
## frozen meals                     0.00                     0.00    0.00
## misc. beverages                  0.00                     0.00    0.00
## specialty bar                    0.00                     0.00    0.00
## ham                              0.00                     0.00    0.00
## beverages                        0.00                     0.00    0.00
## meat                             0.00                     0.00    0.00
## ice cream                        0.00                     0.00    0.00
## sliced cheese                    0.00                     0.00    0.00
## hard cheese                      0.00                     0.00    0.00
## noodles                          0.00                     0.00    0.00
## grapes                           0.00                     0.00    0.00
## cat food                         0.00                     0.00    0.00
## chewing gum                      0.00                     0.00    0.00
## soda                             0.00                     0.00    0.00
## detergent                        0.00                     0.00    0.00
## red/blush wine                   0.00                     0.00    0.00
## white wine                       0.00                     0.00    0.00
## turkey                           0.00                     0.00    0.00
## dishes                           0.00                     0.00    0.00
## bottled water                    0.00                     0.00    0.00
## flour                            0.00                     0.00    0.00
## semi-finished bread              0.00                     0.00    0.00
## baking powder                    0.00                     0.00    0.00
## pickled vegetables               0.00                     0.00    0.00
## herbs                            0.00                     0.00    0.00
## tropical herbs                   0.00                     0.00    0.00
## soft cheese                      0.00                     0.00    0.00
## tea                              0.00                     0.00    0.00
## processed cheese                 0.00                     0.00    0.00
## sausage                          0.00                     0.00    0.00
## pasta                            0.00                     0.00    0.00
## citrus herbs                     0.00                     0.00    0.00
## potted plants                    0.00                     0.00    0.00
## canned fish                      0.00                     0.00    0.00
## seasonal products                0.00                     0.00    0.00
## cake bar                         0.00                     0.00    0.00
## carrots                          0.00                     0.00    0.00
## mustard                          0.00                     0.00    0.00
## packaged fruit/vegetables        0.00                     0.00    0.00
## spread cheese                    0.00                     0.00    0.00
## frozen dessert                   0.00                     0.00    0.00
## frozen fish                      0.00                     0.00    0.00
## cling film/bags                  0.00                     0.00    0.00
## salt                             0.00                     0.00    0.00
## liquor                           0.00                     0.00    0.00
## canned vegetables                0.00                     0.00    0.00
## bottled beer                     0.00                     0.00    0.00
## flower (seeds)                   0.00                     0.00    0.00
## cooking oil                      0.00                     0.00    0.00
## dish cleaner                     0.00                     0.00    0.00
## condensed milk                   0.00                     0.00    0.00
## roll products                    0.00                     0.00    0.00
## photo/film                       0.00                     0.00    0.00
## pet care                         0.00                     0.00    0.00
## chocolate marshmallow            0.00                     0.00    0.00
## herbs/vegetable juice            0.00                     0.00    0.00
## whole milk                       0.00                     0.00    0.00
## candles                          0.00                     0.00    0.00
## mayonnaise                       0.00                     0.00    0.00
## Instant food products            0.00                     0.00    0.00
## sweet spreads                    0.00                     0.00    0.00
## liquor (appetizer)               0.00                     0.00    0.00
## specialty cheese                 0.00                     0.00    0.00
## frozen potato products           0.00                     0.00    0.00
## house keeping products           0.00                     0.00    0.00
## dog food                         0.00                     0.00    0.00
## soy                              0.00                     0.00    0.00
## instant coffee                   0.00                     0.00    0.00
## pip herbs                        0.00                     0.00    0.00
## zwieback                         0.00                     0.00    0.00
## finished products                0.00                     0.00    0.00
## popcorn                          0.00                     0.00    0.00
## vinegar                          0.00                     0.00    0.00
## soups                            0.00                     0.00    0.00
## female sanitary products         0.00                     0.00    0.00
## sparkling wine                   0.00                     0.00    0.00
## dental care                      0.00                     0.00    0.00
## cereals                          0.00                     0.00    0.00
## kitchen towels                   0.00                     0.00    0.00
## curd cheese                      0.00                     0.00    0.00
## other vegetables                 0.00                     0.00    0.00
## rolls/buns                       0.00                     0.00    0.00
## softener                         0.00                     0.00    0.00
## cleaner                          0.00                     0.00    0.00
## spices                           0.00                     0.00    0.00
## jam                              0.00                     0.00    0.00
## sauces                           0.00                     0.00    0.00
## rum                              0.00                     0.00    0.00
## liver loaf                       0.00                     0.00    0.00
## male cosmetics                   0.00                     0.00    0.00
## meat spreads                     0.00                     0.00    0.00
## packaged herbs/vegetables        0.00                     0.00    0.00
## brandy                           0.00                     0.00    0.00
## ketchup                          0.00                     0.00    0.00
## abrasive cleaner                 0.00                     0.00    0.00
## light bulbs                      0.00                     0.00    0.00
## artif. sweetener                 0.00                     0.00    0.00
## nuts/prunes                      0.00                     0.00    0.00
## specialty fat                    0.00                     0.00    0.00
## skin care                        0.00                     0.00    0.00
## fish                             0.00                     0.00    0.00
## potato products                  0.00                     0.00    0.00
## root vegetables                  0.00                     0.00    0.00
## snack products                   0.00                     0.00    0.00
## nut snack                        0.00                     0.00    0.00
## soap                             0.00                     0.00    0.00
## syrup                            0.00                     0.00    0.00
## bathroom cleaner                 0.00                     0.00    0.00
## canned fruit                     0.00                     0.00    0.00
## cookware                         0.00                     0.00    0.00
## cooking chocolate                0.00                     0.00    0.00
## tidbits                          0.00                     0.00    0.00
## cocoa drinks                     0.00                     0.00    0.00
## pudding powder                   0.00                     0.00    0.00
## ready soups                      0.00                     0.00    0.00
## organic marinated meat           0.00                     0.00    0.00
## flower soil/fertilizer           0.00                     0.00    0.00
## organic products                 0.00                     0.00    0.00
## pot plants                       0.00                     0.00    0.00
## prosecco                         0.00                     0.00    0.00
## frankfurter                      0.00                     0.00    0.00
## decalcifier                      0.00                     0.00    0.00
## honey                            0.00                     0.00    0.00
## specialty vegetables             0.00                     0.00    0.00
## cream                            0.00                     0.00    0.00
## hair spray                       0.00                     0.00    0.00
## frozen fruits                    0.00                     0.00    0.00
## rubbing alcohol                  0.00                     0.00    0.00
## liqueur                          0.00                     0.00    0.00
## make up remover                  0.00                     0.00    0.00
## salad dressing                   0.00                     0.00    0.00
## frozen chicken                   0.00                     0.00    0.00
## whisky                           0.00                     0.00    0.00
## baby cosmetics                   0.00                     0.00    0.00
## toilet cleaner                   0.00                     0.00    0.00
## bags                             0.00                     0.00    0.00
## canned herbs                     0.00                     0.00    0.00
## kitchen utensil                  0.00                     0.00    0.00
## preservation products            0.00                     0.00    0.00
## baby food                        0.00                     0.00    0.00
## frozen herbss                    0.00                     0.00    0.00
## organic sausage                  0.00                     0.00    0.00
## sound storage medium             0.00                     0.00    0.00
##                           hamburger meat sugar hygiene articles UHT-milk onions
## rice                                0.02  0.01             0.01     0.00   0.01
## veggies                             0.01  0.01             0.01     0.01   0.01
## loaf                                0.01  0.01             0.01     0.01   0.01
## coke                                0.01  0.01             0.01     0.01   0.00
## yogurt                              0.01  0.01             0.01     0.01   0.01
## vegetables                          0.01  0.01             0.01     0.01   0.01
## mineral water                       0.00  0.00             0.00     0.01   0.01
## Plastic bags                        0.00  0.00             0.00     0.00   0.00
## tropical fruit                      0.00  0.00             0.01     0.00   0.00
## marinated meat                      0.00  0.00             0.00     0.00   0.00
## pies/pasties                        0.00  0.00             0.00     0.00   0.00
## newspapers                          0.00  0.00             0.00     0.00   0.00
## citrus                              0.00  0.00             0.00     0.00   0.00
## whipped/sour cream                  0.00  0.01             0.00     0.00   0.00
## heinken                             0.00  0.00             0.00     0.00   0.00
## green tea                           0.00  0.00             0.00     0.00   0.00
## pip fruit                           0.00  0.00             0.00     0.00   0.00
## brown bread                         0.00  0.00             0.00     0.00   0.00
## fruit/vegetable juice               0.00  0.00             0.00     0.00   0.00
## domestic eggs                       0.00  0.00             0.01     0.00   0.01
## coffee                              0.00  0.00             0.00     0.00   0.00
## margarine                           0.00  0.01             0.00     0.00   0.00
## beef                                0.00  0.00             0.00     0.00   0.00
## curd                                0.00  0.00             0.00     0.00   0.00
## butter                              0.00  0.00             0.00     0.00   0.00
## marinated meats                     0.00  0.00             0.00     0.00   0.00
## napkins                             0.00  0.00             0.01     0.00   0.00
## halal meat                          0.00  0.00             0.00     0.00   0.00
## chocolate                           0.00  0.00             0.00     0.00   0.00
## frozen vegetables                   0.00  0.00             0.00     0.00   0.00
## chicken                             0.00  0.00             0.00     0.00   0.00
## white bread                         0.00  0.00             0.00     0.00   0.00
## cream cheese                        0.00  0.00             0.00     0.00   0.00
## waffles                             0.00  0.00             0.00     0.00   0.00
## dessert                             0.00  0.00             0.00     0.00   0.00
## salty snack                         0.00  0.00             0.00     0.00   0.00
## long life bakery product            0.00  0.00             0.00     0.00   0.00
## berries                             0.00  0.00             0.00     0.00   0.00
## hamburger meat                      0.04  0.00             0.00     0.00   0.00
## sugar                               0.00  0.03             0.00     0.00   0.00
## hygiene articles                    0.00  0.00             0.03     0.00   0.00
## UHT-milk                            0.00  0.00             0.00     0.03   0.00
## onions                              0.00  0.00             0.00     0.00   0.03
## candy                               0.00  0.00             0.00     0.00   0.00
## specialty chocolate                 0.00  0.00             0.00     0.00   0.00
## butter milk                         0.00  0.00             0.00     0.00   0.00
## oil                                 0.00  0.00             0.00     0.00   0.00
## frozen meals                        0.00  0.00             0.00     0.00   0.00
## misc. beverages                     0.00  0.00             0.00     0.00   0.00
## specialty bar                       0.00  0.00             0.00     0.00   0.00
## ham                                 0.00  0.00             0.00     0.00   0.00
## beverages                           0.00  0.00             0.00     0.00   0.00
## meat                                0.00  0.00             0.00     0.00   0.00
## ice cream                           0.00  0.00             0.00     0.00   0.00
## sliced cheese                       0.00  0.00             0.00     0.00   0.00
## hard cheese                         0.00  0.00             0.00     0.00   0.00
## noodles                             0.00  0.00             0.00     0.00   0.00
## grapes                              0.00  0.00             0.00     0.00   0.00
## cat food                            0.00  0.00             0.00     0.00   0.00
## chewing gum                         0.00  0.00             0.00     0.00   0.00
## soda                                0.00  0.00             0.00     0.00   0.00
## detergent                           0.00  0.00             0.00     0.00   0.00
## red/blush wine                      0.00  0.00             0.00     0.00   0.00
## white wine                          0.00  0.00             0.00     0.00   0.00
## turkey                              0.00  0.00             0.00     0.00   0.00
## dishes                              0.00  0.00             0.00     0.00   0.00
## bottled water                       0.00  0.00             0.00     0.00   0.00
## flour                               0.00  0.00             0.00     0.00   0.00
## semi-finished bread                 0.00  0.00             0.00     0.00   0.00
## baking powder                       0.00  0.00             0.00     0.00   0.00
## pickled vegetables                  0.00  0.00             0.00     0.00   0.00
## herbs                               0.00  0.00             0.00     0.00   0.00
## tropical herbs                      0.00  0.00             0.00     0.00   0.00
## soft cheese                         0.00  0.00             0.00     0.00   0.00
## tea                                 0.00  0.00             0.00     0.00   0.00
## processed cheese                    0.00  0.00             0.00     0.00   0.00
## sausage                             0.00  0.00             0.00     0.00   0.00
## pasta                               0.00  0.00             0.00     0.00   0.00
## citrus herbs                        0.00  0.00             0.00     0.00   0.00
## potted plants                       0.00  0.00             0.00     0.00   0.00
## canned fish                         0.00  0.00             0.00     0.00   0.00
## seasonal products                   0.00  0.00             0.00     0.00   0.00
## cake bar                            0.00  0.00             0.00     0.00   0.00
## carrots                             0.00  0.00             0.00     0.00   0.00
## mustard                             0.00  0.00             0.00     0.00   0.00
## packaged fruit/vegetables           0.00  0.00             0.00     0.00   0.00
## spread cheese                       0.00  0.00             0.00     0.00   0.00
## frozen dessert                      0.00  0.00             0.00     0.00   0.00
## frozen fish                         0.00  0.00             0.00     0.00   0.00
## cling film/bags                     0.00  0.00             0.00     0.00   0.00
## salt                                0.00  0.00             0.00     0.00   0.00
## liquor                              0.00  0.00             0.00     0.00   0.00
## canned vegetables                   0.00  0.00             0.00     0.00   0.00
## bottled beer                        0.00  0.00             0.00     0.00   0.00
## flower (seeds)                      0.00  0.00             0.00     0.00   0.00
## cooking oil                         0.00  0.00             0.00     0.00   0.00
## dish cleaner                        0.00  0.00             0.00     0.00   0.00
## condensed milk                      0.00  0.00             0.00     0.00   0.00
## roll products                       0.00  0.00             0.00     0.00   0.00
## photo/film                          0.00  0.00             0.00     0.00   0.00
## pet care                            0.00  0.00             0.00     0.00   0.00
## chocolate marshmallow               0.00  0.00             0.00     0.00   0.00
## herbs/vegetable juice               0.00  0.00             0.00     0.00   0.00
## whole milk                          0.00  0.00             0.00     0.00   0.00
## candles                             0.00  0.00             0.00     0.00   0.00
## mayonnaise                          0.00  0.00             0.00     0.00   0.00
## Instant food products               0.00  0.00             0.00     0.00   0.00
## sweet spreads                       0.00  0.00             0.00     0.00   0.00
## liquor (appetizer)                  0.00  0.00             0.00     0.00   0.00
## specialty cheese                    0.00  0.00             0.00     0.00   0.00
## frozen potato products              0.00  0.00             0.00     0.00   0.00
## house keeping products              0.00  0.00             0.00     0.00   0.00
## dog food                            0.00  0.00             0.00     0.00   0.00
## soy                                 0.00  0.00             0.00     0.00   0.00
## instant coffee                      0.00  0.00             0.00     0.00   0.00
## pip herbs                           0.00  0.00             0.00     0.00   0.00
## zwieback                            0.00  0.00             0.00     0.00   0.00
## finished products                   0.00  0.00             0.00     0.00   0.00
## popcorn                             0.00  0.00             0.00     0.00   0.00
## vinegar                             0.00  0.00             0.00     0.00   0.00
## soups                               0.00  0.00             0.00     0.00   0.00
## female sanitary products            0.00  0.00             0.00     0.00   0.00
## sparkling wine                      0.00  0.00             0.00     0.00   0.00
## dental care                         0.00  0.00             0.00     0.00   0.00
## cereals                             0.00  0.00             0.00     0.00   0.00
## kitchen towels                      0.00  0.00             0.00     0.00   0.00
## curd cheese                         0.00  0.00             0.00     0.00   0.00
## other vegetables                    0.00  0.00             0.00     0.00   0.00
## rolls/buns                          0.00  0.00             0.00     0.00   0.00
## softener                            0.00  0.00             0.00     0.00   0.00
## cleaner                             0.00  0.00             0.00     0.00   0.00
## spices                              0.00  0.00             0.00     0.00   0.00
## jam                                 0.00  0.00             0.00     0.00   0.00
## sauces                              0.00  0.00             0.00     0.00   0.00
## rum                                 0.00  0.00             0.00     0.00   0.00
## liver loaf                          0.00  0.00             0.00     0.00   0.00
## male cosmetics                      0.00  0.00             0.00     0.00   0.00
## meat spreads                        0.00  0.00             0.00     0.00   0.00
## packaged herbs/vegetables           0.00  0.00             0.00     0.00   0.00
## brandy                              0.00  0.00             0.00     0.00   0.00
## ketchup                             0.00  0.00             0.00     0.00   0.00
## abrasive cleaner                    0.00  0.00             0.00     0.00   0.00
## light bulbs                         0.00  0.00             0.00     0.00   0.00
## artif. sweetener                    0.00  0.00             0.00     0.00   0.00
## nuts/prunes                         0.00  0.00             0.00     0.00   0.00
## specialty fat                       0.00  0.00             0.00     0.00   0.00
## skin care                           0.00  0.00             0.00     0.00   0.00
## fish                                0.00  0.00             0.00     0.00   0.00
## potato products                     0.00  0.00             0.00     0.00   0.00
## root vegetables                     0.00  0.00             0.00     0.00   0.00
## snack products                      0.00  0.00             0.00     0.00   0.00
## nut snack                           0.00  0.00             0.00     0.00   0.00
## soap                                0.00  0.00             0.00     0.00   0.00
## syrup                               0.00  0.00             0.00     0.00   0.00
## bathroom cleaner                    0.00  0.00             0.00     0.00   0.00
## canned fruit                        0.00  0.00             0.00     0.00   0.00
## cookware                            0.00  0.00             0.00     0.00   0.00
## cooking chocolate                   0.00  0.00             0.00     0.00   0.00
## tidbits                             0.00  0.00             0.00     0.00   0.00
## cocoa drinks                        0.00  0.00             0.00     0.00   0.00
## pudding powder                      0.00  0.00             0.00     0.00   0.00
## ready soups                         0.00  0.00             0.00     0.00   0.00
## organic marinated meat              0.00  0.00             0.00     0.00   0.00
## flower soil/fertilizer              0.00  0.00             0.00     0.00   0.00
## organic products                    0.00  0.00             0.00     0.00   0.00
## pot plants                          0.00  0.00             0.00     0.00   0.00
## prosecco                            0.00  0.00             0.00     0.00   0.00
## frankfurter                         0.00  0.00             0.00     0.00   0.00
## decalcifier                         0.00  0.00             0.00     0.00   0.00
## honey                               0.00  0.00             0.00     0.00   0.00
## specialty vegetables                0.00  0.00             0.00     0.00   0.00
## cream                               0.00  0.00             0.00     0.00   0.00
## hair spray                          0.00  0.00             0.00     0.00   0.00
## frozen fruits                       0.00  0.00             0.00     0.00   0.00
## rubbing alcohol                     0.00  0.00             0.00     0.00   0.00
## liqueur                             0.00  0.00             0.00     0.00   0.00
## make up remover                     0.00  0.00             0.00     0.00   0.00
## salad dressing                      0.00  0.00             0.00     0.00   0.00
## frozen chicken                      0.00  0.00             0.00     0.00   0.00
## whisky                              0.00  0.00             0.00     0.00   0.00
## baby cosmetics                      0.00  0.00             0.00     0.00   0.00
## toilet cleaner                      0.00  0.00             0.00     0.00   0.00
## bags                                0.00  0.00             0.00     0.00   0.00
## canned herbs                        0.00  0.00             0.00     0.00   0.00
## kitchen utensil                     0.00  0.00             0.00     0.00   0.00
## preservation products               0.00  0.00             0.00     0.00   0.00
## baby food                           0.00  0.00             0.00     0.00   0.00
## frozen herbss                       0.00  0.00             0.00     0.00   0.00
## organic sausage                     0.00  0.00             0.00     0.00   0.00
## sound storage medium                0.00  0.00             0.00     0.00   0.00
##                           candy specialty chocolate butter milk  oil
## rice                       0.01                0.01        0.01 0.01
## veggies                    0.01                0.01        0.01 0.01
## loaf                       0.01                0.00        0.01 0.00
## coke                       0.01                0.01        0.00 0.00
## yogurt                     0.01                0.00        0.01 0.01
## vegetables                 0.00                0.00        0.01 0.01
## mineral water              0.00                0.00        0.00 0.00
## Plastic bags               0.00                0.00        0.00 0.00
## tropical fruit             0.00                0.00        0.00 0.00
## marinated meat             0.00                0.00        0.00 0.00
## pies/pasties               0.00                0.00        0.00 0.00
## newspapers                 0.00                0.00        0.00 0.00
## citrus                     0.00                0.00        0.00 0.00
## whipped/sour cream         0.00                0.00        0.00 0.00
## heinken                    0.00                0.00        0.00 0.00
## green tea                  0.00                0.00        0.00 0.00
## pip fruit                  0.00                0.00        0.00 0.00
## brown bread                0.00                0.00        0.00 0.00
## fruit/vegetable juice      0.00                0.00        0.00 0.00
## domestic eggs              0.00                0.00        0.00 0.00
## coffee                     0.00                0.00        0.00 0.00
## margarine                  0.00                0.00        0.00 0.00
## beef                       0.00                0.00        0.00 0.00
## curd                       0.00                0.00        0.00 0.00
## butter                     0.00                0.00        0.00 0.00
## marinated meats            0.00                0.00        0.00 0.00
## napkins                    0.00                0.00        0.00 0.00
## halal meat                 0.00                0.00        0.00 0.00
## chocolate                  0.00                0.00        0.00 0.00
## frozen vegetables          0.00                0.00        0.00 0.00
## chicken                    0.00                0.00        0.00 0.00
## white bread                0.00                0.00        0.00 0.00
## cream cheese               0.00                0.00        0.00 0.00
## waffles                    0.00                0.00        0.00 0.00
## dessert                    0.00                0.00        0.00 0.00
## salty snack                0.00                0.00        0.00 0.00
## long life bakery product   0.00                0.00        0.00 0.00
## berries                    0.00                0.00        0.00 0.00
## hamburger meat             0.00                0.00        0.00 0.00
## sugar                      0.00                0.00        0.00 0.00
## hygiene articles           0.00                0.00        0.00 0.00
## UHT-milk                   0.00                0.00        0.00 0.00
## onions                     0.00                0.00        0.00 0.00
## candy                      0.03                0.00        0.00 0.00
## specialty chocolate        0.00                0.03        0.00 0.00
## butter milk                0.00                0.00        0.03 0.00
## oil                        0.00                0.00        0.00 0.03
## frozen meals               0.00                0.00        0.00 0.00
## misc. beverages            0.00                0.00        0.00 0.00
## specialty bar              0.00                0.00        0.00 0.00
## ham                        0.00                0.00        0.00 0.00
## beverages                  0.00                0.00        0.00 0.00
## meat                       0.00                0.00        0.00 0.00
## ice cream                  0.00                0.00        0.00 0.00
## sliced cheese              0.00                0.00        0.00 0.00
## hard cheese                0.00                0.00        0.00 0.00
## noodles                    0.00                0.00        0.00 0.00
## grapes                     0.00                0.00        0.00 0.00
## cat food                   0.00                0.00        0.00 0.00
## chewing gum                0.00                0.00        0.00 0.00
## soda                       0.00                0.00        0.00 0.00
## detergent                  0.00                0.00        0.00 0.00
## red/blush wine             0.00                0.00        0.00 0.00
## white wine                 0.00                0.00        0.00 0.00
## turkey                     0.00                0.00        0.00 0.00
## dishes                     0.00                0.00        0.00 0.00
## bottled water              0.00                0.00        0.00 0.00
## flour                      0.00                0.00        0.00 0.00
## semi-finished bread        0.00                0.00        0.00 0.00
## baking powder              0.00                0.00        0.00 0.00
## pickled vegetables         0.00                0.00        0.00 0.00
## herbs                      0.00                0.00        0.00 0.00
## tropical herbs             0.00                0.00        0.00 0.00
## soft cheese                0.00                0.00        0.00 0.00
## tea                        0.00                0.00        0.00 0.00
## processed cheese           0.00                0.00        0.00 0.00
## sausage                    0.00                0.00        0.00 0.00
## pasta                      0.00                0.00        0.00 0.00
## citrus herbs               0.00                0.00        0.00 0.00
## potted plants              0.00                0.00        0.00 0.00
## canned fish                0.00                0.00        0.00 0.00
## seasonal products          0.00                0.00        0.00 0.00
## cake bar                   0.00                0.00        0.00 0.00
## carrots                    0.00                0.00        0.00 0.00
## mustard                    0.00                0.00        0.00 0.00
## packaged fruit/vegetables  0.00                0.00        0.00 0.00
## spread cheese              0.00                0.00        0.00 0.00
## frozen dessert             0.00                0.00        0.00 0.00
## frozen fish                0.00                0.00        0.00 0.00
## cling film/bags            0.00                0.00        0.00 0.00
## salt                       0.00                0.00        0.00 0.00
## liquor                     0.00                0.00        0.00 0.00
## canned vegetables          0.00                0.00        0.00 0.00
## bottled beer               0.00                0.00        0.00 0.00
## flower (seeds)             0.00                0.00        0.00 0.00
## cooking oil                0.00                0.00        0.00 0.00
## dish cleaner               0.00                0.00        0.00 0.00
## condensed milk             0.00                0.00        0.00 0.00
## roll products              0.00                0.00        0.00 0.00
## photo/film                 0.00                0.00        0.00 0.00
## pet care                   0.00                0.00        0.00 0.00
## chocolate marshmallow      0.00                0.00        0.00 0.00
## herbs/vegetable juice      0.00                0.00        0.00 0.00
## whole milk                 0.00                0.00        0.00 0.00
## candles                    0.00                0.00        0.00 0.00
## mayonnaise                 0.00                0.00        0.00 0.00
## Instant food products      0.00                0.00        0.00 0.00
## sweet spreads              0.00                0.00        0.00 0.00
## liquor (appetizer)         0.00                0.00        0.00 0.00
## specialty cheese           0.00                0.00        0.00 0.00
## frozen potato products     0.00                0.00        0.00 0.00
## house keeping products     0.00                0.00        0.00 0.00
## dog food                   0.00                0.00        0.00 0.00
## soy                        0.00                0.00        0.00 0.00
## instant coffee             0.00                0.00        0.00 0.00
## pip herbs                  0.00                0.00        0.00 0.00
## zwieback                   0.00                0.00        0.00 0.00
## finished products          0.00                0.00        0.00 0.00
## popcorn                    0.00                0.00        0.00 0.00
## vinegar                    0.00                0.00        0.00 0.00
## soups                      0.00                0.00        0.00 0.00
## female sanitary products   0.00                0.00        0.00 0.00
## sparkling wine             0.00                0.00        0.00 0.00
## dental care                0.00                0.00        0.00 0.00
## cereals                    0.00                0.00        0.00 0.00
## kitchen towels             0.00                0.00        0.00 0.00
## curd cheese                0.00                0.00        0.00 0.00
## other vegetables           0.00                0.00        0.00 0.00
## rolls/buns                 0.00                0.00        0.00 0.00
## softener                   0.00                0.00        0.00 0.00
## cleaner                    0.00                0.00        0.00 0.00
## spices                     0.00                0.00        0.00 0.00
## jam                        0.00                0.00        0.00 0.00
## sauces                     0.00                0.00        0.00 0.00
## rum                        0.00                0.00        0.00 0.00
## liver loaf                 0.00                0.00        0.00 0.00
## male cosmetics             0.00                0.00        0.00 0.00
## meat spreads               0.00                0.00        0.00 0.00
## packaged herbs/vegetables  0.00                0.00        0.00 0.00
## brandy                     0.00                0.00        0.00 0.00
## ketchup                    0.00                0.00        0.00 0.00
## abrasive cleaner           0.00                0.00        0.00 0.00
## light bulbs                0.00                0.00        0.00 0.00
## artif. sweetener           0.00                0.00        0.00 0.00
## nuts/prunes                0.00                0.00        0.00 0.00
## specialty fat              0.00                0.00        0.00 0.00
## skin care                  0.00                0.00        0.00 0.00
## fish                       0.00                0.00        0.00 0.00
## potato products            0.00                0.00        0.00 0.00
## root vegetables            0.00                0.00        0.00 0.00
## snack products             0.00                0.00        0.00 0.00
## nut snack                  0.00                0.00        0.00 0.00
## soap                       0.00                0.00        0.00 0.00
## syrup                      0.00                0.00        0.00 0.00
## bathroom cleaner           0.00                0.00        0.00 0.00
## canned fruit               0.00                0.00        0.00 0.00
## cookware                   0.00                0.00        0.00 0.00
## cooking chocolate          0.00                0.00        0.00 0.00
## tidbits                    0.00                0.00        0.00 0.00
## cocoa drinks               0.00                0.00        0.00 0.00
## pudding powder             0.00                0.00        0.00 0.00
## ready soups                0.00                0.00        0.00 0.00
## organic marinated meat     0.00                0.00        0.00 0.00
## flower soil/fertilizer     0.00                0.00        0.00 0.00
## organic products           0.00                0.00        0.00 0.00
## pot plants                 0.00                0.00        0.00 0.00
## prosecco                   0.00                0.00        0.00 0.00
## frankfurter                0.00                0.00        0.00 0.00
## decalcifier                0.00                0.00        0.00 0.00
## honey                      0.00                0.00        0.00 0.00
## specialty vegetables       0.00                0.00        0.00 0.00
## cream                      0.00                0.00        0.00 0.00
## hair spray                 0.00                0.00        0.00 0.00
## frozen fruits              0.00                0.00        0.00 0.00
## rubbing alcohol            0.00                0.00        0.00 0.00
## liqueur                    0.00                0.00        0.00 0.00
## make up remover            0.00                0.00        0.00 0.00
## salad dressing             0.00                0.00        0.00 0.00
## frozen chicken             0.00                0.00        0.00 0.00
## whisky                     0.00                0.00        0.00 0.00
## baby cosmetics             0.00                0.00        0.00 0.00
## toilet cleaner             0.00                0.00        0.00 0.00
## bags                       0.00                0.00        0.00 0.00
## canned herbs               0.00                0.00        0.00 0.00
## kitchen utensil            0.00                0.00        0.00 0.00
## preservation products      0.00                0.00        0.00 0.00
## baby food                  0.00                0.00        0.00 0.00
## frozen herbss              0.00                0.00        0.00 0.00
## organic sausage            0.00                0.00        0.00 0.00
## sound storage medium       0.00                0.00        0.00 0.00
##                           frozen meals misc. beverages specialty bar  ham
## rice                              0.01            0.01          0.01 0.01
## veggies                           0.01            0.00          0.00 0.01
## loaf                              0.00            0.00          0.00 0.01
## coke                              0.01            0.01          0.01 0.00
## yogurt                            0.01            0.00          0.00 0.01
## vegetables                        0.00            0.00          0.00 0.00
## mineral water                     0.00            0.00          0.00 0.00
## Plastic bags                      0.00            0.00          0.00 0.00
## tropical fruit                    0.00            0.00          0.00 0.00
## marinated meat                    0.00            0.00          0.00 0.00
## pies/pasties                      0.00            0.00          0.00 0.00
## newspapers                        0.00            0.00          0.00 0.00
## citrus                            0.00            0.00          0.00 0.00
## whipped/sour cream                0.00            0.00          0.00 0.00
## heinken                           0.00            0.00          0.00 0.00
## green tea                         0.00            0.00          0.00 0.00
## pip fruit                         0.00            0.00          0.00 0.00
## brown bread                       0.00            0.00          0.00 0.00
## fruit/vegetable juice             0.00            0.00          0.00 0.00
## domestic eggs                     0.00            0.00          0.00 0.00
## coffee                            0.00            0.00          0.00 0.00
## margarine                         0.00            0.00          0.00 0.00
## beef                              0.00            0.00          0.00 0.00
## curd                              0.00            0.00          0.00 0.00
## butter                            0.00            0.00          0.00 0.00
## marinated meats                   0.00            0.00          0.00 0.00
## napkins                           0.00            0.00          0.00 0.00
## halal meat                        0.00            0.00          0.00 0.00
## chocolate                         0.00            0.00          0.00 0.00
## frozen vegetables                 0.00            0.00          0.00 0.00
## chicken                           0.00            0.00          0.00 0.00
## white bread                       0.00            0.00          0.00 0.01
## cream cheese                      0.00            0.00          0.00 0.00
## waffles                           0.00            0.00          0.00 0.00
## dessert                           0.00            0.00          0.00 0.00
## salty snack                       0.00            0.00          0.00 0.00
## long life bakery product          0.00            0.00          0.00 0.00
## berries                           0.00            0.00          0.00 0.00
## hamburger meat                    0.00            0.00          0.00 0.00
## sugar                             0.00            0.00          0.00 0.00
## hygiene articles                  0.00            0.00          0.00 0.00
## UHT-milk                          0.00            0.00          0.00 0.00
## onions                            0.00            0.00          0.00 0.00
## candy                             0.00            0.00          0.00 0.00
## specialty chocolate               0.00            0.00          0.00 0.00
## butter milk                       0.00            0.00          0.00 0.00
## oil                               0.00            0.00          0.00 0.00
## frozen meals                      0.03            0.00          0.00 0.00
## misc. beverages                   0.00            0.03          0.00 0.00
## specialty bar                     0.00            0.00          0.03 0.00
## ham                               0.00            0.00          0.00 0.03
## beverages                         0.00            0.00          0.00 0.00
## meat                              0.00            0.00          0.00 0.00
## ice cream                         0.00            0.00          0.00 0.00
## sliced cheese                     0.00            0.00          0.00 0.00
## hard cheese                       0.00            0.00          0.00 0.00
## noodles                           0.00            0.00          0.00 0.00
## grapes                            0.00            0.00          0.00 0.00
## cat food                          0.00            0.00          0.00 0.00
## chewing gum                       0.00            0.00          0.00 0.00
## soda                              0.00            0.00          0.00 0.00
## detergent                         0.00            0.00          0.00 0.00
## red/blush wine                    0.00            0.00          0.00 0.00
## white wine                        0.00            0.00          0.00 0.00
## turkey                            0.00            0.00          0.00 0.00
## dishes                            0.00            0.00          0.00 0.00
## bottled water                     0.00            0.00          0.00 0.00
## flour                             0.00            0.00          0.00 0.00
## semi-finished bread               0.00            0.00          0.00 0.00
## baking powder                     0.00            0.00          0.00 0.00
## pickled vegetables                0.00            0.00          0.00 0.00
## herbs                             0.00            0.00          0.00 0.00
## tropical herbs                    0.00            0.00          0.00 0.00
## soft cheese                       0.00            0.00          0.00 0.00
## tea                               0.00            0.00          0.00 0.00
## processed cheese                  0.00            0.00          0.00 0.00
## sausage                           0.00            0.00          0.00 0.00
## pasta                             0.00            0.00          0.00 0.00
## citrus herbs                      0.00            0.00          0.00 0.00
## potted plants                     0.00            0.00          0.00 0.00
## canned fish                       0.00            0.00          0.00 0.00
## seasonal products                 0.00            0.00          0.00 0.00
## cake bar                          0.00            0.00          0.00 0.00
## carrots                           0.00            0.00          0.00 0.00
## mustard                           0.00            0.00          0.00 0.00
## packaged fruit/vegetables         0.00            0.00          0.00 0.00
## spread cheese                     0.00            0.00          0.00 0.00
## frozen dessert                    0.00            0.00          0.00 0.00
## frozen fish                       0.00            0.00          0.00 0.00
## cling film/bags                   0.00            0.00          0.00 0.00
## salt                              0.00            0.00          0.00 0.00
## liquor                            0.00            0.00          0.00 0.00
## canned vegetables                 0.00            0.00          0.00 0.00
## bottled beer                      0.00            0.00          0.00 0.00
## flower (seeds)                    0.00            0.00          0.00 0.00
## cooking oil                       0.00            0.00          0.00 0.00
## dish cleaner                      0.00            0.00          0.00 0.00
## condensed milk                    0.00            0.00          0.00 0.00
## roll products                     0.00            0.00          0.00 0.00
## photo/film                        0.00            0.00          0.00 0.00
## pet care                          0.00            0.00          0.00 0.00
## chocolate marshmallow             0.00            0.00          0.00 0.00
## herbs/vegetable juice             0.00            0.00          0.00 0.00
## whole milk                        0.00            0.00          0.00 0.00
## candles                           0.00            0.00          0.00 0.00
## mayonnaise                        0.00            0.00          0.00 0.00
## Instant food products             0.00            0.00          0.00 0.00
## sweet spreads                     0.00            0.00          0.00 0.00
## liquor (appetizer)                0.00            0.00          0.00 0.00
## specialty cheese                  0.00            0.00          0.00 0.00
## frozen potato products            0.00            0.00          0.00 0.00
## house keeping products            0.00            0.00          0.00 0.00
## dog food                          0.00            0.00          0.00 0.00
## soy                               0.00            0.00          0.00 0.00
## instant coffee                    0.00            0.00          0.00 0.00
## pip herbs                         0.00            0.00          0.00 0.00
## zwieback                          0.00            0.00          0.00 0.00
## finished products                 0.00            0.00          0.00 0.00
## popcorn                           0.00            0.00          0.00 0.00
## vinegar                           0.00            0.00          0.00 0.00
## soups                             0.00            0.00          0.00 0.00
## female sanitary products          0.00            0.00          0.00 0.00
## sparkling wine                    0.00            0.00          0.00 0.00
## dental care                       0.00            0.00          0.00 0.00
## cereals                           0.00            0.00          0.00 0.00
## kitchen towels                    0.00            0.00          0.00 0.00
## curd cheese                       0.00            0.00          0.00 0.00
## other vegetables                  0.00            0.00          0.00 0.00
## rolls/buns                        0.00            0.00          0.00 0.00
## softener                          0.00            0.00          0.00 0.00
## cleaner                           0.00            0.00          0.00 0.00
## spices                            0.00            0.00          0.00 0.00
## jam                               0.00            0.00          0.00 0.00
## sauces                            0.00            0.00          0.00 0.00
## rum                               0.00            0.00          0.00 0.00
## liver loaf                        0.00            0.00          0.00 0.00
## male cosmetics                    0.00            0.00          0.00 0.00
## meat spreads                      0.00            0.00          0.00 0.00
## packaged herbs/vegetables         0.00            0.00          0.00 0.00
## brandy                            0.00            0.00          0.00 0.00
## ketchup                           0.00            0.00          0.00 0.00
## abrasive cleaner                  0.00            0.00          0.00 0.00
## light bulbs                       0.00            0.00          0.00 0.00
## artif. sweetener                  0.00            0.00          0.00 0.00
## nuts/prunes                       0.00            0.00          0.00 0.00
## specialty fat                     0.00            0.00          0.00 0.00
## skin care                         0.00            0.00          0.00 0.00
## fish                              0.00            0.00          0.00 0.00
## potato products                   0.00            0.00          0.00 0.00
## root vegetables                   0.00            0.00          0.00 0.00
## snack products                    0.00            0.00          0.00 0.00
## nut snack                         0.00            0.00          0.00 0.00
## soap                              0.00            0.00          0.00 0.00
## syrup                             0.00            0.00          0.00 0.00
## bathroom cleaner                  0.00            0.00          0.00 0.00
## canned fruit                      0.00            0.00          0.00 0.00
## cookware                          0.00            0.00          0.00 0.00
## cooking chocolate                 0.00            0.00          0.00 0.00
## tidbits                           0.00            0.00          0.00 0.00
## cocoa drinks                      0.00            0.00          0.00 0.00
## pudding powder                    0.00            0.00          0.00 0.00
## ready soups                       0.00            0.00          0.00 0.00
## organic marinated meat            0.00            0.00          0.00 0.00
## flower soil/fertilizer            0.00            0.00          0.00 0.00
## organic products                  0.00            0.00          0.00 0.00
## pot plants                        0.00            0.00          0.00 0.00
## prosecco                          0.00            0.00          0.00 0.00
## frankfurter                       0.00            0.00          0.00 0.00
## decalcifier                       0.00            0.00          0.00 0.00
## honey                             0.00            0.00          0.00 0.00
## specialty vegetables              0.00            0.00          0.00 0.00
## cream                             0.00            0.00          0.00 0.00
## hair spray                        0.00            0.00          0.00 0.00
## frozen fruits                     0.00            0.00          0.00 0.00
## rubbing alcohol                   0.00            0.00          0.00 0.00
## liqueur                           0.00            0.00          0.00 0.00
## make up remover                   0.00            0.00          0.00 0.00
## salad dressing                    0.00            0.00          0.00 0.00
## frozen chicken                    0.00            0.00          0.00 0.00
## whisky                            0.00            0.00          0.00 0.00
## baby cosmetics                    0.00            0.00          0.00 0.00
## toilet cleaner                    0.00            0.00          0.00 0.00
## bags                              0.00            0.00          0.00 0.00
## canned herbs                      0.00            0.00          0.00 0.00
## kitchen utensil                   0.00            0.00          0.00 0.00
## preservation products             0.00            0.00          0.00 0.00
## baby food                         0.00            0.00          0.00 0.00
## frozen herbss                     0.00            0.00          0.00 0.00
## organic sausage                   0.00            0.00          0.00 0.00
## sound storage medium              0.00            0.00          0.00 0.00
##                           beverages meat ice cream sliced cheese hard cheese
## rice                           0.01 0.01      0.01          0.01        0.01
## veggies                        0.00 0.01      0.00          0.01        0.01
## loaf                           0.00 0.01      0.00          0.01        0.01
## coke                           0.00 0.00      0.01          0.00        0.00
## yogurt                         0.01 0.00      0.00          0.01        0.01
## vegetables                     0.00 0.01      0.00          0.01        0.01
## mineral water                  0.00 0.00      0.00          0.00        0.00
## Plastic bags                   0.00 0.00      0.00          0.00        0.00
## tropical fruit                 0.00 0.00      0.00          0.00        0.00
## marinated meat                 0.00 0.00      0.00          0.01        0.00
## pies/pasties                   0.00 0.00      0.00          0.00        0.00
## newspapers                     0.00 0.00      0.00          0.00        0.00
## citrus                         0.00 0.00      0.00          0.00        0.00
## whipped/sour cream             0.00 0.00      0.00          0.00        0.00
## heinken                        0.00 0.00      0.00          0.00        0.00
## green tea                      0.00 0.00      0.00          0.00        0.00
## pip fruit                      0.00 0.00      0.00          0.00        0.00
## brown bread                    0.00 0.00      0.00          0.00        0.00
## fruit/vegetable juice          0.00 0.00      0.00          0.00        0.00
## domestic eggs                  0.00 0.00      0.00          0.00        0.00
## coffee                         0.00 0.00      0.00          0.00        0.00
## margarine                      0.00 0.00      0.00          0.00        0.00
## beef                           0.00 0.00      0.00          0.00        0.00
## curd                           0.00 0.00      0.00          0.00        0.00
## butter                         0.00 0.00      0.00          0.00        0.00
## marinated meats                0.00 0.00      0.00          0.00        0.00
## napkins                        0.00 0.00      0.00          0.00        0.00
## halal meat                     0.00 0.00      0.00          0.00        0.00
## chocolate                      0.00 0.00      0.00          0.00        0.00
## frozen vegetables              0.00 0.00      0.00          0.00        0.00
## chicken                        0.00 0.00      0.00          0.00        0.00
## white bread                    0.00 0.00      0.00          0.00        0.00
## cream cheese                   0.00 0.00      0.00          0.00        0.00
## waffles                        0.00 0.00      0.00          0.00        0.00
## dessert                        0.00 0.00      0.00          0.00        0.00
## salty snack                    0.00 0.00      0.00          0.00        0.00
## long life bakery product       0.00 0.00      0.00          0.00        0.00
## berries                        0.00 0.00      0.00          0.00        0.00
## hamburger meat                 0.00 0.00      0.00          0.00        0.00
## sugar                          0.00 0.00      0.00          0.00        0.00
## hygiene articles               0.00 0.00      0.00          0.00        0.00
## UHT-milk                       0.00 0.00      0.00          0.00        0.00
## onions                         0.00 0.00      0.00          0.00        0.00
## candy                          0.00 0.00      0.00          0.00        0.00
## specialty chocolate            0.00 0.00      0.00          0.00        0.00
## butter milk                    0.00 0.00      0.00          0.00        0.00
## oil                            0.00 0.00      0.00          0.00        0.00
## frozen meals                   0.00 0.00      0.00          0.00        0.00
## misc. beverages                0.00 0.00      0.00          0.00        0.00
## specialty bar                  0.00 0.00      0.00          0.00        0.00
## ham                            0.00 0.00      0.00          0.00        0.00
## beverages                      0.03 0.00      0.00          0.00        0.00
## meat                           0.00 0.03      0.00          0.00        0.00
## ice cream                      0.00 0.00      0.03          0.00        0.00
## sliced cheese                  0.00 0.00      0.00          0.03        0.00
## hard cheese                    0.00 0.00      0.00          0.00        0.02
## noodles                        0.00 0.00      0.00          0.00        0.00
## grapes                         0.00 0.00      0.00          0.00        0.00
## cat food                       0.00 0.00      0.00          0.00        0.00
## chewing gum                    0.00 0.00      0.00          0.00        0.00
## soda                           0.00 0.00      0.00          0.00        0.00
## detergent                      0.00 0.00      0.00          0.00        0.00
## red/blush wine                 0.00 0.00      0.00          0.00        0.00
## white wine                     0.00 0.00      0.00          0.00        0.00
## turkey                         0.00 0.00      0.00          0.00        0.00
## dishes                         0.00 0.00      0.00          0.00        0.00
## bottled water                  0.00 0.00      0.00          0.00        0.00
## flour                          0.00 0.00      0.00          0.00        0.00
## semi-finished bread            0.00 0.00      0.00          0.00        0.00
## baking powder                  0.00 0.00      0.00          0.00        0.00
## pickled vegetables             0.00 0.00      0.00          0.00        0.00
## herbs                          0.00 0.00      0.00          0.00        0.00
## tropical herbs                 0.00 0.00      0.00          0.00        0.00
## soft cheese                    0.00 0.00      0.00          0.00        0.00
## tea                            0.00 0.00      0.00          0.00        0.00
## processed cheese               0.00 0.00      0.00          0.00        0.00
## sausage                        0.00 0.00      0.00          0.00        0.00
## pasta                          0.00 0.00      0.00          0.00        0.00
## citrus herbs                   0.00 0.00      0.00          0.00        0.00
## potted plants                  0.00 0.00      0.00          0.00        0.00
## canned fish                    0.00 0.00      0.00          0.00        0.00
## seasonal products              0.00 0.00      0.00          0.00        0.00
## cake bar                       0.00 0.00      0.00          0.00        0.00
## carrots                        0.00 0.00      0.00          0.00        0.00
## mustard                        0.00 0.00      0.00          0.00        0.00
## packaged fruit/vegetables      0.00 0.00      0.00          0.00        0.00
## spread cheese                  0.00 0.00      0.00          0.00        0.00
## frozen dessert                 0.00 0.00      0.00          0.00        0.00
## frozen fish                    0.00 0.00      0.00          0.00        0.00
## cling film/bags                0.00 0.00      0.00          0.00        0.00
## salt                           0.00 0.00      0.00          0.00        0.00
## liquor                         0.00 0.00      0.00          0.00        0.00
## canned vegetables              0.00 0.00      0.00          0.00        0.00
## bottled beer                   0.00 0.00      0.00          0.00        0.00
## flower (seeds)                 0.00 0.00      0.00          0.00        0.00
## cooking oil                    0.00 0.00      0.00          0.00        0.00
## dish cleaner                   0.00 0.00      0.00          0.00        0.00
## condensed milk                 0.00 0.00      0.00          0.00        0.00
## roll products                  0.00 0.00      0.00          0.00        0.00
## photo/film                     0.00 0.00      0.00          0.00        0.00
## pet care                       0.00 0.00      0.00          0.00        0.00
## chocolate marshmallow          0.00 0.00      0.00          0.00        0.00
## herbs/vegetable juice          0.00 0.00      0.00          0.00        0.00
## whole milk                     0.00 0.00      0.00          0.00        0.00
## candles                        0.00 0.00      0.00          0.00        0.00
## mayonnaise                     0.00 0.00      0.00          0.00        0.00
## Instant food products          0.00 0.00      0.00          0.00        0.00
## sweet spreads                  0.00 0.00      0.00          0.00        0.00
## liquor (appetizer)             0.00 0.00      0.00          0.00        0.00
## specialty cheese               0.00 0.00      0.00          0.00        0.00
## frozen potato products         0.00 0.00      0.00          0.00        0.00
## house keeping products         0.00 0.00      0.00          0.00        0.00
## dog food                       0.00 0.00      0.00          0.00        0.00
## soy                            0.00 0.00      0.00          0.00        0.00
## instant coffee                 0.00 0.00      0.00          0.00        0.00
## pip herbs                      0.00 0.00      0.00          0.00        0.00
## zwieback                       0.00 0.00      0.00          0.00        0.00
## finished products              0.00 0.00      0.00          0.00        0.00
## popcorn                        0.00 0.00      0.00          0.00        0.00
## vinegar                        0.00 0.00      0.00          0.00        0.00
## soups                          0.00 0.00      0.00          0.00        0.00
## female sanitary products       0.00 0.00      0.00          0.00        0.00
## sparkling wine                 0.00 0.00      0.00          0.00        0.00
## dental care                    0.00 0.00      0.00          0.00        0.00
## cereals                        0.00 0.00      0.00          0.00        0.00
## kitchen towels                 0.00 0.00      0.00          0.00        0.00
## curd cheese                    0.00 0.00      0.00          0.00        0.00
## other vegetables               0.00 0.00      0.00          0.00        0.00
## rolls/buns                     0.00 0.00      0.00          0.00        0.00
## softener                       0.00 0.00      0.00          0.00        0.00
## cleaner                        0.00 0.00      0.00          0.00        0.00
## spices                         0.00 0.00      0.00          0.00        0.00
## jam                            0.00 0.00      0.00          0.00        0.00
## sauces                         0.00 0.00      0.00          0.00        0.00
## rum                            0.00 0.00      0.00          0.00        0.00
## liver loaf                     0.00 0.00      0.00          0.00        0.00
## male cosmetics                 0.00 0.00      0.00          0.00        0.00
## meat spreads                   0.00 0.00      0.00          0.00        0.00
## packaged herbs/vegetables      0.00 0.00      0.00          0.00        0.00
## brandy                         0.00 0.00      0.00          0.00        0.00
## ketchup                        0.00 0.00      0.00          0.00        0.00
## abrasive cleaner               0.00 0.00      0.00          0.00        0.00
## light bulbs                    0.00 0.00      0.00          0.00        0.00
## artif. sweetener               0.00 0.00      0.00          0.00        0.00
## nuts/prunes                    0.00 0.00      0.00          0.00        0.00
## specialty fat                  0.00 0.00      0.00          0.00        0.00
## skin care                      0.00 0.00      0.00          0.00        0.00
## fish                           0.00 0.00      0.00          0.00        0.00
## potato products                0.00 0.00      0.00          0.00        0.00
## root vegetables                0.00 0.00      0.00          0.00        0.00
## snack products                 0.00 0.00      0.00          0.00        0.00
## nut snack                      0.00 0.00      0.00          0.00        0.00
## soap                           0.00 0.00      0.00          0.00        0.00
## syrup                          0.00 0.00      0.00          0.00        0.00
## bathroom cleaner               0.00 0.00      0.00          0.00        0.00
## canned fruit                   0.00 0.00      0.00          0.00        0.00
## cookware                       0.00 0.00      0.00          0.00        0.00
## cooking chocolate              0.00 0.00      0.00          0.00        0.00
## tidbits                        0.00 0.00      0.00          0.00        0.00
## cocoa drinks                   0.00 0.00      0.00          0.00        0.00
## pudding powder                 0.00 0.00      0.00          0.00        0.00
## ready soups                    0.00 0.00      0.00          0.00        0.00
## organic marinated meat         0.00 0.00      0.00          0.00        0.00
## flower soil/fertilizer         0.00 0.00      0.00          0.00        0.00
## organic products               0.00 0.00      0.00          0.00        0.00
## pot plants                     0.00 0.00      0.00          0.00        0.00
## prosecco                       0.00 0.00      0.00          0.00        0.00
## frankfurter                    0.00 0.00      0.00          0.00        0.00
## decalcifier                    0.00 0.00      0.00          0.00        0.00
## honey                          0.00 0.00      0.00          0.00        0.00
## specialty vegetables           0.00 0.00      0.00          0.00        0.00
## cream                          0.00 0.00      0.00          0.00        0.00
## hair spray                     0.00 0.00      0.00          0.00        0.00
## frozen fruits                  0.00 0.00      0.00          0.00        0.00
## rubbing alcohol                0.00 0.00      0.00          0.00        0.00
## liqueur                        0.00 0.00      0.00          0.00        0.00
## make up remover                0.00 0.00      0.00          0.00        0.00
## salad dressing                 0.00 0.00      0.00          0.00        0.00
## frozen chicken                 0.00 0.00      0.00          0.00        0.00
## whisky                         0.00 0.00      0.00          0.00        0.00
## baby cosmetics                 0.00 0.00      0.00          0.00        0.00
## toilet cleaner                 0.00 0.00      0.00          0.00        0.00
## bags                           0.00 0.00      0.00          0.00        0.00
## canned herbs                   0.00 0.00      0.00          0.00        0.00
## kitchen utensil                0.00 0.00      0.00          0.00        0.00
## preservation products          0.00 0.00      0.00          0.00        0.00
## baby food                      0.00 0.00      0.00          0.00        0.00
## frozen herbss                  0.00 0.00      0.00          0.00        0.00
## organic sausage                0.00 0.00      0.00          0.00        0.00
## sound storage medium           0.00 0.00      0.00          0.00        0.00
##                           noodles grapes cat food chewing gum soda detergent
## rice                         0.01   0.01     0.01        0.00 0.01      0.01
## veggies                      0.00   0.01     0.01        0.00 0.00      0.01
## loaf                         0.00   0.00     0.00        0.00 0.00      0.00
## coke                         0.00   0.00     0.00        0.00 0.00      0.00
## yogurt                       0.00   0.00     0.01        0.00 0.00      0.00
## vegetables                   0.01   0.00     0.00        0.00 0.00      0.00
## mineral water                0.00   0.00     0.00        0.00 0.00      0.00
## Plastic bags                 0.00   0.00     0.00        0.00 0.00      0.00
## tropical fruit               0.00   0.01     0.00        0.00 0.00      0.00
## marinated meat               0.00   0.00     0.00        0.00 0.00      0.00
## pies/pasties                 0.00   0.00     0.00        0.00 0.00      0.00
## newspapers                   0.00   0.00     0.00        0.00 0.00      0.00
## citrus                       0.00   0.00     0.00        0.00 0.00      0.00
## whipped/sour cream           0.00   0.00     0.00        0.00 0.00      0.00
## heinken                      0.00   0.00     0.00        0.00 0.00      0.00
## green tea                    0.00   0.00     0.00        0.00 0.00      0.00
## pip fruit                    0.00   0.00     0.00        0.00 0.00      0.00
## brown bread                  0.00   0.00     0.00        0.00 0.00      0.00
## fruit/vegetable juice        0.00   0.00     0.00        0.00 0.00      0.00
## domestic eggs                0.00   0.00     0.00        0.00 0.00      0.00
## coffee                       0.00   0.00     0.00        0.00 0.00      0.00
## margarine                    0.00   0.00     0.00        0.00 0.00      0.00
## beef                         0.00   0.00     0.00        0.00 0.00      0.00
## curd                         0.00   0.00     0.00        0.00 0.00      0.00
## butter                       0.00   0.00     0.00        0.00 0.00      0.00
## marinated meats              0.00   0.00     0.00        0.00 0.00      0.00
## napkins                      0.00   0.00     0.00        0.00 0.00      0.00
## halal meat                   0.00   0.00     0.00        0.00 0.00      0.00
## chocolate                    0.00   0.00     0.00        0.00 0.00      0.00
## frozen vegetables            0.00   0.00     0.00        0.00 0.00      0.00
## chicken                      0.00   0.00     0.00        0.00 0.00      0.00
## white bread                  0.00   0.00     0.00        0.00 0.00      0.00
## cream cheese                 0.00   0.00     0.00        0.00 0.00      0.00
## waffles                      0.00   0.00     0.00        0.00 0.00      0.00
## dessert                      0.00   0.00     0.00        0.00 0.00      0.00
## salty snack                  0.00   0.00     0.00        0.00 0.00      0.00
## long life bakery product     0.00   0.00     0.00        0.00 0.00      0.00
## berries                      0.00   0.00     0.00        0.00 0.00      0.00
## hamburger meat               0.00   0.00     0.00        0.00 0.00      0.00
## sugar                        0.00   0.00     0.00        0.00 0.00      0.00
## hygiene articles             0.00   0.00     0.00        0.00 0.00      0.00
## UHT-milk                     0.00   0.00     0.00        0.00 0.00      0.00
## onions                       0.00   0.00     0.00        0.00 0.00      0.00
## candy                        0.00   0.00     0.00        0.00 0.00      0.00
## specialty chocolate          0.00   0.00     0.00        0.00 0.00      0.00
## butter milk                  0.00   0.00     0.00        0.00 0.00      0.00
## oil                          0.00   0.00     0.00        0.00 0.00      0.00
## frozen meals                 0.00   0.00     0.00        0.00 0.00      0.00
## misc. beverages              0.00   0.00     0.00        0.00 0.00      0.00
## specialty bar                0.00   0.00     0.00        0.00 0.00      0.00
## ham                          0.00   0.00     0.00        0.00 0.00      0.00
## beverages                    0.00   0.00     0.00        0.00 0.00      0.00
## meat                         0.00   0.00     0.00        0.00 0.00      0.00
## ice cream                    0.00   0.00     0.00        0.00 0.00      0.00
## sliced cheese                0.00   0.00     0.00        0.00 0.00      0.00
## hard cheese                  0.00   0.00     0.00        0.00 0.00      0.00
## noodles                      0.02   0.00     0.00        0.00 0.01      0.00
## grapes                       0.00   0.02     0.00        0.00 0.00      0.00
## cat food                     0.00   0.00     0.02        0.00 0.00      0.00
## chewing gum                  0.00   0.00     0.00        0.02 0.00      0.00
## soda                         0.01   0.00     0.00        0.00 0.02      0.00
## detergent                    0.00   0.00     0.00        0.00 0.00      0.02
## red/blush wine               0.00   0.00     0.00        0.00 0.00      0.00
## white wine                   0.00   0.00     0.00        0.00 0.00      0.00
## turkey                       0.00   0.00     0.00        0.00 0.00      0.00
## dishes                       0.00   0.00     0.00        0.00 0.00      0.00
## bottled water                0.00   0.00     0.00        0.00 0.00      0.00
## flour                        0.00   0.00     0.00        0.00 0.00      0.00
## semi-finished bread          0.00   0.00     0.00        0.00 0.00      0.00
## baking powder                0.00   0.00     0.00        0.00 0.00      0.00
## pickled vegetables           0.00   0.00     0.00        0.00 0.00      0.00
## herbs                        0.00   0.00     0.00        0.00 0.00      0.00
## tropical herbs               0.00   0.00     0.00        0.00 0.00      0.00
## soft cheese                  0.00   0.00     0.00        0.00 0.00      0.00
## tea                          0.00   0.00     0.00        0.00 0.00      0.00
## processed cheese             0.00   0.00     0.00        0.00 0.00      0.00
## sausage                      0.00   0.00     0.00        0.00 0.00      0.00
## pasta                        0.00   0.00     0.00        0.00 0.00      0.00
## citrus herbs                 0.00   0.00     0.00        0.00 0.00      0.00
## potted plants                0.00   0.00     0.00        0.00 0.00      0.00
## canned fish                  0.00   0.00     0.00        0.00 0.00      0.00
## seasonal products            0.00   0.00     0.00        0.00 0.00      0.00
## cake bar                     0.00   0.00     0.00        0.00 0.00      0.00
## carrots                      0.00   0.00     0.00        0.00 0.00      0.00
## mustard                      0.00   0.00     0.00        0.00 0.00      0.00
## packaged fruit/vegetables    0.00   0.00     0.00        0.00 0.00      0.00
## spread cheese                0.00   0.00     0.00        0.00 0.00      0.00
## frozen dessert               0.00   0.00     0.00        0.00 0.00      0.00
## frozen fish                  0.00   0.00     0.00        0.00 0.00      0.00
## cling film/bags              0.00   0.00     0.00        0.00 0.00      0.00
## salt                         0.00   0.00     0.00        0.00 0.00      0.00
## liquor                       0.00   0.00     0.00        0.00 0.00      0.00
## canned vegetables            0.00   0.00     0.00        0.00 0.00      0.00
## bottled beer                 0.00   0.00     0.00        0.00 0.00      0.00
## flower (seeds)               0.00   0.00     0.00        0.00 0.00      0.00
## cooking oil                  0.00   0.00     0.00        0.00 0.00      0.00
## dish cleaner                 0.00   0.00     0.00        0.00 0.00      0.00
## condensed milk               0.00   0.00     0.00        0.00 0.00      0.00
## roll products                0.00   0.00     0.00        0.00 0.00      0.00
## photo/film                   0.00   0.00     0.00        0.00 0.00      0.00
## pet care                     0.00   0.00     0.00        0.00 0.00      0.00
## chocolate marshmallow        0.00   0.00     0.00        0.00 0.00      0.00
## herbs/vegetable juice        0.00   0.00     0.00        0.00 0.00      0.00
## whole milk                   0.00   0.00     0.00        0.00 0.00      0.00
## candles                      0.00   0.00     0.00        0.00 0.00      0.00
## mayonnaise                   0.00   0.00     0.00        0.00 0.00      0.00
## Instant food products        0.00   0.00     0.00        0.00 0.00      0.00
## sweet spreads                0.00   0.00     0.00        0.00 0.00      0.00
## liquor (appetizer)           0.00   0.00     0.00        0.00 0.00      0.00
## specialty cheese             0.00   0.00     0.00        0.00 0.00      0.00
## frozen potato products       0.00   0.00     0.00        0.00 0.00      0.00
## house keeping products       0.00   0.00     0.00        0.00 0.00      0.00
## dog food                     0.00   0.00     0.00        0.00 0.00      0.00
## soy                          0.00   0.00     0.00        0.00 0.00      0.00
## instant coffee               0.00   0.00     0.00        0.00 0.00      0.00
## pip herbs                    0.00   0.00     0.00        0.00 0.00      0.00
## zwieback                     0.00   0.00     0.00        0.00 0.00      0.00
## finished products            0.00   0.00     0.00        0.00 0.00      0.00
## popcorn                      0.00   0.00     0.00        0.00 0.00      0.00
## vinegar                      0.00   0.00     0.00        0.00 0.00      0.00
## soups                        0.00   0.00     0.00        0.00 0.00      0.00
## female sanitary products     0.00   0.00     0.00        0.00 0.00      0.00
## sparkling wine               0.00   0.00     0.00        0.00 0.00      0.00
## dental care                  0.00   0.00     0.00        0.00 0.00      0.00
## cereals                      0.00   0.00     0.00        0.00 0.00      0.00
## kitchen towels               0.00   0.00     0.00        0.00 0.00      0.00
## curd cheese                  0.00   0.00     0.00        0.00 0.00      0.00
## other vegetables             0.00   0.00     0.00        0.00 0.00      0.00
## rolls/buns                   0.00   0.00     0.00        0.00 0.00      0.00
## softener                     0.00   0.00     0.00        0.00 0.00      0.00
## cleaner                      0.00   0.00     0.00        0.00 0.00      0.00
## spices                       0.00   0.00     0.00        0.00 0.00      0.00
## jam                          0.00   0.00     0.00        0.00 0.00      0.00
## sauces                       0.00   0.00     0.00        0.00 0.00      0.00
## rum                          0.00   0.00     0.00        0.00 0.00      0.00
## liver loaf                   0.00   0.00     0.00        0.00 0.00      0.00
## male cosmetics               0.00   0.00     0.00        0.00 0.00      0.00
## meat spreads                 0.00   0.00     0.00        0.00 0.00      0.00
## packaged herbs/vegetables    0.00   0.00     0.00        0.00 0.00      0.00
## brandy                       0.00   0.00     0.00        0.00 0.00      0.00
## ketchup                      0.00   0.00     0.00        0.00 0.00      0.00
## abrasive cleaner             0.00   0.00     0.00        0.00 0.00      0.00
## light bulbs                  0.00   0.00     0.00        0.00 0.00      0.00
## artif. sweetener             0.00   0.00     0.00        0.00 0.00      0.00
## nuts/prunes                  0.00   0.00     0.00        0.00 0.00      0.00
## specialty fat                0.00   0.00     0.00        0.00 0.00      0.00
## skin care                    0.00   0.00     0.00        0.00 0.00      0.00
## fish                         0.00   0.00     0.00        0.00 0.00      0.00
## potato products              0.00   0.00     0.00        0.00 0.00      0.00
## root vegetables              0.00   0.00     0.00        0.00 0.00      0.00
## snack products               0.00   0.00     0.00        0.00 0.00      0.00
## nut snack                    0.00   0.00     0.00        0.00 0.00      0.00
## soap                         0.00   0.00     0.00        0.00 0.00      0.00
## syrup                        0.00   0.00     0.00        0.00 0.00      0.00
## bathroom cleaner             0.00   0.00     0.00        0.00 0.00      0.00
## canned fruit                 0.00   0.00     0.00        0.00 0.00      0.00
## cookware                     0.00   0.00     0.00        0.00 0.00      0.00
## cooking chocolate            0.00   0.00     0.00        0.00 0.00      0.00
## tidbits                      0.00   0.00     0.00        0.00 0.00      0.00
## cocoa drinks                 0.00   0.00     0.00        0.00 0.00      0.00
## pudding powder               0.00   0.00     0.00        0.00 0.00      0.00
## ready soups                  0.00   0.00     0.00        0.00 0.00      0.00
## organic marinated meat       0.00   0.00     0.00        0.00 0.00      0.00
## flower soil/fertilizer       0.00   0.00     0.00        0.00 0.00      0.00
## organic products             0.00   0.00     0.00        0.00 0.00      0.00
## pot plants                   0.00   0.00     0.00        0.00 0.00      0.00
## prosecco                     0.00   0.00     0.00        0.00 0.00      0.00
## frankfurter                  0.00   0.00     0.00        0.00 0.00      0.00
## decalcifier                  0.00   0.00     0.00        0.00 0.00      0.00
## honey                        0.00   0.00     0.00        0.00 0.00      0.00
## specialty vegetables         0.00   0.00     0.00        0.00 0.00      0.00
## cream                        0.00   0.00     0.00        0.00 0.00      0.00
## hair spray                   0.00   0.00     0.00        0.00 0.00      0.00
## frozen fruits                0.00   0.00     0.00        0.00 0.00      0.00
## rubbing alcohol              0.00   0.00     0.00        0.00 0.00      0.00
## liqueur                      0.00   0.00     0.00        0.00 0.00      0.00
## make up remover              0.00   0.00     0.00        0.00 0.00      0.00
## salad dressing               0.00   0.00     0.00        0.00 0.00      0.00
## frozen chicken               0.00   0.00     0.00        0.00 0.00      0.00
## whisky                       0.00   0.00     0.00        0.00 0.00      0.00
## baby cosmetics               0.00   0.00     0.00        0.00 0.00      0.00
## toilet cleaner               0.00   0.00     0.00        0.00 0.00      0.00
## bags                         0.00   0.00     0.00        0.00 0.00      0.00
## canned herbs                 0.00   0.00     0.00        0.00 0.00      0.00
## kitchen utensil              0.00   0.00     0.00        0.00 0.00      0.00
## preservation products        0.00   0.00     0.00        0.00 0.00      0.00
## baby food                    0.00   0.00     0.00        0.00 0.00      0.00
## frozen herbss                0.00   0.00     0.00        0.00 0.00      0.00
## organic sausage              0.00   0.00     0.00        0.00 0.00      0.00
## sound storage medium         0.00   0.00     0.00        0.00 0.00      0.00
##                           red/blush wine white wine turkey dishes bottled water
## rice                                0.00       0.00   0.01   0.01          0.00
## veggies                             0.00       0.00   0.00   0.01          0.00
## loaf                                0.00       0.00   0.00   0.00          0.00
## coke                                0.00       0.00   0.00   0.00          0.00
## yogurt                              0.00       0.00   0.00   0.00          0.00
## vegetables                          0.00       0.00   0.01   0.00          0.00
## mineral water                       0.00       0.00   0.00   0.00          0.00
## Plastic bags                        0.00       0.00   0.00   0.00          0.00
## tropical fruit                      0.00       0.00   0.00   0.00          0.00
## marinated meat                      0.00       0.00   0.00   0.00          0.00
## pies/pasties                        0.00       0.00   0.00   0.00          0.00
## newspapers                          0.00       0.00   0.00   0.00          0.00
## citrus                              0.00       0.00   0.00   0.00          0.00
## whipped/sour cream                  0.00       0.00   0.00   0.00          0.00
## heinken                             0.00       0.00   0.00   0.00          0.00
## green tea                           0.00       0.00   0.00   0.00          0.00
## pip fruit                           0.00       0.00   0.00   0.00          0.00
## brown bread                         0.00       0.00   0.00   0.00          0.00
## fruit/vegetable juice               0.00       0.00   0.00   0.00          0.00
## domestic eggs                       0.00       0.00   0.00   0.00          0.00
## coffee                              0.00       0.00   0.00   0.00          0.00
## margarine                           0.00       0.00   0.00   0.00          0.00
## beef                                0.00       0.00   0.00   0.00          0.00
## curd                                0.00       0.00   0.00   0.00          0.00
## butter                              0.00       0.00   0.00   0.00          0.00
## marinated meats                     0.00       0.00   0.00   0.00          0.00
## napkins                             0.00       0.00   0.00   0.00          0.00
## halal meat                          0.00       0.00   0.00   0.00          0.00
## chocolate                           0.00       0.00   0.00   0.00          0.00
## frozen vegetables                   0.00       0.00   0.00   0.00          0.00
## chicken                             0.00       0.00   0.00   0.00          0.00
## white bread                         0.00       0.00   0.00   0.00          0.00
## cream cheese                        0.00       0.00   0.00   0.00          0.00
## waffles                             0.00       0.00   0.00   0.00          0.00
## dessert                             0.00       0.00   0.00   0.00          0.00
## salty snack                         0.00       0.00   0.00   0.00          0.00
## long life bakery product            0.00       0.00   0.00   0.00          0.00
## berries                             0.00       0.00   0.00   0.00          0.00
## hamburger meat                      0.00       0.00   0.00   0.00          0.00
## sugar                               0.00       0.00   0.00   0.00          0.00
## hygiene articles                    0.00       0.00   0.00   0.00          0.00
## UHT-milk                            0.00       0.00   0.00   0.00          0.00
## onions                              0.00       0.00   0.00   0.00          0.00
## candy                               0.00       0.00   0.00   0.00          0.00
## specialty chocolate                 0.00       0.00   0.00   0.00          0.00
## butter milk                         0.00       0.00   0.00   0.00          0.00
## oil                                 0.00       0.00   0.00   0.00          0.00
## frozen meals                        0.00       0.00   0.00   0.00          0.00
## misc. beverages                     0.00       0.00   0.00   0.00          0.00
## specialty bar                       0.00       0.00   0.00   0.00          0.00
## ham                                 0.00       0.00   0.00   0.00          0.00
## beverages                           0.00       0.00   0.00   0.00          0.00
## meat                                0.00       0.00   0.00   0.00          0.00
## ice cream                           0.00       0.00   0.00   0.00          0.00
## sliced cheese                       0.00       0.00   0.00   0.00          0.00
## hard cheese                         0.00       0.00   0.00   0.00          0.00
## noodles                             0.00       0.00   0.00   0.00          0.00
## grapes                              0.00       0.00   0.00   0.00          0.00
## cat food                            0.00       0.00   0.00   0.00          0.00
## chewing gum                         0.00       0.00   0.00   0.00          0.00
## soda                                0.00       0.00   0.00   0.00          0.00
## detergent                           0.00       0.00   0.00   0.00          0.00
## red/blush wine                      0.02       0.00   0.00   0.00          0.00
## white wine                          0.00       0.02   0.00   0.00          0.00
## turkey                              0.00       0.00   0.02   0.00          0.00
## dishes                              0.00       0.00   0.00   0.02          0.00
## bottled water                       0.00       0.00   0.00   0.00          0.02
## flour                               0.00       0.00   0.00   0.00          0.00
## semi-finished bread                 0.00       0.00   0.00   0.00          0.00
## baking powder                       0.00       0.00   0.00   0.00          0.00
## pickled vegetables                  0.00       0.00   0.00   0.00          0.00
## herbs                               0.00       0.00   0.00   0.00          0.00
## tropical herbs                      0.00       0.00   0.00   0.00          0.00
## soft cheese                         0.00       0.00   0.00   0.00          0.00
## tea                                 0.00       0.00   0.00   0.00          0.00
## processed cheese                    0.00       0.00   0.00   0.00          0.00
## sausage                             0.00       0.00   0.00   0.00          0.00
## pasta                               0.00       0.00   0.00   0.00          0.00
## citrus herbs                        0.00       0.00   0.00   0.00          0.00
## potted plants                       0.00       0.00   0.00   0.00          0.00
## canned fish                         0.00       0.00   0.00   0.00          0.00
## seasonal products                   0.00       0.00   0.00   0.00          0.00
## cake bar                            0.00       0.00   0.00   0.00          0.00
## carrots                             0.00       0.00   0.00   0.00          0.00
## mustard                             0.00       0.00   0.00   0.00          0.00
## packaged fruit/vegetables           0.00       0.00   0.00   0.00          0.00
## spread cheese                       0.00       0.00   0.00   0.00          0.00
## frozen dessert                      0.00       0.00   0.00   0.00          0.00
## frozen fish                         0.00       0.00   0.00   0.00          0.00
## cling film/bags                     0.00       0.00   0.00   0.00          0.00
## salt                                0.00       0.00   0.00   0.00          0.00
## liquor                              0.00       0.00   0.00   0.00          0.00
## canned vegetables                   0.00       0.00   0.00   0.00          0.00
## bottled beer                        0.00       0.00   0.00   0.00          0.00
## flower (seeds)                      0.00       0.00   0.00   0.00          0.00
## cooking oil                         0.00       0.00   0.00   0.00          0.00
## dish cleaner                        0.00       0.00   0.00   0.00          0.00
## condensed milk                      0.00       0.00   0.00   0.00          0.00
## roll products                       0.00       0.00   0.00   0.00          0.00
## photo/film                          0.00       0.00   0.00   0.00          0.00
## pet care                            0.00       0.00   0.00   0.00          0.00
## chocolate marshmallow               0.00       0.00   0.00   0.00          0.00
## herbs/vegetable juice               0.00       0.00   0.00   0.00          0.00
## whole milk                          0.00       0.00   0.00   0.00          0.00
## candles                             0.00       0.00   0.00   0.00          0.00
## mayonnaise                          0.00       0.00   0.00   0.00          0.00
## Instant food products               0.00       0.00   0.00   0.00          0.00
## sweet spreads                       0.00       0.00   0.00   0.00          0.00
## liquor (appetizer)                  0.00       0.00   0.00   0.00          0.00
## specialty cheese                    0.00       0.00   0.00   0.00          0.00
## frozen potato products              0.00       0.00   0.00   0.00          0.00
## house keeping products              0.00       0.00   0.00   0.00          0.00
## dog food                            0.00       0.00   0.00   0.00          0.00
## soy                                 0.00       0.00   0.00   0.00          0.00
## instant coffee                      0.00       0.00   0.00   0.00          0.00
## pip herbs                           0.00       0.00   0.00   0.00          0.00
## zwieback                            0.00       0.00   0.00   0.00          0.00
## finished products                   0.00       0.00   0.00   0.00          0.00
## popcorn                             0.00       0.00   0.00   0.00          0.00
## vinegar                             0.00       0.00   0.00   0.00          0.00
## soups                               0.00       0.00   0.00   0.00          0.00
## female sanitary products            0.00       0.00   0.00   0.00          0.00
## sparkling wine                      0.00       0.00   0.00   0.00          0.00
## dental care                         0.00       0.00   0.00   0.00          0.00
## cereals                             0.00       0.00   0.00   0.00          0.00
## kitchen towels                      0.00       0.00   0.00   0.00          0.00
## curd cheese                         0.00       0.00   0.00   0.00          0.00
## other vegetables                    0.00       0.00   0.00   0.00          0.00
## rolls/buns                          0.00       0.00   0.00   0.00          0.00
## softener                            0.00       0.00   0.00   0.00          0.00
## cleaner                             0.00       0.00   0.00   0.00          0.00
## spices                              0.00       0.00   0.00   0.00          0.00
## jam                                 0.00       0.00   0.00   0.00          0.00
## sauces                              0.00       0.00   0.00   0.00          0.00
## rum                                 0.00       0.00   0.00   0.00          0.00
## liver loaf                          0.00       0.00   0.00   0.00          0.00
## male cosmetics                      0.00       0.00   0.00   0.00          0.00
## meat spreads                        0.00       0.00   0.00   0.00          0.00
## packaged herbs/vegetables           0.00       0.00   0.00   0.00          0.00
## brandy                              0.00       0.00   0.00   0.00          0.00
## ketchup                             0.00       0.00   0.00   0.00          0.00
## abrasive cleaner                    0.00       0.00   0.00   0.00          0.00
## light bulbs                         0.00       0.00   0.00   0.00          0.00
## artif. sweetener                    0.00       0.00   0.00   0.00          0.00
## nuts/prunes                         0.00       0.00   0.00   0.00          0.00
## specialty fat                       0.00       0.00   0.00   0.00          0.00
## skin care                           0.00       0.00   0.00   0.00          0.00
## fish                                0.00       0.00   0.00   0.00          0.00
## potato products                     0.00       0.00   0.00   0.00          0.00
## root vegetables                     0.00       0.00   0.00   0.00          0.00
## snack products                      0.00       0.00   0.00   0.00          0.00
## nut snack                           0.00       0.00   0.00   0.00          0.00
## soap                                0.00       0.00   0.00   0.00          0.00
## syrup                               0.00       0.00   0.00   0.00          0.00
## bathroom cleaner                    0.00       0.00   0.00   0.00          0.00
## canned fruit                        0.00       0.00   0.00   0.00          0.00
## cookware                            0.00       0.00   0.00   0.00          0.00
## cooking chocolate                   0.00       0.00   0.00   0.00          0.00
## tidbits                             0.00       0.00   0.00   0.00          0.00
## cocoa drinks                        0.00       0.00   0.00   0.00          0.00
## pudding powder                      0.00       0.00   0.00   0.00          0.00
## ready soups                         0.00       0.00   0.00   0.00          0.00
## organic marinated meat              0.00       0.00   0.00   0.00          0.00
## flower soil/fertilizer              0.00       0.00   0.00   0.00          0.00
## organic products                    0.00       0.00   0.00   0.00          0.00
## pot plants                          0.00       0.00   0.00   0.00          0.00
## prosecco                            0.00       0.00   0.00   0.00          0.00
## frankfurter                         0.00       0.00   0.00   0.00          0.00
## decalcifier                         0.00       0.00   0.00   0.00          0.00
## honey                               0.00       0.00   0.00   0.00          0.00
## specialty vegetables                0.00       0.00   0.00   0.00          0.00
## cream                               0.00       0.00   0.00   0.00          0.00
## hair spray                          0.00       0.00   0.00   0.00          0.00
## frozen fruits                       0.00       0.00   0.00   0.00          0.00
## rubbing alcohol                     0.00       0.00   0.00   0.00          0.00
## liqueur                             0.00       0.00   0.00   0.00          0.00
## make up remover                     0.00       0.00   0.00   0.00          0.00
## salad dressing                      0.00       0.00   0.00   0.00          0.00
## frozen chicken                      0.00       0.00   0.00   0.00          0.00
## whisky                              0.00       0.00   0.00   0.00          0.00
## baby cosmetics                      0.00       0.00   0.00   0.00          0.00
## toilet cleaner                      0.00       0.00   0.00   0.00          0.00
## bags                                0.00       0.00   0.00   0.00          0.00
## canned herbs                        0.00       0.00   0.00   0.00          0.00
## kitchen utensil                     0.00       0.00   0.00   0.00          0.00
## preservation products               0.00       0.00   0.00   0.00          0.00
## baby food                           0.00       0.00   0.00   0.00          0.00
## frozen herbss                       0.00       0.00   0.00   0.00          0.00
## organic sausage                     0.00       0.00   0.00   0.00          0.00
## sound storage medium                0.00       0.00   0.00   0.00          0.00
##                           flour semi-finished bread baking powder
## rice                       0.01                0.01          0.01
## veggies                    0.01                0.00          0.01
## loaf                       0.00                0.00          0.00
## coke                       0.00                0.00          0.00
## yogurt                     0.00                0.00          0.00
## vegetables                 0.00                0.00          0.00
## mineral water              0.00                0.00          0.00
## Plastic bags               0.00                0.00          0.00
## tropical fruit             0.00                0.00          0.00
## marinated meat             0.00                0.00          0.00
## pies/pasties               0.00                0.00          0.00
## newspapers                 0.00                0.00          0.00
## citrus                     0.00                0.00          0.00
## whipped/sour cream         0.00                0.00          0.00
## heinken                    0.00                0.00          0.00
## green tea                  0.00                0.00          0.00
## pip fruit                  0.00                0.00          0.00
## brown bread                0.00                0.00          0.00
## fruit/vegetable juice      0.00                0.00          0.00
## domestic eggs              0.00                0.00          0.00
## coffee                     0.00                0.00          0.00
## margarine                  0.00                0.00          0.00
## beef                       0.00                0.00          0.00
## curd                       0.00                0.00          0.00
## butter                     0.00                0.00          0.00
## marinated meats            0.00                0.00          0.00
## napkins                    0.00                0.00          0.00
## halal meat                 0.00                0.00          0.00
## chocolate                  0.00                0.00          0.00
## frozen vegetables          0.00                0.00          0.00
## chicken                    0.00                0.00          0.00
## white bread                0.00                0.00          0.00
## cream cheese               0.00                0.00          0.00
## waffles                    0.00                0.00          0.00
## dessert                    0.00                0.00          0.00
## salty snack                0.00                0.00          0.00
## long life bakery product   0.00                0.00          0.00
## berries                    0.00                0.00          0.00
## hamburger meat             0.00                0.00          0.00
## sugar                      0.00                0.00          0.00
## hygiene articles           0.00                0.00          0.00
## UHT-milk                   0.00                0.00          0.00
## onions                     0.00                0.00          0.00
## candy                      0.00                0.00          0.00
## specialty chocolate        0.00                0.00          0.00
## butter milk                0.00                0.00          0.00
## oil                        0.00                0.00          0.00
## frozen meals               0.00                0.00          0.00
## misc. beverages            0.00                0.00          0.00
## specialty bar              0.00                0.00          0.00
## ham                        0.00                0.00          0.00
## beverages                  0.00                0.00          0.00
## meat                       0.00                0.00          0.00
## ice cream                  0.00                0.00          0.00
## sliced cheese              0.00                0.00          0.00
## hard cheese                0.00                0.00          0.00
## noodles                    0.00                0.00          0.00
## grapes                     0.00                0.00          0.00
## cat food                   0.00                0.00          0.00
## chewing gum                0.00                0.00          0.00
## soda                       0.00                0.00          0.00
## detergent                  0.00                0.00          0.00
## red/blush wine             0.00                0.00          0.00
## white wine                 0.00                0.00          0.00
## turkey                     0.00                0.00          0.00
## dishes                     0.00                0.00          0.00
## bottled water              0.00                0.00          0.00
## flour                      0.02                0.00          0.00
## semi-finished bread        0.00                0.02          0.00
## baking powder              0.00                0.00          0.02
## pickled vegetables         0.00                0.00          0.00
## herbs                      0.00                0.00          0.00
## tropical herbs             0.00                0.00          0.00
## soft cheese                0.00                0.00          0.00
## tea                        0.00                0.00          0.00
## processed cheese           0.00                0.00          0.00
## sausage                    0.00                0.00          0.00
## pasta                      0.00                0.00          0.00
## citrus herbs               0.00                0.00          0.00
## potted plants              0.00                0.00          0.00
## canned fish                0.00                0.00          0.00
## seasonal products          0.00                0.00          0.00
## cake bar                   0.00                0.00          0.00
## carrots                    0.00                0.00          0.00
## mustard                    0.00                0.00          0.00
## packaged fruit/vegetables  0.00                0.00          0.00
## spread cheese              0.00                0.00          0.00
## frozen dessert             0.00                0.00          0.00
## frozen fish                0.00                0.00          0.00
## cling film/bags            0.00                0.00          0.00
## salt                       0.00                0.00          0.00
## liquor                     0.00                0.00          0.00
## canned vegetables          0.00                0.00          0.00
## bottled beer               0.00                0.00          0.00
## flower (seeds)             0.00                0.00          0.00
## cooking oil                0.00                0.00          0.00
## dish cleaner               0.00                0.00          0.00
## condensed milk             0.00                0.00          0.00
## roll products              0.00                0.00          0.00
## photo/film                 0.00                0.00          0.00
## pet care                   0.00                0.00          0.00
## chocolate marshmallow      0.00                0.00          0.00
## herbs/vegetable juice      0.00                0.00          0.00
## whole milk                 0.00                0.00          0.00
## candles                    0.00                0.00          0.00
## mayonnaise                 0.00                0.00          0.00
## Instant food products      0.00                0.00          0.00
## sweet spreads              0.00                0.00          0.00
## liquor (appetizer)         0.00                0.00          0.00
## specialty cheese           0.00                0.00          0.00
## frozen potato products     0.00                0.00          0.00
## house keeping products     0.00                0.00          0.00
## dog food                   0.00                0.00          0.00
## soy                        0.00                0.00          0.00
## instant coffee             0.00                0.00          0.00
## pip herbs                  0.00                0.00          0.00
## zwieback                   0.00                0.00          0.00
## finished products          0.00                0.00          0.00
## popcorn                    0.00                0.00          0.00
## vinegar                    0.00                0.00          0.00
## soups                      0.00                0.00          0.00
## female sanitary products   0.00                0.00          0.00
## sparkling wine             0.00                0.00          0.00
## dental care                0.00                0.00          0.00
## cereals                    0.00                0.00          0.00
## kitchen towels             0.00                0.00          0.00
## curd cheese                0.00                0.00          0.00
## other vegetables           0.00                0.00          0.00
## rolls/buns                 0.00                0.00          0.00
## softener                   0.00                0.00          0.00
## cleaner                    0.00                0.00          0.00
## spices                     0.00                0.00          0.00
## jam                        0.00                0.00          0.00
## sauces                     0.00                0.00          0.00
## rum                        0.00                0.00          0.00
## liver loaf                 0.00                0.00          0.00
## male cosmetics             0.00                0.00          0.00
## meat spreads               0.00                0.00          0.00
## packaged herbs/vegetables  0.00                0.00          0.00
## brandy                     0.00                0.00          0.00
## ketchup                    0.00                0.00          0.00
## abrasive cleaner           0.00                0.00          0.00
## light bulbs                0.00                0.00          0.00
## artif. sweetener           0.00                0.00          0.00
## nuts/prunes                0.00                0.00          0.00
## specialty fat              0.00                0.00          0.00
## skin care                  0.00                0.00          0.00
## fish                       0.00                0.00          0.00
## potato products            0.00                0.00          0.00
## root vegetables            0.00                0.00          0.00
## snack products             0.00                0.00          0.00
## nut snack                  0.00                0.00          0.00
## soap                       0.00                0.00          0.00
## syrup                      0.00                0.00          0.00
## bathroom cleaner           0.00                0.00          0.00
## canned fruit               0.00                0.00          0.00
## cookware                   0.00                0.00          0.00
## cooking chocolate          0.00                0.00          0.00
## tidbits                    0.00                0.00          0.00
## cocoa drinks               0.00                0.00          0.00
## pudding powder             0.00                0.00          0.00
## ready soups                0.00                0.00          0.00
## organic marinated meat     0.00                0.00          0.00
## flower soil/fertilizer     0.00                0.00          0.00
## organic products           0.00                0.00          0.00
## pot plants                 0.00                0.00          0.00
## prosecco                   0.00                0.00          0.00
## frankfurter                0.00                0.00          0.00
## decalcifier                0.00                0.00          0.00
## honey                      0.00                0.00          0.00
## specialty vegetables       0.00                0.00          0.00
## cream                      0.00                0.00          0.00
## hair spray                 0.00                0.00          0.00
## frozen fruits              0.00                0.00          0.00
## rubbing alcohol            0.00                0.00          0.00
## liqueur                    0.00                0.00          0.00
## make up remover            0.00                0.00          0.00
## salad dressing             0.00                0.00          0.00
## frozen chicken             0.00                0.00          0.00
## whisky                     0.00                0.00          0.00
## baby cosmetics             0.00                0.00          0.00
## toilet cleaner             0.00                0.00          0.00
## bags                       0.00                0.00          0.00
## canned herbs               0.00                0.00          0.00
## kitchen utensil            0.00                0.00          0.00
## preservation products      0.00                0.00          0.00
## baby food                  0.00                0.00          0.00
## frozen herbss              0.00                0.00          0.00
## organic sausage            0.00                0.00          0.00
## sound storage medium       0.00                0.00          0.00
##                           pickled vegetables herbs tropical herbs soft cheese
## rice                                    0.01  0.01           0.00        0.01
## veggies                                 0.01  0.01           0.00        0.01
## loaf                                    0.00  0.00           0.00        0.00
## coke                                    0.00  0.00           0.00        0.00
## yogurt                                  0.00  0.00           0.00        0.01
## vegetables                              0.00  0.01           0.00        0.00
## mineral water                           0.00  0.00           0.00        0.00
## Plastic bags                            0.00  0.00           0.00        0.00
## tropical fruit                          0.00  0.00           0.00        0.00
## marinated meat                          0.00  0.00           0.00        0.00
## pies/pasties                            0.00  0.00           0.00        0.00
## newspapers                              0.00  0.00           0.00        0.00
## citrus                                  0.00  0.00           0.00        0.00
## whipped/sour cream                      0.00  0.00           0.00        0.00
## heinken                                 0.00  0.00           0.00        0.00
## green tea                               0.00  0.00           0.00        0.00
## pip fruit                               0.00  0.00           0.00        0.00
## brown bread                             0.00  0.00           0.00        0.00
## fruit/vegetable juice                   0.00  0.00           0.00        0.00
## domestic eggs                           0.00  0.00           0.00        0.00
## coffee                                  0.00  0.00           0.00        0.00
## margarine                               0.00  0.00           0.00        0.00
## beef                                    0.00  0.00           0.00        0.00
## curd                                    0.00  0.00           0.00        0.00
## butter                                  0.00  0.00           0.00        0.00
## marinated meats                         0.00  0.00           0.00        0.00
## napkins                                 0.00  0.00           0.00        0.00
## halal meat                              0.00  0.00           0.00        0.00
## chocolate                               0.00  0.00           0.00        0.00
## frozen vegetables                       0.00  0.00           0.00        0.00
## chicken                                 0.00  0.00           0.00        0.00
## white bread                             0.00  0.00           0.00        0.00
## cream cheese                            0.00  0.00           0.00        0.00
## waffles                                 0.00  0.00           0.00        0.00
## dessert                                 0.00  0.00           0.00        0.00
## salty snack                             0.00  0.00           0.00        0.00
## long life bakery product                0.00  0.00           0.00        0.00
## berries                                 0.00  0.00           0.00        0.00
## hamburger meat                          0.00  0.00           0.00        0.00
## sugar                                   0.00  0.00           0.00        0.00
## hygiene articles                        0.00  0.00           0.00        0.00
## UHT-milk                                0.00  0.00           0.00        0.00
## onions                                  0.00  0.00           0.00        0.00
## candy                                   0.00  0.00           0.00        0.00
## specialty chocolate                     0.00  0.00           0.00        0.00
## butter milk                             0.00  0.00           0.00        0.00
## oil                                     0.00  0.00           0.00        0.00
## frozen meals                            0.00  0.00           0.00        0.00
## misc. beverages                         0.00  0.00           0.00        0.00
## specialty bar                           0.00  0.00           0.00        0.00
## ham                                     0.00  0.00           0.00        0.00
## beverages                               0.00  0.00           0.00        0.00
## meat                                    0.00  0.00           0.00        0.00
## ice cream                               0.00  0.00           0.00        0.00
## sliced cheese                           0.00  0.00           0.00        0.00
## hard cheese                             0.00  0.00           0.00        0.00
## noodles                                 0.00  0.00           0.00        0.00
## grapes                                  0.00  0.00           0.00        0.00
## cat food                                0.00  0.00           0.00        0.00
## chewing gum                             0.00  0.00           0.00        0.00
## soda                                    0.00  0.00           0.00        0.00
## detergent                               0.00  0.00           0.00        0.00
## red/blush wine                          0.00  0.00           0.00        0.00
## white wine                              0.00  0.00           0.00        0.00
## turkey                                  0.00  0.00           0.00        0.00
## dishes                                  0.00  0.00           0.00        0.00
## bottled water                           0.00  0.00           0.00        0.00
## flour                                   0.00  0.00           0.00        0.00
## semi-finished bread                     0.00  0.00           0.00        0.00
## baking powder                           0.00  0.00           0.00        0.00
## pickled vegetables                      0.02  0.00           0.00        0.00
## herbs                                   0.00  0.02           0.00        0.00
## tropical herbs                          0.00  0.00           0.02        0.00
## soft cheese                             0.00  0.00           0.00        0.02
## tea                                     0.00  0.00           0.00        0.00
## processed cheese                        0.00  0.00           0.00        0.00
## sausage                                 0.00  0.00           0.00        0.00
## pasta                                   0.00  0.00           0.00        0.00
## citrus herbs                            0.00  0.00           0.00        0.00
## potted plants                           0.00  0.00           0.00        0.00
## canned fish                             0.00  0.00           0.00        0.00
## seasonal products                       0.00  0.00           0.00        0.00
## cake bar                                0.00  0.00           0.00        0.00
## carrots                                 0.00  0.00           0.00        0.00
## mustard                                 0.00  0.00           0.00        0.00
## packaged fruit/vegetables               0.00  0.00           0.00        0.00
## spread cheese                           0.00  0.00           0.00        0.00
## frozen dessert                          0.00  0.00           0.00        0.00
## frozen fish                             0.00  0.00           0.00        0.00
## cling film/bags                         0.00  0.00           0.00        0.00
## salt                                    0.00  0.00           0.00        0.00
## liquor                                  0.00  0.00           0.00        0.00
## canned vegetables                       0.00  0.00           0.00        0.00
## bottled beer                            0.00  0.00           0.00        0.00
## flower (seeds)                          0.00  0.00           0.00        0.00
## cooking oil                             0.00  0.00           0.00        0.00
## dish cleaner                            0.00  0.00           0.00        0.00
## condensed milk                          0.00  0.00           0.00        0.00
## roll products                           0.00  0.00           0.00        0.00
## photo/film                              0.00  0.00           0.00        0.00
## pet care                                0.00  0.00           0.00        0.00
## chocolate marshmallow                   0.00  0.00           0.00        0.00
## herbs/vegetable juice                   0.00  0.00           0.00        0.00
## whole milk                              0.00  0.00           0.00        0.00
## candles                                 0.00  0.00           0.00        0.00
## mayonnaise                              0.00  0.00           0.00        0.00
## Instant food products                   0.00  0.00           0.00        0.00
## sweet spreads                           0.00  0.00           0.00        0.00
## liquor (appetizer)                      0.00  0.00           0.00        0.00
## specialty cheese                        0.00  0.00           0.00        0.00
## frozen potato products                  0.00  0.00           0.00        0.00
## house keeping products                  0.00  0.00           0.00        0.00
## dog food                                0.00  0.00           0.00        0.00
## soy                                     0.00  0.00           0.00        0.00
## instant coffee                          0.00  0.00           0.00        0.00
## pip herbs                               0.00  0.00           0.00        0.00
## zwieback                                0.00  0.00           0.00        0.00
## finished products                       0.00  0.00           0.00        0.00
## popcorn                                 0.00  0.00           0.00        0.00
## vinegar                                 0.00  0.00           0.00        0.00
## soups                                   0.00  0.00           0.00        0.00
## female sanitary products                0.00  0.00           0.00        0.00
## sparkling wine                          0.00  0.00           0.00        0.00
## dental care                             0.00  0.00           0.00        0.00
## cereals                                 0.00  0.00           0.00        0.00
## kitchen towels                          0.00  0.00           0.00        0.00
## curd cheese                             0.00  0.00           0.00        0.00
## other vegetables                        0.00  0.00           0.00        0.00
## rolls/buns                              0.00  0.00           0.00        0.00
## softener                                0.00  0.00           0.00        0.00
## cleaner                                 0.00  0.00           0.00        0.00
## spices                                  0.00  0.00           0.00        0.00
## jam                                     0.00  0.00           0.00        0.00
## sauces                                  0.00  0.00           0.00        0.00
## rum                                     0.00  0.00           0.00        0.00
## liver loaf                              0.00  0.00           0.00        0.00
## male cosmetics                          0.00  0.00           0.00        0.00
## meat spreads                            0.00  0.00           0.00        0.00
## packaged herbs/vegetables               0.00  0.00           0.00        0.00
## brandy                                  0.00  0.00           0.00        0.00
## ketchup                                 0.00  0.00           0.00        0.00
## abrasive cleaner                        0.00  0.00           0.00        0.00
## light bulbs                             0.00  0.00           0.00        0.00
## artif. sweetener                        0.00  0.00           0.00        0.00
## nuts/prunes                             0.00  0.00           0.00        0.00
## specialty fat                           0.00  0.00           0.00        0.00
## skin care                               0.00  0.00           0.00        0.00
## fish                                    0.00  0.00           0.00        0.00
## potato products                         0.00  0.00           0.00        0.00
## root vegetables                         0.00  0.00           0.00        0.00
## snack products                          0.00  0.00           0.00        0.00
## nut snack                               0.00  0.00           0.00        0.00
## soap                                    0.00  0.00           0.00        0.00
## syrup                                   0.00  0.00           0.00        0.00
## bathroom cleaner                        0.00  0.00           0.00        0.00
## canned fruit                            0.00  0.00           0.00        0.00
## cookware                                0.00  0.00           0.00        0.00
## cooking chocolate                       0.00  0.00           0.00        0.00
## tidbits                                 0.00  0.00           0.00        0.00
## cocoa drinks                            0.00  0.00           0.00        0.00
## pudding powder                          0.00  0.00           0.00        0.00
## ready soups                             0.00  0.00           0.00        0.00
## organic marinated meat                  0.00  0.00           0.00        0.00
## flower soil/fertilizer                  0.00  0.00           0.00        0.00
## organic products                        0.00  0.00           0.00        0.00
## pot plants                              0.00  0.00           0.00        0.00
## prosecco                                0.00  0.00           0.00        0.00
## frankfurter                             0.00  0.00           0.00        0.00
## decalcifier                             0.00  0.00           0.00        0.00
## honey                                   0.00  0.00           0.00        0.00
## specialty vegetables                    0.00  0.00           0.00        0.00
## cream                                   0.00  0.00           0.00        0.00
## hair spray                              0.00  0.00           0.00        0.00
## frozen fruits                           0.00  0.00           0.00        0.00
## rubbing alcohol                         0.00  0.00           0.00        0.00
## liqueur                                 0.00  0.00           0.00        0.00
## make up remover                         0.00  0.00           0.00        0.00
## salad dressing                          0.00  0.00           0.00        0.00
## frozen chicken                          0.00  0.00           0.00        0.00
## whisky                                  0.00  0.00           0.00        0.00
## baby cosmetics                          0.00  0.00           0.00        0.00
## toilet cleaner                          0.00  0.00           0.00        0.00
## bags                                    0.00  0.00           0.00        0.00
## canned herbs                            0.00  0.00           0.00        0.00
## kitchen utensil                         0.00  0.00           0.00        0.00
## preservation products                   0.00  0.00           0.00        0.00
## baby food                               0.00  0.00           0.00        0.00
## frozen herbss                           0.00  0.00           0.00        0.00
## organic sausage                         0.00  0.00           0.00        0.00
## sound storage medium                    0.00  0.00           0.00        0.00
##                            tea processed cheese sausage pasta citrus herbs
## rice                      0.01             0.01    0.00  0.01         0.01
## veggies                   0.00             0.00    0.00  0.00         0.00
## loaf                      0.00             0.00    0.00  0.00         0.00
## coke                      0.00             0.00    0.00  0.00         0.00
## yogurt                    0.00             0.00    0.00  0.00         0.00
## vegetables                0.00             0.00    0.00  0.00         0.00
## mineral water             0.00             0.00    0.00  0.00         0.00
## Plastic bags              0.00             0.00    0.00  0.00         0.00
## tropical fruit            0.00             0.00    0.00  0.00         0.00
## marinated meat            0.00             0.00    0.00  0.00         0.00
## pies/pasties              0.00             0.00    0.00  0.00         0.00
## newspapers                0.00             0.00    0.00  0.00         0.00
## citrus                    0.00             0.00    0.00  0.00         0.00
## whipped/sour cream        0.00             0.00    0.00  0.00         0.00
## heinken                   0.00             0.00    0.00  0.00         0.00
## green tea                 0.00             0.00    0.00  0.00         0.00
## pip fruit                 0.00             0.00    0.00  0.00         0.00
## brown bread               0.00             0.00    0.00  0.00         0.00
## fruit/vegetable juice     0.00             0.00    0.00  0.00         0.00
## domestic eggs             0.00             0.00    0.00  0.00         0.00
## coffee                    0.00             0.00    0.00  0.00         0.00
## margarine                 0.00             0.00    0.00  0.00         0.00
## beef                      0.00             0.00    0.00  0.00         0.00
## curd                      0.00             0.00    0.00  0.00         0.00
## butter                    0.00             0.00    0.00  0.00         0.00
## marinated meats           0.00             0.00    0.00  0.00         0.00
## napkins                   0.00             0.00    0.00  0.00         0.00
## halal meat                0.00             0.00    0.00  0.00         0.00
## chocolate                 0.00             0.00    0.00  0.00         0.00
## frozen vegetables         0.00             0.00    0.00  0.00         0.00
## chicken                   0.00             0.00    0.00  0.00         0.00
## white bread               0.00             0.00    0.00  0.00         0.00
## cream cheese              0.00             0.00    0.00  0.00         0.00
## waffles                   0.00             0.00    0.00  0.00         0.00
## dessert                   0.00             0.00    0.00  0.00         0.00
## salty snack               0.00             0.00    0.00  0.00         0.00
## long life bakery product  0.00             0.00    0.00  0.00         0.00
## berries                   0.00             0.00    0.00  0.00         0.00
## hamburger meat            0.00             0.00    0.00  0.00         0.00
## sugar                     0.00             0.00    0.00  0.00         0.00
## hygiene articles          0.00             0.00    0.00  0.00         0.00
## UHT-milk                  0.00             0.00    0.00  0.00         0.00
## onions                    0.00             0.00    0.00  0.00         0.00
## candy                     0.00             0.00    0.00  0.00         0.00
## specialty chocolate       0.00             0.00    0.00  0.00         0.00
## butter milk               0.00             0.00    0.00  0.00         0.00
## oil                       0.00             0.00    0.00  0.00         0.00
## frozen meals              0.00             0.00    0.00  0.00         0.00
## misc. beverages           0.00             0.00    0.00  0.00         0.00
## specialty bar             0.00             0.00    0.00  0.00         0.00
## ham                       0.00             0.00    0.00  0.00         0.00
## beverages                 0.00             0.00    0.00  0.00         0.00
## meat                      0.00             0.00    0.00  0.00         0.00
## ice cream                 0.00             0.00    0.00  0.00         0.00
## sliced cheese             0.00             0.00    0.00  0.00         0.00
## hard cheese               0.00             0.00    0.00  0.00         0.00
## noodles                   0.00             0.00    0.00  0.00         0.00
## grapes                    0.00             0.00    0.00  0.00         0.00
## cat food                  0.00             0.00    0.00  0.00         0.00
## chewing gum               0.00             0.00    0.00  0.00         0.00
## soda                      0.00             0.00    0.00  0.00         0.00
## detergent                 0.00             0.00    0.00  0.00         0.00
## red/blush wine            0.00             0.00    0.00  0.00         0.00
## white wine                0.00             0.00    0.00  0.00         0.00
## turkey                    0.00             0.00    0.00  0.00         0.00
## dishes                    0.00             0.00    0.00  0.00         0.00
## bottled water             0.00             0.00    0.00  0.00         0.00
## flour                     0.00             0.00    0.00  0.00         0.00
## semi-finished bread       0.00             0.00    0.00  0.00         0.00
## baking powder             0.00             0.00    0.00  0.00         0.00
## pickled vegetables        0.00             0.00    0.00  0.00         0.00
## herbs                     0.00             0.00    0.00  0.00         0.00
## tropical herbs            0.00             0.00    0.00  0.00         0.00
## soft cheese               0.00             0.00    0.00  0.00         0.00
## tea                       0.02             0.00    0.00  0.00         0.00
## processed cheese          0.00             0.02    0.00  0.00         0.00
## sausage                   0.00             0.00    0.02  0.00         0.00
## pasta                     0.00             0.00    0.00  0.02         0.00
## citrus herbs              0.00             0.00    0.00  0.00         0.02
## potted plants             0.00             0.00    0.00  0.00         0.00
## canned fish               0.00             0.00    0.00  0.00         0.00
## seasonal products         0.00             0.00    0.00  0.00         0.00
## cake bar                  0.00             0.00    0.00  0.00         0.00
## carrots                   0.00             0.00    0.00  0.00         0.00
## mustard                   0.00             0.00    0.00  0.00         0.00
## packaged fruit/vegetables 0.00             0.00    0.00  0.00         0.00
## spread cheese             0.00             0.00    0.00  0.00         0.00
## frozen dessert            0.00             0.00    0.00  0.00         0.00
## frozen fish               0.00             0.00    0.00  0.00         0.00
## cling film/bags           0.00             0.00    0.00  0.00         0.00
## salt                      0.00             0.00    0.00  0.00         0.00
## liquor                    0.00             0.00    0.00  0.00         0.00
## canned vegetables         0.00             0.00    0.00  0.00         0.00
## bottled beer              0.00             0.00    0.00  0.00         0.00
## flower (seeds)            0.00             0.00    0.00  0.00         0.00
## cooking oil               0.00             0.00    0.00  0.00         0.00
## dish cleaner              0.00             0.00    0.00  0.00         0.00
## condensed milk            0.00             0.00    0.00  0.00         0.00
## roll products             0.00             0.00    0.00  0.00         0.00
## photo/film                0.00             0.00    0.00  0.00         0.00
## pet care                  0.00             0.00    0.00  0.00         0.00
## chocolate marshmallow     0.00             0.00    0.00  0.00         0.00
## herbs/vegetable juice     0.00             0.00    0.00  0.00         0.00
## whole milk                0.00             0.00    0.00  0.00         0.00
## candles                   0.00             0.00    0.00  0.00         0.00
## mayonnaise                0.00             0.00    0.00  0.00         0.00
## Instant food products     0.00             0.00    0.00  0.00         0.00
## sweet spreads             0.00             0.00    0.00  0.00         0.00
## liquor (appetizer)        0.00             0.00    0.00  0.00         0.00
## specialty cheese          0.00             0.00    0.00  0.00         0.00
## frozen potato products    0.00             0.00    0.00  0.00         0.00
## house keeping products    0.00             0.00    0.00  0.00         0.00
## dog food                  0.00             0.00    0.00  0.00         0.00
## soy                       0.00             0.00    0.00  0.00         0.00
## instant coffee            0.00             0.00    0.00  0.00         0.00
## pip herbs                 0.00             0.00    0.00  0.00         0.00
## zwieback                  0.00             0.00    0.00  0.00         0.00
## finished products         0.00             0.00    0.00  0.00         0.00
## popcorn                   0.00             0.00    0.00  0.00         0.00
## vinegar                   0.00             0.00    0.00  0.00         0.00
## soups                     0.00             0.00    0.00  0.00         0.00
## female sanitary products  0.00             0.00    0.00  0.00         0.00
## sparkling wine            0.00             0.00    0.00  0.00         0.00
## dental care               0.00             0.00    0.00  0.00         0.00
## cereals                   0.00             0.00    0.00  0.00         0.00
## kitchen towels            0.00             0.00    0.00  0.00         0.00
## curd cheese               0.00             0.00    0.00  0.00         0.00
## other vegetables          0.00             0.00    0.00  0.00         0.00
## rolls/buns                0.00             0.00    0.00  0.00         0.00
## softener                  0.00             0.00    0.00  0.00         0.00
## cleaner                   0.00             0.00    0.00  0.00         0.00
## spices                    0.00             0.00    0.00  0.00         0.00
## jam                       0.00             0.00    0.00  0.00         0.00
## sauces                    0.00             0.00    0.00  0.00         0.00
## rum                       0.00             0.00    0.00  0.00         0.00
## liver loaf                0.00             0.00    0.00  0.00         0.00
## male cosmetics            0.00             0.00    0.00  0.00         0.00
## meat spreads              0.00             0.00    0.00  0.00         0.00
## packaged herbs/vegetables 0.00             0.00    0.00  0.00         0.00
## brandy                    0.00             0.00    0.00  0.00         0.00
## ketchup                   0.00             0.00    0.00  0.00         0.00
## abrasive cleaner          0.00             0.00    0.00  0.00         0.00
## light bulbs               0.00             0.00    0.00  0.00         0.00
## artif. sweetener          0.00             0.00    0.00  0.00         0.00
## nuts/prunes               0.00             0.00    0.00  0.00         0.00
## specialty fat             0.00             0.00    0.00  0.00         0.00
## skin care                 0.00             0.00    0.00  0.00         0.00
## fish                      0.00             0.00    0.00  0.00         0.00
## potato products           0.00             0.00    0.00  0.00         0.00
## root vegetables           0.00             0.00    0.00  0.00         0.00
## snack products            0.00             0.00    0.00  0.00         0.00
## nut snack                 0.00             0.00    0.00  0.00         0.00
## soap                      0.00             0.00    0.00  0.00         0.00
## syrup                     0.00             0.00    0.00  0.00         0.00
## bathroom cleaner          0.00             0.00    0.00  0.00         0.00
## canned fruit              0.00             0.00    0.00  0.00         0.00
## cookware                  0.00             0.00    0.00  0.00         0.00
## cooking chocolate         0.00             0.00    0.00  0.00         0.00
## tidbits                   0.00             0.00    0.00  0.00         0.00
## cocoa drinks              0.00             0.00    0.00  0.00         0.00
## pudding powder            0.00             0.00    0.00  0.00         0.00
## ready soups               0.00             0.00    0.00  0.00         0.00
## organic marinated meat    0.00             0.00    0.00  0.00         0.00
## flower soil/fertilizer    0.00             0.00    0.00  0.00         0.00
## organic products          0.00             0.00    0.00  0.00         0.00
## pot plants                0.00             0.00    0.00  0.00         0.00
## prosecco                  0.00             0.00    0.00  0.00         0.00
## frankfurter               0.00             0.00    0.00  0.00         0.00
## decalcifier               0.00             0.00    0.00  0.00         0.00
## honey                     0.00             0.00    0.00  0.00         0.00
## specialty vegetables      0.00             0.00    0.00  0.00         0.00
## cream                     0.00             0.00    0.00  0.00         0.00
## hair spray                0.00             0.00    0.00  0.00         0.00
## frozen fruits             0.00             0.00    0.00  0.00         0.00
## rubbing alcohol           0.00             0.00    0.00  0.00         0.00
## liqueur                   0.00             0.00    0.00  0.00         0.00
## make up remover           0.00             0.00    0.00  0.00         0.00
## salad dressing            0.00             0.00    0.00  0.00         0.00
## frozen chicken            0.00             0.00    0.00  0.00         0.00
## whisky                    0.00             0.00    0.00  0.00         0.00
## baby cosmetics            0.00             0.00    0.00  0.00         0.00
## toilet cleaner            0.00             0.00    0.00  0.00         0.00
## bags                      0.00             0.00    0.00  0.00         0.00
## canned herbs              0.00             0.00    0.00  0.00         0.00
## kitchen utensil           0.00             0.00    0.00  0.00         0.00
## preservation products     0.00             0.00    0.00  0.00         0.00
## baby food                 0.00             0.00    0.00  0.00         0.00
## frozen herbss             0.00             0.00    0.00  0.00         0.00
## organic sausage           0.00             0.00    0.00  0.00         0.00
## sound storage medium      0.00             0.00    0.00  0.00         0.00
##                           potted plants canned fish seasonal products cake bar
## rice                               0.01        0.00              0.00     0.01
## veggies                            0.00        0.00              0.00     0.00
## loaf                               0.00        0.00              0.00     0.00
## coke                               0.00        0.00              0.00     0.00
## yogurt                             0.00        0.00              0.00     0.00
## vegetables                         0.00        0.00              0.00     0.00
## mineral water                      0.00        0.00              0.00     0.00
## Plastic bags                       0.00        0.00              0.00     0.00
## tropical fruit                     0.00        0.00              0.00     0.00
## marinated meat                     0.00        0.00              0.00     0.00
## pies/pasties                       0.00        0.00              0.00     0.00
## newspapers                         0.00        0.00              0.00     0.00
## citrus                             0.00        0.00              0.00     0.00
## whipped/sour cream                 0.00        0.00              0.00     0.00
## heinken                            0.00        0.00              0.00     0.00
## green tea                          0.00        0.00              0.00     0.00
## pip fruit                          0.00        0.00              0.00     0.00
## brown bread                        0.00        0.00              0.00     0.00
## fruit/vegetable juice              0.00        0.00              0.00     0.00
## domestic eggs                      0.00        0.00              0.00     0.00
## coffee                             0.00        0.00              0.00     0.00
## margarine                          0.00        0.00              0.00     0.00
## beef                               0.00        0.00              0.00     0.00
## curd                               0.00        0.00              0.00     0.00
## butter                             0.00        0.00              0.00     0.00
## marinated meats                    0.00        0.00              0.00     0.00
## napkins                            0.00        0.00              0.00     0.00
## halal meat                         0.00        0.00              0.00     0.00
## chocolate                          0.00        0.00              0.00     0.00
## frozen vegetables                  0.00        0.00              0.00     0.00
## chicken                            0.00        0.00              0.00     0.00
## white bread                        0.00        0.00              0.00     0.00
## cream cheese                       0.00        0.00              0.00     0.00
## waffles                            0.00        0.00              0.00     0.00
## dessert                            0.00        0.00              0.00     0.00
## salty snack                        0.00        0.00              0.00     0.00
## long life bakery product           0.00        0.00              0.00     0.00
## berries                            0.00        0.00              0.00     0.00
## hamburger meat                     0.00        0.00              0.00     0.00
## sugar                              0.00        0.00              0.00     0.00
## hygiene articles                   0.00        0.00              0.00     0.00
## UHT-milk                           0.00        0.00              0.00     0.00
## onions                             0.00        0.00              0.00     0.00
## candy                              0.00        0.00              0.00     0.00
## specialty chocolate                0.00        0.00              0.00     0.00
## butter milk                        0.00        0.00              0.00     0.00
## oil                                0.00        0.00              0.00     0.00
## frozen meals                       0.00        0.00              0.00     0.00
## misc. beverages                    0.00        0.00              0.00     0.00
## specialty bar                      0.00        0.00              0.00     0.00
## ham                                0.00        0.00              0.00     0.00
## beverages                          0.00        0.00              0.00     0.00
## meat                               0.00        0.00              0.00     0.00
## ice cream                          0.00        0.00              0.00     0.00
## sliced cheese                      0.00        0.00              0.00     0.00
## hard cheese                        0.00        0.00              0.00     0.00
## noodles                            0.00        0.00              0.00     0.00
## grapes                             0.00        0.00              0.00     0.00
## cat food                           0.00        0.00              0.00     0.00
## chewing gum                        0.00        0.00              0.00     0.00
## soda                               0.00        0.00              0.00     0.00
## detergent                          0.00        0.00              0.00     0.00
## red/blush wine                     0.00        0.00              0.00     0.00
## white wine                         0.00        0.00              0.00     0.00
## turkey                             0.00        0.00              0.00     0.00
## dishes                             0.00        0.00              0.00     0.00
## bottled water                      0.00        0.00              0.00     0.00
## flour                              0.00        0.00              0.00     0.00
## semi-finished bread                0.00        0.00              0.00     0.00
## baking powder                      0.00        0.00              0.00     0.00
## pickled vegetables                 0.00        0.00              0.00     0.00
## herbs                              0.00        0.00              0.00     0.00
## tropical herbs                     0.00        0.00              0.00     0.00
## soft cheese                        0.00        0.00              0.00     0.00
## tea                                0.00        0.00              0.00     0.00
## processed cheese                   0.00        0.00              0.00     0.00
## sausage                            0.00        0.00              0.00     0.00
## pasta                              0.00        0.00              0.00     0.00
## citrus herbs                       0.00        0.00              0.00     0.00
## potted plants                      0.02        0.00              0.00     0.00
## canned fish                        0.00        0.01              0.00     0.00
## seasonal products                  0.00        0.00              0.01     0.00
## cake bar                           0.00        0.00              0.00     0.01
## carrots                            0.00        0.00              0.00     0.00
## mustard                            0.00        0.00              0.00     0.00
## packaged fruit/vegetables          0.00        0.00              0.00     0.00
## spread cheese                      0.00        0.00              0.00     0.00
## frozen dessert                     0.00        0.00              0.00     0.00
## frozen fish                        0.00        0.00              0.00     0.00
## cling film/bags                    0.00        0.00              0.00     0.00
## salt                               0.00        0.00              0.00     0.00
## liquor                             0.00        0.00              0.00     0.00
## canned vegetables                  0.00        0.00              0.00     0.00
## bottled beer                       0.00        0.00              0.00     0.00
## flower (seeds)                     0.00        0.00              0.00     0.00
## cooking oil                        0.00        0.00              0.00     0.00
## dish cleaner                       0.00        0.00              0.00     0.00
## condensed milk                     0.00        0.00              0.00     0.00
## roll products                      0.00        0.00              0.00     0.00
## photo/film                         0.00        0.00              0.00     0.00
## pet care                           0.00        0.00              0.00     0.00
## chocolate marshmallow              0.00        0.00              0.00     0.00
## herbs/vegetable juice              0.00        0.00              0.00     0.00
## whole milk                         0.00        0.00              0.00     0.00
## candles                            0.00        0.00              0.00     0.00
## mayonnaise                         0.00        0.00              0.00     0.00
## Instant food products              0.00        0.00              0.00     0.00
## sweet spreads                      0.00        0.00              0.00     0.00
## liquor (appetizer)                 0.00        0.00              0.00     0.00
## specialty cheese                   0.00        0.00              0.00     0.00
## frozen potato products             0.00        0.00              0.00     0.00
## house keeping products             0.00        0.00              0.00     0.00
## dog food                           0.00        0.00              0.00     0.00
## soy                                0.00        0.00              0.00     0.00
## instant coffee                     0.00        0.00              0.00     0.00
## pip herbs                          0.00        0.00              0.00     0.00
## zwieback                           0.00        0.00              0.00     0.00
## finished products                  0.00        0.00              0.00     0.00
## popcorn                            0.00        0.00              0.00     0.00
## vinegar                            0.00        0.00              0.00     0.00
## soups                              0.00        0.00              0.00     0.00
## female sanitary products           0.00        0.00              0.00     0.00
## sparkling wine                     0.00        0.00              0.00     0.00
## dental care                        0.00        0.00              0.00     0.00
## cereals                            0.00        0.00              0.00     0.00
## kitchen towels                     0.00        0.00              0.00     0.00
## curd cheese                        0.00        0.00              0.00     0.00
## other vegetables                   0.00        0.00              0.00     0.00
## rolls/buns                         0.00        0.00              0.00     0.00
## softener                           0.00        0.00              0.00     0.00
## cleaner                            0.00        0.00              0.00     0.00
## spices                             0.00        0.00              0.00     0.00
## jam                                0.00        0.00              0.00     0.00
## sauces                             0.00        0.00              0.00     0.00
## rum                                0.00        0.00              0.00     0.00
## liver loaf                         0.00        0.00              0.00     0.00
## male cosmetics                     0.00        0.00              0.00     0.00
## meat spreads                       0.00        0.00              0.00     0.00
## packaged herbs/vegetables          0.00        0.00              0.00     0.00
## brandy                             0.00        0.00              0.00     0.00
## ketchup                            0.00        0.00              0.00     0.00
## abrasive cleaner                   0.00        0.00              0.00     0.00
## light bulbs                        0.00        0.00              0.00     0.00
## artif. sweetener                   0.00        0.00              0.00     0.00
## nuts/prunes                        0.00        0.00              0.00     0.00
## specialty fat                      0.00        0.00              0.00     0.00
## skin care                          0.00        0.00              0.00     0.00
## fish                               0.00        0.00              0.00     0.00
## potato products                    0.00        0.00              0.00     0.00
## root vegetables                    0.00        0.00              0.00     0.00
## snack products                     0.00        0.00              0.00     0.00
## nut snack                          0.00        0.00              0.00     0.00
## soap                               0.00        0.00              0.00     0.00
## syrup                              0.00        0.00              0.00     0.00
## bathroom cleaner                   0.00        0.00              0.00     0.00
## canned fruit                       0.00        0.00              0.00     0.00
## cookware                           0.00        0.00              0.00     0.00
## cooking chocolate                  0.00        0.00              0.00     0.00
## tidbits                            0.00        0.00              0.00     0.00
## cocoa drinks                       0.00        0.00              0.00     0.00
## pudding powder                     0.00        0.00              0.00     0.00
## ready soups                        0.00        0.00              0.00     0.00
## organic marinated meat             0.00        0.00              0.00     0.00
## flower soil/fertilizer             0.00        0.00              0.00     0.00
## organic products                   0.00        0.00              0.00     0.00
## pot plants                         0.00        0.00              0.00     0.00
## prosecco                           0.00        0.00              0.00     0.00
## frankfurter                        0.00        0.00              0.00     0.00
## decalcifier                        0.00        0.00              0.00     0.00
## honey                              0.00        0.00              0.00     0.00
## specialty vegetables               0.00        0.00              0.00     0.00
## cream                              0.00        0.00              0.00     0.00
## hair spray                         0.00        0.00              0.00     0.00
## frozen fruits                      0.00        0.00              0.00     0.00
## rubbing alcohol                    0.00        0.00              0.00     0.00
## liqueur                            0.00        0.00              0.00     0.00
## make up remover                    0.00        0.00              0.00     0.00
## salad dressing                     0.00        0.00              0.00     0.00
## frozen chicken                     0.00        0.00              0.00     0.00
## whisky                             0.00        0.00              0.00     0.00
## baby cosmetics                     0.00        0.00              0.00     0.00
## toilet cleaner                     0.00        0.00              0.00     0.00
## bags                               0.00        0.00              0.00     0.00
## canned herbs                       0.00        0.00              0.00     0.00
## kitchen utensil                    0.00        0.00              0.00     0.00
## preservation products              0.00        0.00              0.00     0.00
## baby food                          0.00        0.00              0.00     0.00
## frozen herbss                      0.00        0.00              0.00     0.00
## organic sausage                    0.00        0.00              0.00     0.00
## sound storage medium               0.00        0.00              0.00     0.00
##                           carrots mustard packaged fruit/vegetables
## rice                         0.01    0.01                      0.00
## veggies                      0.00    0.00                      0.00
## loaf                         0.00    0.00                      0.00
## coke                         0.00    0.00                      0.00
## yogurt                       0.00    0.00                      0.00
## vegetables                   0.00    0.00                      0.00
## mineral water                0.00    0.00                      0.00
## Plastic bags                 0.00    0.00                      0.00
## tropical fruit               0.00    0.00                      0.00
## marinated meat               0.00    0.00                      0.00
## pies/pasties                 0.00    0.00                      0.00
## newspapers                   0.00    0.00                      0.00
## citrus                       0.00    0.00                      0.00
## whipped/sour cream           0.00    0.00                      0.00
## heinken                      0.00    0.00                      0.00
## green tea                    0.00    0.00                      0.00
## pip fruit                    0.00    0.00                      0.00
## brown bread                  0.00    0.00                      0.00
## fruit/vegetable juice        0.00    0.00                      0.00
## domestic eggs                0.00    0.00                      0.00
## coffee                       0.00    0.00                      0.00
## margarine                    0.00    0.00                      0.00
## beef                         0.00    0.00                      0.00
## curd                         0.00    0.00                      0.00
## butter                       0.00    0.00                      0.00
## marinated meats              0.00    0.00                      0.00
## napkins                      0.00    0.00                      0.00
## halal meat                   0.00    0.00                      0.00
## chocolate                    0.00    0.00                      0.00
## frozen vegetables            0.00    0.00                      0.00
## chicken                      0.00    0.00                      0.00
## white bread                  0.00    0.00                      0.00
## cream cheese                 0.00    0.00                      0.00
## waffles                      0.00    0.00                      0.00
## dessert                      0.00    0.00                      0.00
## salty snack                  0.00    0.00                      0.00
## long life bakery product     0.00    0.00                      0.00
## berries                      0.00    0.00                      0.00
## hamburger meat               0.00    0.00                      0.00
## sugar                        0.00    0.00                      0.00
## hygiene articles             0.00    0.00                      0.00
## UHT-milk                     0.00    0.00                      0.00
## onions                       0.00    0.00                      0.00
## candy                        0.00    0.00                      0.00
## specialty chocolate          0.00    0.00                      0.00
## butter milk                  0.00    0.00                      0.00
## oil                          0.00    0.00                      0.00
## frozen meals                 0.00    0.00                      0.00
## misc. beverages              0.00    0.00                      0.00
## specialty bar                0.00    0.00                      0.00
## ham                          0.00    0.00                      0.00
## beverages                    0.00    0.00                      0.00
## meat                         0.00    0.00                      0.00
## ice cream                    0.00    0.00                      0.00
## sliced cheese                0.00    0.00                      0.00
## hard cheese                  0.00    0.00                      0.00
## noodles                      0.00    0.00                      0.00
## grapes                       0.00    0.00                      0.00
## cat food                     0.00    0.00                      0.00
## chewing gum                  0.00    0.00                      0.00
## soda                         0.00    0.00                      0.00
## detergent                    0.00    0.00                      0.00
## red/blush wine               0.00    0.00                      0.00
## white wine                   0.00    0.00                      0.00
## turkey                       0.00    0.00                      0.00
## dishes                       0.00    0.00                      0.00
## bottled water                0.00    0.00                      0.00
## flour                        0.00    0.00                      0.00
## semi-finished bread          0.00    0.00                      0.00
## baking powder                0.00    0.00                      0.00
## pickled vegetables           0.00    0.00                      0.00
## herbs                        0.00    0.00                      0.00
## tropical herbs               0.00    0.00                      0.00
## soft cheese                  0.00    0.00                      0.00
## tea                          0.00    0.00                      0.00
## processed cheese             0.00    0.00                      0.00
## sausage                      0.00    0.00                      0.00
## pasta                        0.00    0.00                      0.00
## citrus herbs                 0.00    0.00                      0.00
## potted plants                0.00    0.00                      0.00
## canned fish                  0.00    0.00                      0.00
## seasonal products            0.00    0.00                      0.00
## cake bar                     0.00    0.00                      0.00
## carrots                      0.01    0.00                      0.00
## mustard                      0.00    0.01                      0.00
## packaged fruit/vegetables    0.00    0.00                      0.01
## spread cheese                0.00    0.00                      0.00
## frozen dessert               0.00    0.00                      0.00
## frozen fish                  0.00    0.00                      0.00
## cling film/bags              0.00    0.00                      0.00
## salt                         0.00    0.00                      0.00
## liquor                       0.00    0.00                      0.00
## canned vegetables            0.00    0.00                      0.00
## bottled beer                 0.00    0.00                      0.00
## flower (seeds)               0.00    0.00                      0.00
## cooking oil                  0.00    0.00                      0.00
## dish cleaner                 0.00    0.00                      0.00
## condensed milk               0.00    0.00                      0.00
## roll products                0.00    0.00                      0.00
## photo/film                   0.00    0.00                      0.00
## pet care                     0.00    0.00                      0.00
## chocolate marshmallow        0.00    0.00                      0.00
## herbs/vegetable juice        0.00    0.00                      0.00
## whole milk                   0.00    0.00                      0.00
## candles                      0.00    0.00                      0.00
## mayonnaise                   0.00    0.00                      0.00
## Instant food products        0.00    0.00                      0.00
## sweet spreads                0.00    0.00                      0.00
## liquor (appetizer)           0.00    0.00                      0.00
## specialty cheese             0.00    0.00                      0.00
## frozen potato products       0.00    0.00                      0.00
## house keeping products       0.00    0.00                      0.00
## dog food                     0.00    0.00                      0.00
## soy                          0.00    0.00                      0.00
## instant coffee               0.00    0.00                      0.00
## pip herbs                    0.00    0.00                      0.00
## zwieback                     0.00    0.00                      0.00
## finished products            0.00    0.00                      0.00
## popcorn                      0.00    0.00                      0.00
## vinegar                      0.00    0.00                      0.00
## soups                        0.00    0.00                      0.00
## female sanitary products     0.00    0.00                      0.00
## sparkling wine               0.00    0.00                      0.00
## dental care                  0.00    0.00                      0.00
## cereals                      0.00    0.00                      0.00
## kitchen towels               0.00    0.00                      0.00
## curd cheese                  0.00    0.00                      0.00
## other vegetables             0.00    0.00                      0.00
## rolls/buns                   0.00    0.00                      0.00
## softener                     0.00    0.00                      0.00
## cleaner                      0.00    0.00                      0.00
## spices                       0.00    0.00                      0.00
## jam                          0.00    0.00                      0.00
## sauces                       0.00    0.00                      0.00
## rum                          0.00    0.00                      0.00
## liver loaf                   0.00    0.00                      0.00
## male cosmetics               0.00    0.00                      0.00
## meat spreads                 0.00    0.00                      0.00
## packaged herbs/vegetables    0.00    0.00                      0.00
## brandy                       0.00    0.00                      0.00
## ketchup                      0.00    0.00                      0.00
## abrasive cleaner             0.00    0.00                      0.00
## light bulbs                  0.00    0.00                      0.00
## artif. sweetener             0.00    0.00                      0.00
## nuts/prunes                  0.00    0.00                      0.00
## specialty fat                0.00    0.00                      0.00
## skin care                    0.00    0.00                      0.00
## fish                         0.00    0.00                      0.00
## potato products              0.00    0.00                      0.00
## root vegetables              0.00    0.00                      0.00
## snack products               0.00    0.00                      0.00
## nut snack                    0.00    0.00                      0.00
## soap                         0.00    0.00                      0.00
## syrup                        0.00    0.00                      0.00
## bathroom cleaner             0.00    0.00                      0.00
## canned fruit                 0.00    0.00                      0.00
## cookware                     0.00    0.00                      0.00
## cooking chocolate            0.00    0.00                      0.00
## tidbits                      0.00    0.00                      0.00
## cocoa drinks                 0.00    0.00                      0.00
## pudding powder               0.00    0.00                      0.00
## ready soups                  0.00    0.00                      0.00
## organic marinated meat       0.00    0.00                      0.00
## flower soil/fertilizer       0.00    0.00                      0.00
## organic products             0.00    0.00                      0.00
## pot plants                   0.00    0.00                      0.00
## prosecco                     0.00    0.00                      0.00
## frankfurter                  0.00    0.00                      0.00
## decalcifier                  0.00    0.00                      0.00
## honey                        0.00    0.00                      0.00
## specialty vegetables         0.00    0.00                      0.00
## cream                        0.00    0.00                      0.00
## hair spray                   0.00    0.00                      0.00
## frozen fruits                0.00    0.00                      0.00
## rubbing alcohol              0.00    0.00                      0.00
## liqueur                      0.00    0.00                      0.00
## make up remover              0.00    0.00                      0.00
## salad dressing               0.00    0.00                      0.00
## frozen chicken               0.00    0.00                      0.00
## whisky                       0.00    0.00                      0.00
## baby cosmetics               0.00    0.00                      0.00
## toilet cleaner               0.00    0.00                      0.00
## bags                         0.00    0.00                      0.00
## canned herbs                 0.00    0.00                      0.00
## kitchen utensil              0.00    0.00                      0.00
## preservation products        0.00    0.00                      0.00
## baby food                    0.00    0.00                      0.00
## frozen herbss                0.00    0.00                      0.00
## organic sausage              0.00    0.00                      0.00
## sound storage medium         0.00    0.00                      0.00
##                           spread cheese frozen dessert frozen fish
## rice                               0.00           0.00        0.00
## veggies                            0.00           0.00        0.00
## loaf                               0.00           0.00        0.00
## coke                               0.00           0.00        0.00
## yogurt                             0.00           0.00        0.00
## vegetables                         0.00           0.00        0.00
## mineral water                      0.00           0.00        0.00
## Plastic bags                       0.00           0.00        0.00
## tropical fruit                     0.00           0.00        0.00
## marinated meat                     0.00           0.00        0.00
## pies/pasties                       0.00           0.00        0.00
## newspapers                         0.00           0.00        0.00
## citrus                             0.00           0.00        0.00
## whipped/sour cream                 0.00           0.00        0.00
## heinken                            0.00           0.00        0.00
## green tea                          0.00           0.00        0.00
## pip fruit                          0.00           0.00        0.00
## brown bread                        0.00           0.00        0.00
## fruit/vegetable juice              0.00           0.00        0.00
## domestic eggs                      0.00           0.00        0.00
## coffee                             0.00           0.00        0.00
## margarine                          0.00           0.00        0.00
## beef                               0.00           0.00        0.00
## curd                               0.00           0.00        0.00
## butter                             0.00           0.00        0.00
## marinated meats                    0.00           0.00        0.00
## napkins                            0.00           0.00        0.00
## halal meat                         0.00           0.00        0.00
## chocolate                          0.00           0.00        0.00
## frozen vegetables                  0.00           0.00        0.00
## chicken                            0.00           0.00        0.00
## white bread                        0.00           0.00        0.00
## cream cheese                       0.00           0.00        0.00
## waffles                            0.00           0.00        0.00
## dessert                            0.00           0.00        0.00
## salty snack                        0.00           0.00        0.00
## long life bakery product           0.00           0.00        0.00
## berries                            0.00           0.00        0.00
## hamburger meat                     0.00           0.00        0.00
## sugar                              0.00           0.00        0.00
## hygiene articles                   0.00           0.00        0.00
## UHT-milk                           0.00           0.00        0.00
## onions                             0.00           0.00        0.00
## candy                              0.00           0.00        0.00
## specialty chocolate                0.00           0.00        0.00
## butter milk                        0.00           0.00        0.00
## oil                                0.00           0.00        0.00
## frozen meals                       0.00           0.00        0.00
## misc. beverages                    0.00           0.00        0.00
## specialty bar                      0.00           0.00        0.00
## ham                                0.00           0.00        0.00
## beverages                          0.00           0.00        0.00
## meat                               0.00           0.00        0.00
## ice cream                          0.00           0.00        0.00
## sliced cheese                      0.00           0.00        0.00
## hard cheese                        0.00           0.00        0.00
## noodles                            0.00           0.00        0.00
## grapes                             0.00           0.00        0.00
## cat food                           0.00           0.00        0.00
## chewing gum                        0.00           0.00        0.00
## soda                               0.00           0.00        0.00
## detergent                          0.00           0.00        0.00
## red/blush wine                     0.00           0.00        0.00
## white wine                         0.00           0.00        0.00
## turkey                             0.00           0.00        0.00
## dishes                             0.00           0.00        0.00
## bottled water                      0.00           0.00        0.00
## flour                              0.00           0.00        0.00
## semi-finished bread                0.00           0.00        0.00
## baking powder                      0.00           0.00        0.00
## pickled vegetables                 0.00           0.00        0.00
## herbs                              0.00           0.00        0.00
## tropical herbs                     0.00           0.00        0.00
## soft cheese                        0.00           0.00        0.00
## tea                                0.00           0.00        0.00
## processed cheese                   0.00           0.00        0.00
## sausage                            0.00           0.00        0.00
## pasta                              0.00           0.00        0.00
## citrus herbs                       0.00           0.00        0.00
## potted plants                      0.00           0.00        0.00
## canned fish                        0.00           0.00        0.00
## seasonal products                  0.00           0.00        0.00
## cake bar                           0.00           0.00        0.00
## carrots                            0.00           0.00        0.00
## mustard                            0.00           0.00        0.00
## packaged fruit/vegetables          0.00           0.00        0.00
## spread cheese                      0.01           0.00        0.00
## frozen dessert                     0.00           0.01        0.00
## frozen fish                        0.00           0.00        0.01
## cling film/bags                    0.00           0.00        0.00
## salt                               0.00           0.00        0.00
## liquor                             0.00           0.00        0.00
## canned vegetables                  0.00           0.00        0.00
## bottled beer                       0.00           0.00        0.00
## flower (seeds)                     0.00           0.00        0.00
## cooking oil                        0.00           0.00        0.00
## dish cleaner                       0.00           0.00        0.00
## condensed milk                     0.00           0.00        0.00
## roll products                      0.00           0.00        0.00
## photo/film                         0.00           0.00        0.00
## pet care                           0.00           0.00        0.00
## chocolate marshmallow              0.00           0.00        0.00
## herbs/vegetable juice              0.00           0.00        0.00
## whole milk                         0.00           0.00        0.00
## candles                            0.00           0.00        0.00
## mayonnaise                         0.00           0.00        0.00
## Instant food products              0.00           0.00        0.00
## sweet spreads                      0.00           0.00        0.00
## liquor (appetizer)                 0.00           0.00        0.00
## specialty cheese                   0.00           0.00        0.00
## frozen potato products             0.00           0.00        0.00
## house keeping products             0.00           0.00        0.00
## dog food                           0.00           0.00        0.00
## soy                                0.00           0.00        0.00
## instant coffee                     0.00           0.00        0.00
## pip herbs                          0.00           0.00        0.00
## zwieback                           0.00           0.00        0.00
## finished products                  0.00           0.00        0.00
## popcorn                            0.00           0.00        0.00
## vinegar                            0.00           0.00        0.00
## soups                              0.00           0.00        0.00
## female sanitary products           0.00           0.00        0.00
## sparkling wine                     0.00           0.00        0.00
## dental care                        0.00           0.00        0.00
## cereals                            0.00           0.00        0.00
## kitchen towels                     0.00           0.00        0.00
## curd cheese                        0.00           0.00        0.00
## other vegetables                   0.00           0.00        0.00
## rolls/buns                         0.00           0.00        0.00
## softener                           0.00           0.00        0.00
## cleaner                            0.00           0.00        0.00
## spices                             0.00           0.00        0.00
## jam                                0.00           0.00        0.00
## sauces                             0.00           0.00        0.00
## rum                                0.00           0.00        0.00
## liver loaf                         0.00           0.00        0.00
## male cosmetics                     0.00           0.00        0.00
## meat spreads                       0.00           0.00        0.00
## packaged herbs/vegetables          0.00           0.00        0.00
## brandy                             0.00           0.00        0.00
## ketchup                            0.00           0.00        0.00
## abrasive cleaner                   0.00           0.00        0.00
## light bulbs                        0.00           0.00        0.00
## artif. sweetener                   0.00           0.00        0.00
## nuts/prunes                        0.00           0.00        0.00
## specialty fat                      0.00           0.00        0.00
## skin care                          0.00           0.00        0.00
## fish                               0.00           0.00        0.00
## potato products                    0.00           0.00        0.00
## root vegetables                    0.00           0.00        0.00
## snack products                     0.00           0.00        0.00
## nut snack                          0.00           0.00        0.00
## soap                               0.00           0.00        0.00
## syrup                              0.00           0.00        0.00
## bathroom cleaner                   0.00           0.00        0.00
## canned fruit                       0.00           0.00        0.00
## cookware                           0.00           0.00        0.00
## cooking chocolate                  0.00           0.00        0.00
## tidbits                            0.00           0.00        0.00
## cocoa drinks                       0.00           0.00        0.00
## pudding powder                     0.00           0.00        0.00
## ready soups                        0.00           0.00        0.00
## organic marinated meat             0.00           0.00        0.00
## flower soil/fertilizer             0.00           0.00        0.00
## organic products                   0.00           0.00        0.00
## pot plants                         0.00           0.00        0.00
## prosecco                           0.00           0.00        0.00
## frankfurter                        0.00           0.00        0.00
## decalcifier                        0.00           0.00        0.00
## honey                              0.00           0.00        0.00
## specialty vegetables               0.00           0.00        0.00
## cream                              0.00           0.00        0.00
## hair spray                         0.00           0.00        0.00
## frozen fruits                      0.00           0.00        0.00
## rubbing alcohol                    0.00           0.00        0.00
## liqueur                            0.00           0.00        0.00
## make up remover                    0.00           0.00        0.00
## salad dressing                     0.00           0.00        0.00
## frozen chicken                     0.00           0.00        0.00
## whisky                             0.00           0.00        0.00
## baby cosmetics                     0.00           0.00        0.00
## toilet cleaner                     0.00           0.00        0.00
## bags                               0.00           0.00        0.00
## canned herbs                       0.00           0.00        0.00
## kitchen utensil                    0.00           0.00        0.00
## preservation products              0.00           0.00        0.00
## baby food                          0.00           0.00        0.00
## frozen herbss                      0.00           0.00        0.00
## organic sausage                    0.00           0.00        0.00
## sound storage medium               0.00           0.00        0.00
##                           cling film/bags salt liquor canned vegetables
## rice                                 0.00 0.00   0.00              0.00
## veggies                              0.00 0.00   0.00              0.00
## loaf                                 0.00 0.00   0.00              0.00
## coke                                 0.00 0.00   0.00              0.00
## yogurt                               0.00 0.00   0.00              0.00
## vegetables                           0.00 0.00   0.00              0.00
## mineral water                        0.00 0.00   0.00              0.00
## Plastic bags                         0.00 0.00   0.00              0.00
## tropical fruit                       0.00 0.00   0.00              0.00
## marinated meat                       0.00 0.00   0.00              0.00
## pies/pasties                         0.00 0.00   0.00              0.00
## newspapers                           0.00 0.00   0.00              0.00
## citrus                               0.00 0.00   0.00              0.00
## whipped/sour cream                   0.00 0.00   0.00              0.00
## heinken                              0.00 0.00   0.00              0.00
## green tea                            0.00 0.00   0.00              0.00
## pip fruit                            0.00 0.00   0.00              0.00
## brown bread                          0.00 0.00   0.00              0.00
## fruit/vegetable juice                0.00 0.00   0.00              0.00
## domestic eggs                        0.00 0.00   0.00              0.00
## coffee                               0.00 0.00   0.00              0.00
## margarine                            0.00 0.00   0.00              0.00
## beef                                 0.00 0.00   0.00              0.00
## curd                                 0.00 0.00   0.00              0.00
## butter                               0.00 0.00   0.00              0.00
## marinated meats                      0.00 0.00   0.00              0.00
## napkins                              0.00 0.00   0.00              0.00
## halal meat                           0.00 0.00   0.00              0.00
## chocolate                            0.00 0.00   0.00              0.00
## frozen vegetables                    0.00 0.00   0.00              0.00
## chicken                              0.00 0.00   0.00              0.00
## white bread                          0.00 0.00   0.00              0.00
## cream cheese                         0.00 0.00   0.00              0.00
## waffles                              0.00 0.00   0.00              0.00
## dessert                              0.00 0.00   0.00              0.00
## salty snack                          0.00 0.00   0.00              0.00
## long life bakery product             0.00 0.00   0.00              0.00
## berries                              0.00 0.00   0.00              0.00
## hamburger meat                       0.00 0.00   0.00              0.00
## sugar                                0.00 0.00   0.00              0.00
## hygiene articles                     0.00 0.00   0.00              0.00
## UHT-milk                             0.00 0.00   0.00              0.00
## onions                               0.00 0.00   0.00              0.00
## candy                                0.00 0.00   0.00              0.00
## specialty chocolate                  0.00 0.00   0.00              0.00
## butter milk                          0.00 0.00   0.00              0.00
## oil                                  0.00 0.00   0.00              0.00
## frozen meals                         0.00 0.00   0.00              0.00
## misc. beverages                      0.00 0.00   0.00              0.00
## specialty bar                        0.00 0.00   0.00              0.00
## ham                                  0.00 0.00   0.00              0.00
## beverages                            0.00 0.00   0.00              0.00
## meat                                 0.00 0.00   0.00              0.00
## ice cream                            0.00 0.00   0.00              0.00
## sliced cheese                        0.00 0.00   0.00              0.00
## hard cheese                          0.00 0.00   0.00              0.00
## noodles                              0.00 0.00   0.00              0.00
## grapes                               0.00 0.00   0.00              0.00
## cat food                             0.00 0.00   0.00              0.00
## chewing gum                          0.00 0.00   0.00              0.00
## soda                                 0.00 0.00   0.00              0.00
## detergent                            0.00 0.00   0.00              0.00
## red/blush wine                       0.00 0.00   0.00              0.00
## white wine                           0.00 0.00   0.00              0.00
## turkey                               0.00 0.00   0.00              0.00
## dishes                               0.00 0.00   0.00              0.00
## bottled water                        0.00 0.00   0.00              0.00
## flour                                0.00 0.00   0.00              0.00
## semi-finished bread                  0.00 0.00   0.00              0.00
## baking powder                        0.00 0.00   0.00              0.00
## pickled vegetables                   0.00 0.00   0.00              0.00
## herbs                                0.00 0.00   0.00              0.00
## tropical herbs                       0.00 0.00   0.00              0.00
## soft cheese                          0.00 0.00   0.00              0.00
## tea                                  0.00 0.00   0.00              0.00
## processed cheese                     0.00 0.00   0.00              0.00
## sausage                              0.00 0.00   0.00              0.00
## pasta                                0.00 0.00   0.00              0.00
## citrus herbs                         0.00 0.00   0.00              0.00
## potted plants                        0.00 0.00   0.00              0.00
## canned fish                          0.00 0.00   0.00              0.00
## seasonal products                    0.00 0.00   0.00              0.00
## cake bar                             0.00 0.00   0.00              0.00
## carrots                              0.00 0.00   0.00              0.00
## mustard                              0.00 0.00   0.00              0.00
## packaged fruit/vegetables            0.00 0.00   0.00              0.00
## spread cheese                        0.00 0.00   0.00              0.00
## frozen dessert                       0.00 0.00   0.00              0.00
## frozen fish                          0.00 0.00   0.00              0.00
## cling film/bags                      0.01 0.00   0.00              0.00
## salt                                 0.00 0.01   0.00              0.00
## liquor                               0.00 0.00   0.01              0.00
## canned vegetables                    0.00 0.00   0.00              0.01
## bottled beer                         0.00 0.00   0.00              0.00
## flower (seeds)                       0.00 0.00   0.00              0.00
## cooking oil                          0.00 0.00   0.00              0.00
## dish cleaner                         0.00 0.00   0.00              0.00
## condensed milk                       0.00 0.00   0.00              0.00
## roll products                        0.00 0.00   0.00              0.00
## photo/film                           0.00 0.00   0.00              0.00
## pet care                             0.00 0.00   0.00              0.00
## chocolate marshmallow                0.00 0.00   0.00              0.00
## herbs/vegetable juice                0.00 0.00   0.00              0.00
## whole milk                           0.00 0.00   0.00              0.00
## candles                              0.00 0.00   0.00              0.00
## mayonnaise                           0.00 0.00   0.00              0.00
## Instant food products                0.00 0.00   0.00              0.00
## sweet spreads                        0.00 0.00   0.00              0.00
## liquor (appetizer)                   0.00 0.00   0.00              0.00
## specialty cheese                     0.00 0.00   0.00              0.00
## frozen potato products               0.00 0.00   0.00              0.00
## house keeping products               0.00 0.00   0.00              0.00
## dog food                             0.00 0.00   0.00              0.00
## soy                                  0.00 0.00   0.00              0.00
## instant coffee                       0.00 0.00   0.00              0.00
## pip herbs                            0.00 0.00   0.00              0.00
## zwieback                             0.00 0.00   0.00              0.00
## finished products                    0.00 0.00   0.00              0.00
## popcorn                              0.00 0.00   0.00              0.00
## vinegar                              0.00 0.00   0.00              0.00
## soups                                0.00 0.00   0.00              0.00
## female sanitary products             0.00 0.00   0.00              0.00
## sparkling wine                       0.00 0.00   0.00              0.00
## dental care                          0.00 0.00   0.00              0.00
## cereals                              0.00 0.00   0.00              0.00
## kitchen towels                       0.00 0.00   0.00              0.00
## curd cheese                          0.00 0.00   0.00              0.00
## other vegetables                     0.00 0.00   0.00              0.00
## rolls/buns                           0.00 0.00   0.00              0.00
## softener                             0.00 0.00   0.00              0.00
## cleaner                              0.00 0.00   0.00              0.00
## spices                               0.00 0.00   0.00              0.00
## jam                                  0.00 0.00   0.00              0.00
## sauces                               0.00 0.00   0.00              0.00
## rum                                  0.00 0.00   0.00              0.00
## liver loaf                           0.00 0.00   0.00              0.00
## male cosmetics                       0.00 0.00   0.00              0.00
## meat spreads                         0.00 0.00   0.00              0.00
## packaged herbs/vegetables            0.00 0.00   0.00              0.00
## brandy                               0.00 0.00   0.00              0.00
## ketchup                              0.00 0.00   0.00              0.00
## abrasive cleaner                     0.00 0.00   0.00              0.00
## light bulbs                          0.00 0.00   0.00              0.00
## artif. sweetener                     0.00 0.00   0.00              0.00
## nuts/prunes                          0.00 0.00   0.00              0.00
## specialty fat                        0.00 0.00   0.00              0.00
## skin care                            0.00 0.00   0.00              0.00
## fish                                 0.00 0.00   0.00              0.00
## potato products                      0.00 0.00   0.00              0.00
## root vegetables                      0.00 0.00   0.00              0.00
## snack products                       0.00 0.00   0.00              0.00
## nut snack                            0.00 0.00   0.00              0.00
## soap                                 0.00 0.00   0.00              0.00
## syrup                                0.00 0.00   0.00              0.00
## bathroom cleaner                     0.00 0.00   0.00              0.00
## canned fruit                         0.00 0.00   0.00              0.00
## cookware                             0.00 0.00   0.00              0.00
## cooking chocolate                    0.00 0.00   0.00              0.00
## tidbits                              0.00 0.00   0.00              0.00
## cocoa drinks                         0.00 0.00   0.00              0.00
## pudding powder                       0.00 0.00   0.00              0.00
## ready soups                          0.00 0.00   0.00              0.00
## organic marinated meat               0.00 0.00   0.00              0.00
## flower soil/fertilizer               0.00 0.00   0.00              0.00
## organic products                     0.00 0.00   0.00              0.00
## pot plants                           0.00 0.00   0.00              0.00
## prosecco                             0.00 0.00   0.00              0.00
## frankfurter                          0.00 0.00   0.00              0.00
## decalcifier                          0.00 0.00   0.00              0.00
## honey                                0.00 0.00   0.00              0.00
## specialty vegetables                 0.00 0.00   0.00              0.00
## cream                                0.00 0.00   0.00              0.00
## hair spray                           0.00 0.00   0.00              0.00
## frozen fruits                        0.00 0.00   0.00              0.00
## rubbing alcohol                      0.00 0.00   0.00              0.00
## liqueur                              0.00 0.00   0.00              0.00
## make up remover                      0.00 0.00   0.00              0.00
## salad dressing                       0.00 0.00   0.00              0.00
## frozen chicken                       0.00 0.00   0.00              0.00
## whisky                               0.00 0.00   0.00              0.00
## baby cosmetics                       0.00 0.00   0.00              0.00
## toilet cleaner                       0.00 0.00   0.00              0.00
## bags                                 0.00 0.00   0.00              0.00
## canned herbs                         0.00 0.00   0.00              0.00
## kitchen utensil                      0.00 0.00   0.00              0.00
## preservation products                0.00 0.00   0.00              0.00
## baby food                            0.00 0.00   0.00              0.00
## frozen herbss                        0.00 0.00   0.00              0.00
## organic sausage                      0.00 0.00   0.00              0.00
## sound storage medium                 0.00 0.00   0.00              0.00
##                           bottled beer flower (seeds) cooking oil dish cleaner
## rice                              0.00           0.00        0.00         0.00
## veggies                           0.00           0.00        0.00         0.00
## loaf                              0.00           0.00        0.00         0.00
## coke                              0.00           0.00        0.00         0.00
## yogurt                            0.00           0.00        0.00         0.00
## vegetables                        0.00           0.00        0.00         0.00
## mineral water                     0.00           0.00        0.00         0.00
## Plastic bags                      0.00           0.00        0.00         0.00
## tropical fruit                    0.00           0.00        0.00         0.00
## marinated meat                    0.00           0.00        0.00         0.00
## pies/pasties                      0.00           0.00        0.00         0.00
## newspapers                        0.00           0.00        0.00         0.00
## citrus                            0.00           0.00        0.00         0.00
## whipped/sour cream                0.00           0.00        0.00         0.00
## heinken                           0.00           0.00        0.00         0.00
## green tea                         0.00           0.00        0.00         0.00
## pip fruit                         0.00           0.00        0.00         0.00
## brown bread                       0.00           0.00        0.00         0.00
## fruit/vegetable juice             0.00           0.00        0.00         0.00
## domestic eggs                     0.00           0.00        0.00         0.00
## coffee                            0.00           0.00        0.00         0.00
## margarine                         0.00           0.00        0.00         0.00
## beef                              0.00           0.00        0.00         0.00
## curd                              0.00           0.00        0.00         0.00
## butter                            0.00           0.00        0.00         0.00
## marinated meats                   0.00           0.00        0.00         0.00
## napkins                           0.00           0.00        0.00         0.00
## halal meat                        0.00           0.00        0.00         0.00
## chocolate                         0.00           0.00        0.00         0.00
## frozen vegetables                 0.00           0.00        0.00         0.00
## chicken                           0.00           0.00        0.00         0.00
## white bread                       0.00           0.00        0.00         0.00
## cream cheese                      0.00           0.00        0.00         0.00
## waffles                           0.00           0.00        0.00         0.00
## dessert                           0.00           0.00        0.00         0.00
## salty snack                       0.00           0.00        0.00         0.00
## long life bakery product          0.00           0.00        0.00         0.00
## berries                           0.00           0.00        0.00         0.00
## hamburger meat                    0.00           0.00        0.00         0.00
## sugar                             0.00           0.00        0.00         0.00
## hygiene articles                  0.00           0.00        0.00         0.00
## UHT-milk                          0.00           0.00        0.00         0.00
## onions                            0.00           0.00        0.00         0.00
## candy                             0.00           0.00        0.00         0.00
## specialty chocolate               0.00           0.00        0.00         0.00
## butter milk                       0.00           0.00        0.00         0.00
## oil                               0.00           0.00        0.00         0.00
## frozen meals                      0.00           0.00        0.00         0.00
## misc. beverages                   0.00           0.00        0.00         0.00
## specialty bar                     0.00           0.00        0.00         0.00
## ham                               0.00           0.00        0.00         0.00
## beverages                         0.00           0.00        0.00         0.00
## meat                              0.00           0.00        0.00         0.00
## ice cream                         0.00           0.00        0.00         0.00
## sliced cheese                     0.00           0.00        0.00         0.00
## hard cheese                       0.00           0.00        0.00         0.00
## noodles                           0.00           0.00        0.00         0.00
## grapes                            0.00           0.00        0.00         0.00
## cat food                          0.00           0.00        0.00         0.00
## chewing gum                       0.00           0.00        0.00         0.00
## soda                              0.00           0.00        0.00         0.00
## detergent                         0.00           0.00        0.00         0.00
## red/blush wine                    0.00           0.00        0.00         0.00
## white wine                        0.00           0.00        0.00         0.00
## turkey                            0.00           0.00        0.00         0.00
## dishes                            0.00           0.00        0.00         0.00
## bottled water                     0.00           0.00        0.00         0.00
## flour                             0.00           0.00        0.00         0.00
## semi-finished bread               0.00           0.00        0.00         0.00
## baking powder                     0.00           0.00        0.00         0.00
## pickled vegetables                0.00           0.00        0.00         0.00
## herbs                             0.00           0.00        0.00         0.00
## tropical herbs                    0.00           0.00        0.00         0.00
## soft cheese                       0.00           0.00        0.00         0.00
## tea                               0.00           0.00        0.00         0.00
## processed cheese                  0.00           0.00        0.00         0.00
## sausage                           0.00           0.00        0.00         0.00
## pasta                             0.00           0.00        0.00         0.00
## citrus herbs                      0.00           0.00        0.00         0.00
## potted plants                     0.00           0.00        0.00         0.00
## canned fish                       0.00           0.00        0.00         0.00
## seasonal products                 0.00           0.00        0.00         0.00
## cake bar                          0.00           0.00        0.00         0.00
## carrots                           0.00           0.00        0.00         0.00
## mustard                           0.00           0.00        0.00         0.00
## packaged fruit/vegetables         0.00           0.00        0.00         0.00
## spread cheese                     0.00           0.00        0.00         0.00
## frozen dessert                    0.00           0.00        0.00         0.00
## frozen fish                       0.00           0.00        0.00         0.00
## cling film/bags                   0.00           0.00        0.00         0.00
## salt                              0.00           0.00        0.00         0.00
## liquor                            0.00           0.00        0.00         0.00
## canned vegetables                 0.00           0.00        0.00         0.00
## bottled beer                      0.01           0.00        0.00         0.00
## flower (seeds)                    0.00           0.01        0.00         0.00
## cooking oil                       0.00           0.00        0.01         0.00
## dish cleaner                      0.00           0.00        0.00         0.01
## condensed milk                    0.00           0.00        0.00         0.00
## roll products                     0.00           0.00        0.00         0.00
## photo/film                        0.00           0.00        0.00         0.00
## pet care                          0.00           0.00        0.00         0.00
## chocolate marshmallow             0.00           0.00        0.00         0.00
## herbs/vegetable juice             0.00           0.00        0.00         0.00
## whole milk                        0.00           0.00        0.00         0.00
## candles                           0.00           0.00        0.00         0.00
## mayonnaise                        0.00           0.00        0.00         0.00
## Instant food products             0.00           0.00        0.00         0.00
## sweet spreads                     0.00           0.00        0.00         0.00
## liquor (appetizer)                0.00           0.00        0.00         0.00
## specialty cheese                  0.00           0.00        0.00         0.00
## frozen potato products            0.00           0.00        0.00         0.00
## house keeping products            0.00           0.00        0.00         0.00
## dog food                          0.00           0.00        0.00         0.00
## soy                               0.00           0.00        0.00         0.00
## instant coffee                    0.00           0.00        0.00         0.00
## pip herbs                         0.00           0.00        0.00         0.00
## zwieback                          0.00           0.00        0.00         0.00
## finished products                 0.00           0.00        0.00         0.00
## popcorn                           0.00           0.00        0.00         0.00
## vinegar                           0.00           0.00        0.00         0.00
## soups                             0.00           0.00        0.00         0.00
## female sanitary products          0.00           0.00        0.00         0.00
## sparkling wine                    0.00           0.00        0.00         0.00
## dental care                       0.00           0.00        0.00         0.00
## cereals                           0.00           0.00        0.00         0.00
## kitchen towels                    0.00           0.00        0.00         0.00
## curd cheese                       0.00           0.00        0.00         0.00
## other vegetables                  0.00           0.00        0.00         0.00
## rolls/buns                        0.00           0.00        0.00         0.00
## softener                          0.00           0.00        0.00         0.00
## cleaner                           0.00           0.00        0.00         0.00
## spices                            0.00           0.00        0.00         0.00
## jam                               0.00           0.00        0.00         0.00
## sauces                            0.00           0.00        0.00         0.00
## rum                               0.00           0.00        0.00         0.00
## liver loaf                        0.00           0.00        0.00         0.00
## male cosmetics                    0.00           0.00        0.00         0.00
## meat spreads                      0.00           0.00        0.00         0.00
## packaged herbs/vegetables         0.00           0.00        0.00         0.00
## brandy                            0.00           0.00        0.00         0.00
## ketchup                           0.00           0.00        0.00         0.00
## abrasive cleaner                  0.00           0.00        0.00         0.00
## light bulbs                       0.00           0.00        0.00         0.00
## artif. sweetener                  0.00           0.00        0.00         0.00
## nuts/prunes                       0.00           0.00        0.00         0.00
## specialty fat                     0.00           0.00        0.00         0.00
## skin care                         0.00           0.00        0.00         0.00
## fish                              0.00           0.00        0.00         0.00
## potato products                   0.00           0.00        0.00         0.00
## root vegetables                   0.00           0.00        0.00         0.00
## snack products                    0.00           0.00        0.00         0.00
## nut snack                         0.00           0.00        0.00         0.00
## soap                              0.00           0.00        0.00         0.00
## syrup                             0.00           0.00        0.00         0.00
## bathroom cleaner                  0.00           0.00        0.00         0.00
## canned fruit                      0.00           0.00        0.00         0.00
## cookware                          0.00           0.00        0.00         0.00
## cooking chocolate                 0.00           0.00        0.00         0.00
## tidbits                           0.00           0.00        0.00         0.00
## cocoa drinks                      0.00           0.00        0.00         0.00
## pudding powder                    0.00           0.00        0.00         0.00
## ready soups                       0.00           0.00        0.00         0.00
## organic marinated meat            0.00           0.00        0.00         0.00
## flower soil/fertilizer            0.00           0.00        0.00         0.00
## organic products                  0.00           0.00        0.00         0.00
## pot plants                        0.00           0.00        0.00         0.00
## prosecco                          0.00           0.00        0.00         0.00
## frankfurter                       0.00           0.00        0.00         0.00
## decalcifier                       0.00           0.00        0.00         0.00
## honey                             0.00           0.00        0.00         0.00
## specialty vegetables              0.00           0.00        0.00         0.00
## cream                             0.00           0.00        0.00         0.00
## hair spray                        0.00           0.00        0.00         0.00
## frozen fruits                     0.00           0.00        0.00         0.00
## rubbing alcohol                   0.00           0.00        0.00         0.00
## liqueur                           0.00           0.00        0.00         0.00
## make up remover                   0.00           0.00        0.00         0.00
## salad dressing                    0.00           0.00        0.00         0.00
## frozen chicken                    0.00           0.00        0.00         0.00
## whisky                            0.00           0.00        0.00         0.00
## baby cosmetics                    0.00           0.00        0.00         0.00
## toilet cleaner                    0.00           0.00        0.00         0.00
## bags                              0.00           0.00        0.00         0.00
## canned herbs                      0.00           0.00        0.00         0.00
## kitchen utensil                   0.00           0.00        0.00         0.00
## preservation products             0.00           0.00        0.00         0.00
## baby food                         0.00           0.00        0.00         0.00
## frozen herbss                     0.00           0.00        0.00         0.00
## organic sausage                   0.00           0.00        0.00         0.00
## sound storage medium              0.00           0.00        0.00         0.00
##                           condensed milk roll products photo/film pet care
## rice                                0.00          0.00       0.00     0.00
## veggies                             0.00          0.00       0.00     0.00
## loaf                                0.00          0.00       0.00     0.00
## coke                                0.00          0.00       0.00     0.00
## yogurt                              0.00          0.00       0.00     0.00
## vegetables                          0.00          0.00       0.00     0.00
## mineral water                       0.00          0.00       0.00     0.00
## Plastic bags                        0.00          0.00       0.00     0.00
## tropical fruit                      0.00          0.00       0.00     0.00
## marinated meat                      0.00          0.00       0.00     0.00
## pies/pasties                        0.00          0.00       0.00     0.00
## newspapers                          0.00          0.00       0.00     0.00
## citrus                              0.00          0.00       0.00     0.00
## whipped/sour cream                  0.00          0.00       0.00     0.00
## heinken                             0.00          0.00       0.00     0.00
## green tea                           0.00          0.00       0.00     0.00
## pip fruit                           0.00          0.00       0.00     0.00
## brown bread                         0.00          0.00       0.00     0.00
## fruit/vegetable juice               0.00          0.00       0.00     0.00
## domestic eggs                       0.00          0.00       0.00     0.00
## coffee                              0.00          0.00       0.00     0.00
## margarine                           0.00          0.00       0.00     0.00
## beef                                0.00          0.00       0.00     0.00
## curd                                0.00          0.00       0.00     0.00
## butter                              0.00          0.00       0.00     0.00
## marinated meats                     0.00          0.00       0.00     0.00
## napkins                             0.00          0.00       0.00     0.00
## halal meat                          0.00          0.00       0.00     0.00
## chocolate                           0.00          0.00       0.00     0.00
## frozen vegetables                   0.00          0.00       0.00     0.00
## chicken                             0.00          0.00       0.00     0.00
## white bread                         0.00          0.00       0.00     0.00
## cream cheese                        0.00          0.00       0.00     0.00
## waffles                             0.00          0.00       0.00     0.00
## dessert                             0.00          0.00       0.00     0.00
## salty snack                         0.00          0.00       0.00     0.00
## long life bakery product            0.00          0.00       0.00     0.00
## berries                             0.00          0.00       0.00     0.00
## hamburger meat                      0.00          0.00       0.00     0.00
## sugar                               0.00          0.00       0.00     0.00
## hygiene articles                    0.00          0.00       0.00     0.00
## UHT-milk                            0.00          0.00       0.00     0.00
## onions                              0.00          0.00       0.00     0.00
## candy                               0.00          0.00       0.00     0.00
## specialty chocolate                 0.00          0.00       0.00     0.00
## butter milk                         0.00          0.00       0.00     0.00
## oil                                 0.00          0.00       0.00     0.00
## frozen meals                        0.00          0.00       0.00     0.00
## misc. beverages                     0.00          0.00       0.00     0.00
## specialty bar                       0.00          0.00       0.00     0.00
## ham                                 0.00          0.00       0.00     0.00
## beverages                           0.00          0.00       0.00     0.00
## meat                                0.00          0.00       0.00     0.00
## ice cream                           0.00          0.00       0.00     0.00
## sliced cheese                       0.00          0.00       0.00     0.00
## hard cheese                         0.00          0.00       0.00     0.00
## noodles                             0.00          0.00       0.00     0.00
## grapes                              0.00          0.00       0.00     0.00
## cat food                            0.00          0.00       0.00     0.00
## chewing gum                         0.00          0.00       0.00     0.00
## soda                                0.00          0.00       0.00     0.00
## detergent                           0.00          0.00       0.00     0.00
## red/blush wine                      0.00          0.00       0.00     0.00
## white wine                          0.00          0.00       0.00     0.00
## turkey                              0.00          0.00       0.00     0.00
## dishes                              0.00          0.00       0.00     0.00
## bottled water                       0.00          0.00       0.00     0.00
## flour                               0.00          0.00       0.00     0.00
## semi-finished bread                 0.00          0.00       0.00     0.00
## baking powder                       0.00          0.00       0.00     0.00
## pickled vegetables                  0.00          0.00       0.00     0.00
## herbs                               0.00          0.00       0.00     0.00
## tropical herbs                      0.00          0.00       0.00     0.00
## soft cheese                         0.00          0.00       0.00     0.00
## tea                                 0.00          0.00       0.00     0.00
## processed cheese                    0.00          0.00       0.00     0.00
## sausage                             0.00          0.00       0.00     0.00
## pasta                               0.00          0.00       0.00     0.00
## citrus herbs                        0.00          0.00       0.00     0.00
## potted plants                       0.00          0.00       0.00     0.00
## canned fish                         0.00          0.00       0.00     0.00
## seasonal products                   0.00          0.00       0.00     0.00
## cake bar                            0.00          0.00       0.00     0.00
## carrots                             0.00          0.00       0.00     0.00
## mustard                             0.00          0.00       0.00     0.00
## packaged fruit/vegetables           0.00          0.00       0.00     0.00
## spread cheese                       0.00          0.00       0.00     0.00
## frozen dessert                      0.00          0.00       0.00     0.00
## frozen fish                         0.00          0.00       0.00     0.00
## cling film/bags                     0.00          0.00       0.00     0.00
## salt                                0.00          0.00       0.00     0.00
## liquor                              0.00          0.00       0.00     0.00
## canned vegetables                   0.00          0.00       0.00     0.00
## bottled beer                        0.00          0.00       0.00     0.00
## flower (seeds)                      0.00          0.00       0.00     0.00
## cooking oil                         0.00          0.00       0.00     0.00
## dish cleaner                        0.00          0.00       0.00     0.00
## condensed milk                      0.01          0.00       0.00     0.00
## roll products                       0.00          0.01       0.00     0.00
## photo/film                          0.00          0.00       0.01     0.00
## pet care                            0.00          0.00       0.00     0.01
## chocolate marshmallow               0.00          0.00       0.00     0.00
## herbs/vegetable juice               0.00          0.00       0.00     0.00
## whole milk                          0.00          0.00       0.00     0.00
## candles                             0.00          0.00       0.00     0.00
## mayonnaise                          0.00          0.00       0.00     0.00
## Instant food products               0.00          0.00       0.00     0.00
## sweet spreads                       0.00          0.00       0.00     0.00
## liquor (appetizer)                  0.00          0.00       0.00     0.00
## specialty cheese                    0.00          0.00       0.00     0.00
## frozen potato products              0.00          0.00       0.00     0.00
## house keeping products              0.00          0.00       0.00     0.00
## dog food                            0.00          0.00       0.00     0.00
## soy                                 0.00          0.00       0.00     0.00
## instant coffee                      0.00          0.00       0.00     0.00
## pip herbs                           0.00          0.00       0.00     0.00
## zwieback                            0.00          0.00       0.00     0.00
## finished products                   0.00          0.00       0.00     0.00
## popcorn                             0.00          0.00       0.00     0.00
## vinegar                             0.00          0.00       0.00     0.00
## soups                               0.00          0.00       0.00     0.00
## female sanitary products            0.00          0.00       0.00     0.00
## sparkling wine                      0.00          0.00       0.00     0.00
## dental care                         0.00          0.00       0.00     0.00
## cereals                             0.00          0.00       0.00     0.00
## kitchen towels                      0.00          0.00       0.00     0.00
## curd cheese                         0.00          0.00       0.00     0.00
## other vegetables                    0.00          0.00       0.00     0.00
## rolls/buns                          0.00          0.00       0.00     0.00
## softener                            0.00          0.00       0.00     0.00
## cleaner                             0.00          0.00       0.00     0.00
## spices                              0.00          0.00       0.00     0.00
## jam                                 0.00          0.00       0.00     0.00
## sauces                              0.00          0.00       0.00     0.00
## rum                                 0.00          0.00       0.00     0.00
## liver loaf                          0.00          0.00       0.00     0.00
## male cosmetics                      0.00          0.00       0.00     0.00
## meat spreads                        0.00          0.00       0.00     0.00
## packaged herbs/vegetables           0.00          0.00       0.00     0.00
## brandy                              0.00          0.00       0.00     0.00
## ketchup                             0.00          0.00       0.00     0.00
## abrasive cleaner                    0.00          0.00       0.00     0.00
## light bulbs                         0.00          0.00       0.00     0.00
## artif. sweetener                    0.00          0.00       0.00     0.00
## nuts/prunes                         0.00          0.00       0.00     0.00
## specialty fat                       0.00          0.00       0.00     0.00
## skin care                           0.00          0.00       0.00     0.00
## fish                                0.00          0.00       0.00     0.00
## potato products                     0.00          0.00       0.00     0.00
## root vegetables                     0.00          0.00       0.00     0.00
## snack products                      0.00          0.00       0.00     0.00
## nut snack                           0.00          0.00       0.00     0.00
## soap                                0.00          0.00       0.00     0.00
## syrup                               0.00          0.00       0.00     0.00
## bathroom cleaner                    0.00          0.00       0.00     0.00
## canned fruit                        0.00          0.00       0.00     0.00
## cookware                            0.00          0.00       0.00     0.00
## cooking chocolate                   0.00          0.00       0.00     0.00
## tidbits                             0.00          0.00       0.00     0.00
## cocoa drinks                        0.00          0.00       0.00     0.00
## pudding powder                      0.00          0.00       0.00     0.00
## ready soups                         0.00          0.00       0.00     0.00
## organic marinated meat              0.00          0.00       0.00     0.00
## flower soil/fertilizer              0.00          0.00       0.00     0.00
## organic products                    0.00          0.00       0.00     0.00
## pot plants                          0.00          0.00       0.00     0.00
## prosecco                            0.00          0.00       0.00     0.00
## frankfurter                         0.00          0.00       0.00     0.00
## decalcifier                         0.00          0.00       0.00     0.00
## honey                               0.00          0.00       0.00     0.00
## specialty vegetables                0.00          0.00       0.00     0.00
## cream                               0.00          0.00       0.00     0.00
## hair spray                          0.00          0.00       0.00     0.00
## frozen fruits                       0.00          0.00       0.00     0.00
## rubbing alcohol                     0.00          0.00       0.00     0.00
## liqueur                             0.00          0.00       0.00     0.00
## make up remover                     0.00          0.00       0.00     0.00
## salad dressing                      0.00          0.00       0.00     0.00
## frozen chicken                      0.00          0.00       0.00     0.00
## whisky                              0.00          0.00       0.00     0.00
## baby cosmetics                      0.00          0.00       0.00     0.00
## toilet cleaner                      0.00          0.00       0.00     0.00
## bags                                0.00          0.00       0.00     0.00
## canned herbs                        0.00          0.00       0.00     0.00
## kitchen utensil                     0.00          0.00       0.00     0.00
## preservation products               0.00          0.00       0.00     0.00
## baby food                           0.00          0.00       0.00     0.00
## frozen herbss                       0.00          0.00       0.00     0.00
## organic sausage                     0.00          0.00       0.00     0.00
## sound storage medium                0.00          0.00       0.00     0.00
##                           chocolate marshmallow herbs/vegetable juice
## rice                                       0.00                  0.00
## veggies                                    0.00                  0.00
## loaf                                       0.00                  0.00
## coke                                       0.00                  0.00
## yogurt                                     0.00                  0.00
## vegetables                                 0.00                  0.00
## mineral water                              0.00                  0.00
## Plastic bags                               0.00                  0.00
## tropical fruit                             0.00                  0.00
## marinated meat                             0.00                  0.00
## pies/pasties                               0.00                  0.00
## newspapers                                 0.00                  0.00
## citrus                                     0.00                  0.00
## whipped/sour cream                         0.00                  0.00
## heinken                                    0.00                  0.00
## green tea                                  0.00                  0.00
## pip fruit                                  0.00                  0.00
## brown bread                                0.00                  0.00
## fruit/vegetable juice                      0.00                  0.00
## domestic eggs                              0.00                  0.00
## coffee                                     0.00                  0.00
## margarine                                  0.00                  0.00
## beef                                       0.00                  0.00
## curd                                       0.00                  0.00
## butter                                     0.00                  0.00
## marinated meats                            0.00                  0.00
## napkins                                    0.00                  0.00
## halal meat                                 0.00                  0.00
## chocolate                                  0.00                  0.00
## frozen vegetables                          0.00                  0.00
## chicken                                    0.00                  0.00
## white bread                                0.00                  0.00
## cream cheese                               0.00                  0.00
## waffles                                    0.00                  0.00
## dessert                                    0.00                  0.00
## salty snack                                0.00                  0.00
## long life bakery product                   0.00                  0.00
## berries                                    0.00                  0.00
## hamburger meat                             0.00                  0.00
## sugar                                      0.00                  0.00
## hygiene articles                           0.00                  0.00
## UHT-milk                                   0.00                  0.00
## onions                                     0.00                  0.00
## candy                                      0.00                  0.00
## specialty chocolate                        0.00                  0.00
## butter milk                                0.00                  0.00
## oil                                        0.00                  0.00
## frozen meals                               0.00                  0.00
## misc. beverages                            0.00                  0.00
## specialty bar                              0.00                  0.00
## ham                                        0.00                  0.00
## beverages                                  0.00                  0.00
## meat                                       0.00                  0.00
## ice cream                                  0.00                  0.00
## sliced cheese                              0.00                  0.00
## hard cheese                                0.00                  0.00
## noodles                                    0.00                  0.00
## grapes                                     0.00                  0.00
## cat food                                   0.00                  0.00
## chewing gum                                0.00                  0.00
## soda                                       0.00                  0.00
## detergent                                  0.00                  0.00
## red/blush wine                             0.00                  0.00
## white wine                                 0.00                  0.00
## turkey                                     0.00                  0.00
## dishes                                     0.00                  0.00
## bottled water                              0.00                  0.00
## flour                                      0.00                  0.00
## semi-finished bread                        0.00                  0.00
## baking powder                              0.00                  0.00
## pickled vegetables                         0.00                  0.00
## herbs                                      0.00                  0.00
## tropical herbs                             0.00                  0.00
## soft cheese                                0.00                  0.00
## tea                                        0.00                  0.00
## processed cheese                           0.00                  0.00
## sausage                                    0.00                  0.00
## pasta                                      0.00                  0.00
## citrus herbs                               0.00                  0.00
## potted plants                              0.00                  0.00
## canned fish                                0.00                  0.00
## seasonal products                          0.00                  0.00
## cake bar                                   0.00                  0.00
## carrots                                    0.00                  0.00
## mustard                                    0.00                  0.00
## packaged fruit/vegetables                  0.00                  0.00
## spread cheese                              0.00                  0.00
## frozen dessert                             0.00                  0.00
## frozen fish                                0.00                  0.00
## cling film/bags                            0.00                  0.00
## salt                                       0.00                  0.00
## liquor                                     0.00                  0.00
## canned vegetables                          0.00                  0.00
## bottled beer                               0.00                  0.00
## flower (seeds)                             0.00                  0.00
## cooking oil                                0.00                  0.00
## dish cleaner                               0.00                  0.00
## condensed milk                             0.00                  0.00
## roll products                              0.00                  0.00
## photo/film                                 0.00                  0.00
## pet care                                   0.00                  0.00
## chocolate marshmallow                      0.01                  0.00
## herbs/vegetable juice                      0.00                  0.01
## whole milk                                 0.00                  0.00
## candles                                    0.00                  0.00
## mayonnaise                                 0.00                  0.00
## Instant food products                      0.00                  0.00
## sweet spreads                              0.00                  0.00
## liquor (appetizer)                         0.00                  0.00
## specialty cheese                           0.00                  0.00
## frozen potato products                     0.00                  0.00
## house keeping products                     0.00                  0.00
## dog food                                   0.00                  0.00
## soy                                        0.00                  0.00
## instant coffee                             0.00                  0.00
## pip herbs                                  0.00                  0.00
## zwieback                                   0.00                  0.00
## finished products                          0.00                  0.00
## popcorn                                    0.00                  0.00
## vinegar                                    0.00                  0.00
## soups                                      0.00                  0.00
## female sanitary products                   0.00                  0.00
## sparkling wine                             0.00                  0.00
## dental care                                0.00                  0.00
## cereals                                    0.00                  0.00
## kitchen towels                             0.00                  0.00
## curd cheese                                0.00                  0.00
## other vegetables                           0.00                  0.00
## rolls/buns                                 0.00                  0.00
## softener                                   0.00                  0.00
## cleaner                                    0.00                  0.00
## spices                                     0.00                  0.00
## jam                                        0.00                  0.00
## sauces                                     0.00                  0.00
## rum                                        0.00                  0.00
## liver loaf                                 0.00                  0.00
## male cosmetics                             0.00                  0.00
## meat spreads                               0.00                  0.00
## packaged herbs/vegetables                  0.00                  0.00
## brandy                                     0.00                  0.00
## ketchup                                    0.00                  0.00
## abrasive cleaner                           0.00                  0.00
## light bulbs                                0.00                  0.00
## artif. sweetener                           0.00                  0.00
## nuts/prunes                                0.00                  0.00
## specialty fat                              0.00                  0.00
## skin care                                  0.00                  0.00
## fish                                       0.00                  0.00
## potato products                            0.00                  0.00
## root vegetables                            0.00                  0.00
## snack products                             0.00                  0.00
## nut snack                                  0.00                  0.00
## soap                                       0.00                  0.00
## syrup                                      0.00                  0.00
## bathroom cleaner                           0.00                  0.00
## canned fruit                               0.00                  0.00
## cookware                                   0.00                  0.00
## cooking chocolate                          0.00                  0.00
## tidbits                                    0.00                  0.00
## cocoa drinks                               0.00                  0.00
## pudding powder                             0.00                  0.00
## ready soups                                0.00                  0.00
## organic marinated meat                     0.00                  0.00
## flower soil/fertilizer                     0.00                  0.00
## organic products                           0.00                  0.00
## pot plants                                 0.00                  0.00
## prosecco                                   0.00                  0.00
## frankfurter                                0.00                  0.00
## decalcifier                                0.00                  0.00
## honey                                      0.00                  0.00
## specialty vegetables                       0.00                  0.00
## cream                                      0.00                  0.00
## hair spray                                 0.00                  0.00
## frozen fruits                              0.00                  0.00
## rubbing alcohol                            0.00                  0.00
## liqueur                                    0.00                  0.00
## make up remover                            0.00                  0.00
## salad dressing                             0.00                  0.00
## frozen chicken                             0.00                  0.00
## whisky                                     0.00                  0.00
## baby cosmetics                             0.00                  0.00
## toilet cleaner                             0.00                  0.00
## bags                                       0.00                  0.00
## canned herbs                               0.00                  0.00
## kitchen utensil                            0.00                  0.00
## preservation products                      0.00                  0.00
## baby food                                  0.00                  0.00
## frozen herbss                              0.00                  0.00
## organic sausage                            0.00                  0.00
## sound storage medium                       0.00                  0.00
##                           whole milk candles mayonnaise Instant food products
## rice                            0.00    0.00       0.00                  0.00
## veggies                         0.00    0.00       0.00                  0.00
## loaf                            0.00    0.00       0.00                  0.00
## coke                            0.00    0.00       0.00                  0.00
## yogurt                          0.00    0.00       0.00                  0.00
## vegetables                      0.00    0.00       0.00                  0.00
## mineral water                   0.00    0.00       0.00                  0.00
## Plastic bags                    0.00    0.00       0.00                  0.00
## tropical fruit                  0.00    0.00       0.00                  0.00
## marinated meat                  0.00    0.00       0.00                  0.00
## pies/pasties                    0.00    0.00       0.00                  0.00
## newspapers                      0.00    0.00       0.00                  0.00
## citrus                          0.00    0.00       0.00                  0.00
## whipped/sour cream              0.00    0.00       0.00                  0.00
## heinken                         0.00    0.00       0.00                  0.00
## green tea                       0.00    0.00       0.00                  0.00
## pip fruit                       0.00    0.00       0.00                  0.00
## brown bread                     0.00    0.00       0.00                  0.00
## fruit/vegetable juice           0.00    0.00       0.00                  0.00
## domestic eggs                   0.00    0.00       0.00                  0.00
## coffee                          0.00    0.00       0.00                  0.00
## margarine                       0.00    0.00       0.00                  0.00
## beef                            0.00    0.00       0.00                  0.00
## curd                            0.00    0.00       0.00                  0.00
## butter                          0.00    0.00       0.00                  0.00
## marinated meats                 0.00    0.00       0.00                  0.00
## napkins                         0.00    0.00       0.00                  0.00
## halal meat                      0.00    0.00       0.00                  0.00
## chocolate                       0.00    0.00       0.00                  0.00
## frozen vegetables               0.00    0.00       0.00                  0.00
## chicken                         0.00    0.00       0.00                  0.00
## white bread                     0.00    0.00       0.00                  0.00
## cream cheese                    0.00    0.00       0.00                  0.00
## waffles                         0.00    0.00       0.00                  0.00
## dessert                         0.00    0.00       0.00                  0.00
## salty snack                     0.00    0.00       0.00                  0.00
## long life bakery product        0.00    0.00       0.00                  0.00
## berries                         0.00    0.00       0.00                  0.00
## hamburger meat                  0.00    0.00       0.00                  0.00
## sugar                           0.00    0.00       0.00                  0.00
## hygiene articles                0.00    0.00       0.00                  0.00
## UHT-milk                        0.00    0.00       0.00                  0.00
## onions                          0.00    0.00       0.00                  0.00
## candy                           0.00    0.00       0.00                  0.00
## specialty chocolate             0.00    0.00       0.00                  0.00
## butter milk                     0.00    0.00       0.00                  0.00
## oil                             0.00    0.00       0.00                  0.00
## frozen meals                    0.00    0.00       0.00                  0.00
## misc. beverages                 0.00    0.00       0.00                  0.00
## specialty bar                   0.00    0.00       0.00                  0.00
## ham                             0.00    0.00       0.00                  0.00
## beverages                       0.00    0.00       0.00                  0.00
## meat                            0.00    0.00       0.00                  0.00
## ice cream                       0.00    0.00       0.00                  0.00
## sliced cheese                   0.00    0.00       0.00                  0.00
## hard cheese                     0.00    0.00       0.00                  0.00
## noodles                         0.00    0.00       0.00                  0.00
## grapes                          0.00    0.00       0.00                  0.00
## cat food                        0.00    0.00       0.00                  0.00
## chewing gum                     0.00    0.00       0.00                  0.00
## soda                            0.00    0.00       0.00                  0.00
## detergent                       0.00    0.00       0.00                  0.00
## red/blush wine                  0.00    0.00       0.00                  0.00
## white wine                      0.00    0.00       0.00                  0.00
## turkey                          0.00    0.00       0.00                  0.00
## dishes                          0.00    0.00       0.00                  0.00
## bottled water                   0.00    0.00       0.00                  0.00
## flour                           0.00    0.00       0.00                  0.00
## semi-finished bread             0.00    0.00       0.00                  0.00
## baking powder                   0.00    0.00       0.00                  0.00
## pickled vegetables              0.00    0.00       0.00                  0.00
## herbs                           0.00    0.00       0.00                  0.00
## tropical herbs                  0.00    0.00       0.00                  0.00
## soft cheese                     0.00    0.00       0.00                  0.00
## tea                             0.00    0.00       0.00                  0.00
## processed cheese                0.00    0.00       0.00                  0.00
## sausage                         0.00    0.00       0.00                  0.00
## pasta                           0.00    0.00       0.00                  0.00
## citrus herbs                    0.00    0.00       0.00                  0.00
## potted plants                   0.00    0.00       0.00                  0.00
## canned fish                     0.00    0.00       0.00                  0.00
## seasonal products               0.00    0.00       0.00                  0.00
## cake bar                        0.00    0.00       0.00                  0.00
## carrots                         0.00    0.00       0.00                  0.00
## mustard                         0.00    0.00       0.00                  0.00
## packaged fruit/vegetables       0.00    0.00       0.00                  0.00
## spread cheese                   0.00    0.00       0.00                  0.00
## frozen dessert                  0.00    0.00       0.00                  0.00
## frozen fish                     0.00    0.00       0.00                  0.00
## cling film/bags                 0.00    0.00       0.00                  0.00
## salt                            0.00    0.00       0.00                  0.00
## liquor                          0.00    0.00       0.00                  0.00
## canned vegetables               0.00    0.00       0.00                  0.00
## bottled beer                    0.00    0.00       0.00                  0.00
## flower (seeds)                  0.00    0.00       0.00                  0.00
## cooking oil                     0.00    0.00       0.00                  0.00
## dish cleaner                    0.00    0.00       0.00                  0.00
## condensed milk                  0.00    0.00       0.00                  0.00
## roll products                   0.00    0.00       0.00                  0.00
## photo/film                      0.00    0.00       0.00                  0.00
## pet care                        0.00    0.00       0.00                  0.00
## chocolate marshmallow           0.00    0.00       0.00                  0.00
## herbs/vegetable juice           0.00    0.00       0.00                  0.00
## whole milk                      0.01    0.00       0.00                  0.00
## candles                         0.00    0.01       0.00                  0.00
## mayonnaise                      0.00    0.00       0.01                  0.00
## Instant food products           0.00    0.00       0.00                  0.01
## sweet spreads                   0.00    0.00       0.00                  0.00
## liquor (appetizer)              0.00    0.00       0.00                  0.00
## specialty cheese                0.00    0.00       0.00                  0.00
## frozen potato products          0.00    0.00       0.00                  0.00
## house keeping products          0.00    0.00       0.00                  0.00
## dog food                        0.00    0.00       0.00                  0.00
## soy                             0.00    0.00       0.00                  0.00
## instant coffee                  0.00    0.00       0.00                  0.00
## pip herbs                       0.00    0.00       0.00                  0.00
## zwieback                        0.00    0.00       0.00                  0.00
## finished products               0.00    0.00       0.00                  0.00
## popcorn                         0.00    0.00       0.00                  0.00
## vinegar                         0.00    0.00       0.00                  0.00
## soups                           0.00    0.00       0.00                  0.00
## female sanitary products        0.00    0.00       0.00                  0.00
## sparkling wine                  0.00    0.00       0.00                  0.00
## dental care                     0.00    0.00       0.00                  0.00
## cereals                         0.00    0.00       0.00                  0.00
## kitchen towels                  0.00    0.00       0.00                  0.00
## curd cheese                     0.00    0.00       0.00                  0.00
## other vegetables                0.00    0.00       0.00                  0.00
## rolls/buns                      0.00    0.00       0.00                  0.00
## softener                        0.00    0.00       0.00                  0.00
## cleaner                         0.00    0.00       0.00                  0.00
## spices                          0.00    0.00       0.00                  0.00
## jam                             0.00    0.00       0.00                  0.00
## sauces                          0.00    0.00       0.00                  0.00
## rum                             0.00    0.00       0.00                  0.00
## liver loaf                      0.00    0.00       0.00                  0.00
## male cosmetics                  0.00    0.00       0.00                  0.00
## meat spreads                    0.00    0.00       0.00                  0.00
## packaged herbs/vegetables       0.00    0.00       0.00                  0.00
## brandy                          0.00    0.00       0.00                  0.00
## ketchup                         0.00    0.00       0.00                  0.00
## abrasive cleaner                0.00    0.00       0.00                  0.00
## light bulbs                     0.00    0.00       0.00                  0.00
## artif. sweetener                0.00    0.00       0.00                  0.00
## nuts/prunes                     0.00    0.00       0.00                  0.00
## specialty fat                   0.00    0.00       0.00                  0.00
## skin care                       0.00    0.00       0.00                  0.00
## fish                            0.00    0.00       0.00                  0.00
## potato products                 0.00    0.00       0.00                  0.00
## root vegetables                 0.00    0.00       0.00                  0.00
## snack products                  0.00    0.00       0.00                  0.00
## nut snack                       0.00    0.00       0.00                  0.00
## soap                            0.00    0.00       0.00                  0.00
## syrup                           0.00    0.00       0.00                  0.00
## bathroom cleaner                0.00    0.00       0.00                  0.00
## canned fruit                    0.00    0.00       0.00                  0.00
## cookware                        0.00    0.00       0.00                  0.00
## cooking chocolate               0.00    0.00       0.00                  0.00
## tidbits                         0.00    0.00       0.00                  0.00
## cocoa drinks                    0.00    0.00       0.00                  0.00
## pudding powder                  0.00    0.00       0.00                  0.00
## ready soups                     0.00    0.00       0.00                  0.00
## organic marinated meat          0.00    0.00       0.00                  0.00
## flower soil/fertilizer          0.00    0.00       0.00                  0.00
## organic products                0.00    0.00       0.00                  0.00
## pot plants                      0.00    0.00       0.00                  0.00
## prosecco                        0.00    0.00       0.00                  0.00
## frankfurter                     0.00    0.00       0.00                  0.00
## decalcifier                     0.00    0.00       0.00                  0.00
## honey                           0.00    0.00       0.00                  0.00
## specialty vegetables            0.00    0.00       0.00                  0.00
## cream                           0.00    0.00       0.00                  0.00
## hair spray                      0.00    0.00       0.00                  0.00
## frozen fruits                   0.00    0.00       0.00                  0.00
## rubbing alcohol                 0.00    0.00       0.00                  0.00
## liqueur                         0.00    0.00       0.00                  0.00
## make up remover                 0.00    0.00       0.00                  0.00
## salad dressing                  0.00    0.00       0.00                  0.00
## frozen chicken                  0.00    0.00       0.00                  0.00
## whisky                          0.00    0.00       0.00                  0.00
## baby cosmetics                  0.00    0.00       0.00                  0.00
## toilet cleaner                  0.00    0.00       0.00                  0.00
## bags                            0.00    0.00       0.00                  0.00
## canned herbs                    0.00    0.00       0.00                  0.00
## kitchen utensil                 0.00    0.00       0.00                  0.00
## preservation products           0.00    0.00       0.00                  0.00
## baby food                       0.00    0.00       0.00                  0.00
## frozen herbss                   0.00    0.00       0.00                  0.00
## organic sausage                 0.00    0.00       0.00                  0.00
## sound storage medium            0.00    0.00       0.00                  0.00
##                           sweet spreads liquor (appetizer) specialty cheese
## rice                               0.00               0.00             0.00
## veggies                            0.00               0.00             0.00
## loaf                               0.00               0.00             0.00
## coke                               0.00               0.00             0.00
## yogurt                             0.00               0.00             0.00
## vegetables                         0.00               0.00             0.00
## mineral water                      0.00               0.00             0.00
## Plastic bags                       0.00               0.00             0.00
## tropical fruit                     0.00               0.00             0.00
## marinated meat                     0.00               0.00             0.00
## pies/pasties                       0.00               0.00             0.00
## newspapers                         0.00               0.00             0.00
## citrus                             0.00               0.00             0.00
## whipped/sour cream                 0.00               0.00             0.00
## heinken                            0.00               0.00             0.00
## green tea                          0.00               0.00             0.00
## pip fruit                          0.00               0.00             0.00
## brown bread                        0.00               0.00             0.00
## fruit/vegetable juice              0.00               0.00             0.00
## domestic eggs                      0.00               0.00             0.00
## coffee                             0.00               0.00             0.00
## margarine                          0.00               0.00             0.00
## beef                               0.00               0.00             0.00
## curd                               0.00               0.00             0.00
## butter                             0.00               0.00             0.00
## marinated meats                    0.00               0.00             0.00
## napkins                            0.00               0.00             0.00
## halal meat                         0.00               0.00             0.00
## chocolate                          0.00               0.00             0.00
## frozen vegetables                  0.00               0.00             0.00
## chicken                            0.00               0.00             0.00
## white bread                        0.00               0.00             0.00
## cream cheese                       0.00               0.00             0.00
## waffles                            0.00               0.00             0.00
## dessert                            0.00               0.00             0.00
## salty snack                        0.00               0.00             0.00
## long life bakery product           0.00               0.00             0.00
## berries                            0.00               0.00             0.00
## hamburger meat                     0.00               0.00             0.00
## sugar                              0.00               0.00             0.00
## hygiene articles                   0.00               0.00             0.00
## UHT-milk                           0.00               0.00             0.00
## onions                             0.00               0.00             0.00
## candy                              0.00               0.00             0.00
## specialty chocolate                0.00               0.00             0.00
## butter milk                        0.00               0.00             0.00
## oil                                0.00               0.00             0.00
## frozen meals                       0.00               0.00             0.00
## misc. beverages                    0.00               0.00             0.00
## specialty bar                      0.00               0.00             0.00
## ham                                0.00               0.00             0.00
## beverages                          0.00               0.00             0.00
## meat                               0.00               0.00             0.00
## ice cream                          0.00               0.00             0.00
## sliced cheese                      0.00               0.00             0.00
## hard cheese                        0.00               0.00             0.00
## noodles                            0.00               0.00             0.00
## grapes                             0.00               0.00             0.00
## cat food                           0.00               0.00             0.00
## chewing gum                        0.00               0.00             0.00
## soda                               0.00               0.00             0.00
## detergent                          0.00               0.00             0.00
## red/blush wine                     0.00               0.00             0.00
## white wine                         0.00               0.00             0.00
## turkey                             0.00               0.00             0.00
## dishes                             0.00               0.00             0.00
## bottled water                      0.00               0.00             0.00
## flour                              0.00               0.00             0.00
## semi-finished bread                0.00               0.00             0.00
## baking powder                      0.00               0.00             0.00
## pickled vegetables                 0.00               0.00             0.00
## herbs                              0.00               0.00             0.00
## tropical herbs                     0.00               0.00             0.00
## soft cheese                        0.00               0.00             0.00
## tea                                0.00               0.00             0.00
## processed cheese                   0.00               0.00             0.00
## sausage                            0.00               0.00             0.00
## pasta                              0.00               0.00             0.00
## citrus herbs                       0.00               0.00             0.00
## potted plants                      0.00               0.00             0.00
## canned fish                        0.00               0.00             0.00
## seasonal products                  0.00               0.00             0.00
## cake bar                           0.00               0.00             0.00
## carrots                            0.00               0.00             0.00
## mustard                            0.00               0.00             0.00
## packaged fruit/vegetables          0.00               0.00             0.00
## spread cheese                      0.00               0.00             0.00
## frozen dessert                     0.00               0.00             0.00
## frozen fish                        0.00               0.00             0.00
## cling film/bags                    0.00               0.00             0.00
## salt                               0.00               0.00             0.00
## liquor                             0.00               0.00             0.00
## canned vegetables                  0.00               0.00             0.00
## bottled beer                       0.00               0.00             0.00
## flower (seeds)                     0.00               0.00             0.00
## cooking oil                        0.00               0.00             0.00
## dish cleaner                       0.00               0.00             0.00
## condensed milk                     0.00               0.00             0.00
## roll products                      0.00               0.00             0.00
## photo/film                         0.00               0.00             0.00
## pet care                           0.00               0.00             0.00
## chocolate marshmallow              0.00               0.00             0.00
## herbs/vegetable juice              0.00               0.00             0.00
## whole milk                         0.00               0.00             0.00
## candles                            0.00               0.00             0.00
## mayonnaise                         0.00               0.00             0.00
## Instant food products              0.00               0.00             0.00
## sweet spreads                      0.01               0.00             0.00
## liquor (appetizer)                 0.00               0.01             0.00
## specialty cheese                   0.00               0.00             0.01
## frozen potato products             0.00               0.00             0.00
## house keeping products             0.00               0.00             0.00
## dog food                           0.00               0.00             0.00
## soy                                0.00               0.00             0.00
## instant coffee                     0.00               0.00             0.00
## pip herbs                          0.00               0.00             0.00
## zwieback                           0.00               0.00             0.00
## finished products                  0.00               0.00             0.00
## popcorn                            0.00               0.00             0.00
## vinegar                            0.00               0.00             0.00
## soups                              0.00               0.00             0.00
## female sanitary products           0.00               0.00             0.00
## sparkling wine                     0.00               0.00             0.00
## dental care                        0.00               0.00             0.00
## cereals                            0.00               0.00             0.00
## kitchen towels                     0.00               0.00             0.00
## curd cheese                        0.00               0.00             0.00
## other vegetables                   0.00               0.00             0.00
## rolls/buns                         0.00               0.00             0.00
## softener                           0.00               0.00             0.00
## cleaner                            0.00               0.00             0.00
## spices                             0.00               0.00             0.00
## jam                                0.00               0.00             0.00
## sauces                             0.00               0.00             0.00
## rum                                0.00               0.00             0.00
## liver loaf                         0.00               0.00             0.00
## male cosmetics                     0.00               0.00             0.00
## meat spreads                       0.00               0.00             0.00
## packaged herbs/vegetables          0.00               0.00             0.00
## brandy                             0.00               0.00             0.00
## ketchup                            0.00               0.00             0.00
## abrasive cleaner                   0.00               0.00             0.00
## light bulbs                        0.00               0.00             0.00
## artif. sweetener                   0.00               0.00             0.00
## nuts/prunes                        0.00               0.00             0.00
## specialty fat                      0.00               0.00             0.00
## skin care                          0.00               0.00             0.00
## fish                               0.00               0.00             0.00
## potato products                    0.00               0.00             0.00
## root vegetables                    0.00               0.00             0.00
## snack products                     0.00               0.00             0.00
## nut snack                          0.00               0.00             0.00
## soap                               0.00               0.00             0.00
## syrup                              0.00               0.00             0.00
## bathroom cleaner                   0.00               0.00             0.00
## canned fruit                       0.00               0.00             0.00
## cookware                           0.00               0.00             0.00
## cooking chocolate                  0.00               0.00             0.00
## tidbits                            0.00               0.00             0.00
## cocoa drinks                       0.00               0.00             0.00
## pudding powder                     0.00               0.00             0.00
## ready soups                        0.00               0.00             0.00
## organic marinated meat             0.00               0.00             0.00
## flower soil/fertilizer             0.00               0.00             0.00
## organic products                   0.00               0.00             0.00
## pot plants                         0.00               0.00             0.00
## prosecco                           0.00               0.00             0.00
## frankfurter                        0.00               0.00             0.00
## decalcifier                        0.00               0.00             0.00
## honey                              0.00               0.00             0.00
## specialty vegetables               0.00               0.00             0.00
## cream                              0.00               0.00             0.00
## hair spray                         0.00               0.00             0.00
## frozen fruits                      0.00               0.00             0.00
## rubbing alcohol                    0.00               0.00             0.00
## liqueur                            0.00               0.00             0.00
## make up remover                    0.00               0.00             0.00
## salad dressing                     0.00               0.00             0.00
## frozen chicken                     0.00               0.00             0.00
## whisky                             0.00               0.00             0.00
## baby cosmetics                     0.00               0.00             0.00
## toilet cleaner                     0.00               0.00             0.00
## bags                               0.00               0.00             0.00
## canned herbs                       0.00               0.00             0.00
## kitchen utensil                    0.00               0.00             0.00
## preservation products              0.00               0.00             0.00
## baby food                          0.00               0.00             0.00
## frozen herbss                      0.00               0.00             0.00
## organic sausage                    0.00               0.00             0.00
## sound storage medium               0.00               0.00             0.00
##                           frozen potato products house keeping products
## rice                                        0.00                   0.00
## veggies                                     0.00                   0.00
## loaf                                        0.00                   0.00
## coke                                        0.00                   0.00
## yogurt                                      0.00                   0.00
## vegetables                                  0.00                   0.00
## mineral water                               0.00                   0.00
## Plastic bags                                0.00                   0.00
## tropical fruit                              0.00                   0.00
## marinated meat                              0.00                   0.00
## pies/pasties                                0.00                   0.00
## newspapers                                  0.00                   0.00
## citrus                                      0.00                   0.00
## whipped/sour cream                          0.00                   0.00
## heinken                                     0.00                   0.00
## green tea                                   0.00                   0.00
## pip fruit                                   0.00                   0.00
## brown bread                                 0.00                   0.00
## fruit/vegetable juice                       0.00                   0.00
## domestic eggs                               0.00                   0.00
## coffee                                      0.00                   0.00
## margarine                                   0.00                   0.00
## beef                                        0.00                   0.00
## curd                                        0.00                   0.00
## butter                                      0.00                   0.00
## marinated meats                             0.00                   0.00
## napkins                                     0.00                   0.00
## halal meat                                  0.00                   0.00
## chocolate                                   0.00                   0.00
## frozen vegetables                           0.00                   0.00
## chicken                                     0.00                   0.00
## white bread                                 0.00                   0.00
## cream cheese                                0.00                   0.00
## waffles                                     0.00                   0.00
## dessert                                     0.00                   0.00
## salty snack                                 0.00                   0.00
## long life bakery product                    0.00                   0.00
## berries                                     0.00                   0.00
## hamburger meat                              0.00                   0.00
## sugar                                       0.00                   0.00
## hygiene articles                            0.00                   0.00
## UHT-milk                                    0.00                   0.00
## onions                                      0.00                   0.00
## candy                                       0.00                   0.00
## specialty chocolate                         0.00                   0.00
## butter milk                                 0.00                   0.00
## oil                                         0.00                   0.00
## frozen meals                                0.00                   0.00
## misc. beverages                             0.00                   0.00
## specialty bar                               0.00                   0.00
## ham                                         0.00                   0.00
## beverages                                   0.00                   0.00
## meat                                        0.00                   0.00
## ice cream                                   0.00                   0.00
## sliced cheese                               0.00                   0.00
## hard cheese                                 0.00                   0.00
## noodles                                     0.00                   0.00
## grapes                                      0.00                   0.00
## cat food                                    0.00                   0.00
## chewing gum                                 0.00                   0.00
## soda                                        0.00                   0.00
## detergent                                   0.00                   0.00
## red/blush wine                              0.00                   0.00
## white wine                                  0.00                   0.00
## turkey                                      0.00                   0.00
## dishes                                      0.00                   0.00
## bottled water                               0.00                   0.00
## flour                                       0.00                   0.00
## semi-finished bread                         0.00                   0.00
## baking powder                               0.00                   0.00
## pickled vegetables                          0.00                   0.00
## herbs                                       0.00                   0.00
## tropical herbs                              0.00                   0.00
## soft cheese                                 0.00                   0.00
## tea                                         0.00                   0.00
## processed cheese                            0.00                   0.00
## sausage                                     0.00                   0.00
## pasta                                       0.00                   0.00
## citrus herbs                                0.00                   0.00
## potted plants                               0.00                   0.00
## canned fish                                 0.00                   0.00
## seasonal products                           0.00                   0.00
## cake bar                                    0.00                   0.00
## carrots                                     0.00                   0.00
## mustard                                     0.00                   0.00
## packaged fruit/vegetables                   0.00                   0.00
## spread cheese                               0.00                   0.00
## frozen dessert                              0.00                   0.00
## frozen fish                                 0.00                   0.00
## cling film/bags                             0.00                   0.00
## salt                                        0.00                   0.00
## liquor                                      0.00                   0.00
## canned vegetables                           0.00                   0.00
## bottled beer                                0.00                   0.00
## flower (seeds)                              0.00                   0.00
## cooking oil                                 0.00                   0.00
## dish cleaner                                0.00                   0.00
## condensed milk                              0.00                   0.00
## roll products                               0.00                   0.00
## photo/film                                  0.00                   0.00
## pet care                                    0.00                   0.00
## chocolate marshmallow                       0.00                   0.00
## herbs/vegetable juice                       0.00                   0.00
## whole milk                                  0.00                   0.00
## candles                                     0.00                   0.00
## mayonnaise                                  0.00                   0.00
## Instant food products                       0.00                   0.00
## sweet spreads                               0.00                   0.00
## liquor (appetizer)                          0.00                   0.00
## specialty cheese                            0.00                   0.00
## frozen potato products                      0.01                   0.00
## house keeping products                      0.00                   0.01
## dog food                                    0.00                   0.00
## soy                                         0.00                   0.00
## instant coffee                              0.00                   0.00
## pip herbs                                   0.00                   0.00
## zwieback                                    0.00                   0.00
## finished products                           0.00                   0.00
## popcorn                                     0.00                   0.00
## vinegar                                     0.00                   0.00
## soups                                       0.00                   0.00
## female sanitary products                    0.00                   0.00
## sparkling wine                              0.00                   0.00
## dental care                                 0.00                   0.00
## cereals                                     0.00                   0.00
## kitchen towels                              0.00                   0.00
## curd cheese                                 0.00                   0.00
## other vegetables                            0.00                   0.00
## rolls/buns                                  0.00                   0.00
## softener                                    0.00                   0.00
## cleaner                                     0.00                   0.00
## spices                                      0.00                   0.00
## jam                                         0.00                   0.00
## sauces                                      0.00                   0.00
## rum                                         0.00                   0.00
## liver loaf                                  0.00                   0.00
## male cosmetics                              0.00                   0.00
## meat spreads                                0.00                   0.00
## packaged herbs/vegetables                   0.00                   0.00
## brandy                                      0.00                   0.00
## ketchup                                     0.00                   0.00
## abrasive cleaner                            0.00                   0.00
## light bulbs                                 0.00                   0.00
## artif. sweetener                            0.00                   0.00
## nuts/prunes                                 0.00                   0.00
## specialty fat                               0.00                   0.00
## skin care                                   0.00                   0.00
## fish                                        0.00                   0.00
## potato products                             0.00                   0.00
## root vegetables                             0.00                   0.00
## snack products                              0.00                   0.00
## nut snack                                   0.00                   0.00
## soap                                        0.00                   0.00
## syrup                                       0.00                   0.00
## bathroom cleaner                            0.00                   0.00
## canned fruit                                0.00                   0.00
## cookware                                    0.00                   0.00
## cooking chocolate                           0.00                   0.00
## tidbits                                     0.00                   0.00
## cocoa drinks                                0.00                   0.00
## pudding powder                              0.00                   0.00
## ready soups                                 0.00                   0.00
## organic marinated meat                      0.00                   0.00
## flower soil/fertilizer                      0.00                   0.00
## organic products                            0.00                   0.00
## pot plants                                  0.00                   0.00
## prosecco                                    0.00                   0.00
## frankfurter                                 0.00                   0.00
## decalcifier                                 0.00                   0.00
## honey                                       0.00                   0.00
## specialty vegetables                        0.00                   0.00
## cream                                       0.00                   0.00
## hair spray                                  0.00                   0.00
## frozen fruits                               0.00                   0.00
## rubbing alcohol                             0.00                   0.00
## liqueur                                     0.00                   0.00
## make up remover                             0.00                   0.00
## salad dressing                              0.00                   0.00
## frozen chicken                              0.00                   0.00
## whisky                                      0.00                   0.00
## baby cosmetics                              0.00                   0.00
## toilet cleaner                              0.00                   0.00
## bags                                        0.00                   0.00
## canned herbs                                0.00                   0.00
## kitchen utensil                             0.00                   0.00
## preservation products                       0.00                   0.00
## baby food                                   0.00                   0.00
## frozen herbss                               0.00                   0.00
## organic sausage                             0.00                   0.00
## sound storage medium                        0.00                   0.00
##                           dog food  soy instant coffee pip herbs zwieback
## rice                          0.00 0.00           0.00      0.00     0.00
## veggies                       0.00 0.00           0.00      0.00     0.00
## loaf                          0.00 0.00           0.00      0.00     0.00
## coke                          0.00 0.00           0.00      0.00     0.00
## yogurt                        0.00 0.00           0.00      0.00     0.00
## vegetables                    0.00 0.00           0.00      0.00     0.00
## mineral water                 0.00 0.00           0.00      0.00     0.00
## Plastic bags                  0.00 0.00           0.00      0.00     0.00
## tropical fruit                0.00 0.00           0.00      0.00     0.00
## marinated meat                0.00 0.00           0.00      0.00     0.00
## pies/pasties                  0.00 0.00           0.00      0.00     0.00
## newspapers                    0.00 0.00           0.00      0.00     0.00
## citrus                        0.00 0.00           0.00      0.00     0.00
## whipped/sour cream            0.00 0.00           0.00      0.00     0.00
## heinken                       0.00 0.00           0.00      0.00     0.00
## green tea                     0.00 0.00           0.00      0.00     0.00
## pip fruit                     0.00 0.00           0.00      0.00     0.00
## brown bread                   0.00 0.00           0.00      0.00     0.00
## fruit/vegetable juice         0.00 0.00           0.00      0.00     0.00
## domestic eggs                 0.00 0.00           0.00      0.00     0.00
## coffee                        0.00 0.00           0.00      0.00     0.00
## margarine                     0.00 0.00           0.00      0.00     0.00
## beef                          0.00 0.00           0.00      0.00     0.00
## curd                          0.00 0.00           0.00      0.00     0.00
## butter                        0.00 0.00           0.00      0.00     0.00
## marinated meats               0.00 0.00           0.00      0.00     0.00
## napkins                       0.00 0.00           0.00      0.00     0.00
## halal meat                    0.00 0.00           0.00      0.00     0.00
## chocolate                     0.00 0.00           0.00      0.00     0.00
## frozen vegetables             0.00 0.00           0.00      0.00     0.00
## chicken                       0.00 0.00           0.00      0.00     0.00
## white bread                   0.00 0.00           0.00      0.00     0.00
## cream cheese                  0.00 0.00           0.00      0.00     0.00
## waffles                       0.00 0.00           0.00      0.00     0.00
## dessert                       0.00 0.00           0.00      0.00     0.00
## salty snack                   0.00 0.00           0.00      0.00     0.00
## long life bakery product      0.00 0.00           0.00      0.00     0.00
## berries                       0.00 0.00           0.00      0.00     0.00
## hamburger meat                0.00 0.00           0.00      0.00     0.00
## sugar                         0.00 0.00           0.00      0.00     0.00
## hygiene articles              0.00 0.00           0.00      0.00     0.00
## UHT-milk                      0.00 0.00           0.00      0.00     0.00
## onions                        0.00 0.00           0.00      0.00     0.00
## candy                         0.00 0.00           0.00      0.00     0.00
## specialty chocolate           0.00 0.00           0.00      0.00     0.00
## butter milk                   0.00 0.00           0.00      0.00     0.00
## oil                           0.00 0.00           0.00      0.00     0.00
## frozen meals                  0.00 0.00           0.00      0.00     0.00
## misc. beverages               0.00 0.00           0.00      0.00     0.00
## specialty bar                 0.00 0.00           0.00      0.00     0.00
## ham                           0.00 0.00           0.00      0.00     0.00
## beverages                     0.00 0.00           0.00      0.00     0.00
## meat                          0.00 0.00           0.00      0.00     0.00
## ice cream                     0.00 0.00           0.00      0.00     0.00
## sliced cheese                 0.00 0.00           0.00      0.00     0.00
## hard cheese                   0.00 0.00           0.00      0.00     0.00
## noodles                       0.00 0.00           0.00      0.00     0.00
## grapes                        0.00 0.00           0.00      0.00     0.00
## cat food                      0.00 0.00           0.00      0.00     0.00
## chewing gum                   0.00 0.00           0.00      0.00     0.00
## soda                          0.00 0.00           0.00      0.00     0.00
## detergent                     0.00 0.00           0.00      0.00     0.00
## red/blush wine                0.00 0.00           0.00      0.00     0.00
## white wine                    0.00 0.00           0.00      0.00     0.00
## turkey                        0.00 0.00           0.00      0.00     0.00
## dishes                        0.00 0.00           0.00      0.00     0.00
## bottled water                 0.00 0.00           0.00      0.00     0.00
## flour                         0.00 0.00           0.00      0.00     0.00
## semi-finished bread           0.00 0.00           0.00      0.00     0.00
## baking powder                 0.00 0.00           0.00      0.00     0.00
## pickled vegetables            0.00 0.00           0.00      0.00     0.00
## herbs                         0.00 0.00           0.00      0.00     0.00
## tropical herbs                0.00 0.00           0.00      0.00     0.00
## soft cheese                   0.00 0.00           0.00      0.00     0.00
## tea                           0.00 0.00           0.00      0.00     0.00
## processed cheese              0.00 0.00           0.00      0.00     0.00
## sausage                       0.00 0.00           0.00      0.00     0.00
## pasta                         0.00 0.00           0.00      0.00     0.00
## citrus herbs                  0.00 0.00           0.00      0.00     0.00
## potted plants                 0.00 0.00           0.00      0.00     0.00
## canned fish                   0.00 0.00           0.00      0.00     0.00
## seasonal products             0.00 0.00           0.00      0.00     0.00
## cake bar                      0.00 0.00           0.00      0.00     0.00
## carrots                       0.00 0.00           0.00      0.00     0.00
## mustard                       0.00 0.00           0.00      0.00     0.00
## packaged fruit/vegetables     0.00 0.00           0.00      0.00     0.00
## spread cheese                 0.00 0.00           0.00      0.00     0.00
## frozen dessert                0.00 0.00           0.00      0.00     0.00
## frozen fish                   0.00 0.00           0.00      0.00     0.00
## cling film/bags               0.00 0.00           0.00      0.00     0.00
## salt                          0.00 0.00           0.00      0.00     0.00
## liquor                        0.00 0.00           0.00      0.00     0.00
## canned vegetables             0.00 0.00           0.00      0.00     0.00
## bottled beer                  0.00 0.00           0.00      0.00     0.00
## flower (seeds)                0.00 0.00           0.00      0.00     0.00
## cooking oil                   0.00 0.00           0.00      0.00     0.00
## dish cleaner                  0.00 0.00           0.00      0.00     0.00
## condensed milk                0.00 0.00           0.00      0.00     0.00
## roll products                 0.00 0.00           0.00      0.00     0.00
## photo/film                    0.00 0.00           0.00      0.00     0.00
## pet care                      0.00 0.00           0.00      0.00     0.00
## chocolate marshmallow         0.00 0.00           0.00      0.00     0.00
## herbs/vegetable juice         0.00 0.00           0.00      0.00     0.00
## whole milk                    0.00 0.00           0.00      0.00     0.00
## candles                       0.00 0.00           0.00      0.00     0.00
## mayonnaise                    0.00 0.00           0.00      0.00     0.00
## Instant food products         0.00 0.00           0.00      0.00     0.00
## sweet spreads                 0.00 0.00           0.00      0.00     0.00
## liquor (appetizer)            0.00 0.00           0.00      0.00     0.00
## specialty cheese              0.00 0.00           0.00      0.00     0.00
## frozen potato products        0.00 0.00           0.00      0.00     0.00
## house keeping products        0.00 0.00           0.00      0.00     0.00
## dog food                      0.01 0.00           0.00      0.00     0.00
## soy                           0.00 0.01           0.00      0.00     0.00
## instant coffee                0.00 0.00           0.01      0.00     0.00
## pip herbs                     0.00 0.00           0.00      0.01     0.00
## zwieback                      0.00 0.00           0.00      0.00     0.01
## finished products             0.00 0.00           0.00      0.00     0.00
## popcorn                       0.00 0.00           0.00      0.00     0.00
## vinegar                       0.00 0.00           0.00      0.00     0.00
## soups                         0.00 0.00           0.00      0.00     0.00
## female sanitary products      0.00 0.00           0.00      0.00     0.00
## sparkling wine                0.00 0.00           0.00      0.00     0.00
## dental care                   0.00 0.00           0.00      0.00     0.00
## cereals                       0.00 0.00           0.00      0.00     0.00
## kitchen towels                0.00 0.00           0.00      0.00     0.00
## curd cheese                   0.00 0.00           0.00      0.00     0.00
## other vegetables              0.00 0.00           0.00      0.00     0.00
## rolls/buns                    0.00 0.00           0.00      0.00     0.00
## softener                      0.00 0.00           0.00      0.00     0.00
## cleaner                       0.00 0.00           0.00      0.00     0.00
## spices                        0.00 0.00           0.00      0.00     0.00
## jam                           0.00 0.00           0.00      0.00     0.00
## sauces                        0.00 0.00           0.00      0.00     0.00
## rum                           0.00 0.00           0.00      0.00     0.00
## liver loaf                    0.00 0.00           0.00      0.00     0.00
## male cosmetics                0.00 0.00           0.00      0.00     0.00
## meat spreads                  0.00 0.00           0.00      0.00     0.00
## packaged herbs/vegetables     0.00 0.00           0.00      0.00     0.00
## brandy                        0.00 0.00           0.00      0.00     0.00
## ketchup                       0.00 0.00           0.00      0.00     0.00
## abrasive cleaner              0.00 0.00           0.00      0.00     0.00
## light bulbs                   0.00 0.00           0.00      0.00     0.00
## artif. sweetener              0.00 0.00           0.00      0.00     0.00
## nuts/prunes                   0.00 0.00           0.00      0.00     0.00
## specialty fat                 0.00 0.00           0.00      0.00     0.00
## skin care                     0.00 0.00           0.00      0.00     0.00
## fish                          0.00 0.00           0.00      0.00     0.00
## potato products               0.00 0.00           0.00      0.00     0.00
## root vegetables               0.00 0.00           0.00      0.00     0.00
## snack products                0.00 0.00           0.00      0.00     0.00
## nut snack                     0.00 0.00           0.00      0.00     0.00
## soap                          0.00 0.00           0.00      0.00     0.00
## syrup                         0.00 0.00           0.00      0.00     0.00
## bathroom cleaner              0.00 0.00           0.00      0.00     0.00
## canned fruit                  0.00 0.00           0.00      0.00     0.00
## cookware                      0.00 0.00           0.00      0.00     0.00
## cooking chocolate             0.00 0.00           0.00      0.00     0.00
## tidbits                       0.00 0.00           0.00      0.00     0.00
## cocoa drinks                  0.00 0.00           0.00      0.00     0.00
## pudding powder                0.00 0.00           0.00      0.00     0.00
## ready soups                   0.00 0.00           0.00      0.00     0.00
## organic marinated meat        0.00 0.00           0.00      0.00     0.00
## flower soil/fertilizer        0.00 0.00           0.00      0.00     0.00
## organic products              0.00 0.00           0.00      0.00     0.00
## pot plants                    0.00 0.00           0.00      0.00     0.00
## prosecco                      0.00 0.00           0.00      0.00     0.00
## frankfurter                   0.00 0.00           0.00      0.00     0.00
## decalcifier                   0.00 0.00           0.00      0.00     0.00
## honey                         0.00 0.00           0.00      0.00     0.00
## specialty vegetables          0.00 0.00           0.00      0.00     0.00
## cream                         0.00 0.00           0.00      0.00     0.00
## hair spray                    0.00 0.00           0.00      0.00     0.00
## frozen fruits                 0.00 0.00           0.00      0.00     0.00
## rubbing alcohol               0.00 0.00           0.00      0.00     0.00
## liqueur                       0.00 0.00           0.00      0.00     0.00
## make up remover               0.00 0.00           0.00      0.00     0.00
## salad dressing                0.00 0.00           0.00      0.00     0.00
## frozen chicken                0.00 0.00           0.00      0.00     0.00
## whisky                        0.00 0.00           0.00      0.00     0.00
## baby cosmetics                0.00 0.00           0.00      0.00     0.00
## toilet cleaner                0.00 0.00           0.00      0.00     0.00
## bags                          0.00 0.00           0.00      0.00     0.00
## canned herbs                  0.00 0.00           0.00      0.00     0.00
## kitchen utensil               0.00 0.00           0.00      0.00     0.00
## preservation products         0.00 0.00           0.00      0.00     0.00
## baby food                     0.00 0.00           0.00      0.00     0.00
## frozen herbss                 0.00 0.00           0.00      0.00     0.00
## organic sausage               0.00 0.00           0.00      0.00     0.00
## sound storage medium          0.00 0.00           0.00      0.00     0.00
##                           finished products popcorn vinegar soups
## rice                                   0.00    0.00    0.00  0.00
## veggies                                0.00    0.00    0.00  0.00
## loaf                                   0.00    0.00    0.00  0.00
## coke                                   0.00    0.00    0.00  0.00
## yogurt                                 0.00    0.00    0.00  0.00
## vegetables                             0.00    0.00    0.00  0.00
## mineral water                          0.00    0.00    0.00  0.00
## Plastic bags                           0.00    0.00    0.00  0.00
## tropical fruit                         0.00    0.00    0.00  0.00
## marinated meat                         0.00    0.00    0.00  0.00
## pies/pasties                           0.00    0.00    0.00  0.00
## newspapers                             0.00    0.00    0.00  0.00
## citrus                                 0.00    0.00    0.00  0.00
## whipped/sour cream                     0.00    0.00    0.00  0.00
## heinken                                0.00    0.00    0.00  0.00
## green tea                              0.00    0.00    0.00  0.00
## pip fruit                              0.00    0.00    0.00  0.00
## brown bread                            0.00    0.00    0.00  0.00
## fruit/vegetable juice                  0.00    0.00    0.00  0.00
## domestic eggs                          0.00    0.00    0.00  0.00
## coffee                                 0.00    0.00    0.00  0.00
## margarine                              0.00    0.00    0.00  0.00
## beef                                   0.00    0.00    0.00  0.00
## curd                                   0.00    0.00    0.00  0.00
## butter                                 0.00    0.00    0.00  0.00
## marinated meats                        0.00    0.00    0.00  0.00
## napkins                                0.00    0.00    0.00  0.00
## halal meat                             0.00    0.00    0.00  0.00
## chocolate                              0.00    0.00    0.00  0.00
## frozen vegetables                      0.00    0.00    0.00  0.00
## chicken                                0.00    0.00    0.00  0.00
## white bread                            0.00    0.00    0.00  0.00
## cream cheese                           0.00    0.00    0.00  0.00
## waffles                                0.00    0.00    0.00  0.00
## dessert                                0.00    0.00    0.00  0.00
## salty snack                            0.00    0.00    0.00  0.00
## long life bakery product               0.00    0.00    0.00  0.00
## berries                                0.00    0.00    0.00  0.00
## hamburger meat                         0.00    0.00    0.00  0.00
## sugar                                  0.00    0.00    0.00  0.00
## hygiene articles                       0.00    0.00    0.00  0.00
## UHT-milk                               0.00    0.00    0.00  0.00
## onions                                 0.00    0.00    0.00  0.00
## candy                                  0.00    0.00    0.00  0.00
## specialty chocolate                    0.00    0.00    0.00  0.00
## butter milk                            0.00    0.00    0.00  0.00
## oil                                    0.00    0.00    0.00  0.00
## frozen meals                           0.00    0.00    0.00  0.00
## misc. beverages                        0.00    0.00    0.00  0.00
## specialty bar                          0.00    0.00    0.00  0.00
## ham                                    0.00    0.00    0.00  0.00
## beverages                              0.00    0.00    0.00  0.00
## meat                                   0.00    0.00    0.00  0.00
## ice cream                              0.00    0.00    0.00  0.00
## sliced cheese                          0.00    0.00    0.00  0.00
## hard cheese                            0.00    0.00    0.00  0.00
## noodles                                0.00    0.00    0.00  0.00
## grapes                                 0.00    0.00    0.00  0.00
## cat food                               0.00    0.00    0.00  0.00
## chewing gum                            0.00    0.00    0.00  0.00
## soda                                   0.00    0.00    0.00  0.00
## detergent                              0.00    0.00    0.00  0.00
## red/blush wine                         0.00    0.00    0.00  0.00
## white wine                             0.00    0.00    0.00  0.00
## turkey                                 0.00    0.00    0.00  0.00
## dishes                                 0.00    0.00    0.00  0.00
## bottled water                          0.00    0.00    0.00  0.00
## flour                                  0.00    0.00    0.00  0.00
## semi-finished bread                    0.00    0.00    0.00  0.00
## baking powder                          0.00    0.00    0.00  0.00
## pickled vegetables                     0.00    0.00    0.00  0.00
## herbs                                  0.00    0.00    0.00  0.00
## tropical herbs                         0.00    0.00    0.00  0.00
## soft cheese                            0.00    0.00    0.00  0.00
## tea                                    0.00    0.00    0.00  0.00
## processed cheese                       0.00    0.00    0.00  0.00
## sausage                                0.00    0.00    0.00  0.00
## pasta                                  0.00    0.00    0.00  0.00
## citrus herbs                           0.00    0.00    0.00  0.00
## potted plants                          0.00    0.00    0.00  0.00
## canned fish                            0.00    0.00    0.00  0.00
## seasonal products                      0.00    0.00    0.00  0.00
## cake bar                               0.00    0.00    0.00  0.00
## carrots                                0.00    0.00    0.00  0.00
## mustard                                0.00    0.00    0.00  0.00
## packaged fruit/vegetables              0.00    0.00    0.00  0.00
## spread cheese                          0.00    0.00    0.00  0.00
## frozen dessert                         0.00    0.00    0.00  0.00
## frozen fish                            0.00    0.00    0.00  0.00
## cling film/bags                        0.00    0.00    0.00  0.00
## salt                                   0.00    0.00    0.00  0.00
## liquor                                 0.00    0.00    0.00  0.00
## canned vegetables                      0.00    0.00    0.00  0.00
## bottled beer                           0.00    0.00    0.00  0.00
## flower (seeds)                         0.00    0.00    0.00  0.00
## cooking oil                            0.00    0.00    0.00  0.00
## dish cleaner                           0.00    0.00    0.00  0.00
## condensed milk                         0.00    0.00    0.00  0.00
## roll products                          0.00    0.00    0.00  0.00
## photo/film                             0.00    0.00    0.00  0.00
## pet care                               0.00    0.00    0.00  0.00
## chocolate marshmallow                  0.00    0.00    0.00  0.00
## herbs/vegetable juice                  0.00    0.00    0.00  0.00
## whole milk                             0.00    0.00    0.00  0.00
## candles                                0.00    0.00    0.00  0.00
## mayonnaise                             0.00    0.00    0.00  0.00
## Instant food products                  0.00    0.00    0.00  0.00
## sweet spreads                          0.00    0.00    0.00  0.00
## liquor (appetizer)                     0.00    0.00    0.00  0.00
## specialty cheese                       0.00    0.00    0.00  0.00
## frozen potato products                 0.00    0.00    0.00  0.00
## house keeping products                 0.00    0.00    0.00  0.00
## dog food                               0.00    0.00    0.00  0.00
## soy                                    0.00    0.00    0.00  0.00
## instant coffee                         0.00    0.00    0.00  0.00
## pip herbs                              0.00    0.00    0.00  0.00
## zwieback                               0.00    0.00    0.00  0.00
## finished products                      0.01    0.00    0.00  0.00
## popcorn                                0.00    0.01    0.00  0.00
## vinegar                                0.00    0.00    0.01  0.00
## soups                                  0.00    0.00    0.00  0.01
## female sanitary products               0.00    0.00    0.00  0.00
## sparkling wine                         0.00    0.00    0.00  0.00
## dental care                            0.00    0.00    0.00  0.00
## cereals                                0.00    0.00    0.00  0.00
## kitchen towels                         0.00    0.00    0.00  0.00
## curd cheese                            0.00    0.00    0.00  0.00
## other vegetables                       0.00    0.00    0.00  0.00
## rolls/buns                             0.00    0.00    0.00  0.00
## softener                               0.00    0.00    0.00  0.00
## cleaner                                0.00    0.00    0.00  0.00
## spices                                 0.00    0.00    0.00  0.00
## jam                                    0.00    0.00    0.00  0.00
## sauces                                 0.00    0.00    0.00  0.00
## rum                                    0.00    0.00    0.00  0.00
## liver loaf                             0.00    0.00    0.00  0.00
## male cosmetics                         0.00    0.00    0.00  0.00
## meat spreads                           0.00    0.00    0.00  0.00
## packaged herbs/vegetables              0.00    0.00    0.00  0.00
## brandy                                 0.00    0.00    0.00  0.00
## ketchup                                0.00    0.00    0.00  0.00
## abrasive cleaner                       0.00    0.00    0.00  0.00
## light bulbs                            0.00    0.00    0.00  0.00
## artif. sweetener                       0.00    0.00    0.00  0.00
## nuts/prunes                            0.00    0.00    0.00  0.00
## specialty fat                          0.00    0.00    0.00  0.00
## skin care                              0.00    0.00    0.00  0.00
## fish                                   0.00    0.00    0.00  0.00
## potato products                        0.00    0.00    0.00  0.00
## root vegetables                        0.00    0.00    0.00  0.00
## snack products                         0.00    0.00    0.00  0.00
## nut snack                              0.00    0.00    0.00  0.00
## soap                                   0.00    0.00    0.00  0.00
## syrup                                  0.00    0.00    0.00  0.00
## bathroom cleaner                       0.00    0.00    0.00  0.00
## canned fruit                           0.00    0.00    0.00  0.00
## cookware                               0.00    0.00    0.00  0.00
## cooking chocolate                      0.00    0.00    0.00  0.00
## tidbits                                0.00    0.00    0.00  0.00
## cocoa drinks                           0.00    0.00    0.00  0.00
## pudding powder                         0.00    0.00    0.00  0.00
## ready soups                            0.00    0.00    0.00  0.00
## organic marinated meat                 0.00    0.00    0.00  0.00
## flower soil/fertilizer                 0.00    0.00    0.00  0.00
## organic products                       0.00    0.00    0.00  0.00
## pot plants                             0.00    0.00    0.00  0.00
## prosecco                               0.00    0.00    0.00  0.00
## frankfurter                            0.00    0.00    0.00  0.00
## decalcifier                            0.00    0.00    0.00  0.00
## honey                                  0.00    0.00    0.00  0.00
## specialty vegetables                   0.00    0.00    0.00  0.00
## cream                                  0.00    0.00    0.00  0.00
## hair spray                             0.00    0.00    0.00  0.00
## frozen fruits                          0.00    0.00    0.00  0.00
## rubbing alcohol                        0.00    0.00    0.00  0.00
## liqueur                                0.00    0.00    0.00  0.00
## make up remover                        0.00    0.00    0.00  0.00
## salad dressing                         0.00    0.00    0.00  0.00
## frozen chicken                         0.00    0.00    0.00  0.00
## whisky                                 0.00    0.00    0.00  0.00
## baby cosmetics                         0.00    0.00    0.00  0.00
## toilet cleaner                         0.00    0.00    0.00  0.00
## bags                                   0.00    0.00    0.00  0.00
## canned herbs                           0.00    0.00    0.00  0.00
## kitchen utensil                        0.00    0.00    0.00  0.00
## preservation products                  0.00    0.00    0.00  0.00
## baby food                              0.00    0.00    0.00  0.00
## frozen herbss                          0.00    0.00    0.00  0.00
## organic sausage                        0.00    0.00    0.00  0.00
## sound storage medium                   0.00    0.00    0.00  0.00
##                           female sanitary products sparkling wine dental care
## rice                                          0.00           0.00        0.00
## veggies                                       0.00           0.00        0.00
## loaf                                          0.00           0.00        0.00
## coke                                          0.00           0.00        0.00
## yogurt                                        0.00           0.00        0.00
## vegetables                                    0.00           0.00        0.00
## mineral water                                 0.00           0.00        0.00
## Plastic bags                                  0.00           0.00        0.00
## tropical fruit                                0.00           0.00        0.00
## marinated meat                                0.00           0.00        0.00
## pies/pasties                                  0.00           0.00        0.00
## newspapers                                    0.00           0.00        0.00
## citrus                                        0.00           0.00        0.00
## whipped/sour cream                            0.00           0.00        0.00
## heinken                                       0.00           0.00        0.00
## green tea                                     0.00           0.00        0.00
## pip fruit                                     0.00           0.00        0.00
## brown bread                                   0.00           0.00        0.00
## fruit/vegetable juice                         0.00           0.00        0.00
## domestic eggs                                 0.00           0.00        0.00
## coffee                                        0.00           0.00        0.00
## margarine                                     0.00           0.00        0.00
## beef                                          0.00           0.00        0.00
## curd                                          0.00           0.00        0.00
## butter                                        0.00           0.00        0.00
## marinated meats                               0.00           0.00        0.00
## napkins                                       0.00           0.00        0.00
## halal meat                                    0.00           0.00        0.00
## chocolate                                     0.00           0.00        0.00
## frozen vegetables                             0.00           0.00        0.00
## chicken                                       0.00           0.00        0.00
## white bread                                   0.00           0.00        0.00
## cream cheese                                  0.00           0.00        0.00
## waffles                                       0.00           0.00        0.00
## dessert                                       0.00           0.00        0.00
## salty snack                                   0.00           0.00        0.00
## long life bakery product                      0.00           0.00        0.00
## berries                                       0.00           0.00        0.00
## hamburger meat                                0.00           0.00        0.00
## sugar                                         0.00           0.00        0.00
## hygiene articles                              0.00           0.00        0.00
## UHT-milk                                      0.00           0.00        0.00
## onions                                        0.00           0.00        0.00
## candy                                         0.00           0.00        0.00
## specialty chocolate                           0.00           0.00        0.00
## butter milk                                   0.00           0.00        0.00
## oil                                           0.00           0.00        0.00
## frozen meals                                  0.00           0.00        0.00
## misc. beverages                               0.00           0.00        0.00
## specialty bar                                 0.00           0.00        0.00
## ham                                           0.00           0.00        0.00
## beverages                                     0.00           0.00        0.00
## meat                                          0.00           0.00        0.00
## ice cream                                     0.00           0.00        0.00
## sliced cheese                                 0.00           0.00        0.00
## hard cheese                                   0.00           0.00        0.00
## noodles                                       0.00           0.00        0.00
## grapes                                        0.00           0.00        0.00
## cat food                                      0.00           0.00        0.00
## chewing gum                                   0.00           0.00        0.00
## soda                                          0.00           0.00        0.00
## detergent                                     0.00           0.00        0.00
## red/blush wine                                0.00           0.00        0.00
## white wine                                    0.00           0.00        0.00
## turkey                                        0.00           0.00        0.00
## dishes                                        0.00           0.00        0.00
## bottled water                                 0.00           0.00        0.00
## flour                                         0.00           0.00        0.00
## semi-finished bread                           0.00           0.00        0.00
## baking powder                                 0.00           0.00        0.00
## pickled vegetables                            0.00           0.00        0.00
## herbs                                         0.00           0.00        0.00
## tropical herbs                                0.00           0.00        0.00
## soft cheese                                   0.00           0.00        0.00
## tea                                           0.00           0.00        0.00
## processed cheese                              0.00           0.00        0.00
## sausage                                       0.00           0.00        0.00
## pasta                                         0.00           0.00        0.00
## citrus herbs                                  0.00           0.00        0.00
## potted plants                                 0.00           0.00        0.00
## canned fish                                   0.00           0.00        0.00
## seasonal products                             0.00           0.00        0.00
## cake bar                                      0.00           0.00        0.00
## carrots                                       0.00           0.00        0.00
## mustard                                       0.00           0.00        0.00
## packaged fruit/vegetables                     0.00           0.00        0.00
## spread cheese                                 0.00           0.00        0.00
## frozen dessert                                0.00           0.00        0.00
## frozen fish                                   0.00           0.00        0.00
## cling film/bags                               0.00           0.00        0.00
## salt                                          0.00           0.00        0.00
## liquor                                        0.00           0.00        0.00
## canned vegetables                             0.00           0.00        0.00
## bottled beer                                  0.00           0.00        0.00
## flower (seeds)                                0.00           0.00        0.00
## cooking oil                                   0.00           0.00        0.00
## dish cleaner                                  0.00           0.00        0.00
## condensed milk                                0.00           0.00        0.00
## roll products                                 0.00           0.00        0.00
## photo/film                                    0.00           0.00        0.00
## pet care                                      0.00           0.00        0.00
## chocolate marshmallow                         0.00           0.00        0.00
## herbs/vegetable juice                         0.00           0.00        0.00
## whole milk                                    0.00           0.00        0.00
## candles                                       0.00           0.00        0.00
## mayonnaise                                    0.00           0.00        0.00
## Instant food products                         0.00           0.00        0.00
## sweet spreads                                 0.00           0.00        0.00
## liquor (appetizer)                            0.00           0.00        0.00
## specialty cheese                              0.00           0.00        0.00
## frozen potato products                        0.00           0.00        0.00
## house keeping products                        0.00           0.00        0.00
## dog food                                      0.00           0.00        0.00
## soy                                           0.00           0.00        0.00
## instant coffee                                0.00           0.00        0.00
## pip herbs                                     0.00           0.00        0.00
## zwieback                                      0.00           0.00        0.00
## finished products                             0.00           0.00        0.00
## popcorn                                       0.00           0.00        0.00
## vinegar                                       0.00           0.00        0.00
## soups                                         0.00           0.00        0.00
## female sanitary products                      0.01           0.00        0.00
## sparkling wine                                0.00           0.01        0.00
## dental care                                   0.00           0.00        0.01
## cereals                                       0.00           0.00        0.00
## kitchen towels                                0.00           0.00        0.00
## curd cheese                                   0.00           0.00        0.00
## other vegetables                              0.00           0.00        0.00
## rolls/buns                                    0.00           0.00        0.00
## softener                                      0.00           0.00        0.00
## cleaner                                       0.00           0.00        0.00
## spices                                        0.00           0.00        0.00
## jam                                           0.00           0.00        0.00
## sauces                                        0.00           0.00        0.00
## rum                                           0.00           0.00        0.00
## liver loaf                                    0.00           0.00        0.00
## male cosmetics                                0.00           0.00        0.00
## meat spreads                                  0.00           0.00        0.00
## packaged herbs/vegetables                     0.00           0.00        0.00
## brandy                                        0.00           0.00        0.00
## ketchup                                       0.00           0.00        0.00
## abrasive cleaner                              0.00           0.00        0.00
## light bulbs                                   0.00           0.00        0.00
## artif. sweetener                              0.00           0.00        0.00
## nuts/prunes                                   0.00           0.00        0.00
## specialty fat                                 0.00           0.00        0.00
## skin care                                     0.00           0.00        0.00
## fish                                          0.00           0.00        0.00
## potato products                               0.00           0.00        0.00
## root vegetables                               0.00           0.00        0.00
## snack products                                0.00           0.00        0.00
## nut snack                                     0.00           0.00        0.00
## soap                                          0.00           0.00        0.00
## syrup                                         0.00           0.00        0.00
## bathroom cleaner                              0.00           0.00        0.00
## canned fruit                                  0.00           0.00        0.00
## cookware                                      0.00           0.00        0.00
## cooking chocolate                             0.00           0.00        0.00
## tidbits                                       0.00           0.00        0.00
## cocoa drinks                                  0.00           0.00        0.00
## pudding powder                                0.00           0.00        0.00
## ready soups                                   0.00           0.00        0.00
## organic marinated meat                        0.00           0.00        0.00
## flower soil/fertilizer                        0.00           0.00        0.00
## organic products                              0.00           0.00        0.00
## pot plants                                    0.00           0.00        0.00
## prosecco                                      0.00           0.00        0.00
## frankfurter                                   0.00           0.00        0.00
## decalcifier                                   0.00           0.00        0.00
## honey                                         0.00           0.00        0.00
## specialty vegetables                          0.00           0.00        0.00
## cream                                         0.00           0.00        0.00
## hair spray                                    0.00           0.00        0.00
## frozen fruits                                 0.00           0.00        0.00
## rubbing alcohol                               0.00           0.00        0.00
## liqueur                                       0.00           0.00        0.00
## make up remover                               0.00           0.00        0.00
## salad dressing                                0.00           0.00        0.00
## frozen chicken                                0.00           0.00        0.00
## whisky                                        0.00           0.00        0.00
## baby cosmetics                                0.00           0.00        0.00
## toilet cleaner                                0.00           0.00        0.00
## bags                                          0.00           0.00        0.00
## canned herbs                                  0.00           0.00        0.00
## kitchen utensil                               0.00           0.00        0.00
## preservation products                         0.00           0.00        0.00
## baby food                                     0.00           0.00        0.00
## frozen herbss                                 0.00           0.00        0.00
## organic sausage                               0.00           0.00        0.00
## sound storage medium                          0.00           0.00        0.00
##                           cereals kitchen towels curd cheese other vegetables
## rice                         0.00           0.00        0.00             0.00
## veggies                      0.00           0.00        0.00             0.00
## loaf                         0.00           0.00        0.00             0.00
## coke                         0.00           0.00        0.00             0.00
## yogurt                       0.00           0.00        0.00             0.00
## vegetables                   0.00           0.00        0.00             0.00
## mineral water                0.00           0.00        0.00             0.00
## Plastic bags                 0.00           0.00        0.00             0.00
## tropical fruit               0.00           0.00        0.00             0.00
## marinated meat               0.00           0.00        0.00             0.00
## pies/pasties                 0.00           0.00        0.00             0.00
## newspapers                   0.00           0.00        0.00             0.00
## citrus                       0.00           0.00        0.00             0.00
## whipped/sour cream           0.00           0.00        0.00             0.00
## heinken                      0.00           0.00        0.00             0.00
## green tea                    0.00           0.00        0.00             0.00
## pip fruit                    0.00           0.00        0.00             0.00
## brown bread                  0.00           0.00        0.00             0.00
## fruit/vegetable juice        0.00           0.00        0.00             0.00
## domestic eggs                0.00           0.00        0.00             0.00
## coffee                       0.00           0.00        0.00             0.00
## margarine                    0.00           0.00        0.00             0.00
## beef                         0.00           0.00        0.00             0.00
## curd                         0.00           0.00        0.00             0.00
## butter                       0.00           0.00        0.00             0.00
## marinated meats              0.00           0.00        0.00             0.00
## napkins                      0.00           0.00        0.00             0.00
## halal meat                   0.00           0.00        0.00             0.00
## chocolate                    0.00           0.00        0.00             0.00
## frozen vegetables            0.00           0.00        0.00             0.00
## chicken                      0.00           0.00        0.00             0.00
## white bread                  0.00           0.00        0.00             0.00
## cream cheese                 0.00           0.00        0.00             0.00
## waffles                      0.00           0.00        0.00             0.00
## dessert                      0.00           0.00        0.00             0.00
## salty snack                  0.00           0.00        0.00             0.00
## long life bakery product     0.00           0.00        0.00             0.00
## berries                      0.00           0.00        0.00             0.00
## hamburger meat               0.00           0.00        0.00             0.00
## sugar                        0.00           0.00        0.00             0.00
## hygiene articles             0.00           0.00        0.00             0.00
## UHT-milk                     0.00           0.00        0.00             0.00
## onions                       0.00           0.00        0.00             0.00
## candy                        0.00           0.00        0.00             0.00
## specialty chocolate          0.00           0.00        0.00             0.00
## butter milk                  0.00           0.00        0.00             0.00
## oil                          0.00           0.00        0.00             0.00
## frozen meals                 0.00           0.00        0.00             0.00
## misc. beverages              0.00           0.00        0.00             0.00
## specialty bar                0.00           0.00        0.00             0.00
## ham                          0.00           0.00        0.00             0.00
## beverages                    0.00           0.00        0.00             0.00
## meat                         0.00           0.00        0.00             0.00
## ice cream                    0.00           0.00        0.00             0.00
## sliced cheese                0.00           0.00        0.00             0.00
## hard cheese                  0.00           0.00        0.00             0.00
## noodles                      0.00           0.00        0.00             0.00
## grapes                       0.00           0.00        0.00             0.00
## cat food                     0.00           0.00        0.00             0.00
## chewing gum                  0.00           0.00        0.00             0.00
## soda                         0.00           0.00        0.00             0.00
## detergent                    0.00           0.00        0.00             0.00
## red/blush wine               0.00           0.00        0.00             0.00
## white wine                   0.00           0.00        0.00             0.00
## turkey                       0.00           0.00        0.00             0.00
## dishes                       0.00           0.00        0.00             0.00
## bottled water                0.00           0.00        0.00             0.00
## flour                        0.00           0.00        0.00             0.00
## semi-finished bread          0.00           0.00        0.00             0.00
## baking powder                0.00           0.00        0.00             0.00
## pickled vegetables           0.00           0.00        0.00             0.00
## herbs                        0.00           0.00        0.00             0.00
## tropical herbs               0.00           0.00        0.00             0.00
## soft cheese                  0.00           0.00        0.00             0.00
## tea                          0.00           0.00        0.00             0.00
## processed cheese             0.00           0.00        0.00             0.00
## sausage                      0.00           0.00        0.00             0.00
## pasta                        0.00           0.00        0.00             0.00
## citrus herbs                 0.00           0.00        0.00             0.00
## potted plants                0.00           0.00        0.00             0.00
## canned fish                  0.00           0.00        0.00             0.00
## seasonal products            0.00           0.00        0.00             0.00
## cake bar                     0.00           0.00        0.00             0.00
## carrots                      0.00           0.00        0.00             0.00
## mustard                      0.00           0.00        0.00             0.00
## packaged fruit/vegetables    0.00           0.00        0.00             0.00
## spread cheese                0.00           0.00        0.00             0.00
## frozen dessert               0.00           0.00        0.00             0.00
## frozen fish                  0.00           0.00        0.00             0.00
## cling film/bags              0.00           0.00        0.00             0.00
## salt                         0.00           0.00        0.00             0.00
## liquor                       0.00           0.00        0.00             0.00
## canned vegetables            0.00           0.00        0.00             0.00
## bottled beer                 0.00           0.00        0.00             0.00
## flower (seeds)               0.00           0.00        0.00             0.00
## cooking oil                  0.00           0.00        0.00             0.00
## dish cleaner                 0.00           0.00        0.00             0.00
## condensed milk               0.00           0.00        0.00             0.00
## roll products                0.00           0.00        0.00             0.00
## photo/film                   0.00           0.00        0.00             0.00
## pet care                     0.00           0.00        0.00             0.00
## chocolate marshmallow        0.00           0.00        0.00             0.00
## herbs/vegetable juice        0.00           0.00        0.00             0.00
## whole milk                   0.00           0.00        0.00             0.00
## candles                      0.00           0.00        0.00             0.00
## mayonnaise                   0.00           0.00        0.00             0.00
## Instant food products        0.00           0.00        0.00             0.00
## sweet spreads                0.00           0.00        0.00             0.00
## liquor (appetizer)           0.00           0.00        0.00             0.00
## specialty cheese             0.00           0.00        0.00             0.00
## frozen potato products       0.00           0.00        0.00             0.00
## house keeping products       0.00           0.00        0.00             0.00
## dog food                     0.00           0.00        0.00             0.00
## soy                          0.00           0.00        0.00             0.00
## instant coffee               0.00           0.00        0.00             0.00
## pip herbs                    0.00           0.00        0.00             0.00
## zwieback                     0.00           0.00        0.00             0.00
## finished products            0.00           0.00        0.00             0.00
## popcorn                      0.00           0.00        0.00             0.00
## vinegar                      0.00           0.00        0.00             0.00
## soups                        0.00           0.00        0.00             0.00
## female sanitary products     0.00           0.00        0.00             0.00
## sparkling wine               0.00           0.00        0.00             0.00
## dental care                  0.00           0.00        0.00             0.00
## cereals                      0.01           0.00        0.00             0.00
## kitchen towels               0.00           0.01        0.00             0.00
## curd cheese                  0.00           0.00        0.01             0.00
## other vegetables             0.00           0.00        0.00             0.01
## rolls/buns                   0.00           0.00        0.00             0.00
## softener                     0.00           0.00        0.00             0.00
## cleaner                      0.00           0.00        0.00             0.00
## spices                       0.00           0.00        0.00             0.00
## jam                          0.00           0.00        0.00             0.00
## sauces                       0.00           0.00        0.00             0.00
## rum                          0.00           0.00        0.00             0.00
## liver loaf                   0.00           0.00        0.00             0.00
## male cosmetics               0.00           0.00        0.00             0.00
## meat spreads                 0.00           0.00        0.00             0.00
## packaged herbs/vegetables    0.00           0.00        0.00             0.00
## brandy                       0.00           0.00        0.00             0.00
## ketchup                      0.00           0.00        0.00             0.00
## abrasive cleaner             0.00           0.00        0.00             0.00
## light bulbs                  0.00           0.00        0.00             0.00
## artif. sweetener             0.00           0.00        0.00             0.00
## nuts/prunes                  0.00           0.00        0.00             0.00
## specialty fat                0.00           0.00        0.00             0.00
## skin care                    0.00           0.00        0.00             0.00
## fish                         0.00           0.00        0.00             0.00
## potato products              0.00           0.00        0.00             0.00
## root vegetables              0.00           0.00        0.00             0.00
## snack products               0.00           0.00        0.00             0.00
## nut snack                    0.00           0.00        0.00             0.00
## soap                         0.00           0.00        0.00             0.00
## syrup                        0.00           0.00        0.00             0.00
## bathroom cleaner             0.00           0.00        0.00             0.00
## canned fruit                 0.00           0.00        0.00             0.00
## cookware                     0.00           0.00        0.00             0.00
## cooking chocolate            0.00           0.00        0.00             0.00
## tidbits                      0.00           0.00        0.00             0.00
## cocoa drinks                 0.00           0.00        0.00             0.00
## pudding powder               0.00           0.00        0.00             0.00
## ready soups                  0.00           0.00        0.00             0.00
## organic marinated meat       0.00           0.00        0.00             0.00
## flower soil/fertilizer       0.00           0.00        0.00             0.00
## organic products             0.00           0.00        0.00             0.00
## pot plants                   0.00           0.00        0.00             0.00
## prosecco                     0.00           0.00        0.00             0.00
## frankfurter                  0.00           0.00        0.00             0.00
## decalcifier                  0.00           0.00        0.00             0.00
## honey                        0.00           0.00        0.00             0.00
## specialty vegetables         0.00           0.00        0.00             0.00
## cream                        0.00           0.00        0.00             0.00
## hair spray                   0.00           0.00        0.00             0.00
## frozen fruits                0.00           0.00        0.00             0.00
## rubbing alcohol              0.00           0.00        0.00             0.00
## liqueur                      0.00           0.00        0.00             0.00
## make up remover              0.00           0.00        0.00             0.00
## salad dressing               0.00           0.00        0.00             0.00
## frozen chicken               0.00           0.00        0.00             0.00
## whisky                       0.00           0.00        0.00             0.00
## baby cosmetics               0.00           0.00        0.00             0.00
## toilet cleaner               0.00           0.00        0.00             0.00
## bags                         0.00           0.00        0.00             0.00
## canned herbs                 0.00           0.00        0.00             0.00
## kitchen utensil              0.00           0.00        0.00             0.00
## preservation products        0.00           0.00        0.00             0.00
## baby food                    0.00           0.00        0.00             0.00
## frozen herbss                0.00           0.00        0.00             0.00
## organic sausage              0.00           0.00        0.00             0.00
## sound storage medium         0.00           0.00        0.00             0.00
##                           rolls/buns softener cleaner spices  jam sauces rum
## rice                            0.00     0.00    0.00   0.00 0.00   0.00   0
## veggies                         0.00     0.00    0.00   0.00 0.00   0.00   0
## loaf                            0.00     0.00    0.00   0.00 0.00   0.00   0
## coke                            0.00     0.00    0.00   0.00 0.00   0.00   0
## yogurt                          0.00     0.00    0.00   0.00 0.00   0.00   0
## vegetables                      0.00     0.00    0.00   0.00 0.00   0.00   0
## mineral water                   0.00     0.00    0.00   0.00 0.00   0.00   0
## Plastic bags                    0.00     0.00    0.00   0.00 0.00   0.00   0
## tropical fruit                  0.00     0.00    0.00   0.00 0.00   0.00   0
## marinated meat                  0.00     0.00    0.00   0.00 0.00   0.00   0
## pies/pasties                    0.00     0.00    0.00   0.00 0.00   0.00   0
## newspapers                      0.00     0.00    0.00   0.00 0.00   0.00   0
## citrus                          0.00     0.00    0.00   0.00 0.00   0.00   0
## whipped/sour cream              0.00     0.00    0.00   0.00 0.00   0.00   0
## heinken                         0.00     0.00    0.00   0.00 0.00   0.00   0
## green tea                       0.00     0.00    0.00   0.00 0.00   0.00   0
## pip fruit                       0.00     0.00    0.00   0.00 0.00   0.00   0
## brown bread                     0.00     0.00    0.00   0.00 0.00   0.00   0
## fruit/vegetable juice           0.00     0.00    0.00   0.00 0.00   0.00   0
## domestic eggs                   0.00     0.00    0.00   0.00 0.00   0.00   0
## coffee                          0.00     0.00    0.00   0.00 0.00   0.00   0
## margarine                       0.00     0.00    0.00   0.00 0.00   0.00   0
## beef                            0.00     0.00    0.00   0.00 0.00   0.00   0
## curd                            0.00     0.00    0.00   0.00 0.00   0.00   0
## butter                          0.00     0.00    0.00   0.00 0.00   0.00   0
## marinated meats                 0.00     0.00    0.00   0.00 0.00   0.00   0
## napkins                         0.00     0.00    0.00   0.00 0.00   0.00   0
## halal meat                      0.00     0.00    0.00   0.00 0.00   0.00   0
## chocolate                       0.00     0.00    0.00   0.00 0.00   0.00   0
## frozen vegetables               0.00     0.00    0.00   0.00 0.00   0.00   0
## chicken                         0.00     0.00    0.00   0.00 0.00   0.00   0
## white bread                     0.00     0.00    0.00   0.00 0.00   0.00   0
## cream cheese                    0.00     0.00    0.00   0.00 0.00   0.00   0
## waffles                         0.00     0.00    0.00   0.00 0.00   0.00   0
## dessert                         0.00     0.00    0.00   0.00 0.00   0.00   0
## salty snack                     0.00     0.00    0.00   0.00 0.00   0.00   0
## long life bakery product        0.00     0.00    0.00   0.00 0.00   0.00   0
## berries                         0.00     0.00    0.00   0.00 0.00   0.00   0
## hamburger meat                  0.00     0.00    0.00   0.00 0.00   0.00   0
## sugar                           0.00     0.00    0.00   0.00 0.00   0.00   0
## hygiene articles                0.00     0.00    0.00   0.00 0.00   0.00   0
## UHT-milk                        0.00     0.00    0.00   0.00 0.00   0.00   0
## onions                          0.00     0.00    0.00   0.00 0.00   0.00   0
## candy                           0.00     0.00    0.00   0.00 0.00   0.00   0
## specialty chocolate             0.00     0.00    0.00   0.00 0.00   0.00   0
## butter milk                     0.00     0.00    0.00   0.00 0.00   0.00   0
## oil                             0.00     0.00    0.00   0.00 0.00   0.00   0
## frozen meals                    0.00     0.00    0.00   0.00 0.00   0.00   0
## misc. beverages                 0.00     0.00    0.00   0.00 0.00   0.00   0
## specialty bar                   0.00     0.00    0.00   0.00 0.00   0.00   0
## ham                             0.00     0.00    0.00   0.00 0.00   0.00   0
## beverages                       0.00     0.00    0.00   0.00 0.00   0.00   0
## meat                            0.00     0.00    0.00   0.00 0.00   0.00   0
## ice cream                       0.00     0.00    0.00   0.00 0.00   0.00   0
## sliced cheese                   0.00     0.00    0.00   0.00 0.00   0.00   0
## hard cheese                     0.00     0.00    0.00   0.00 0.00   0.00   0
## noodles                         0.00     0.00    0.00   0.00 0.00   0.00   0
## grapes                          0.00     0.00    0.00   0.00 0.00   0.00   0
## cat food                        0.00     0.00    0.00   0.00 0.00   0.00   0
## chewing gum                     0.00     0.00    0.00   0.00 0.00   0.00   0
## soda                            0.00     0.00    0.00   0.00 0.00   0.00   0
## detergent                       0.00     0.00    0.00   0.00 0.00   0.00   0
## red/blush wine                  0.00     0.00    0.00   0.00 0.00   0.00   0
## white wine                      0.00     0.00    0.00   0.00 0.00   0.00   0
## turkey                          0.00     0.00    0.00   0.00 0.00   0.00   0
## dishes                          0.00     0.00    0.00   0.00 0.00   0.00   0
## bottled water                   0.00     0.00    0.00   0.00 0.00   0.00   0
## flour                           0.00     0.00    0.00   0.00 0.00   0.00   0
## semi-finished bread             0.00     0.00    0.00   0.00 0.00   0.00   0
## baking powder                   0.00     0.00    0.00   0.00 0.00   0.00   0
## pickled vegetables              0.00     0.00    0.00   0.00 0.00   0.00   0
## herbs                           0.00     0.00    0.00   0.00 0.00   0.00   0
## tropical herbs                  0.00     0.00    0.00   0.00 0.00   0.00   0
## soft cheese                     0.00     0.00    0.00   0.00 0.00   0.00   0
## tea                             0.00     0.00    0.00   0.00 0.00   0.00   0
## processed cheese                0.00     0.00    0.00   0.00 0.00   0.00   0
## sausage                         0.00     0.00    0.00   0.00 0.00   0.00   0
## pasta                           0.00     0.00    0.00   0.00 0.00   0.00   0
## citrus herbs                    0.00     0.00    0.00   0.00 0.00   0.00   0
## potted plants                   0.00     0.00    0.00   0.00 0.00   0.00   0
## canned fish                     0.00     0.00    0.00   0.00 0.00   0.00   0
## seasonal products               0.00     0.00    0.00   0.00 0.00   0.00   0
## cake bar                        0.00     0.00    0.00   0.00 0.00   0.00   0
## carrots                         0.00     0.00    0.00   0.00 0.00   0.00   0
## mustard                         0.00     0.00    0.00   0.00 0.00   0.00   0
## packaged fruit/vegetables       0.00     0.00    0.00   0.00 0.00   0.00   0
## spread cheese                   0.00     0.00    0.00   0.00 0.00   0.00   0
## frozen dessert                  0.00     0.00    0.00   0.00 0.00   0.00   0
## frozen fish                     0.00     0.00    0.00   0.00 0.00   0.00   0
## cling film/bags                 0.00     0.00    0.00   0.00 0.00   0.00   0
## salt                            0.00     0.00    0.00   0.00 0.00   0.00   0
## liquor                          0.00     0.00    0.00   0.00 0.00   0.00   0
## canned vegetables               0.00     0.00    0.00   0.00 0.00   0.00   0
## bottled beer                    0.00     0.00    0.00   0.00 0.00   0.00   0
## flower (seeds)                  0.00     0.00    0.00   0.00 0.00   0.00   0
## cooking oil                     0.00     0.00    0.00   0.00 0.00   0.00   0
## dish cleaner                    0.00     0.00    0.00   0.00 0.00   0.00   0
## condensed milk                  0.00     0.00    0.00   0.00 0.00   0.00   0
## roll products                   0.00     0.00    0.00   0.00 0.00   0.00   0
## photo/film                      0.00     0.00    0.00   0.00 0.00   0.00   0
## pet care                        0.00     0.00    0.00   0.00 0.00   0.00   0
## chocolate marshmallow           0.00     0.00    0.00   0.00 0.00   0.00   0
## herbs/vegetable juice           0.00     0.00    0.00   0.00 0.00   0.00   0
## whole milk                      0.00     0.00    0.00   0.00 0.00   0.00   0
## candles                         0.00     0.00    0.00   0.00 0.00   0.00   0
## mayonnaise                      0.00     0.00    0.00   0.00 0.00   0.00   0
## Instant food products           0.00     0.00    0.00   0.00 0.00   0.00   0
## sweet spreads                   0.00     0.00    0.00   0.00 0.00   0.00   0
## liquor (appetizer)              0.00     0.00    0.00   0.00 0.00   0.00   0
## specialty cheese                0.00     0.00    0.00   0.00 0.00   0.00   0
## frozen potato products          0.00     0.00    0.00   0.00 0.00   0.00   0
## house keeping products          0.00     0.00    0.00   0.00 0.00   0.00   0
## dog food                        0.00     0.00    0.00   0.00 0.00   0.00   0
## soy                             0.00     0.00    0.00   0.00 0.00   0.00   0
## instant coffee                  0.00     0.00    0.00   0.00 0.00   0.00   0
## pip herbs                       0.00     0.00    0.00   0.00 0.00   0.00   0
## zwieback                        0.00     0.00    0.00   0.00 0.00   0.00   0
## finished products               0.00     0.00    0.00   0.00 0.00   0.00   0
## popcorn                         0.00     0.00    0.00   0.00 0.00   0.00   0
## vinegar                         0.00     0.00    0.00   0.00 0.00   0.00   0
## soups                           0.00     0.00    0.00   0.00 0.00   0.00   0
## female sanitary products        0.00     0.00    0.00   0.00 0.00   0.00   0
## sparkling wine                  0.00     0.00    0.00   0.00 0.00   0.00   0
## dental care                     0.00     0.00    0.00   0.00 0.00   0.00   0
## cereals                         0.00     0.00    0.00   0.00 0.00   0.00   0
## kitchen towels                  0.00     0.00    0.00   0.00 0.00   0.00   0
## curd cheese                     0.00     0.00    0.00   0.00 0.00   0.00   0
## other vegetables                0.00     0.00    0.00   0.00 0.00   0.00   0
## rolls/buns                      0.01     0.00    0.00   0.00 0.00   0.00   0
## softener                        0.00     0.01    0.00   0.00 0.00   0.00   0
## cleaner                         0.00     0.00    0.01   0.00 0.00   0.00   0
## spices                          0.00     0.00    0.00   0.01 0.00   0.00   0
## jam                             0.00     0.00    0.00   0.00 0.01   0.00   0
## sauces                          0.00     0.00    0.00   0.00 0.00   0.01   0
## rum                             0.00     0.00    0.00   0.00 0.00   0.00   0
## liver loaf                      0.00     0.00    0.00   0.00 0.00   0.00   0
## male cosmetics                  0.00     0.00    0.00   0.00 0.00   0.00   0
## meat spreads                    0.00     0.00    0.00   0.00 0.00   0.00   0
## packaged herbs/vegetables       0.00     0.00    0.00   0.00 0.00   0.00   0
## brandy                          0.00     0.00    0.00   0.00 0.00   0.00   0
## ketchup                         0.00     0.00    0.00   0.00 0.00   0.00   0
## abrasive cleaner                0.00     0.00    0.00   0.00 0.00   0.00   0
## light bulbs                     0.00     0.00    0.00   0.00 0.00   0.00   0
## artif. sweetener                0.00     0.00    0.00   0.00 0.00   0.00   0
## nuts/prunes                     0.00     0.00    0.00   0.00 0.00   0.00   0
## specialty fat                   0.00     0.00    0.00   0.00 0.00   0.00   0
## skin care                       0.00     0.00    0.00   0.00 0.00   0.00   0
## fish                            0.00     0.00    0.00   0.00 0.00   0.00   0
## potato products                 0.00     0.00    0.00   0.00 0.00   0.00   0
## root vegetables                 0.00     0.00    0.00   0.00 0.00   0.00   0
## snack products                  0.00     0.00    0.00   0.00 0.00   0.00   0
## nut snack                       0.00     0.00    0.00   0.00 0.00   0.00   0
## soap                            0.00     0.00    0.00   0.00 0.00   0.00   0
## syrup                           0.00     0.00    0.00   0.00 0.00   0.00   0
## bathroom cleaner                0.00     0.00    0.00   0.00 0.00   0.00   0
## canned fruit                    0.00     0.00    0.00   0.00 0.00   0.00   0
## cookware                        0.00     0.00    0.00   0.00 0.00   0.00   0
## cooking chocolate               0.00     0.00    0.00   0.00 0.00   0.00   0
## tidbits                         0.00     0.00    0.00   0.00 0.00   0.00   0
## cocoa drinks                    0.00     0.00    0.00   0.00 0.00   0.00   0
## pudding powder                  0.00     0.00    0.00   0.00 0.00   0.00   0
## ready soups                     0.00     0.00    0.00   0.00 0.00   0.00   0
## organic marinated meat          0.00     0.00    0.00   0.00 0.00   0.00   0
## flower soil/fertilizer          0.00     0.00    0.00   0.00 0.00   0.00   0
## organic products                0.00     0.00    0.00   0.00 0.00   0.00   0
## pot plants                      0.00     0.00    0.00   0.00 0.00   0.00   0
## prosecco                        0.00     0.00    0.00   0.00 0.00   0.00   0
## frankfurter                     0.00     0.00    0.00   0.00 0.00   0.00   0
## decalcifier                     0.00     0.00    0.00   0.00 0.00   0.00   0
## honey                           0.00     0.00    0.00   0.00 0.00   0.00   0
## specialty vegetables            0.00     0.00    0.00   0.00 0.00   0.00   0
## cream                           0.00     0.00    0.00   0.00 0.00   0.00   0
## hair spray                      0.00     0.00    0.00   0.00 0.00   0.00   0
## frozen fruits                   0.00     0.00    0.00   0.00 0.00   0.00   0
## rubbing alcohol                 0.00     0.00    0.00   0.00 0.00   0.00   0
## liqueur                         0.00     0.00    0.00   0.00 0.00   0.00   0
## make up remover                 0.00     0.00    0.00   0.00 0.00   0.00   0
## salad dressing                  0.00     0.00    0.00   0.00 0.00   0.00   0
## frozen chicken                  0.00     0.00    0.00   0.00 0.00   0.00   0
## whisky                          0.00     0.00    0.00   0.00 0.00   0.00   0
## baby cosmetics                  0.00     0.00    0.00   0.00 0.00   0.00   0
## toilet cleaner                  0.00     0.00    0.00   0.00 0.00   0.00   0
## bags                            0.00     0.00    0.00   0.00 0.00   0.00   0
## canned herbs                    0.00     0.00    0.00   0.00 0.00   0.00   0
## kitchen utensil                 0.00     0.00    0.00   0.00 0.00   0.00   0
## preservation products           0.00     0.00    0.00   0.00 0.00   0.00   0
## baby food                       0.00     0.00    0.00   0.00 0.00   0.00   0
## frozen herbss                   0.00     0.00    0.00   0.00 0.00   0.00   0
## organic sausage                 0.00     0.00    0.00   0.00 0.00   0.00   0
## sound storage medium            0.00     0.00    0.00   0.00 0.00   0.00   0
##                           liver loaf male cosmetics meat spreads
## rice                               0              0            0
## veggies                            0              0            0
## loaf                               0              0            0
## coke                               0              0            0
## yogurt                             0              0            0
## vegetables                         0              0            0
## mineral water                      0              0            0
## Plastic bags                       0              0            0
## tropical fruit                     0              0            0
## marinated meat                     0              0            0
## pies/pasties                       0              0            0
## newspapers                         0              0            0
## citrus                             0              0            0
## whipped/sour cream                 0              0            0
## heinken                            0              0            0
## green tea                          0              0            0
## pip fruit                          0              0            0
## brown bread                        0              0            0
## fruit/vegetable juice              0              0            0
## domestic eggs                      0              0            0
## coffee                             0              0            0
## margarine                          0              0            0
## beef                               0              0            0
## curd                               0              0            0
## butter                             0              0            0
## marinated meats                    0              0            0
## napkins                            0              0            0
## halal meat                         0              0            0
## chocolate                          0              0            0
## frozen vegetables                  0              0            0
## chicken                            0              0            0
## white bread                        0              0            0
## cream cheese                       0              0            0
## waffles                            0              0            0
## dessert                            0              0            0
## salty snack                        0              0            0
## long life bakery product           0              0            0
## berries                            0              0            0
## hamburger meat                     0              0            0
## sugar                              0              0            0
## hygiene articles                   0              0            0
## UHT-milk                           0              0            0
## onions                             0              0            0
## candy                              0              0            0
## specialty chocolate                0              0            0
## butter milk                        0              0            0
## oil                                0              0            0
## frozen meals                       0              0            0
## misc. beverages                    0              0            0
## specialty bar                      0              0            0
## ham                                0              0            0
## beverages                          0              0            0
## meat                               0              0            0
## ice cream                          0              0            0
## sliced cheese                      0              0            0
## hard cheese                        0              0            0
## noodles                            0              0            0
## grapes                             0              0            0
## cat food                           0              0            0
## chewing gum                        0              0            0
## soda                               0              0            0
## detergent                          0              0            0
## red/blush wine                     0              0            0
## white wine                         0              0            0
## turkey                             0              0            0
## dishes                             0              0            0
## bottled water                      0              0            0
## flour                              0              0            0
## semi-finished bread                0              0            0
## baking powder                      0              0            0
## pickled vegetables                 0              0            0
## herbs                              0              0            0
## tropical herbs                     0              0            0
## soft cheese                        0              0            0
## tea                                0              0            0
## processed cheese                   0              0            0
## sausage                            0              0            0
## pasta                              0              0            0
## citrus herbs                       0              0            0
## potted plants                      0              0            0
## canned fish                        0              0            0
## seasonal products                  0              0            0
## cake bar                           0              0            0
## carrots                            0              0            0
## mustard                            0              0            0
## packaged fruit/vegetables          0              0            0
## spread cheese                      0              0            0
## frozen dessert                     0              0            0
## frozen fish                        0              0            0
## cling film/bags                    0              0            0
## salt                               0              0            0
## liquor                             0              0            0
## canned vegetables                  0              0            0
## bottled beer                       0              0            0
## flower (seeds)                     0              0            0
## cooking oil                        0              0            0
## dish cleaner                       0              0            0
## condensed milk                     0              0            0
## roll products                      0              0            0
## photo/film                         0              0            0
## pet care                           0              0            0
## chocolate marshmallow              0              0            0
## herbs/vegetable juice              0              0            0
## whole milk                         0              0            0
## candles                            0              0            0
## mayonnaise                         0              0            0
## Instant food products              0              0            0
## sweet spreads                      0              0            0
## liquor (appetizer)                 0              0            0
## specialty cheese                   0              0            0
## frozen potato products             0              0            0
## house keeping products             0              0            0
## dog food                           0              0            0
## soy                                0              0            0
## instant coffee                     0              0            0
## pip herbs                          0              0            0
## zwieback                           0              0            0
## finished products                  0              0            0
## popcorn                            0              0            0
## vinegar                            0              0            0
## soups                              0              0            0
## female sanitary products           0              0            0
## sparkling wine                     0              0            0
## dental care                        0              0            0
## cereals                            0              0            0
## kitchen towels                     0              0            0
## curd cheese                        0              0            0
## other vegetables                   0              0            0
## rolls/buns                         0              0            0
## softener                           0              0            0
## cleaner                            0              0            0
## spices                             0              0            0
## jam                                0              0            0
## sauces                             0              0            0
## rum                                0              0            0
## liver loaf                         0              0            0
## male cosmetics                     0              0            0
## meat spreads                       0              0            0
## packaged herbs/vegetables          0              0            0
## brandy                             0              0            0
## ketchup                            0              0            0
## abrasive cleaner                   0              0            0
## light bulbs                        0              0            0
## artif. sweetener                   0              0            0
## nuts/prunes                        0              0            0
## specialty fat                      0              0            0
## skin care                          0              0            0
## fish                               0              0            0
## potato products                    0              0            0
## root vegetables                    0              0            0
## snack products                     0              0            0
## nut snack                          0              0            0
## soap                               0              0            0
## syrup                              0              0            0
## bathroom cleaner                   0              0            0
## canned fruit                       0              0            0
## cookware                           0              0            0
## cooking chocolate                  0              0            0
## tidbits                            0              0            0
## cocoa drinks                       0              0            0
## pudding powder                     0              0            0
## ready soups                        0              0            0
## organic marinated meat             0              0            0
## flower soil/fertilizer             0              0            0
## organic products                   0              0            0
## pot plants                         0              0            0
## prosecco                           0              0            0
## frankfurter                        0              0            0
## decalcifier                        0              0            0
## honey                              0              0            0
## specialty vegetables               0              0            0
## cream                              0              0            0
## hair spray                         0              0            0
## frozen fruits                      0              0            0
## rubbing alcohol                    0              0            0
## liqueur                            0              0            0
## make up remover                    0              0            0
## salad dressing                     0              0            0
## frozen chicken                     0              0            0
## whisky                             0              0            0
## baby cosmetics                     0              0            0
## toilet cleaner                     0              0            0
## bags                               0              0            0
## canned herbs                       0              0            0
## kitchen utensil                    0              0            0
## preservation products              0              0            0
## baby food                          0              0            0
## frozen herbss                      0              0            0
## organic sausage                    0              0            0
## sound storage medium               0              0            0
##                           packaged herbs/vegetables brandy ketchup
## rice                                              0      0       0
## veggies                                           0      0       0
## loaf                                              0      0       0
## coke                                              0      0       0
## yogurt                                            0      0       0
## vegetables                                        0      0       0
## mineral water                                     0      0       0
## Plastic bags                                      0      0       0
## tropical fruit                                    0      0       0
## marinated meat                                    0      0       0
## pies/pasties                                      0      0       0
## newspapers                                        0      0       0
## citrus                                            0      0       0
## whipped/sour cream                                0      0       0
## heinken                                           0      0       0
## green tea                                         0      0       0
## pip fruit                                         0      0       0
## brown bread                                       0      0       0
## fruit/vegetable juice                             0      0       0
## domestic eggs                                     0      0       0
## coffee                                            0      0       0
## margarine                                         0      0       0
## beef                                              0      0       0
## curd                                              0      0       0
## butter                                            0      0       0
## marinated meats                                   0      0       0
## napkins                                           0      0       0
## halal meat                                        0      0       0
## chocolate                                         0      0       0
## frozen vegetables                                 0      0       0
## chicken                                           0      0       0
## white bread                                       0      0       0
## cream cheese                                      0      0       0
## waffles                                           0      0       0
## dessert                                           0      0       0
## salty snack                                       0      0       0
## long life bakery product                          0      0       0
## berries                                           0      0       0
## hamburger meat                                    0      0       0
## sugar                                             0      0       0
## hygiene articles                                  0      0       0
## UHT-milk                                          0      0       0
## onions                                            0      0       0
## candy                                             0      0       0
## specialty chocolate                               0      0       0
## butter milk                                       0      0       0
## oil                                               0      0       0
## frozen meals                                      0      0       0
## misc. beverages                                   0      0       0
## specialty bar                                     0      0       0
## ham                                               0      0       0
## beverages                                         0      0       0
## meat                                              0      0       0
## ice cream                                         0      0       0
## sliced cheese                                     0      0       0
## hard cheese                                       0      0       0
## noodles                                           0      0       0
## grapes                                            0      0       0
## cat food                                          0      0       0
## chewing gum                                       0      0       0
## soda                                              0      0       0
## detergent                                         0      0       0
## red/blush wine                                    0      0       0
## white wine                                        0      0       0
## turkey                                            0      0       0
## dishes                                            0      0       0
## bottled water                                     0      0       0
## flour                                             0      0       0
## semi-finished bread                               0      0       0
## baking powder                                     0      0       0
## pickled vegetables                                0      0       0
## herbs                                             0      0       0
## tropical herbs                                    0      0       0
## soft cheese                                       0      0       0
## tea                                               0      0       0
## processed cheese                                  0      0       0
## sausage                                           0      0       0
## pasta                                             0      0       0
## citrus herbs                                      0      0       0
## potted plants                                     0      0       0
## canned fish                                       0      0       0
## seasonal products                                 0      0       0
## cake bar                                          0      0       0
## carrots                                           0      0       0
## mustard                                           0      0       0
## packaged fruit/vegetables                         0      0       0
## spread cheese                                     0      0       0
## frozen dessert                                    0      0       0
## frozen fish                                       0      0       0
## cling film/bags                                   0      0       0
## salt                                              0      0       0
## liquor                                            0      0       0
## canned vegetables                                 0      0       0
## bottled beer                                      0      0       0
## flower (seeds)                                    0      0       0
## cooking oil                                       0      0       0
## dish cleaner                                      0      0       0
## condensed milk                                    0      0       0
## roll products                                     0      0       0
## photo/film                                        0      0       0
## pet care                                          0      0       0
## chocolate marshmallow                             0      0       0
## herbs/vegetable juice                             0      0       0
## whole milk                                        0      0       0
## candles                                           0      0       0
## mayonnaise                                        0      0       0
## Instant food products                             0      0       0
## sweet spreads                                     0      0       0
## liquor (appetizer)                                0      0       0
## specialty cheese                                  0      0       0
## frozen potato products                            0      0       0
## house keeping products                            0      0       0
## dog food                                          0      0       0
## soy                                               0      0       0
## instant coffee                                    0      0       0
## pip herbs                                         0      0       0
## zwieback                                          0      0       0
## finished products                                 0      0       0
## popcorn                                           0      0       0
## vinegar                                           0      0       0
## soups                                             0      0       0
## female sanitary products                          0      0       0
## sparkling wine                                    0      0       0
## dental care                                       0      0       0
## cereals                                           0      0       0
## kitchen towels                                    0      0       0
## curd cheese                                       0      0       0
## other vegetables                                  0      0       0
## rolls/buns                                        0      0       0
## softener                                          0      0       0
## cleaner                                           0      0       0
## spices                                            0      0       0
## jam                                               0      0       0
## sauces                                            0      0       0
## rum                                               0      0       0
## liver loaf                                        0      0       0
## male cosmetics                                    0      0       0
## meat spreads                                      0      0       0
## packaged herbs/vegetables                         0      0       0
## brandy                                            0      0       0
## ketchup                                           0      0       0
## abrasive cleaner                                  0      0       0
## light bulbs                                       0      0       0
## artif. sweetener                                  0      0       0
## nuts/prunes                                       0      0       0
## specialty fat                                     0      0       0
## skin care                                         0      0       0
## fish                                              0      0       0
## potato products                                   0      0       0
## root vegetables                                   0      0       0
## snack products                                    0      0       0
## nut snack                                         0      0       0
## soap                                              0      0       0
## syrup                                             0      0       0
## bathroom cleaner                                  0      0       0
## canned fruit                                      0      0       0
## cookware                                          0      0       0
## cooking chocolate                                 0      0       0
## tidbits                                           0      0       0
## cocoa drinks                                      0      0       0
## pudding powder                                    0      0       0
## ready soups                                       0      0       0
## organic marinated meat                            0      0       0
## flower soil/fertilizer                            0      0       0
## organic products                                  0      0       0
## pot plants                                        0      0       0
## prosecco                                          0      0       0
## frankfurter                                       0      0       0
## decalcifier                                       0      0       0
## honey                                             0      0       0
## specialty vegetables                              0      0       0
## cream                                             0      0       0
## hair spray                                        0      0       0
## frozen fruits                                     0      0       0
## rubbing alcohol                                   0      0       0
## liqueur                                           0      0       0
## make up remover                                   0      0       0
## salad dressing                                    0      0       0
## frozen chicken                                    0      0       0
## whisky                                            0      0       0
## baby cosmetics                                    0      0       0
## toilet cleaner                                    0      0       0
## bags                                              0      0       0
## canned herbs                                      0      0       0
## kitchen utensil                                   0      0       0
## preservation products                             0      0       0
## baby food                                         0      0       0
## frozen herbss                                     0      0       0
## organic sausage                                   0      0       0
## sound storage medium                              0      0       0
##                           abrasive cleaner light bulbs artif. sweetener
## rice                                     0           0                0
## veggies                                  0           0                0
## loaf                                     0           0                0
## coke                                     0           0                0
## yogurt                                   0           0                0
## vegetables                               0           0                0
## mineral water                            0           0                0
## Plastic bags                             0           0                0
## tropical fruit                           0           0                0
## marinated meat                           0           0                0
## pies/pasties                             0           0                0
## newspapers                               0           0                0
## citrus                                   0           0                0
## whipped/sour cream                       0           0                0
## heinken                                  0           0                0
## green tea                                0           0                0
## pip fruit                                0           0                0
## brown bread                              0           0                0
## fruit/vegetable juice                    0           0                0
## domestic eggs                            0           0                0
## coffee                                   0           0                0
## margarine                                0           0                0
## beef                                     0           0                0
## curd                                     0           0                0
## butter                                   0           0                0
## marinated meats                          0           0                0
## napkins                                  0           0                0
## halal meat                               0           0                0
## chocolate                                0           0                0
## frozen vegetables                        0           0                0
## chicken                                  0           0                0
## white bread                              0           0                0
## cream cheese                             0           0                0
## waffles                                  0           0                0
## dessert                                  0           0                0
## salty snack                              0           0                0
## long life bakery product                 0           0                0
## berries                                  0           0                0
## hamburger meat                           0           0                0
## sugar                                    0           0                0
## hygiene articles                         0           0                0
## UHT-milk                                 0           0                0
## onions                                   0           0                0
## candy                                    0           0                0
## specialty chocolate                      0           0                0
## butter milk                              0           0                0
## oil                                      0           0                0
## frozen meals                             0           0                0
## misc. beverages                          0           0                0
## specialty bar                            0           0                0
## ham                                      0           0                0
## beverages                                0           0                0
## meat                                     0           0                0
## ice cream                                0           0                0
## sliced cheese                            0           0                0
## hard cheese                              0           0                0
## noodles                                  0           0                0
## grapes                                   0           0                0
## cat food                                 0           0                0
## chewing gum                              0           0                0
## soda                                     0           0                0
## detergent                                0           0                0
## red/blush wine                           0           0                0
## white wine                               0           0                0
## turkey                                   0           0                0
## dishes                                   0           0                0
## bottled water                            0           0                0
## flour                                    0           0                0
## semi-finished bread                      0           0                0
## baking powder                            0           0                0
## pickled vegetables                       0           0                0
## herbs                                    0           0                0
## tropical herbs                           0           0                0
## soft cheese                              0           0                0
## tea                                      0           0                0
## processed cheese                         0           0                0
## sausage                                  0           0                0
## pasta                                    0           0                0
## citrus herbs                             0           0                0
## potted plants                            0           0                0
## canned fish                              0           0                0
## seasonal products                        0           0                0
## cake bar                                 0           0                0
## carrots                                  0           0                0
## mustard                                  0           0                0
## packaged fruit/vegetables                0           0                0
## spread cheese                            0           0                0
## frozen dessert                           0           0                0
## frozen fish                              0           0                0
## cling film/bags                          0           0                0
## salt                                     0           0                0
## liquor                                   0           0                0
## canned vegetables                        0           0                0
## bottled beer                             0           0                0
## flower (seeds)                           0           0                0
## cooking oil                              0           0                0
## dish cleaner                             0           0                0
## condensed milk                           0           0                0
## roll products                            0           0                0
## photo/film                               0           0                0
## pet care                                 0           0                0
## chocolate marshmallow                    0           0                0
## herbs/vegetable juice                    0           0                0
## whole milk                               0           0                0
## candles                                  0           0                0
## mayonnaise                               0           0                0
## Instant food products                    0           0                0
## sweet spreads                            0           0                0
## liquor (appetizer)                       0           0                0
## specialty cheese                         0           0                0
## frozen potato products                   0           0                0
## house keeping products                   0           0                0
## dog food                                 0           0                0
## soy                                      0           0                0
## instant coffee                           0           0                0
## pip herbs                                0           0                0
## zwieback                                 0           0                0
## finished products                        0           0                0
## popcorn                                  0           0                0
## vinegar                                  0           0                0
## soups                                    0           0                0
## female sanitary products                 0           0                0
## sparkling wine                           0           0                0
## dental care                              0           0                0
## cereals                                  0           0                0
## kitchen towels                           0           0                0
## curd cheese                              0           0                0
## other vegetables                         0           0                0
## rolls/buns                               0           0                0
## softener                                 0           0                0
## cleaner                                  0           0                0
## spices                                   0           0                0
## jam                                      0           0                0
## sauces                                   0           0                0
## rum                                      0           0                0
## liver loaf                               0           0                0
## male cosmetics                           0           0                0
## meat spreads                             0           0                0
## packaged herbs/vegetables                0           0                0
## brandy                                   0           0                0
## ketchup                                  0           0                0
## abrasive cleaner                         0           0                0
## light bulbs                              0           0                0
## artif. sweetener                         0           0                0
## nuts/prunes                              0           0                0
## specialty fat                            0           0                0
## skin care                                0           0                0
## fish                                     0           0                0
## potato products                          0           0                0
## root vegetables                          0           0                0
## snack products                           0           0                0
## nut snack                                0           0                0
## soap                                     0           0                0
## syrup                                    0           0                0
## bathroom cleaner                         0           0                0
## canned fruit                             0           0                0
## cookware                                 0           0                0
## cooking chocolate                        0           0                0
## tidbits                                  0           0                0
## cocoa drinks                             0           0                0
## pudding powder                           0           0                0
## ready soups                              0           0                0
## organic marinated meat                   0           0                0
## flower soil/fertilizer                   0           0                0
## organic products                         0           0                0
## pot plants                               0           0                0
## prosecco                                 0           0                0
## frankfurter                              0           0                0
## decalcifier                              0           0                0
## honey                                    0           0                0
## specialty vegetables                     0           0                0
## cream                                    0           0                0
## hair spray                               0           0                0
## frozen fruits                            0           0                0
## rubbing alcohol                          0           0                0
## liqueur                                  0           0                0
## make up remover                          0           0                0
## salad dressing                           0           0                0
## frozen chicken                           0           0                0
## whisky                                   0           0                0
## baby cosmetics                           0           0                0
## toilet cleaner                           0           0                0
## bags                                     0           0                0
## canned herbs                             0           0                0
## kitchen utensil                          0           0                0
## preservation products                    0           0                0
## baby food                                0           0                0
## frozen herbss                            0           0                0
## organic sausage                          0           0                0
## sound storage medium                     0           0                0
##                           nuts/prunes specialty fat skin care fish
## rice                                0             0         0    0
## veggies                             0             0         0    0
## loaf                                0             0         0    0
## coke                                0             0         0    0
## yogurt                              0             0         0    0
## vegetables                          0             0         0    0
## mineral water                       0             0         0    0
## Plastic bags                        0             0         0    0
## tropical fruit                      0             0         0    0
## marinated meat                      0             0         0    0
## pies/pasties                        0             0         0    0
## newspapers                          0             0         0    0
## citrus                              0             0         0    0
## whipped/sour cream                  0             0         0    0
## heinken                             0             0         0    0
## green tea                           0             0         0    0
## pip fruit                           0             0         0    0
## brown bread                         0             0         0    0
## fruit/vegetable juice               0             0         0    0
## domestic eggs                       0             0         0    0
## coffee                              0             0         0    0
## margarine                           0             0         0    0
## beef                                0             0         0    0
## curd                                0             0         0    0
## butter                              0             0         0    0
## marinated meats                     0             0         0    0
## napkins                             0             0         0    0
## halal meat                          0             0         0    0
## chocolate                           0             0         0    0
## frozen vegetables                   0             0         0    0
## chicken                             0             0         0    0
## white bread                         0             0         0    0
## cream cheese                        0             0         0    0
## waffles                             0             0         0    0
## dessert                             0             0         0    0
## salty snack                         0             0         0    0
## long life bakery product            0             0         0    0
## berries                             0             0         0    0
## hamburger meat                      0             0         0    0
## sugar                               0             0         0    0
## hygiene articles                    0             0         0    0
## UHT-milk                            0             0         0    0
## onions                              0             0         0    0
## candy                               0             0         0    0
## specialty chocolate                 0             0         0    0
## butter milk                         0             0         0    0
## oil                                 0             0         0    0
## frozen meals                        0             0         0    0
## misc. beverages                     0             0         0    0
## specialty bar                       0             0         0    0
## ham                                 0             0         0    0
## beverages                           0             0         0    0
## meat                                0             0         0    0
## ice cream                           0             0         0    0
## sliced cheese                       0             0         0    0
## hard cheese                         0             0         0    0
## noodles                             0             0         0    0
## grapes                              0             0         0    0
## cat food                            0             0         0    0
## chewing gum                         0             0         0    0
## soda                                0             0         0    0
## detergent                           0             0         0    0
## red/blush wine                      0             0         0    0
## white wine                          0             0         0    0
## turkey                              0             0         0    0
## dishes                              0             0         0    0
## bottled water                       0             0         0    0
## flour                               0             0         0    0
## semi-finished bread                 0             0         0    0
## baking powder                       0             0         0    0
## pickled vegetables                  0             0         0    0
## herbs                               0             0         0    0
## tropical herbs                      0             0         0    0
## soft cheese                         0             0         0    0
## tea                                 0             0         0    0
## processed cheese                    0             0         0    0
## sausage                             0             0         0    0
## pasta                               0             0         0    0
## citrus herbs                        0             0         0    0
## potted plants                       0             0         0    0
## canned fish                         0             0         0    0
## seasonal products                   0             0         0    0
## cake bar                            0             0         0    0
## carrots                             0             0         0    0
## mustard                             0             0         0    0
## packaged fruit/vegetables           0             0         0    0
## spread cheese                       0             0         0    0
## frozen dessert                      0             0         0    0
## frozen fish                         0             0         0    0
## cling film/bags                     0             0         0    0
## salt                                0             0         0    0
## liquor                              0             0         0    0
## canned vegetables                   0             0         0    0
## bottled beer                        0             0         0    0
## flower (seeds)                      0             0         0    0
## cooking oil                         0             0         0    0
## dish cleaner                        0             0         0    0
## condensed milk                      0             0         0    0
## roll products                       0             0         0    0
## photo/film                          0             0         0    0
## pet care                            0             0         0    0
## chocolate marshmallow               0             0         0    0
## herbs/vegetable juice               0             0         0    0
## whole milk                          0             0         0    0
## candles                             0             0         0    0
## mayonnaise                          0             0         0    0
## Instant food products               0             0         0    0
## sweet spreads                       0             0         0    0
## liquor (appetizer)                  0             0         0    0
## specialty cheese                    0             0         0    0
## frozen potato products              0             0         0    0
## house keeping products              0             0         0    0
## dog food                            0             0         0    0
## soy                                 0             0         0    0
## instant coffee                      0             0         0    0
## pip herbs                           0             0         0    0
## zwieback                            0             0         0    0
## finished products                   0             0         0    0
## popcorn                             0             0         0    0
## vinegar                             0             0         0    0
## soups                               0             0         0    0
## female sanitary products            0             0         0    0
## sparkling wine                      0             0         0    0
## dental care                         0             0         0    0
## cereals                             0             0         0    0
## kitchen towels                      0             0         0    0
## curd cheese                         0             0         0    0
## other vegetables                    0             0         0    0
## rolls/buns                          0             0         0    0
## softener                            0             0         0    0
## cleaner                             0             0         0    0
## spices                              0             0         0    0
## jam                                 0             0         0    0
## sauces                              0             0         0    0
## rum                                 0             0         0    0
## liver loaf                          0             0         0    0
## male cosmetics                      0             0         0    0
## meat spreads                        0             0         0    0
## packaged herbs/vegetables           0             0         0    0
## brandy                              0             0         0    0
## ketchup                             0             0         0    0
## abrasive cleaner                    0             0         0    0
## light bulbs                         0             0         0    0
## artif. sweetener                    0             0         0    0
## nuts/prunes                         0             0         0    0
## specialty fat                       0             0         0    0
## skin care                           0             0         0    0
## fish                                0             0         0    0
## potato products                     0             0         0    0
## root vegetables                     0             0         0    0
## snack products                      0             0         0    0
## nut snack                           0             0         0    0
## soap                                0             0         0    0
## syrup                               0             0         0    0
## bathroom cleaner                    0             0         0    0
## canned fruit                        0             0         0    0
## cookware                            0             0         0    0
## cooking chocolate                   0             0         0    0
## tidbits                             0             0         0    0
## cocoa drinks                        0             0         0    0
## pudding powder                      0             0         0    0
## ready soups                         0             0         0    0
## organic marinated meat              0             0         0    0
## flower soil/fertilizer              0             0         0    0
## organic products                    0             0         0    0
## pot plants                          0             0         0    0
## prosecco                            0             0         0    0
## frankfurter                         0             0         0    0
## decalcifier                         0             0         0    0
## honey                               0             0         0    0
## specialty vegetables                0             0         0    0
## cream                               0             0         0    0
## hair spray                          0             0         0    0
## frozen fruits                       0             0         0    0
## rubbing alcohol                     0             0         0    0
## liqueur                             0             0         0    0
## make up remover                     0             0         0    0
## salad dressing                      0             0         0    0
## frozen chicken                      0             0         0    0
## whisky                              0             0         0    0
## baby cosmetics                      0             0         0    0
## toilet cleaner                      0             0         0    0
## bags                                0             0         0    0
## canned herbs                        0             0         0    0
## kitchen utensil                     0             0         0    0
## preservation products               0             0         0    0
## baby food                           0             0         0    0
## frozen herbss                       0             0         0    0
## organic sausage                     0             0         0    0
## sound storage medium                0             0         0    0
##                           potato products root vegetables snack products
## rice                                    0               0              0
## veggies                                 0               0              0
## loaf                                    0               0              0
## coke                                    0               0              0
## yogurt                                  0               0              0
## vegetables                              0               0              0
## mineral water                           0               0              0
## Plastic bags                            0               0              0
## tropical fruit                          0               0              0
## marinated meat                          0               0              0
## pies/pasties                            0               0              0
## newspapers                              0               0              0
## citrus                                  0               0              0
## whipped/sour cream                      0               0              0
## heinken                                 0               0              0
## green tea                               0               0              0
## pip fruit                               0               0              0
## brown bread                             0               0              0
## fruit/vegetable juice                   0               0              0
## domestic eggs                           0               0              0
## coffee                                  0               0              0
## margarine                               0               0              0
## beef                                    0               0              0
## curd                                    0               0              0
## butter                                  0               0              0
## marinated meats                         0               0              0
## napkins                                 0               0              0
## halal meat                              0               0              0
## chocolate                               0               0              0
## frozen vegetables                       0               0              0
## chicken                                 0               0              0
## white bread                             0               0              0
## cream cheese                            0               0              0
## waffles                                 0               0              0
## dessert                                 0               0              0
## salty snack                             0               0              0
## long life bakery product                0               0              0
## berries                                 0               0              0
## hamburger meat                          0               0              0
## sugar                                   0               0              0
## hygiene articles                        0               0              0
## UHT-milk                                0               0              0
## onions                                  0               0              0
## candy                                   0               0              0
## specialty chocolate                     0               0              0
## butter milk                             0               0              0
## oil                                     0               0              0
## frozen meals                            0               0              0
## misc. beverages                         0               0              0
## specialty bar                           0               0              0
## ham                                     0               0              0
## beverages                               0               0              0
## meat                                    0               0              0
## ice cream                               0               0              0
## sliced cheese                           0               0              0
## hard cheese                             0               0              0
## noodles                                 0               0              0
## grapes                                  0               0              0
## cat food                                0               0              0
## chewing gum                             0               0              0
## soda                                    0               0              0
## detergent                               0               0              0
## red/blush wine                          0               0              0
## white wine                              0               0              0
## turkey                                  0               0              0
## dishes                                  0               0              0
## bottled water                           0               0              0
## flour                                   0               0              0
## semi-finished bread                     0               0              0
## baking powder                           0               0              0
## pickled vegetables                      0               0              0
## herbs                                   0               0              0
## tropical herbs                          0               0              0
## soft cheese                             0               0              0
## tea                                     0               0              0
## processed cheese                        0               0              0
## sausage                                 0               0              0
## pasta                                   0               0              0
## citrus herbs                            0               0              0
## potted plants                           0               0              0
## canned fish                             0               0              0
## seasonal products                       0               0              0
## cake bar                                0               0              0
## carrots                                 0               0              0
## mustard                                 0               0              0
## packaged fruit/vegetables               0               0              0
## spread cheese                           0               0              0
## frozen dessert                          0               0              0
## frozen fish                             0               0              0
## cling film/bags                         0               0              0
## salt                                    0               0              0
## liquor                                  0               0              0
## canned vegetables                       0               0              0
## bottled beer                            0               0              0
## flower (seeds)                          0               0              0
## cooking oil                             0               0              0
## dish cleaner                            0               0              0
## condensed milk                          0               0              0
## roll products                           0               0              0
## photo/film                              0               0              0
## pet care                                0               0              0
## chocolate marshmallow                   0               0              0
## herbs/vegetable juice                   0               0              0
## whole milk                              0               0              0
## candles                                 0               0              0
## mayonnaise                              0               0              0
## Instant food products                   0               0              0
## sweet spreads                           0               0              0
## liquor (appetizer)                      0               0              0
## specialty cheese                        0               0              0
## frozen potato products                  0               0              0
## house keeping products                  0               0              0
## dog food                                0               0              0
## soy                                     0               0              0
## instant coffee                          0               0              0
## pip herbs                               0               0              0
## zwieback                                0               0              0
## finished products                       0               0              0
## popcorn                                 0               0              0
## vinegar                                 0               0              0
## soups                                   0               0              0
## female sanitary products                0               0              0
## sparkling wine                          0               0              0
## dental care                             0               0              0
## cereals                                 0               0              0
## kitchen towels                          0               0              0
## curd cheese                             0               0              0
## other vegetables                        0               0              0
## rolls/buns                              0               0              0
## softener                                0               0              0
## cleaner                                 0               0              0
## spices                                  0               0              0
## jam                                     0               0              0
## sauces                                  0               0              0
## rum                                     0               0              0
## liver loaf                              0               0              0
## male cosmetics                          0               0              0
## meat spreads                            0               0              0
## packaged herbs/vegetables               0               0              0
## brandy                                  0               0              0
## ketchup                                 0               0              0
## abrasive cleaner                        0               0              0
## light bulbs                             0               0              0
## artif. sweetener                        0               0              0
## nuts/prunes                             0               0              0
## specialty fat                           0               0              0
## skin care                               0               0              0
## fish                                    0               0              0
## potato products                         0               0              0
## root vegetables                         0               0              0
## snack products                          0               0              0
## nut snack                               0               0              0
## soap                                    0               0              0
## syrup                                   0               0              0
## bathroom cleaner                        0               0              0
## canned fruit                            0               0              0
## cookware                                0               0              0
## cooking chocolate                       0               0              0
## tidbits                                 0               0              0
## cocoa drinks                            0               0              0
## pudding powder                          0               0              0
## ready soups                             0               0              0
## organic marinated meat                  0               0              0
## flower soil/fertilizer                  0               0              0
## organic products                        0               0              0
## pot plants                              0               0              0
## prosecco                                0               0              0
## frankfurter                             0               0              0
## decalcifier                             0               0              0
## honey                                   0               0              0
## specialty vegetables                    0               0              0
## cream                                   0               0              0
## hair spray                              0               0              0
## frozen fruits                           0               0              0
## rubbing alcohol                         0               0              0
## liqueur                                 0               0              0
## make up remover                         0               0              0
## salad dressing                          0               0              0
## frozen chicken                          0               0              0
## whisky                                  0               0              0
## baby cosmetics                          0               0              0
## toilet cleaner                          0               0              0
## bags                                    0               0              0
## canned herbs                            0               0              0
## kitchen utensil                         0               0              0
## preservation products                   0               0              0
## baby food                               0               0              0
## frozen herbss                           0               0              0
## organic sausage                         0               0              0
## sound storage medium                    0               0              0
##                           nut snack soap syrup bathroom cleaner canned fruit
## rice                              0    0     0                0            0
## veggies                           0    0     0                0            0
## loaf                              0    0     0                0            0
## coke                              0    0     0                0            0
## yogurt                            0    0     0                0            0
## vegetables                        0    0     0                0            0
## mineral water                     0    0     0                0            0
## Plastic bags                      0    0     0                0            0
## tropical fruit                    0    0     0                0            0
## marinated meat                    0    0     0                0            0
## pies/pasties                      0    0     0                0            0
## newspapers                        0    0     0                0            0
## citrus                            0    0     0                0            0
## whipped/sour cream                0    0     0                0            0
## heinken                           0    0     0                0            0
## green tea                         0    0     0                0            0
## pip fruit                         0    0     0                0            0
## brown bread                       0    0     0                0            0
## fruit/vegetable juice             0    0     0                0            0
## domestic eggs                     0    0     0                0            0
## coffee                            0    0     0                0            0
## margarine                         0    0     0                0            0
## beef                              0    0     0                0            0
## curd                              0    0     0                0            0
## butter                            0    0     0                0            0
## marinated meats                   0    0     0                0            0
## napkins                           0    0     0                0            0
## halal meat                        0    0     0                0            0
## chocolate                         0    0     0                0            0
## frozen vegetables                 0    0     0                0            0
## chicken                           0    0     0                0            0
## white bread                       0    0     0                0            0
## cream cheese                      0    0     0                0            0
## waffles                           0    0     0                0            0
## dessert                           0    0     0                0            0
## salty snack                       0    0     0                0            0
## long life bakery product          0    0     0                0            0
## berries                           0    0     0                0            0
## hamburger meat                    0    0     0                0            0
## sugar                             0    0     0                0            0
## hygiene articles                  0    0     0                0            0
## UHT-milk                          0    0     0                0            0
## onions                            0    0     0                0            0
## candy                             0    0     0                0            0
## specialty chocolate               0    0     0                0            0
## butter milk                       0    0     0                0            0
## oil                               0    0     0                0            0
## frozen meals                      0    0     0                0            0
## misc. beverages                   0    0     0                0            0
## specialty bar                     0    0     0                0            0
## ham                               0    0     0                0            0
## beverages                         0    0     0                0            0
## meat                              0    0     0                0            0
## ice cream                         0    0     0                0            0
## sliced cheese                     0    0     0                0            0
## hard cheese                       0    0     0                0            0
## noodles                           0    0     0                0            0
## grapes                            0    0     0                0            0
## cat food                          0    0     0                0            0
## chewing gum                       0    0     0                0            0
## soda                              0    0     0                0            0
## detergent                         0    0     0                0            0
## red/blush wine                    0    0     0                0            0
## white wine                        0    0     0                0            0
## turkey                            0    0     0                0            0
## dishes                            0    0     0                0            0
## bottled water                     0    0     0                0            0
## flour                             0    0     0                0            0
## semi-finished bread               0    0     0                0            0
## baking powder                     0    0     0                0            0
## pickled vegetables                0    0     0                0            0
## herbs                             0    0     0                0            0
## tropical herbs                    0    0     0                0            0
## soft cheese                       0    0     0                0            0
## tea                               0    0     0                0            0
## processed cheese                  0    0     0                0            0
## sausage                           0    0     0                0            0
## pasta                             0    0     0                0            0
## citrus herbs                      0    0     0                0            0
## potted plants                     0    0     0                0            0
## canned fish                       0    0     0                0            0
## seasonal products                 0    0     0                0            0
## cake bar                          0    0     0                0            0
## carrots                           0    0     0                0            0
## mustard                           0    0     0                0            0
## packaged fruit/vegetables         0    0     0                0            0
## spread cheese                     0    0     0                0            0
## frozen dessert                    0    0     0                0            0
## frozen fish                       0    0     0                0            0
## cling film/bags                   0    0     0                0            0
## salt                              0    0     0                0            0
## liquor                            0    0     0                0            0
## canned vegetables                 0    0     0                0            0
## bottled beer                      0    0     0                0            0
## flower (seeds)                    0    0     0                0            0
## cooking oil                       0    0     0                0            0
## dish cleaner                      0    0     0                0            0
## condensed milk                    0    0     0                0            0
## roll products                     0    0     0                0            0
## photo/film                        0    0     0                0            0
## pet care                          0    0     0                0            0
## chocolate marshmallow             0    0     0                0            0
## herbs/vegetable juice             0    0     0                0            0
## whole milk                        0    0     0                0            0
## candles                           0    0     0                0            0
## mayonnaise                        0    0     0                0            0
## Instant food products             0    0     0                0            0
## sweet spreads                     0    0     0                0            0
## liquor (appetizer)                0    0     0                0            0
## specialty cheese                  0    0     0                0            0
## frozen potato products            0    0     0                0            0
## house keeping products            0    0     0                0            0
## dog food                          0    0     0                0            0
## soy                               0    0     0                0            0
## instant coffee                    0    0     0                0            0
## pip herbs                         0    0     0                0            0
## zwieback                          0    0     0                0            0
## finished products                 0    0     0                0            0
## popcorn                           0    0     0                0            0
## vinegar                           0    0     0                0            0
## soups                             0    0     0                0            0
## female sanitary products          0    0     0                0            0
## sparkling wine                    0    0     0                0            0
## dental care                       0    0     0                0            0
## cereals                           0    0     0                0            0
## kitchen towels                    0    0     0                0            0
## curd cheese                       0    0     0                0            0
## other vegetables                  0    0     0                0            0
## rolls/buns                        0    0     0                0            0
## softener                          0    0     0                0            0
## cleaner                           0    0     0                0            0
## spices                            0    0     0                0            0
## jam                               0    0     0                0            0
## sauces                            0    0     0                0            0
## rum                               0    0     0                0            0
## liver loaf                        0    0     0                0            0
## male cosmetics                    0    0     0                0            0
## meat spreads                      0    0     0                0            0
## packaged herbs/vegetables         0    0     0                0            0
## brandy                            0    0     0                0            0
## ketchup                           0    0     0                0            0
## abrasive cleaner                  0    0     0                0            0
## light bulbs                       0    0     0                0            0
## artif. sweetener                  0    0     0                0            0
## nuts/prunes                       0    0     0                0            0
## specialty fat                     0    0     0                0            0
## skin care                         0    0     0                0            0
## fish                              0    0     0                0            0
## potato products                   0    0     0                0            0
## root vegetables                   0    0     0                0            0
## snack products                    0    0     0                0            0
## nut snack                         0    0     0                0            0
## soap                              0    0     0                0            0
## syrup                             0    0     0                0            0
## bathroom cleaner                  0    0     0                0            0
## canned fruit                      0    0     0                0            0
## cookware                          0    0     0                0            0
## cooking chocolate                 0    0     0                0            0
## tidbits                           0    0     0                0            0
## cocoa drinks                      0    0     0                0            0
## pudding powder                    0    0     0                0            0
## ready soups                       0    0     0                0            0
## organic marinated meat            0    0     0                0            0
## flower soil/fertilizer            0    0     0                0            0
## organic products                  0    0     0                0            0
## pot plants                        0    0     0                0            0
## prosecco                          0    0     0                0            0
## frankfurter                       0    0     0                0            0
## decalcifier                       0    0     0                0            0
## honey                             0    0     0                0            0
## specialty vegetables              0    0     0                0            0
## cream                             0    0     0                0            0
## hair spray                        0    0     0                0            0
## frozen fruits                     0    0     0                0            0
## rubbing alcohol                   0    0     0                0            0
## liqueur                           0    0     0                0            0
## make up remover                   0    0     0                0            0
## salad dressing                    0    0     0                0            0
## frozen chicken                    0    0     0                0            0
## whisky                            0    0     0                0            0
## baby cosmetics                    0    0     0                0            0
## toilet cleaner                    0    0     0                0            0
## bags                              0    0     0                0            0
## canned herbs                      0    0     0                0            0
## kitchen utensil                   0    0     0                0            0
## preservation products             0    0     0                0            0
## baby food                         0    0     0                0            0
## frozen herbss                     0    0     0                0            0
## organic sausage                   0    0     0                0            0
## sound storage medium              0    0     0                0            0
##                           cookware cooking chocolate tidbits cocoa drinks
## rice                             0                 0       0            0
## veggies                          0                 0       0            0
## loaf                             0                 0       0            0
## coke                             0                 0       0            0
## yogurt                           0                 0       0            0
## vegetables                       0                 0       0            0
## mineral water                    0                 0       0            0
## Plastic bags                     0                 0       0            0
## tropical fruit                   0                 0       0            0
## marinated meat                   0                 0       0            0
## pies/pasties                     0                 0       0            0
## newspapers                       0                 0       0            0
## citrus                           0                 0       0            0
## whipped/sour cream               0                 0       0            0
## heinken                          0                 0       0            0
## green tea                        0                 0       0            0
## pip fruit                        0                 0       0            0
## brown bread                      0                 0       0            0
## fruit/vegetable juice            0                 0       0            0
## domestic eggs                    0                 0       0            0
## coffee                           0                 0       0            0
## margarine                        0                 0       0            0
## beef                             0                 0       0            0
## curd                             0                 0       0            0
## butter                           0                 0       0            0
## marinated meats                  0                 0       0            0
## napkins                          0                 0       0            0
## halal meat                       0                 0       0            0
## chocolate                        0                 0       0            0
## frozen vegetables                0                 0       0            0
## chicken                          0                 0       0            0
## white bread                      0                 0       0            0
## cream cheese                     0                 0       0            0
## waffles                          0                 0       0            0
## dessert                          0                 0       0            0
## salty snack                      0                 0       0            0
## long life bakery product         0                 0       0            0
## berries                          0                 0       0            0
## hamburger meat                   0                 0       0            0
## sugar                            0                 0       0            0
## hygiene articles                 0                 0       0            0
## UHT-milk                         0                 0       0            0
## onions                           0                 0       0            0
## candy                            0                 0       0            0
## specialty chocolate              0                 0       0            0
## butter milk                      0                 0       0            0
## oil                              0                 0       0            0
## frozen meals                     0                 0       0            0
## misc. beverages                  0                 0       0            0
## specialty bar                    0                 0       0            0
## ham                              0                 0       0            0
## beverages                        0                 0       0            0
## meat                             0                 0       0            0
## ice cream                        0                 0       0            0
## sliced cheese                    0                 0       0            0
## hard cheese                      0                 0       0            0
## noodles                          0                 0       0            0
## grapes                           0                 0       0            0
## cat food                         0                 0       0            0
## chewing gum                      0                 0       0            0
## soda                             0                 0       0            0
## detergent                        0                 0       0            0
## red/blush wine                   0                 0       0            0
## white wine                       0                 0       0            0
## turkey                           0                 0       0            0
## dishes                           0                 0       0            0
## bottled water                    0                 0       0            0
## flour                            0                 0       0            0
## semi-finished bread              0                 0       0            0
## baking powder                    0                 0       0            0
## pickled vegetables               0                 0       0            0
## herbs                            0                 0       0            0
## tropical herbs                   0                 0       0            0
## soft cheese                      0                 0       0            0
## tea                              0                 0       0            0
## processed cheese                 0                 0       0            0
## sausage                          0                 0       0            0
## pasta                            0                 0       0            0
## citrus herbs                     0                 0       0            0
## potted plants                    0                 0       0            0
## canned fish                      0                 0       0            0
## seasonal products                0                 0       0            0
## cake bar                         0                 0       0            0
## carrots                          0                 0       0            0
## mustard                          0                 0       0            0
## packaged fruit/vegetables        0                 0       0            0
## spread cheese                    0                 0       0            0
## frozen dessert                   0                 0       0            0
## frozen fish                      0                 0       0            0
## cling film/bags                  0                 0       0            0
## salt                             0                 0       0            0
## liquor                           0                 0       0            0
## canned vegetables                0                 0       0            0
## bottled beer                     0                 0       0            0
## flower (seeds)                   0                 0       0            0
## cooking oil                      0                 0       0            0
## dish cleaner                     0                 0       0            0
## condensed milk                   0                 0       0            0
## roll products                    0                 0       0            0
## photo/film                       0                 0       0            0
## pet care                         0                 0       0            0
## chocolate marshmallow            0                 0       0            0
## herbs/vegetable juice            0                 0       0            0
## whole milk                       0                 0       0            0
## candles                          0                 0       0            0
## mayonnaise                       0                 0       0            0
## Instant food products            0                 0       0            0
## sweet spreads                    0                 0       0            0
## liquor (appetizer)               0                 0       0            0
## specialty cheese                 0                 0       0            0
## frozen potato products           0                 0       0            0
## house keeping products           0                 0       0            0
## dog food                         0                 0       0            0
## soy                              0                 0       0            0
## instant coffee                   0                 0       0            0
## pip herbs                        0                 0       0            0
## zwieback                         0                 0       0            0
## finished products                0                 0       0            0
## popcorn                          0                 0       0            0
## vinegar                          0                 0       0            0
## soups                            0                 0       0            0
## female sanitary products         0                 0       0            0
## sparkling wine                   0                 0       0            0
## dental care                      0                 0       0            0
## cereals                          0                 0       0            0
## kitchen towels                   0                 0       0            0
## curd cheese                      0                 0       0            0
## other vegetables                 0                 0       0            0
## rolls/buns                       0                 0       0            0
## softener                         0                 0       0            0
## cleaner                          0                 0       0            0
## spices                           0                 0       0            0
## jam                              0                 0       0            0
## sauces                           0                 0       0            0
## rum                              0                 0       0            0
## liver loaf                       0                 0       0            0
## male cosmetics                   0                 0       0            0
## meat spreads                     0                 0       0            0
## packaged herbs/vegetables        0                 0       0            0
## brandy                           0                 0       0            0
## ketchup                          0                 0       0            0
## abrasive cleaner                 0                 0       0            0
## light bulbs                      0                 0       0            0
## artif. sweetener                 0                 0       0            0
## nuts/prunes                      0                 0       0            0
## specialty fat                    0                 0       0            0
## skin care                        0                 0       0            0
## fish                             0                 0       0            0
## potato products                  0                 0       0            0
## root vegetables                  0                 0       0            0
## snack products                   0                 0       0            0
## nut snack                        0                 0       0            0
## soap                             0                 0       0            0
## syrup                            0                 0       0            0
## bathroom cleaner                 0                 0       0            0
## canned fruit                     0                 0       0            0
## cookware                         0                 0       0            0
## cooking chocolate                0                 0       0            0
## tidbits                          0                 0       0            0
## cocoa drinks                     0                 0       0            0
## pudding powder                   0                 0       0            0
## ready soups                      0                 0       0            0
## organic marinated meat           0                 0       0            0
## flower soil/fertilizer           0                 0       0            0
## organic products                 0                 0       0            0
## pot plants                       0                 0       0            0
## prosecco                         0                 0       0            0
## frankfurter                      0                 0       0            0
## decalcifier                      0                 0       0            0
## honey                            0                 0       0            0
## specialty vegetables             0                 0       0            0
## cream                            0                 0       0            0
## hair spray                       0                 0       0            0
## frozen fruits                    0                 0       0            0
## rubbing alcohol                  0                 0       0            0
## liqueur                          0                 0       0            0
## make up remover                  0                 0       0            0
## salad dressing                   0                 0       0            0
## frozen chicken                   0                 0       0            0
## whisky                           0                 0       0            0
## baby cosmetics                   0                 0       0            0
## toilet cleaner                   0                 0       0            0
## bags                             0                 0       0            0
## canned herbs                     0                 0       0            0
## kitchen utensil                  0                 0       0            0
## preservation products            0                 0       0            0
## baby food                        0                 0       0            0
## frozen herbss                    0                 0       0            0
## organic sausage                  0                 0       0            0
## sound storage medium             0                 0       0            0
##                           pudding powder ready soups organic marinated meat
## rice                                   0           0                      0
## veggies                                0           0                      0
## loaf                                   0           0                      0
## coke                                   0           0                      0
## yogurt                                 0           0                      0
## vegetables                             0           0                      0
## mineral water                          0           0                      0
## Plastic bags                           0           0                      0
## tropical fruit                         0           0                      0
## marinated meat                         0           0                      0
## pies/pasties                           0           0                      0
## newspapers                             0           0                      0
## citrus                                 0           0                      0
## whipped/sour cream                     0           0                      0
## heinken                                0           0                      0
## green tea                              0           0                      0
## pip fruit                              0           0                      0
## brown bread                            0           0                      0
## fruit/vegetable juice                  0           0                      0
## domestic eggs                          0           0                      0
## coffee                                 0           0                      0
## margarine                              0           0                      0
## beef                                   0           0                      0
## curd                                   0           0                      0
## butter                                 0           0                      0
## marinated meats                        0           0                      0
## napkins                                0           0                      0
## halal meat                             0           0                      0
## chocolate                              0           0                      0
## frozen vegetables                      0           0                      0
## chicken                                0           0                      0
## white bread                            0           0                      0
## cream cheese                           0           0                      0
## waffles                                0           0                      0
## dessert                                0           0                      0
## salty snack                            0           0                      0
## long life bakery product               0           0                      0
## berries                                0           0                      0
## hamburger meat                         0           0                      0
## sugar                                  0           0                      0
## hygiene articles                       0           0                      0
## UHT-milk                               0           0                      0
## onions                                 0           0                      0
## candy                                  0           0                      0
## specialty chocolate                    0           0                      0
## butter milk                            0           0                      0
## oil                                    0           0                      0
## frozen meals                           0           0                      0
## misc. beverages                        0           0                      0
## specialty bar                          0           0                      0
## ham                                    0           0                      0
## beverages                              0           0                      0
## meat                                   0           0                      0
## ice cream                              0           0                      0
## sliced cheese                          0           0                      0
## hard cheese                            0           0                      0
## noodles                                0           0                      0
## grapes                                 0           0                      0
## cat food                               0           0                      0
## chewing gum                            0           0                      0
## soda                                   0           0                      0
## detergent                              0           0                      0
## red/blush wine                         0           0                      0
## white wine                             0           0                      0
## turkey                                 0           0                      0
## dishes                                 0           0                      0
## bottled water                          0           0                      0
## flour                                  0           0                      0
## semi-finished bread                    0           0                      0
## baking powder                          0           0                      0
## pickled vegetables                     0           0                      0
## herbs                                  0           0                      0
## tropical herbs                         0           0                      0
## soft cheese                            0           0                      0
## tea                                    0           0                      0
## processed cheese                       0           0                      0
## sausage                                0           0                      0
## pasta                                  0           0                      0
## citrus herbs                           0           0                      0
## potted plants                          0           0                      0
## canned fish                            0           0                      0
## seasonal products                      0           0                      0
## cake bar                               0           0                      0
## carrots                                0           0                      0
## mustard                                0           0                      0
## packaged fruit/vegetables              0           0                      0
## spread cheese                          0           0                      0
## frozen dessert                         0           0                      0
## frozen fish                            0           0                      0
## cling film/bags                        0           0                      0
## salt                                   0           0                      0
## liquor                                 0           0                      0
## canned vegetables                      0           0                      0
## bottled beer                           0           0                      0
## flower (seeds)                         0           0                      0
## cooking oil                            0           0                      0
## dish cleaner                           0           0                      0
## condensed milk                         0           0                      0
## roll products                          0           0                      0
## photo/film                             0           0                      0
## pet care                               0           0                      0
## chocolate marshmallow                  0           0                      0
## herbs/vegetable juice                  0           0                      0
## whole milk                             0           0                      0
## candles                                0           0                      0
## mayonnaise                             0           0                      0
## Instant food products                  0           0                      0
## sweet spreads                          0           0                      0
## liquor (appetizer)                     0           0                      0
## specialty cheese                       0           0                      0
## frozen potato products                 0           0                      0
## house keeping products                 0           0                      0
## dog food                               0           0                      0
## soy                                    0           0                      0
## instant coffee                         0           0                      0
## pip herbs                              0           0                      0
## zwieback                               0           0                      0
## finished products                      0           0                      0
## popcorn                                0           0                      0
## vinegar                                0           0                      0
## soups                                  0           0                      0
## female sanitary products               0           0                      0
## sparkling wine                         0           0                      0
## dental care                            0           0                      0
## cereals                                0           0                      0
## kitchen towels                         0           0                      0
## curd cheese                            0           0                      0
## other vegetables                       0           0                      0
## rolls/buns                             0           0                      0
## softener                               0           0                      0
## cleaner                                0           0                      0
## spices                                 0           0                      0
## jam                                    0           0                      0
## sauces                                 0           0                      0
## rum                                    0           0                      0
## liver loaf                             0           0                      0
## male cosmetics                         0           0                      0
## meat spreads                           0           0                      0
## packaged herbs/vegetables              0           0                      0
## brandy                                 0           0                      0
## ketchup                                0           0                      0
## abrasive cleaner                       0           0                      0
## light bulbs                            0           0                      0
## artif. sweetener                       0           0                      0
## nuts/prunes                            0           0                      0
## specialty fat                          0           0                      0
## skin care                              0           0                      0
## fish                                   0           0                      0
## potato products                        0           0                      0
## root vegetables                        0           0                      0
## snack products                         0           0                      0
## nut snack                              0           0                      0
## soap                                   0           0                      0
## syrup                                  0           0                      0
## bathroom cleaner                       0           0                      0
## canned fruit                           0           0                      0
## cookware                               0           0                      0
## cooking chocolate                      0           0                      0
## tidbits                                0           0                      0
## cocoa drinks                           0           0                      0
## pudding powder                         0           0                      0
## ready soups                            0           0                      0
## organic marinated meat                 0           0                      0
## flower soil/fertilizer                 0           0                      0
## organic products                       0           0                      0
## pot plants                             0           0                      0
## prosecco                               0           0                      0
## frankfurter                            0           0                      0
## decalcifier                            0           0                      0
## honey                                  0           0                      0
## specialty vegetables                   0           0                      0
## cream                                  0           0                      0
## hair spray                             0           0                      0
## frozen fruits                          0           0                      0
## rubbing alcohol                        0           0                      0
## liqueur                                0           0                      0
## make up remover                        0           0                      0
## salad dressing                         0           0                      0
## frozen chicken                         0           0                      0
## whisky                                 0           0                      0
## baby cosmetics                         0           0                      0
## toilet cleaner                         0           0                      0
## bags                                   0           0                      0
## canned herbs                           0           0                      0
## kitchen utensil                        0           0                      0
## preservation products                  0           0                      0
## baby food                              0           0                      0
## frozen herbss                          0           0                      0
## organic sausage                        0           0                      0
## sound storage medium                   0           0                      0
##                           flower soil/fertilizer organic products pot plants
## rice                                           0                0          0
## veggies                                        0                0          0
## loaf                                           0                0          0
## coke                                           0                0          0
## yogurt                                         0                0          0
## vegetables                                     0                0          0
## mineral water                                  0                0          0
## Plastic bags                                   0                0          0
## tropical fruit                                 0                0          0
## marinated meat                                 0                0          0
## pies/pasties                                   0                0          0
## newspapers                                     0                0          0
## citrus                                         0                0          0
## whipped/sour cream                             0                0          0
## heinken                                        0                0          0
## green tea                                      0                0          0
## pip fruit                                      0                0          0
## brown bread                                    0                0          0
## fruit/vegetable juice                          0                0          0
## domestic eggs                                  0                0          0
## coffee                                         0                0          0
## margarine                                      0                0          0
## beef                                           0                0          0
## curd                                           0                0          0
## butter                                         0                0          0
## marinated meats                                0                0          0
## napkins                                        0                0          0
## halal meat                                     0                0          0
## chocolate                                      0                0          0
## frozen vegetables                              0                0          0
## chicken                                        0                0          0
## white bread                                    0                0          0
## cream cheese                                   0                0          0
## waffles                                        0                0          0
## dessert                                        0                0          0
## salty snack                                    0                0          0
## long life bakery product                       0                0          0
## berries                                        0                0          0
## hamburger meat                                 0                0          0
## sugar                                          0                0          0
## hygiene articles                               0                0          0
## UHT-milk                                       0                0          0
## onions                                         0                0          0
## candy                                          0                0          0
## specialty chocolate                            0                0          0
## butter milk                                    0                0          0
## oil                                            0                0          0
## frozen meals                                   0                0          0
## misc. beverages                                0                0          0
## specialty bar                                  0                0          0
## ham                                            0                0          0
## beverages                                      0                0          0
## meat                                           0                0          0
## ice cream                                      0                0          0
## sliced cheese                                  0                0          0
## hard cheese                                    0                0          0
## noodles                                        0                0          0
## grapes                                         0                0          0
## cat food                                       0                0          0
## chewing gum                                    0                0          0
## soda                                           0                0          0
## detergent                                      0                0          0
## red/blush wine                                 0                0          0
## white wine                                     0                0          0
## turkey                                         0                0          0
## dishes                                         0                0          0
## bottled water                                  0                0          0
## flour                                          0                0          0
## semi-finished bread                            0                0          0
## baking powder                                  0                0          0
## pickled vegetables                             0                0          0
## herbs                                          0                0          0
## tropical herbs                                 0                0          0
## soft cheese                                    0                0          0
## tea                                            0                0          0
## processed cheese                               0                0          0
## sausage                                        0                0          0
## pasta                                          0                0          0
## citrus herbs                                   0                0          0
## potted plants                                  0                0          0
## canned fish                                    0                0          0
## seasonal products                              0                0          0
## cake bar                                       0                0          0
## carrots                                        0                0          0
## mustard                                        0                0          0
## packaged fruit/vegetables                      0                0          0
## spread cheese                                  0                0          0
## frozen dessert                                 0                0          0
## frozen fish                                    0                0          0
## cling film/bags                                0                0          0
## salt                                           0                0          0
## liquor                                         0                0          0
## canned vegetables                              0                0          0
## bottled beer                                   0                0          0
## flower (seeds)                                 0                0          0
## cooking oil                                    0                0          0
## dish cleaner                                   0                0          0
## condensed milk                                 0                0          0
## roll products                                  0                0          0
## photo/film                                     0                0          0
## pet care                                       0                0          0
## chocolate marshmallow                          0                0          0
## herbs/vegetable juice                          0                0          0
## whole milk                                     0                0          0
## candles                                        0                0          0
## mayonnaise                                     0                0          0
## Instant food products                          0                0          0
## sweet spreads                                  0                0          0
## liquor (appetizer)                             0                0          0
## specialty cheese                               0                0          0
## frozen potato products                         0                0          0
## house keeping products                         0                0          0
## dog food                                       0                0          0
## soy                                            0                0          0
## instant coffee                                 0                0          0
## pip herbs                                      0                0          0
## zwieback                                       0                0          0
## finished products                              0                0          0
## popcorn                                        0                0          0
## vinegar                                        0                0          0
## soups                                          0                0          0
## female sanitary products                       0                0          0
## sparkling wine                                 0                0          0
## dental care                                    0                0          0
## cereals                                        0                0          0
## kitchen towels                                 0                0          0
## curd cheese                                    0                0          0
## other vegetables                               0                0          0
## rolls/buns                                     0                0          0
## softener                                       0                0          0
## cleaner                                        0                0          0
## spices                                         0                0          0
## jam                                            0                0          0
## sauces                                         0                0          0
## rum                                            0                0          0
## liver loaf                                     0                0          0
## male cosmetics                                 0                0          0
## meat spreads                                   0                0          0
## packaged herbs/vegetables                      0                0          0
## brandy                                         0                0          0
## ketchup                                        0                0          0
## abrasive cleaner                               0                0          0
## light bulbs                                    0                0          0
## artif. sweetener                               0                0          0
## nuts/prunes                                    0                0          0
## specialty fat                                  0                0          0
## skin care                                      0                0          0
## fish                                           0                0          0
## potato products                                0                0          0
## root vegetables                                0                0          0
## snack products                                 0                0          0
## nut snack                                      0                0          0
## soap                                           0                0          0
## syrup                                          0                0          0
## bathroom cleaner                               0                0          0
## canned fruit                                   0                0          0
## cookware                                       0                0          0
## cooking chocolate                              0                0          0
## tidbits                                        0                0          0
## cocoa drinks                                   0                0          0
## pudding powder                                 0                0          0
## ready soups                                    0                0          0
## organic marinated meat                         0                0          0
## flower soil/fertilizer                         0                0          0
## organic products                               0                0          0
## pot plants                                     0                0          0
## prosecco                                       0                0          0
## frankfurter                                    0                0          0
## decalcifier                                    0                0          0
## honey                                          0                0          0
## specialty vegetables                           0                0          0
## cream                                          0                0          0
## hair spray                                     0                0          0
## frozen fruits                                  0                0          0
## rubbing alcohol                                0                0          0
## liqueur                                        0                0          0
## make up remover                                0                0          0
## salad dressing                                 0                0          0
## frozen chicken                                 0                0          0
## whisky                                         0                0          0
## baby cosmetics                                 0                0          0
## toilet cleaner                                 0                0          0
## bags                                           0                0          0
## canned herbs                                   0                0          0
## kitchen utensil                                0                0          0
## preservation products                          0                0          0
## baby food                                      0                0          0
## frozen herbss                                  0                0          0
## organic sausage                                0                0          0
## sound storage medium                           0                0          0
##                           prosecco frankfurter decalcifier honey
## rice                             0           0           0     0
## veggies                          0           0           0     0
## loaf                             0           0           0     0
## coke                             0           0           0     0
## yogurt                           0           0           0     0
## vegetables                       0           0           0     0
## mineral water                    0           0           0     0
## Plastic bags                     0           0           0     0
## tropical fruit                   0           0           0     0
## marinated meat                   0           0           0     0
## pies/pasties                     0           0           0     0
## newspapers                       0           0           0     0
## citrus                           0           0           0     0
## whipped/sour cream               0           0           0     0
## heinken                          0           0           0     0
## green tea                        0           0           0     0
## pip fruit                        0           0           0     0
## brown bread                      0           0           0     0
## fruit/vegetable juice            0           0           0     0
## domestic eggs                    0           0           0     0
## coffee                           0           0           0     0
## margarine                        0           0           0     0
## beef                             0           0           0     0
## curd                             0           0           0     0
## butter                           0           0           0     0
## marinated meats                  0           0           0     0
## napkins                          0           0           0     0
## halal meat                       0           0           0     0
## chocolate                        0           0           0     0
## frozen vegetables                0           0           0     0
## chicken                          0           0           0     0
## white bread                      0           0           0     0
## cream cheese                     0           0           0     0
## waffles                          0           0           0     0
## dessert                          0           0           0     0
## salty snack                      0           0           0     0
## long life bakery product         0           0           0     0
## berries                          0           0           0     0
## hamburger meat                   0           0           0     0
## sugar                            0           0           0     0
## hygiene articles                 0           0           0     0
## UHT-milk                         0           0           0     0
## onions                           0           0           0     0
## candy                            0           0           0     0
## specialty chocolate              0           0           0     0
## butter milk                      0           0           0     0
## oil                              0           0           0     0
## frozen meals                     0           0           0     0
## misc. beverages                  0           0           0     0
## specialty bar                    0           0           0     0
## ham                              0           0           0     0
## beverages                        0           0           0     0
## meat                             0           0           0     0
## ice cream                        0           0           0     0
## sliced cheese                    0           0           0     0
## hard cheese                      0           0           0     0
## noodles                          0           0           0     0
## grapes                           0           0           0     0
## cat food                         0           0           0     0
## chewing gum                      0           0           0     0
## soda                             0           0           0     0
## detergent                        0           0           0     0
## red/blush wine                   0           0           0     0
## white wine                       0           0           0     0
## turkey                           0           0           0     0
## dishes                           0           0           0     0
## bottled water                    0           0           0     0
## flour                            0           0           0     0
## semi-finished bread              0           0           0     0
## baking powder                    0           0           0     0
## pickled vegetables               0           0           0     0
## herbs                            0           0           0     0
## tropical herbs                   0           0           0     0
## soft cheese                      0           0           0     0
## tea                              0           0           0     0
## processed cheese                 0           0           0     0
## sausage                          0           0           0     0
## pasta                            0           0           0     0
## citrus herbs                     0           0           0     0
## potted plants                    0           0           0     0
## canned fish                      0           0           0     0
## seasonal products                0           0           0     0
## cake bar                         0           0           0     0
## carrots                          0           0           0     0
## mustard                          0           0           0     0
## packaged fruit/vegetables        0           0           0     0
## spread cheese                    0           0           0     0
## frozen dessert                   0           0           0     0
## frozen fish                      0           0           0     0
## cling film/bags                  0           0           0     0
## salt                             0           0           0     0
## liquor                           0           0           0     0
## canned vegetables                0           0           0     0
## bottled beer                     0           0           0     0
## flower (seeds)                   0           0           0     0
## cooking oil                      0           0           0     0
## dish cleaner                     0           0           0     0
## condensed milk                   0           0           0     0
## roll products                    0           0           0     0
## photo/film                       0           0           0     0
## pet care                         0           0           0     0
## chocolate marshmallow            0           0           0     0
## herbs/vegetable juice            0           0           0     0
## whole milk                       0           0           0     0
## candles                          0           0           0     0
## mayonnaise                       0           0           0     0
## Instant food products            0           0           0     0
## sweet spreads                    0           0           0     0
## liquor (appetizer)               0           0           0     0
## specialty cheese                 0           0           0     0
## frozen potato products           0           0           0     0
## house keeping products           0           0           0     0
## dog food                         0           0           0     0
## soy                              0           0           0     0
## instant coffee                   0           0           0     0
## pip herbs                        0           0           0     0
## zwieback                         0           0           0     0
## finished products                0           0           0     0
## popcorn                          0           0           0     0
## vinegar                          0           0           0     0
## soups                            0           0           0     0
## female sanitary products         0           0           0     0
## sparkling wine                   0           0           0     0
## dental care                      0           0           0     0
## cereals                          0           0           0     0
## kitchen towels                   0           0           0     0
## curd cheese                      0           0           0     0
## other vegetables                 0           0           0     0
## rolls/buns                       0           0           0     0
## softener                         0           0           0     0
## cleaner                          0           0           0     0
## spices                           0           0           0     0
## jam                              0           0           0     0
## sauces                           0           0           0     0
## rum                              0           0           0     0
## liver loaf                       0           0           0     0
## male cosmetics                   0           0           0     0
## meat spreads                     0           0           0     0
## packaged herbs/vegetables        0           0           0     0
## brandy                           0           0           0     0
## ketchup                          0           0           0     0
## abrasive cleaner                 0           0           0     0
## light bulbs                      0           0           0     0
## artif. sweetener                 0           0           0     0
## nuts/prunes                      0           0           0     0
## specialty fat                    0           0           0     0
## skin care                        0           0           0     0
## fish                             0           0           0     0
## potato products                  0           0           0     0
## root vegetables                  0           0           0     0
## snack products                   0           0           0     0
## nut snack                        0           0           0     0
## soap                             0           0           0     0
## syrup                            0           0           0     0
## bathroom cleaner                 0           0           0     0
## canned fruit                     0           0           0     0
## cookware                         0           0           0     0
## cooking chocolate                0           0           0     0
## tidbits                          0           0           0     0
## cocoa drinks                     0           0           0     0
## pudding powder                   0           0           0     0
## ready soups                      0           0           0     0
## organic marinated meat           0           0           0     0
## flower soil/fertilizer           0           0           0     0
## organic products                 0           0           0     0
## pot plants                       0           0           0     0
## prosecco                         0           0           0     0
## frankfurter                      0           0           0     0
## decalcifier                      0           0           0     0
## honey                            0           0           0     0
## specialty vegetables             0           0           0     0
## cream                            0           0           0     0
## hair spray                       0           0           0     0
## frozen fruits                    0           0           0     0
## rubbing alcohol                  0           0           0     0
## liqueur                          0           0           0     0
## make up remover                  0           0           0     0
## salad dressing                   0           0           0     0
## frozen chicken                   0           0           0     0
## whisky                           0           0           0     0
## baby cosmetics                   0           0           0     0
## toilet cleaner                   0           0           0     0
## bags                             0           0           0     0
## canned herbs                     0           0           0     0
## kitchen utensil                  0           0           0     0
## preservation products            0           0           0     0
## baby food                        0           0           0     0
## frozen herbss                    0           0           0     0
## organic sausage                  0           0           0     0
## sound storage medium             0           0           0     0
##                           specialty vegetables cream hair spray frozen fruits
## rice                                         0     0          0             0
## veggies                                      0     0          0             0
## loaf                                         0     0          0             0
## coke                                         0     0          0             0
## yogurt                                       0     0          0             0
## vegetables                                   0     0          0             0
## mineral water                                0     0          0             0
## Plastic bags                                 0     0          0             0
## tropical fruit                               0     0          0             0
## marinated meat                               0     0          0             0
## pies/pasties                                 0     0          0             0
## newspapers                                   0     0          0             0
## citrus                                       0     0          0             0
## whipped/sour cream                           0     0          0             0
## heinken                                      0     0          0             0
## green tea                                    0     0          0             0
## pip fruit                                    0     0          0             0
## brown bread                                  0     0          0             0
## fruit/vegetable juice                        0     0          0             0
## domestic eggs                                0     0          0             0
## coffee                                       0     0          0             0
## margarine                                    0     0          0             0
## beef                                         0     0          0             0
## curd                                         0     0          0             0
## butter                                       0     0          0             0
## marinated meats                              0     0          0             0
## napkins                                      0     0          0             0
## halal meat                                   0     0          0             0
## chocolate                                    0     0          0             0
## frozen vegetables                            0     0          0             0
## chicken                                      0     0          0             0
## white bread                                  0     0          0             0
## cream cheese                                 0     0          0             0
## waffles                                      0     0          0             0
## dessert                                      0     0          0             0
## salty snack                                  0     0          0             0
## long life bakery product                     0     0          0             0
## berries                                      0     0          0             0
## hamburger meat                               0     0          0             0
## sugar                                        0     0          0             0
## hygiene articles                             0     0          0             0
## UHT-milk                                     0     0          0             0
## onions                                       0     0          0             0
## candy                                        0     0          0             0
## specialty chocolate                          0     0          0             0
## butter milk                                  0     0          0             0
## oil                                          0     0          0             0
## frozen meals                                 0     0          0             0
## misc. beverages                              0     0          0             0
## specialty bar                                0     0          0             0
## ham                                          0     0          0             0
## beverages                                    0     0          0             0
## meat                                         0     0          0             0
## ice cream                                    0     0          0             0
## sliced cheese                                0     0          0             0
## hard cheese                                  0     0          0             0
## noodles                                      0     0          0             0
## grapes                                       0     0          0             0
## cat food                                     0     0          0             0
## chewing gum                                  0     0          0             0
## soda                                         0     0          0             0
## detergent                                    0     0          0             0
## red/blush wine                               0     0          0             0
## white wine                                   0     0          0             0
## turkey                                       0     0          0             0
## dishes                                       0     0          0             0
## bottled water                                0     0          0             0
## flour                                        0     0          0             0
## semi-finished bread                          0     0          0             0
## baking powder                                0     0          0             0
## pickled vegetables                           0     0          0             0
## herbs                                        0     0          0             0
## tropical herbs                               0     0          0             0
## soft cheese                                  0     0          0             0
## tea                                          0     0          0             0
## processed cheese                             0     0          0             0
## sausage                                      0     0          0             0
## pasta                                        0     0          0             0
## citrus herbs                                 0     0          0             0
## potted plants                                0     0          0             0
## canned fish                                  0     0          0             0
## seasonal products                            0     0          0             0
## cake bar                                     0     0          0             0
## carrots                                      0     0          0             0
## mustard                                      0     0          0             0
## packaged fruit/vegetables                    0     0          0             0
## spread cheese                                0     0          0             0
## frozen dessert                               0     0          0             0
## frozen fish                                  0     0          0             0
## cling film/bags                              0     0          0             0
## salt                                         0     0          0             0
## liquor                                       0     0          0             0
## canned vegetables                            0     0          0             0
## bottled beer                                 0     0          0             0
## flower (seeds)                               0     0          0             0
## cooking oil                                  0     0          0             0
## dish cleaner                                 0     0          0             0
## condensed milk                               0     0          0             0
## roll products                                0     0          0             0
## photo/film                                   0     0          0             0
## pet care                                     0     0          0             0
## chocolate marshmallow                        0     0          0             0
## herbs/vegetable juice                        0     0          0             0
## whole milk                                   0     0          0             0
## candles                                      0     0          0             0
## mayonnaise                                   0     0          0             0
## Instant food products                        0     0          0             0
## sweet spreads                                0     0          0             0
## liquor (appetizer)                           0     0          0             0
## specialty cheese                             0     0          0             0
## frozen potato products                       0     0          0             0
## house keeping products                       0     0          0             0
## dog food                                     0     0          0             0
## soy                                          0     0          0             0
## instant coffee                               0     0          0             0
## pip herbs                                    0     0          0             0
## zwieback                                     0     0          0             0
## finished products                            0     0          0             0
## popcorn                                      0     0          0             0
## vinegar                                      0     0          0             0
## soups                                        0     0          0             0
## female sanitary products                     0     0          0             0
## sparkling wine                               0     0          0             0
## dental care                                  0     0          0             0
## cereals                                      0     0          0             0
## kitchen towels                               0     0          0             0
## curd cheese                                  0     0          0             0
## other vegetables                             0     0          0             0
## rolls/buns                                   0     0          0             0
## softener                                     0     0          0             0
## cleaner                                      0     0          0             0
## spices                                       0     0          0             0
## jam                                          0     0          0             0
## sauces                                       0     0          0             0
## rum                                          0     0          0             0
## liver loaf                                   0     0          0             0
## male cosmetics                               0     0          0             0
## meat spreads                                 0     0          0             0
## packaged herbs/vegetables                    0     0          0             0
## brandy                                       0     0          0             0
## ketchup                                      0     0          0             0
## abrasive cleaner                             0     0          0             0
## light bulbs                                  0     0          0             0
## artif. sweetener                             0     0          0             0
## nuts/prunes                                  0     0          0             0
## specialty fat                                0     0          0             0
## skin care                                    0     0          0             0
## fish                                         0     0          0             0
## potato products                              0     0          0             0
## root vegetables                              0     0          0             0
## snack products                               0     0          0             0
## nut snack                                    0     0          0             0
## soap                                         0     0          0             0
## syrup                                        0     0          0             0
## bathroom cleaner                             0     0          0             0
## canned fruit                                 0     0          0             0
## cookware                                     0     0          0             0
## cooking chocolate                            0     0          0             0
## tidbits                                      0     0          0             0
## cocoa drinks                                 0     0          0             0
## pudding powder                               0     0          0             0
## ready soups                                  0     0          0             0
## organic marinated meat                       0     0          0             0
## flower soil/fertilizer                       0     0          0             0
## organic products                             0     0          0             0
## pot plants                                   0     0          0             0
## prosecco                                     0     0          0             0
## frankfurter                                  0     0          0             0
## decalcifier                                  0     0          0             0
## honey                                        0     0          0             0
## specialty vegetables                         0     0          0             0
## cream                                        0     0          0             0
## hair spray                                   0     0          0             0
## frozen fruits                                0     0          0             0
## rubbing alcohol                              0     0          0             0
## liqueur                                      0     0          0             0
## make up remover                              0     0          0             0
## salad dressing                               0     0          0             0
## frozen chicken                               0     0          0             0
## whisky                                       0     0          0             0
## baby cosmetics                               0     0          0             0
## toilet cleaner                               0     0          0             0
## bags                                         0     0          0             0
## canned herbs                                 0     0          0             0
## kitchen utensil                              0     0          0             0
## preservation products                        0     0          0             0
## baby food                                    0     0          0             0
## frozen herbss                                0     0          0             0
## organic sausage                              0     0          0             0
## sound storage medium                         0     0          0             0
##                           rubbing alcohol liqueur make up remover
## rice                                    0       0               0
## veggies                                 0       0               0
## loaf                                    0       0               0
## coke                                    0       0               0
## yogurt                                  0       0               0
## vegetables                              0       0               0
## mineral water                           0       0               0
## Plastic bags                            0       0               0
## tropical fruit                          0       0               0
## marinated meat                          0       0               0
## pies/pasties                            0       0               0
## newspapers                              0       0               0
## citrus                                  0       0               0
## whipped/sour cream                      0       0               0
## heinken                                 0       0               0
## green tea                               0       0               0
## pip fruit                               0       0               0
## brown bread                             0       0               0
## fruit/vegetable juice                   0       0               0
## domestic eggs                           0       0               0
## coffee                                  0       0               0
## margarine                               0       0               0
## beef                                    0       0               0
## curd                                    0       0               0
## butter                                  0       0               0
## marinated meats                         0       0               0
## napkins                                 0       0               0
## halal meat                              0       0               0
## chocolate                               0       0               0
## frozen vegetables                       0       0               0
## chicken                                 0       0               0
## white bread                             0       0               0
## cream cheese                            0       0               0
## waffles                                 0       0               0
## dessert                                 0       0               0
## salty snack                             0       0               0
## long life bakery product                0       0               0
## berries                                 0       0               0
## hamburger meat                          0       0               0
## sugar                                   0       0               0
## hygiene articles                        0       0               0
## UHT-milk                                0       0               0
## onions                                  0       0               0
## candy                                   0       0               0
## specialty chocolate                     0       0               0
## butter milk                             0       0               0
## oil                                     0       0               0
## frozen meals                            0       0               0
## misc. beverages                         0       0               0
## specialty bar                           0       0               0
## ham                                     0       0               0
## beverages                               0       0               0
## meat                                    0       0               0
## ice cream                               0       0               0
## sliced cheese                           0       0               0
## hard cheese                             0       0               0
## noodles                                 0       0               0
## grapes                                  0       0               0
## cat food                                0       0               0
## chewing gum                             0       0               0
## soda                                    0       0               0
## detergent                               0       0               0
## red/blush wine                          0       0               0
## white wine                              0       0               0
## turkey                                  0       0               0
## dishes                                  0       0               0
## bottled water                           0       0               0
## flour                                   0       0               0
## semi-finished bread                     0       0               0
## baking powder                           0       0               0
## pickled vegetables                      0       0               0
## herbs                                   0       0               0
## tropical herbs                          0       0               0
## soft cheese                             0       0               0
## tea                                     0       0               0
## processed cheese                        0       0               0
## sausage                                 0       0               0
## pasta                                   0       0               0
## citrus herbs                            0       0               0
## potted plants                           0       0               0
## canned fish                             0       0               0
## seasonal products                       0       0               0
## cake bar                                0       0               0
## carrots                                 0       0               0
## mustard                                 0       0               0
## packaged fruit/vegetables               0       0               0
## spread cheese                           0       0               0
## frozen dessert                          0       0               0
## frozen fish                             0       0               0
## cling film/bags                         0       0               0
## salt                                    0       0               0
## liquor                                  0       0               0
## canned vegetables                       0       0               0
## bottled beer                            0       0               0
## flower (seeds)                          0       0               0
## cooking oil                             0       0               0
## dish cleaner                            0       0               0
## condensed milk                          0       0               0
## roll products                           0       0               0
## photo/film                              0       0               0
## pet care                                0       0               0
## chocolate marshmallow                   0       0               0
## herbs/vegetable juice                   0       0               0
## whole milk                              0       0               0
## candles                                 0       0               0
## mayonnaise                              0       0               0
## Instant food products                   0       0               0
## sweet spreads                           0       0               0
## liquor (appetizer)                      0       0               0
## specialty cheese                        0       0               0
## frozen potato products                  0       0               0
## house keeping products                  0       0               0
## dog food                                0       0               0
## soy                                     0       0               0
## instant coffee                          0       0               0
## pip herbs                               0       0               0
## zwieback                                0       0               0
## finished products                       0       0               0
## popcorn                                 0       0               0
## vinegar                                 0       0               0
## soups                                   0       0               0
## female sanitary products                0       0               0
## sparkling wine                          0       0               0
## dental care                             0       0               0
## cereals                                 0       0               0
## kitchen towels                          0       0               0
## curd cheese                             0       0               0
## other vegetables                        0       0               0
## rolls/buns                              0       0               0
## softener                                0       0               0
## cleaner                                 0       0               0
## spices                                  0       0               0
## jam                                     0       0               0
## sauces                                  0       0               0
## rum                                     0       0               0
## liver loaf                              0       0               0
## male cosmetics                          0       0               0
## meat spreads                            0       0               0
## packaged herbs/vegetables               0       0               0
## brandy                                  0       0               0
## ketchup                                 0       0               0
## abrasive cleaner                        0       0               0
## light bulbs                             0       0               0
## artif. sweetener                        0       0               0
## nuts/prunes                             0       0               0
## specialty fat                           0       0               0
## skin care                               0       0               0
## fish                                    0       0               0
## potato products                         0       0               0
## root vegetables                         0       0               0
## snack products                          0       0               0
## nut snack                               0       0               0
## soap                                    0       0               0
## syrup                                   0       0               0
## bathroom cleaner                        0       0               0
## canned fruit                            0       0               0
## cookware                                0       0               0
## cooking chocolate                       0       0               0
## tidbits                                 0       0               0
## cocoa drinks                            0       0               0
## pudding powder                          0       0               0
## ready soups                             0       0               0
## organic marinated meat                  0       0               0
## flower soil/fertilizer                  0       0               0
## organic products                        0       0               0
## pot plants                              0       0               0
## prosecco                                0       0               0
## frankfurter                             0       0               0
## decalcifier                             0       0               0
## honey                                   0       0               0
## specialty vegetables                    0       0               0
## cream                                   0       0               0
## hair spray                              0       0               0
## frozen fruits                           0       0               0
## rubbing alcohol                         0       0               0
## liqueur                                 0       0               0
## make up remover                         0       0               0
## salad dressing                          0       0               0
## frozen chicken                          0       0               0
## whisky                                  0       0               0
## baby cosmetics                          0       0               0
## toilet cleaner                          0       0               0
## bags                                    0       0               0
## canned herbs                            0       0               0
## kitchen utensil                         0       0               0
## preservation products                   0       0               0
## baby food                               0       0               0
## frozen herbss                           0       0               0
## organic sausage                         0       0               0
## sound storage medium                    0       0               0
##                           salad dressing frozen chicken whisky baby cosmetics
## rice                                   0              0      0              0
## veggies                                0              0      0              0
## loaf                                   0              0      0              0
## coke                                   0              0      0              0
## yogurt                                 0              0      0              0
## vegetables                             0              0      0              0
## mineral water                          0              0      0              0
## Plastic bags                           0              0      0              0
## tropical fruit                         0              0      0              0
## marinated meat                         0              0      0              0
## pies/pasties                           0              0      0              0
## newspapers                             0              0      0              0
## citrus                                 0              0      0              0
## whipped/sour cream                     0              0      0              0
## heinken                                0              0      0              0
## green tea                              0              0      0              0
## pip fruit                              0              0      0              0
## brown bread                            0              0      0              0
## fruit/vegetable juice                  0              0      0              0
## domestic eggs                          0              0      0              0
## coffee                                 0              0      0              0
## margarine                              0              0      0              0
## beef                                   0              0      0              0
## curd                                   0              0      0              0
## butter                                 0              0      0              0
## marinated meats                        0              0      0              0
## napkins                                0              0      0              0
## halal meat                             0              0      0              0
## chocolate                              0              0      0              0
## frozen vegetables                      0              0      0              0
## chicken                                0              0      0              0
## white bread                            0              0      0              0
## cream cheese                           0              0      0              0
## waffles                                0              0      0              0
## dessert                                0              0      0              0
## salty snack                            0              0      0              0
## long life bakery product               0              0      0              0
## berries                                0              0      0              0
## hamburger meat                         0              0      0              0
## sugar                                  0              0      0              0
## hygiene articles                       0              0      0              0
## UHT-milk                               0              0      0              0
## onions                                 0              0      0              0
## candy                                  0              0      0              0
## specialty chocolate                    0              0      0              0
## butter milk                            0              0      0              0
## oil                                    0              0      0              0
## frozen meals                           0              0      0              0
## misc. beverages                        0              0      0              0
## specialty bar                          0              0      0              0
## ham                                    0              0      0              0
## beverages                              0              0      0              0
## meat                                   0              0      0              0
## ice cream                              0              0      0              0
## sliced cheese                          0              0      0              0
## hard cheese                            0              0      0              0
## noodles                                0              0      0              0
## grapes                                 0              0      0              0
## cat food                               0              0      0              0
## chewing gum                            0              0      0              0
## soda                                   0              0      0              0
## detergent                              0              0      0              0
## red/blush wine                         0              0      0              0
## white wine                             0              0      0              0
## turkey                                 0              0      0              0
## dishes                                 0              0      0              0
## bottled water                          0              0      0              0
## flour                                  0              0      0              0
## semi-finished bread                    0              0      0              0
## baking powder                          0              0      0              0
## pickled vegetables                     0              0      0              0
## herbs                                  0              0      0              0
## tropical herbs                         0              0      0              0
## soft cheese                            0              0      0              0
## tea                                    0              0      0              0
## processed cheese                       0              0      0              0
## sausage                                0              0      0              0
## pasta                                  0              0      0              0
## citrus herbs                           0              0      0              0
## potted plants                          0              0      0              0
## canned fish                            0              0      0              0
## seasonal products                      0              0      0              0
## cake bar                               0              0      0              0
## carrots                                0              0      0              0
## mustard                                0              0      0              0
## packaged fruit/vegetables              0              0      0              0
## spread cheese                          0              0      0              0
## frozen dessert                         0              0      0              0
## frozen fish                            0              0      0              0
## cling film/bags                        0              0      0              0
## salt                                   0              0      0              0
## liquor                                 0              0      0              0
## canned vegetables                      0              0      0              0
## bottled beer                           0              0      0              0
## flower (seeds)                         0              0      0              0
## cooking oil                            0              0      0              0
## dish cleaner                           0              0      0              0
## condensed milk                         0              0      0              0
## roll products                          0              0      0              0
## photo/film                             0              0      0              0
## pet care                               0              0      0              0
## chocolate marshmallow                  0              0      0              0
## herbs/vegetable juice                  0              0      0              0
## whole milk                             0              0      0              0
## candles                                0              0      0              0
## mayonnaise                             0              0      0              0
## Instant food products                  0              0      0              0
## sweet spreads                          0              0      0              0
## liquor (appetizer)                     0              0      0              0
## specialty cheese                       0              0      0              0
## frozen potato products                 0              0      0              0
## house keeping products                 0              0      0              0
## dog food                               0              0      0              0
## soy                                    0              0      0              0
## instant coffee                         0              0      0              0
## pip herbs                              0              0      0              0
## zwieback                               0              0      0              0
## finished products                      0              0      0              0
## popcorn                                0              0      0              0
## vinegar                                0              0      0              0
## soups                                  0              0      0              0
## female sanitary products               0              0      0              0
## sparkling wine                         0              0      0              0
## dental care                            0              0      0              0
## cereals                                0              0      0              0
## kitchen towels                         0              0      0              0
## curd cheese                            0              0      0              0
## other vegetables                       0              0      0              0
## rolls/buns                             0              0      0              0
## softener                               0              0      0              0
## cleaner                                0              0      0              0
## spices                                 0              0      0              0
## jam                                    0              0      0              0
## sauces                                 0              0      0              0
## rum                                    0              0      0              0
## liver loaf                             0              0      0              0
## male cosmetics                         0              0      0              0
## meat spreads                           0              0      0              0
## packaged herbs/vegetables              0              0      0              0
## brandy                                 0              0      0              0
## ketchup                                0              0      0              0
## abrasive cleaner                       0              0      0              0
## light bulbs                            0              0      0              0
## artif. sweetener                       0              0      0              0
## nuts/prunes                            0              0      0              0
## specialty fat                          0              0      0              0
## skin care                              0              0      0              0
## fish                                   0              0      0              0
## potato products                        0              0      0              0
## root vegetables                        0              0      0              0
## snack products                         0              0      0              0
## nut snack                              0              0      0              0
## soap                                   0              0      0              0
## syrup                                  0              0      0              0
## bathroom cleaner                       0              0      0              0
## canned fruit                           0              0      0              0
## cookware                               0              0      0              0
## cooking chocolate                      0              0      0              0
## tidbits                                0              0      0              0
## cocoa drinks                           0              0      0              0
## pudding powder                         0              0      0              0
## ready soups                            0              0      0              0
## organic marinated meat                 0              0      0              0
## flower soil/fertilizer                 0              0      0              0
## organic products                       0              0      0              0
## pot plants                             0              0      0              0
## prosecco                               0              0      0              0
## frankfurter                            0              0      0              0
## decalcifier                            0              0      0              0
## honey                                  0              0      0              0
## specialty vegetables                   0              0      0              0
## cream                                  0              0      0              0
## hair spray                             0              0      0              0
## frozen fruits                          0              0      0              0
## rubbing alcohol                        0              0      0              0
## liqueur                                0              0      0              0
## make up remover                        0              0      0              0
## salad dressing                         0              0      0              0
## frozen chicken                         0              0      0              0
## whisky                                 0              0      0              0
## baby cosmetics                         0              0      0              0
## toilet cleaner                         0              0      0              0
## bags                                   0              0      0              0
## canned herbs                           0              0      0              0
## kitchen utensil                        0              0      0              0
## preservation products                  0              0      0              0
## baby food                              0              0      0              0
## frozen herbss                          0              0      0              0
## organic sausage                        0              0      0              0
## sound storage medium                   0              0      0              0
##                           toilet cleaner bags canned herbs kitchen utensil
## rice                                   0    0            0               0
## veggies                                0    0            0               0
## loaf                                   0    0            0               0
## coke                                   0    0            0               0
## yogurt                                 0    0            0               0
## vegetables                             0    0            0               0
## mineral water                          0    0            0               0
## Plastic bags                           0    0            0               0
## tropical fruit                         0    0            0               0
## marinated meat                         0    0            0               0
## pies/pasties                           0    0            0               0
## newspapers                             0    0            0               0
## citrus                                 0    0            0               0
## whipped/sour cream                     0    0            0               0
## heinken                                0    0            0               0
## green tea                              0    0            0               0
## pip fruit                              0    0            0               0
## brown bread                            0    0            0               0
## fruit/vegetable juice                  0    0            0               0
## domestic eggs                          0    0            0               0
## coffee                                 0    0            0               0
## margarine                              0    0            0               0
## beef                                   0    0            0               0
## curd                                   0    0            0               0
## butter                                 0    0            0               0
## marinated meats                        0    0            0               0
## napkins                                0    0            0               0
## halal meat                             0    0            0               0
## chocolate                              0    0            0               0
## frozen vegetables                      0    0            0               0
## chicken                                0    0            0               0
## white bread                            0    0            0               0
## cream cheese                           0    0            0               0
## waffles                                0    0            0               0
## dessert                                0    0            0               0
## salty snack                            0    0            0               0
## long life bakery product               0    0            0               0
## berries                                0    0            0               0
## hamburger meat                         0    0            0               0
## sugar                                  0    0            0               0
## hygiene articles                       0    0            0               0
## UHT-milk                               0    0            0               0
## onions                                 0    0            0               0
## candy                                  0    0            0               0
## specialty chocolate                    0    0            0               0
## butter milk                            0    0            0               0
## oil                                    0    0            0               0
## frozen meals                           0    0            0               0
## misc. beverages                        0    0            0               0
## specialty bar                          0    0            0               0
## ham                                    0    0            0               0
## beverages                              0    0            0               0
## meat                                   0    0            0               0
## ice cream                              0    0            0               0
## sliced cheese                          0    0            0               0
## hard cheese                            0    0            0               0
## noodles                                0    0            0               0
## grapes                                 0    0            0               0
## cat food                               0    0            0               0
## chewing gum                            0    0            0               0
## soda                                   0    0            0               0
## detergent                              0    0            0               0
## red/blush wine                         0    0            0               0
## white wine                             0    0            0               0
## turkey                                 0    0            0               0
## dishes                                 0    0            0               0
## bottled water                          0    0            0               0
## flour                                  0    0            0               0
## semi-finished bread                    0    0            0               0
## baking powder                          0    0            0               0
## pickled vegetables                     0    0            0               0
## herbs                                  0    0            0               0
## tropical herbs                         0    0            0               0
## soft cheese                            0    0            0               0
## tea                                    0    0            0               0
## processed cheese                       0    0            0               0
## sausage                                0    0            0               0
## pasta                                  0    0            0               0
## citrus herbs                           0    0            0               0
## potted plants                          0    0            0               0
## canned fish                            0    0            0               0
## seasonal products                      0    0            0               0
## cake bar                               0    0            0               0
## carrots                                0    0            0               0
## mustard                                0    0            0               0
## packaged fruit/vegetables              0    0            0               0
## spread cheese                          0    0            0               0
## frozen dessert                         0    0            0               0
## frozen fish                            0    0            0               0
## cling film/bags                        0    0            0               0
## salt                                   0    0            0               0
## liquor                                 0    0            0               0
## canned vegetables                      0    0            0               0
## bottled beer                           0    0            0               0
## flower (seeds)                         0    0            0               0
## cooking oil                            0    0            0               0
## dish cleaner                           0    0            0               0
## condensed milk                         0    0            0               0
## roll products                          0    0            0               0
## photo/film                             0    0            0               0
## pet care                               0    0            0               0
## chocolate marshmallow                  0    0            0               0
## herbs/vegetable juice                  0    0            0               0
## whole milk                             0    0            0               0
## candles                                0    0            0               0
## mayonnaise                             0    0            0               0
## Instant food products                  0    0            0               0
## sweet spreads                          0    0            0               0
## liquor (appetizer)                     0    0            0               0
## specialty cheese                       0    0            0               0
## frozen potato products                 0    0            0               0
## house keeping products                 0    0            0               0
## dog food                               0    0            0               0
## soy                                    0    0            0               0
## instant coffee                         0    0            0               0
## pip herbs                              0    0            0               0
## zwieback                               0    0            0               0
## finished products                      0    0            0               0
## popcorn                                0    0            0               0
## vinegar                                0    0            0               0
## soups                                  0    0            0               0
## female sanitary products               0    0            0               0
## sparkling wine                         0    0            0               0
## dental care                            0    0            0               0
## cereals                                0    0            0               0
## kitchen towels                         0    0            0               0
## curd cheese                            0    0            0               0
## other vegetables                       0    0            0               0
## rolls/buns                             0    0            0               0
## softener                               0    0            0               0
## cleaner                                0    0            0               0
## spices                                 0    0            0               0
## jam                                    0    0            0               0
## sauces                                 0    0            0               0
## rum                                    0    0            0               0
## liver loaf                             0    0            0               0
## male cosmetics                         0    0            0               0
## meat spreads                           0    0            0               0
## packaged herbs/vegetables              0    0            0               0
## brandy                                 0    0            0               0
## ketchup                                0    0            0               0
## abrasive cleaner                       0    0            0               0
## light bulbs                            0    0            0               0
## artif. sweetener                       0    0            0               0
## nuts/prunes                            0    0            0               0
## specialty fat                          0    0            0               0
## skin care                              0    0            0               0
## fish                                   0    0            0               0
## potato products                        0    0            0               0
## root vegetables                        0    0            0               0
## snack products                         0    0            0               0
## nut snack                              0    0            0               0
## soap                                   0    0            0               0
## syrup                                  0    0            0               0
## bathroom cleaner                       0    0            0               0
## canned fruit                           0    0            0               0
## cookware                               0    0            0               0
## cooking chocolate                      0    0            0               0
## tidbits                                0    0            0               0
## cocoa drinks                           0    0            0               0
## pudding powder                         0    0            0               0
## ready soups                            0    0            0               0
## organic marinated meat                 0    0            0               0
## flower soil/fertilizer                 0    0            0               0
## organic products                       0    0            0               0
## pot plants                             0    0            0               0
## prosecco                               0    0            0               0
## frankfurter                            0    0            0               0
## decalcifier                            0    0            0               0
## honey                                  0    0            0               0
## specialty vegetables                   0    0            0               0
## cream                                  0    0            0               0
## hair spray                             0    0            0               0
## frozen fruits                          0    0            0               0
## rubbing alcohol                        0    0            0               0
## liqueur                                0    0            0               0
## make up remover                        0    0            0               0
## salad dressing                         0    0            0               0
## frozen chicken                         0    0            0               0
## whisky                                 0    0            0               0
## baby cosmetics                         0    0            0               0
## toilet cleaner                         0    0            0               0
## bags                                   0    0            0               0
## canned herbs                           0    0            0               0
## kitchen utensil                        0    0            0               0
## preservation products                  0    0            0               0
## baby food                              0    0            0               0
## frozen herbss                          0    0            0               0
## organic sausage                        0    0            0               0
## sound storage medium                   0    0            0               0
##                           preservation products baby food frozen herbss
## rice                                          0         0             0
## veggies                                       0         0             0
## loaf                                          0         0             0
## coke                                          0         0             0
## yogurt                                        0         0             0
## vegetables                                    0         0             0
## mineral water                                 0         0             0
## Plastic bags                                  0         0             0
## tropical fruit                                0         0             0
## marinated meat                                0         0             0
## pies/pasties                                  0         0             0
## newspapers                                    0         0             0
## citrus                                        0         0             0
## whipped/sour cream                            0         0             0
## heinken                                       0         0             0
## green tea                                     0         0             0
## pip fruit                                     0         0             0
## brown bread                                   0         0             0
## fruit/vegetable juice                         0         0             0
## domestic eggs                                 0         0             0
## coffee                                        0         0             0
## margarine                                     0         0             0
## beef                                          0         0             0
## curd                                          0         0             0
## butter                                        0         0             0
## marinated meats                               0         0             0
## napkins                                       0         0             0
## halal meat                                    0         0             0
## chocolate                                     0         0             0
## frozen vegetables                             0         0             0
## chicken                                       0         0             0
## white bread                                   0         0             0
## cream cheese                                  0         0             0
## waffles                                       0         0             0
## dessert                                       0         0             0
## salty snack                                   0         0             0
## long life bakery product                      0         0             0
## berries                                       0         0             0
## hamburger meat                                0         0             0
## sugar                                         0         0             0
## hygiene articles                              0         0             0
## UHT-milk                                      0         0             0
## onions                                        0         0             0
## candy                                         0         0             0
## specialty chocolate                           0         0             0
## butter milk                                   0         0             0
## oil                                           0         0             0
## frozen meals                                  0         0             0
## misc. beverages                               0         0             0
## specialty bar                                 0         0             0
## ham                                           0         0             0
## beverages                                     0         0             0
## meat                                          0         0             0
## ice cream                                     0         0             0
## sliced cheese                                 0         0             0
## hard cheese                                   0         0             0
## noodles                                       0         0             0
## grapes                                        0         0             0
## cat food                                      0         0             0
## chewing gum                                   0         0             0
## soda                                          0         0             0
## detergent                                     0         0             0
## red/blush wine                                0         0             0
## white wine                                    0         0             0
## turkey                                        0         0             0
## dishes                                        0         0             0
## bottled water                                 0         0             0
## flour                                         0         0             0
## semi-finished bread                           0         0             0
## baking powder                                 0         0             0
## pickled vegetables                            0         0             0
## herbs                                         0         0             0
## tropical herbs                                0         0             0
## soft cheese                                   0         0             0
## tea                                           0         0             0
## processed cheese                              0         0             0
## sausage                                       0         0             0
## pasta                                         0         0             0
## citrus herbs                                  0         0             0
## potted plants                                 0         0             0
## canned fish                                   0         0             0
## seasonal products                             0         0             0
## cake bar                                      0         0             0
## carrots                                       0         0             0
## mustard                                       0         0             0
## packaged fruit/vegetables                     0         0             0
## spread cheese                                 0         0             0
## frozen dessert                                0         0             0
## frozen fish                                   0         0             0
## cling film/bags                               0         0             0
## salt                                          0         0             0
## liquor                                        0         0             0
## canned vegetables                             0         0             0
## bottled beer                                  0         0             0
## flower (seeds)                                0         0             0
## cooking oil                                   0         0             0
## dish cleaner                                  0         0             0
## condensed milk                                0         0             0
## roll products                                 0         0             0
## photo/film                                    0         0             0
## pet care                                      0         0             0
## chocolate marshmallow                         0         0             0
## herbs/vegetable juice                         0         0             0
## whole milk                                    0         0             0
## candles                                       0         0             0
## mayonnaise                                    0         0             0
## Instant food products                         0         0             0
## sweet spreads                                 0         0             0
## liquor (appetizer)                            0         0             0
## specialty cheese                              0         0             0
## frozen potato products                        0         0             0
## house keeping products                        0         0             0
## dog food                                      0         0             0
## soy                                           0         0             0
## instant coffee                                0         0             0
## pip herbs                                     0         0             0
## zwieback                                      0         0             0
## finished products                             0         0             0
## popcorn                                       0         0             0
## vinegar                                       0         0             0
## soups                                         0         0             0
## female sanitary products                      0         0             0
## sparkling wine                                0         0             0
## dental care                                   0         0             0
## cereals                                       0         0             0
## kitchen towels                                0         0             0
## curd cheese                                   0         0             0
## other vegetables                              0         0             0
## rolls/buns                                    0         0             0
## softener                                      0         0             0
## cleaner                                       0         0             0
## spices                                        0         0             0
## jam                                           0         0             0
## sauces                                        0         0             0
## rum                                           0         0             0
## liver loaf                                    0         0             0
## male cosmetics                                0         0             0
## meat spreads                                  0         0             0
## packaged herbs/vegetables                     0         0             0
## brandy                                        0         0             0
## ketchup                                       0         0             0
## abrasive cleaner                              0         0             0
## light bulbs                                   0         0             0
## artif. sweetener                              0         0             0
## nuts/prunes                                   0         0             0
## specialty fat                                 0         0             0
## skin care                                     0         0             0
## fish                                          0         0             0
## potato products                               0         0             0
## root vegetables                               0         0             0
## snack products                                0         0             0
## nut snack                                     0         0             0
## soap                                          0         0             0
## syrup                                         0         0             0
## bathroom cleaner                              0         0             0
## canned fruit                                  0         0             0
## cookware                                      0         0             0
## cooking chocolate                             0         0             0
## tidbits                                       0         0             0
## cocoa drinks                                  0         0             0
## pudding powder                                0         0             0
## ready soups                                   0         0             0
## organic marinated meat                        0         0             0
## flower soil/fertilizer                        0         0             0
## organic products                              0         0             0
## pot plants                                    0         0             0
## prosecco                                      0         0             0
## frankfurter                                   0         0             0
## decalcifier                                   0         0             0
## honey                                         0         0             0
## specialty vegetables                          0         0             0
## cream                                         0         0             0
## hair spray                                    0         0             0
## frozen fruits                                 0         0             0
## rubbing alcohol                               0         0             0
## liqueur                                       0         0             0
## make up remover                               0         0             0
## salad dressing                                0         0             0
## frozen chicken                                0         0             0
## whisky                                        0         0             0
## baby cosmetics                                0         0             0
## toilet cleaner                                0         0             0
## bags                                          0         0             0
## canned herbs                                  0         0             0
## kitchen utensil                               0         0             0
## preservation products                         0         0             0
## baby food                                     0         0             0
## frozen herbss                                 0         0             0
## organic sausage                               0         0             0
## sound storage medium                          0         0             0
##                           organic sausage sound storage medium
## rice                                    0                    0
## veggies                                 0                    0
## loaf                                    0                    0
## coke                                    0                    0
## yogurt                                  0                    0
## vegetables                              0                    0
## mineral water                           0                    0
## Plastic bags                            0                    0
## tropical fruit                          0                    0
## marinated meat                          0                    0
## pies/pasties                            0                    0
## newspapers                              0                    0
## citrus                                  0                    0
## whipped/sour cream                      0                    0
## heinken                                 0                    0
## green tea                               0                    0
## pip fruit                               0                    0
## brown bread                             0                    0
## fruit/vegetable juice                   0                    0
## domestic eggs                           0                    0
## coffee                                  0                    0
## margarine                               0                    0
## beef                                    0                    0
## curd                                    0                    0
## butter                                  0                    0
## marinated meats                         0                    0
## napkins                                 0                    0
## halal meat                              0                    0
## chocolate                               0                    0
## frozen vegetables                       0                    0
## chicken                                 0                    0
## white bread                             0                    0
## cream cheese                            0                    0
## waffles                                 0                    0
## dessert                                 0                    0
## salty snack                             0                    0
## long life bakery product                0                    0
## berries                                 0                    0
## hamburger meat                          0                    0
## sugar                                   0                    0
## hygiene articles                        0                    0
## UHT-milk                                0                    0
## onions                                  0                    0
## candy                                   0                    0
## specialty chocolate                     0                    0
## butter milk                             0                    0
## oil                                     0                    0
## frozen meals                            0                    0
## misc. beverages                         0                    0
## specialty bar                           0                    0
## ham                                     0                    0
## beverages                               0                    0
## meat                                    0                    0
## ice cream                               0                    0
## sliced cheese                           0                    0
## hard cheese                             0                    0
## noodles                                 0                    0
## grapes                                  0                    0
## cat food                                0                    0
## chewing gum                             0                    0
## soda                                    0                    0
## detergent                               0                    0
## red/blush wine                          0                    0
## white wine                              0                    0
## turkey                                  0                    0
## dishes                                  0                    0
## bottled water                           0                    0
## flour                                   0                    0
## semi-finished bread                     0                    0
## baking powder                           0                    0
## pickled vegetables                      0                    0
## herbs                                   0                    0
## tropical herbs                          0                    0
## soft cheese                             0                    0
## tea                                     0                    0
## processed cheese                        0                    0
## sausage                                 0                    0
## pasta                                   0                    0
## citrus herbs                            0                    0
## potted plants                           0                    0
## canned fish                             0                    0
## seasonal products                       0                    0
## cake bar                                0                    0
## carrots                                 0                    0
## mustard                                 0                    0
## packaged fruit/vegetables               0                    0
## spread cheese                           0                    0
## frozen dessert                          0                    0
## frozen fish                             0                    0
## cling film/bags                         0                    0
## salt                                    0                    0
## liquor                                  0                    0
## canned vegetables                       0                    0
## bottled beer                            0                    0
## flower (seeds)                          0                    0
## cooking oil                             0                    0
## dish cleaner                            0                    0
## condensed milk                          0                    0
## roll products                           0                    0
## photo/film                              0                    0
## pet care                                0                    0
## chocolate marshmallow                   0                    0
## herbs/vegetable juice                   0                    0
## whole milk                              0                    0
## candles                                 0                    0
## mayonnaise                              0                    0
## Instant food products                   0                    0
## sweet spreads                           0                    0
## liquor (appetizer)                      0                    0
## specialty cheese                        0                    0
## frozen potato products                  0                    0
## house keeping products                  0                    0
## dog food                                0                    0
## soy                                     0                    0
## instant coffee                          0                    0
## pip herbs                               0                    0
## zwieback                                0                    0
## finished products                       0                    0
## popcorn                                 0                    0
## vinegar                                 0                    0
## soups                                   0                    0
## female sanitary products                0                    0
## sparkling wine                          0                    0
## dental care                             0                    0
## cereals                                 0                    0
## kitchen towels                          0                    0
## curd cheese                             0                    0
## other vegetables                        0                    0
## rolls/buns                              0                    0
## softener                                0                    0
## cleaner                                 0                    0
## spices                                  0                    0
## jam                                     0                    0
## sauces                                  0                    0
## rum                                     0                    0
## liver loaf                              0                    0
## male cosmetics                          0                    0
## meat spreads                            0                    0
## packaged herbs/vegetables               0                    0
## brandy                                  0                    0
## ketchup                                 0                    0
## abrasive cleaner                        0                    0
## light bulbs                             0                    0
## artif. sweetener                        0                    0
## nuts/prunes                             0                    0
## specialty fat                           0                    0
## skin care                               0                    0
## fish                                    0                    0
## potato products                         0                    0
## root vegetables                         0                    0
## snack products                          0                    0
## nut snack                               0                    0
## soap                                    0                    0
## syrup                                   0                    0
## bathroom cleaner                        0                    0
## canned fruit                            0                    0
## cookware                                0                    0
## cooking chocolate                       0                    0
## tidbits                                 0                    0
## cocoa drinks                            0                    0
## pudding powder                          0                    0
## ready soups                             0                    0
## organic marinated meat                  0                    0
## flower soil/fertilizer                  0                    0
## organic products                        0                    0
## pot plants                              0                    0
## prosecco                                0                    0
## frankfurter                             0                    0
## decalcifier                             0                    0
## honey                                   0                    0
## specialty vegetables                    0                    0
## cream                                   0                    0
## hair spray                              0                    0
## frozen fruits                           0                    0
## rubbing alcohol                         0                    0
## liqueur                                 0                    0
## make up remover                         0                    0
## salad dressing                          0                    0
## frozen chicken                          0                    0
## whisky                                  0                    0
## baby cosmetics                          0                    0
## toilet cleaner                          0                    0
## bags                                    0                    0
## canned herbs                            0                    0
## kitchen utensil                         0                    0
## preservation products                   0                    0
## baby food                               0                    0
## frozen herbss                           0                    0
## organic sausage                         0                    0
## sound storage medium                    0                    0

3. Vizualization

set the minimum support at 15%

itemFrequencyPlot(shopping, support = 0.15)

limit the plot to a specific number of items (e.g. 25 ones)

itemFrequencyPlot(shopping, topN = 25)

Visualize the sparse matrix for the first 5 items using a different color scheme and grid

image(as(shopping[1:5,], "matrix"), 
      col = terrain.colors(100), 
      main = "Sparse Matrix Visualization - First 5 Items", 
      xlab = "Items", 
      ylab = "Transactions")

This matrix visualizes the presence or absence of each item in the transactions. Each cell represents whether an item is bought in a particular transaction. A darker color indicates a higher frequency (greater support) of the item being purchased in a given transaction, whereas a lighter color indicates lower frequency.

We can observe how frequently each of the first five items appear in the transactions. Items with darker areas indicate they are bought more often, while items with lighter areas are purchased less frequently.

Sample 100 transactions from the ‘groceries’ sparse matrix

sampled_shopping <- sample(1:nrow(shopping), 100)
sampled_matrix <- shopping[sampled_shopping,]

Convert the sparse matrix to a dense matrix for visualization

dense_sampled_matrix <- as(sampled_matrix, "matrix")

Visualize the sampled dense matrix with a different color scheme and grid

image(dense_sampled_matrix, 
      col = topo.colors(100), 
      main = "Sparse Matrix Visualization - Sample of 100 Items", 
      xlab = "Items", 
      ylab = "Transactions")

Here each cell represents whether a particular item was bought in a transaction. The color intensity indicates how often an item appears in a transaction. The color scheme is so that more frequent items appear red, showing where the highest support occurs.

Random selection of 20 transactions

image(sample(shopping, 20))

4. Associate Rule Minging

ECLAT

I’ll keep the max length of items in the set to 18

freq.items<-eclat(shopping, parameter=list(supp=0.006, maxlen=15)) 
inspect(freq.items)

Support: The support values indicate the proportion of transactions in the dataset that contain each item. For example, “rice” appears in 32.48% of the transactions, which is relatively high compared to other items like “beef” (10.99%).

Count: This shows the absolute number of transactions in which the item appears. Higher counts indicate higher occurrence in the dataset.

The dataset contains a variety of common items, with “rice” being the most frequent. Other items like “vegetables” and “noodles” also appear frequently. Items like “beef” and “canned beer” have much lower support, indicating they are less common in the dataset.

Vector of support values

round(support(items(freq.items), shopping) , 2) 
##   [1] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
##  [16] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
##  [31] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
##  [46] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
##  [61] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
##  [76] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.02 0.01 0.01
##  [91] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
## [106] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.02 0.01
## [121] 0.01 0.01 0.01 0.01 0.01 0.02 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
## [136] 0.01 0.02 0.02 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.02 0.01 0.01
## [151] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.02 0.02 0.01 0.01 0.01 0.01
## [166] 0.01 0.01 0.01 0.01 0.01 0.02 0.01 0.01 0.02 0.01 0.01 0.01 0.01 0.01 0.01
## [181] 0.01 0.01 0.01 0.01 0.01 0.02 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
## [196] 0.01 0.01 0.01 0.02 0.02 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.02
## [211] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.02 0.01
## [226] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
## [241] 0.02 0.02 0.01 0.01 0.02 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
## [256] 0.01 0.03 0.02 0.02 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
## [271] 0.01 0.01 0.01 0.02 0.02 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
## [286] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.02 0.02 0.01 0.01 0.01 0.01 0.01
## [301] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.03 0.02
## [316] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
## [331] 0.01 0.02 0.02 0.02 0.01 0.01 0.02 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
## [346] 0.01 0.01 0.01 0.01 0.01 0.01 0.03 0.02 0.01 0.02 0.01 0.01 0.01 0.01 0.01
## [361] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.03 0.02 0.02
## [376] 0.01 0.01 0.01 0.02 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
## [391] 0.01 0.03 0.02 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
## [406] 0.01 0.01 0.01 0.03 0.02 0.02 0.02 0.01 0.02 0.01 0.01 0.01 0.01 0.01 0.01
## [421] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.03 0.03 0.02 0.01 0.02 0.01 0.02
## [436] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.03 0.02
## [451] 0.02 0.03 0.01 0.02 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
## [466] 0.01 0.01 0.03 0.03 0.02 0.01 0.02 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
## [481] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.03 0.02 0.02 0.02 0.01 0.03 0.02
## [496] 0.01 0.01 0.01 0.02 0.02 0.02 0.02 0.01 0.02 0.01 0.01 0.01 0.01 0.01 0.01
## [511] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.02 0.04 0.03 0.03 0.02 0.02 0.02 0.01
## [526] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.04 0.03 0.02 0.03 0.02 0.01 0.01 0.01
## [541] 0.01 0.02 0.01 0.02 0.05 0.04 0.03 0.02 0.01 0.01 0.02 0.05 0.04 0.03 0.02
## [556] 0.06 0.04 0.07 0.26 0.17 0.14 0.16 0.12 0.15 0.09 0.10 0.10 0.07 0.08 0.07
## [571] 0.08 0.06 0.07 0.08 0.06 0.06 0.06 0.06 0.06 0.06 0.06 0.05 0.05 0.07 0.05
## [586] 0.05 0.05 0.04 0.04 0.04 0.04 0.04 0.04 0.03 0.04 0.04 0.03 0.03 0.04 0.07
## [601] 0.03 0.03 0.03 0.03 0.03 0.03 0.02 0.03 0.03 0.02 0.03 0.02 0.03 0.03 0.02
## [616] 0.03 0.02 0.02 0.03 0.02 0.02 0.02 0.02 0.02 0.02 0.02 0.02 0.02 0.01 0.02
## [631] 0.02 0.02 0.02 0.02 0.02 0.01 0.02 0.02 0.01 0.01 0.01 0.02 0.01 0.01 0.02
## [646] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
## [661] 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
## [676] 0.01 0.01 0.01 0.01 0.01

These values provide a clearer picture of the relative frequency of the items in your dataset. The higher the support value, the more commonly the item appears in the transactions.

Basic statistics with reference to confidence

freq.rules <- ruleInduction(freq.items, shopping, confidence = 0.5)
freq.rules
## set of 55 rules
plot(freq.rules, method="matrix", measure="lift")
## Itemsets in Antecedent (LHS)
##  [1] "{rice,tropical fruit,vegetables}"    "{rice,tropical fruit,yogurt}"       
##  [3] "{tropical fruit,vegetables}"         "{tropical fruit,whipped/sour cream}"
##  [5] "{citrus,vegetables}"                 "{pip fruit,vegetables}"             
##  [7] "{halal meat,vegetables}"             "{loaf,vegetables}"                  
##  [9] "{butter,yogurt}"                     "{butter,whipped/sour cream}"        
## [11] "{tropical fruit,veggies,yogurt}"     "{butter,vegetables}"                
## [13] "{vegetables,veggies,yogurt}"         "{domestic eggs,vegetables}"         
## [15] "{domestic eggs,tropical fruit}"      "{butter,veggies}"                   
## [17] "{curd,veggies}"                      "{tropical fruit,vegetables,veggies}"
## [19] "{curd,yogurt}"                       "{chicken,vegetables}"               
## [21] "{vegetables,yogurt}"                 "{curd,vegetables}"                  
## [23] "{frozen vegetables,vegetables}"      "{frozen vegetables,veggies}"        
## [25] "{curd,whipped/sour cream}"           "{domestic eggs,veggies}"            
## [27] "{vegetables,whipped/sour cream}"     "{newspapers,vegetables}"            
## [29] "{cream cheese,yogurt}"               "{domestic eggs,yogurt}"             
## [31] "{loaf,margarine}"                    "{marinated meat,vegetables}"        
## [33] "{pip fruit,yogurt}"                  "{loaf,whipped/sour cream}"          
## [35] "{whipped/sour cream,yogurt}"         "{baking powder}"                    
## [37] "{pip fruit,veggies}"                 "{tropical fruit,yogurt}"            
## [39] "{veggies,yogurt}"                    "{marinated meat,tropical fruit}"    
## [41] "{fruit/vegetable juice,veggies}"     "{fruit/vegetable juice,yogurt}"     
## [43] "{napkins,yogurt}"                    "{beef,loaf}"                        
## [45] "{veggies,whipped/sour cream}"        "{margarine,yogurt}"                 
## [47] "{cream cheese,veggies}"              "{frozen vegetables,yogurt}"         
## [49] "{brown bread,veggies}"              
## Itemsets in Consequent (RHS)
## [1] "{rice}"    "{veggies}"

plot(freq.items, method="graph")
## Warning: Too many itemsets supplied. Only plotting the best 100 using 'support'
## (change control parameter max if needed).
## Warning: ggrepel: 15 unlabeled data points (too many overlaps). Consider
## increasing max.overlaps

For top 10 rules Paralel cordinates plot for 20 rules

top_rules <- head(freq.items, 10)
plot(top_rules, method="paracoord", control=list(reorder=TRUE))

plot(top_rules, method="graph", control=list(reorder=TRUE))
## Warning: Unknown control parameters: reorder
## Available control parameters (with default values):
## layout    =  stress
## circular  =  FALSE
## ggraphdots    =  NULL
## edges     =  <environment>
## nodes     =  <environment>
## nodetext  =  <environment>
## colors    =  c("#EE0000FF", "#EEEEEEFF")
## engine    =  ggplot2
## max   =  100
## verbose   =  FALSE

For top 20 rules Parralel cordinates plot for 10 rules

top_rules <- head(freq.items, 20)
plot(top_rules, method="paracoord", control=list(reorder=TRUE))

plot(top_rules, method="graph", control=list(reorder=TRUE))
## Warning: Unknown control parameters: reorder
## Available control parameters (with default values):
## layout    =  stress
## circular  =  FALSE
## ggraphdots    =  NULL
## edges     =  <environment>
## nodes     =  <environment>
## nodetext  =  <environment>
## colors    =  c("#EE0000FF", "#EEEEEEFF")
## engine    =  ggplot2
## max   =  100
## verbose   =  FALSE

Creating a matrix of item associations (support)

item_matrix <- itemFrequency(shopping)

Plot the heatmap

data("Groceries")

rules <- apriori(Groceries, parameter = list(supp = 0.01, conf = 0.2))
## Apriori
## 
## Parameter specification:
##  confidence minval smax arem  aval originalSupport maxtime support minlen
##         0.2    0.1    1 none FALSE            TRUE       5    0.01      1
##  maxlen target  ext
##      10  rules TRUE
## 
## Algorithmic control:
##  filter tree heap memopt load sort verbose
##     0.1 TRUE TRUE  FALSE TRUE    2    TRUE
## 
## Absolute minimum support count: 98 
## 
## set item appearances ...[0 item(s)] done [0.00s].
## set transactions ...[169 item(s), 9835 transaction(s)] done [0.00s].
## sorting and recoding items ... [88 item(s)] done [0.00s].
## creating transaction tree ... done [0.00s].
## checking subsets of size 1 2 3 4 done [0.00s].
## writing ... [232 rule(s)] done [0.00s].
## creating S4 object  ... done [0.00s].
item_matrix <- crossTable(Groceries, measure = "support")

heatmap(item_matrix, main = "Item Association Heatmap", scale = "column", col = heat.colors(256))

Most rules have support values ranging between 0.006 to 0.02, which suggests a decent frequency in the dataset, depending on the total number of transactions.

Confidence values are mostly above 0.5, indicating that the rules have moderate to strong predictive power. Lift values range from about 1.96 to 3.46, suggesting positive associations, with some rules showing strong lifts, particularly those with lift values above 2. Output set of 0 rules after running the ruleInduction function indicates that no association rules were generated from the frequent itemsets you provided, given the specified confidence level.

inspect(freq.rules) 
##      lhs                                      rhs       support     confidence
## [1]  {baking powder}                       => {rice}    0.009184128 0.5309278 
## [2]  {cream cheese, yogurt}                => {rice}    0.006419973 0.5413534 
## [3]  {cream cheese, veggies}               => {rice}    0.006063308 0.5037037 
## [4]  {chicken, vegetables}                 => {rice}    0.006598306 0.5736434 
## [5]  {halal meat, vegetables}              => {rice}    0.006152474 0.5149254 
## [6]  {halal meat, vegetables}              => {veggies} 0.006152474 0.5149254 
## [7]  {frozen vegetables, vegetables}       => {rice}    0.006776638 0.5629630 
## [8]  {frozen vegetables, yogurt}           => {rice}    0.006152474 0.5036496 
## [9]  {frozen vegetables, veggies}          => {rice}    0.008738297 0.5600000 
## [10] {napkins, yogurt}                     => {rice}    0.006152474 0.5149254 
## [11] {beef, loaf}                          => {rice}    0.006152474 0.5149254 
## [12] {curd, whipped/sour cream}            => {rice}    0.006063308 0.5573770 
## [13] {curd, vegetables}                    => {rice}    0.006865805 0.5661765 
## [14] {curd, yogurt}                        => {rice}    0.010521623 0.5784314 
## [15] {curd, veggies}                       => {rice}    0.008827463 0.5857988 
## [16] {brown bread, veggies}                => {rice}    0.008203299 0.5000000 
## [17] {loaf, margarine}                     => {rice}    0.006954971 0.5379310 
## [18] {margarine, yogurt}                   => {rice}    0.006865805 0.5065789 
## [19] {butter, whipped/sour cream}          => {rice}    0.006598306 0.6379310 
## [20] {butter, vegetables}                  => {rice}    0.008024967 0.6250000 
## [21] {butter, yogurt}                      => {rice}    0.009184128 0.6397516 
## [22] {butter, veggies}                     => {rice}    0.010343290 0.5888325 
## [23] {fruit/vegetable juice, yogurt}       => {rice}    0.008470798 0.5163043 
## [24] {fruit/vegetable juice, veggies}      => {rice}    0.009540794 0.5169082 
## [25] {newspapers, vegetables}              => {rice}    0.006152474 0.5476190 
## [26] {pip fruit, vegetables}               => {rice}    0.007935800 0.5816993 
## [27] {pip fruit, vegetables}               => {veggies} 0.007133304 0.5228758 
## [28] {pip fruit, yogurt}                   => {rice}    0.008470798 0.5367232 
## [29] {pip fruit, veggies}                  => {rice}    0.012126616 0.5291829 
## [30] {domestic eggs, tropical fruit}       => {rice}    0.006063308 0.6071429 
## [31] {domestic eggs, vegetables}           => {rice}    0.008738297 0.6086957 
## [32] {domestic eggs, yogurt}               => {rice}    0.007489969 0.5384615 
## [33] {domestic eggs, veggies}              => {rice}    0.010878288 0.5570776 
## [34] {citrus, vegetables}                  => {rice}    0.008292465 0.5344828 
## [35] {citrus, vegetables}                  => {veggies} 0.009094962 0.5862069 
## [36] {marinated meat, tropical fruit}      => {rice}    0.006330807 0.5182482 
## [37] {marinated meat, vegetables}          => {rice}    0.007044137 0.5374150 
## [38] {tropical fruit, whipped/sour cream}  => {rice}    0.006954971 0.5735294 
## [39] {tropical fruit, whipped/sour cream}  => {veggies} 0.006865805 0.5661765 
## [40] {vegetables, whipped/sour cream}      => {rice}    0.009719126 0.5505051 
## [41] {loaf, whipped/sour cream}            => {rice}    0.006865805 0.5347222 
## [42] {whipped/sour cream, yogurt}          => {rice}    0.010967454 0.5324675 
## [43] {veggies, whipped/sour cream}         => {rice}    0.012929113 0.5105634 
## [44] {tropical fruit, vegetables, veggies} => {rice}    0.006241641 0.5785124 
## [45] {rice, tropical fruit, vegetables}    => {veggies} 0.006241641 0.5882353 
## [46] {tropical fruit, vegetables}          => {rice}    0.010610789 0.5748792 
## [47] {tropical fruit, vegetables}          => {veggies} 0.010789122 0.5845411 
## [48] {tropical fruit, veggies, yogurt}     => {rice}    0.006865805 0.6363636 
## [49] {rice, tropical fruit, yogurt}        => {veggies} 0.006865805 0.5099338 
## [50] {tropical fruit, yogurt}              => {rice}    0.013464111 0.5243056 
## [51] {loaf, vegetables}                    => {rice}    0.011234953 0.5271967 
## [52] {loaf, vegetables}                    => {veggies} 0.010699955 0.5020921 
## [53] {vegetables, veggies, yogurt}         => {rice}    0.006954971 0.6141732 
## [54] {vegetables, yogurt}                  => {rice}    0.015069104 0.5671141 
## [55] {veggies, yogurt}                     => {rice}    0.019884084 0.5222482 
##      lift     itemset
## [1]  2.070360  14    
## [2]  2.111015 117    
## [3]  1.964199 118    
## [4]  2.236930 135    
## [5]  2.007958 157    
## [6]  3.034623 158    
## [7]  2.195282 196    
## [8]  1.963988 197    
## [9]  2.183727 198    
## [10] 2.007958 209    
## [11] 2.007958 239    
## [12] 2.173499 253    
## [13] 2.207813 254    
## [14] 2.255601 255    
## [15] 2.284330 256    
## [16] 1.949757 273    
## [17] 2.097669 291    
## [18] 1.975411 292    
## [19] 2.487620 310    
## [20] 2.437196 311    
## [21] 2.494720 312    
## [22] 2.296160 313    
## [23] 2.013336 329    
## [24] 2.015690 331    
## [25] 2.135448 348    
## [26] 2.268344 368    
## [27] 3.081478 369    
## [28] 2.092959 370    
## [29] 2.063556 372    
## [30] 2.367562 387    
## [31] 2.373617 388    
## [32] 2.099738 390    
## [33] 2.172332 391    
## [34] 2.084223 423    
## [35] 3.454709 424    
## [36] 2.020916 440    
## [37] 2.095657 443    
## [38] 2.236486 459    
## [39] 3.336663 460    
## [40] 2.146702 461    
## [41] 2.085156 464    
## [42] 2.076364 465    
## [43] 1.990949 467    
## [44] 2.255917 508    
## [45] 3.466663 508    
## [46] 2.241749 509    
## [47] 3.444891 510    
## [48] 2.481508 515    
## [49] 3.005206 515    
## [50] 2.044536 516    
## [51] 2.055810 538    
## [52] 2.958992 539    
## [53] 2.394977 541    
## [54] 2.211469 542    
## [55] 2.036514 555

Apriori

creating the rules - standard settings

rules.shopping<-apriori(shopping, parameter=list(supp=0.1, conf=0.5))  
## Apriori
## 
## Parameter specification:
##  confidence minval smax arem  aval originalSupport maxtime support minlen
##         0.5    0.1    1 none FALSE            TRUE       5     0.1      1
##  maxlen target  ext
##      10  rules TRUE
## 
## Algorithmic control:
##  filter tree heap memopt load sort verbose
##     0.1 TRUE TRUE  FALSE TRUE    2    TRUE
## 
## Absolute minimum support count: 1121 
## 
## set item appearances ...[0 item(s)] done [0.00s].
## set transactions ...[190 item(s), 11215 transaction(s)] done [0.00s].
## sorting and recoding items ... [6 item(s)] done [0.00s].
## creating transaction tree ... done [0.00s].
## checking subsets of size 1 2 done [0.00s].
## writing ... [0 rule(s)] done [0.00s].
## creating S4 object  ... done [0.00s].

5. Advanced Rule Analytics

Digging the rules

Specialized rule search

Generate rules where “rice” is on the right-hand side

rules.rice <- apriori(data=shopping, parameter=list(supp=0.001, conf=0.08),
                      appearance=list(default="lhs", rhs="rice"), control=list(verbose=F))

Sort rules by confidence and display the top ones

rules.rice.byconf <- sort(rules.rice, by="confidence", decreasing=TRUE)
inspect(head(rules.rice.byconf))
##     lhs                                        rhs    support     confidence
## [1] {canned fish, hygiene articles}         => {rice} 0.001159162 1         
## [2] {flour, vegetables, whipped/sour cream} => {rice} 0.001694160 1         
## [3] {cream cheese, domestic eggs, sugar}    => {rice} 0.001248328 1         
## [4] {curd, domestic eggs, sugar}            => {rice} 0.001069996 1         
## [5] {cream cheese, domestic eggs, napkins}  => {rice} 0.001069996 1         
## [6] {oil, vegetables, veggies, yogurt}      => {rice} 0.001248328 1         
##     coverage    lift     count
## [1] 0.001159162 3.899513 13   
## [2] 0.001694160 3.899513 19   
## [3] 0.001248328 3.899513 14   
## [4] 0.001069996 3.899513 12   
## [5] 0.001069996 3.899513 12   
## [6] 0.001248328 3.899513 14

All the top 6 rules have a confidence of 1, meaning that if the items on the left-hand side are purchased, rice is always purchased in those transactions.

We can sense that items like canned fish, hygiene articles, flour, vegetables, cream cheese, domestic eggs, sugar, oil, and yogurt often appear together with rice. This shows that these products are strong associates with rice in the transaction data.

The lift value of 3.90 indicates that the presence of these items together with rice significantly increases the likelihood of purchasing rice, suggesting a strong association.

Combination with low support values indicate that they’re not common accross all transactions.

The count of transactions for each rule is relatively small, suggesting that while the rules have high confidence, the overall frequency of these item combinations is limited.

Generate rules where “rice” is on the left-hand side

rules.rice <- apriori(data=shopping, parameter=list(supp=0.001, conf=0.08),
                      appearance=list(default="rhs", lhs="rice"), control=list(verbose=F))

Sort rules by confidence and display the top ones

rules.rice.byconf <- sort(rules.rice, by="confidence", decreasing=TRUE)
inspect(head(rules.rice.byconf))
##     lhs       rhs          support    confidence coverage  lift     count
## [1] {rice} => {veggies}    0.06678556 0.2604312  0.2564423 1.534806  749 
## [2] {rice} => {yogurt}     0.05563977 0.2169680  0.2564423 1.548884  624 
## [3] {rice} => {vegetables} 0.05162728 0.2013213  0.2564423 1.730129  579 
## [4] {rice} => {loaf}       0.05020062 0.1957580  0.2564423 1.213613  563 
## [5] {}     => {veggies}    0.16968346 0.1696835  1.0000000 1.000000 1903 
## [6] {}     => {loaf}       0.16130183 0.1613018  1.0000000 1.000000 1809

Generate closed frequent itemsets using apriori

closed.itemsets <- apriori(shopping, parameter=list(target="closed frequent itemsets", support=0.25))
## Apriori
## 
## Parameter specification:
##  confidence minval smax arem  aval originalSupport maxtime support minlen
##          NA    0.1    1 none FALSE            TRUE       5    0.25      1
##  maxlen                   target  ext
##      10 closed frequent itemsets TRUE
## 
## Algorithmic control:
##  filter tree heap memopt load sort verbose
##     0.1 TRUE TRUE  FALSE TRUE    2    TRUE
## 
## Absolute minimum support count: 2803 
## 
## set item appearances ...[0 item(s)] done [0.00s].
## set transactions ...[190 item(s), 11215 transaction(s)] done [0.00s].
## sorting and recoding items ... [1 item(s)] done [0.00s].
## creating transaction tree ... done [0.00s].
## checking subsets of size 1 done [0.00s].
## filtering closed item sets ... done [0.00s].
## sorting transactions ... done [0.00s].
## writing ... [1 set(s)] done [0.00s].
## creating S4 object  ... done [0.00s].
inspect(closed.itemsets)
##     items  support   count
## [1] {rice} 0.2564423 2876

High Support: The support value of around 25.64% is relatively high, indicating that rice is a common item in the dataset.

Frequent Item: Since rice appears in 2876 transactions, it can be considered a frequent item and could play a significant role in generating strong association rules.

Check if the itemsets are closed

is.closed(closed.itemsets)
## {rice} 
##   TRUE

Generate closed itemsets using eclat

closed.eclat <- eclat(shopping, parameter=list(supp=0.15, maxlen=15, target="closed frequent itemsets"))
## Eclat
## 
## parameter specification:
##  tidLists support minlen maxlen                   target  ext
##     FALSE    0.15      1     15 closed frequent itemsets TRUE
## 
## algorithmic control:
##  sparse sort verbose
##       7   -2    TRUE
## 
## Absolute minimum support count: 1682 
## 
## create itemset ... 
## set transactions ...[190 item(s), 11215 transaction(s)] done [0.00s].
## sorting and recoding items ... [4 item(s)] done [0.00s].
## creating bit matrix ... [4 row(s), 11215 column(s)] done [0.00s].
## writing  ... [4 set(s)] done [0.00s].
## Creating S4 object  ... done [0.00s].
inspect(closed.eclat)
##     items     support   count
## [1] {rice}    0.2564423 2876 
## [2] {veggies} 0.1696835 1903 
## [3] {loaf}    0.1613018 1809 
## [4] {coke}    0.1529202 1715

Generate maximal itemsets using eclat

maximal.eclat <- eclat(shopping, parameter=list(supp=0.15, maxlen=15, target="maximally frequent itemsets"))
## Eclat
## 
## parameter specification:
##  tidLists support minlen maxlen                      target  ext
##     FALSE    0.15      1     15 maximally frequent itemsets TRUE
## 
## algorithmic control:
##  sparse sort verbose
##       7   -2    TRUE
## 
## Absolute minimum support count: 1682 
## 
## create itemset ... 
## set transactions ...[190 item(s), 11215 transaction(s)] done [0.00s].
## sorting and recoding items ... [4 item(s)] done [0.00s].
## creating bit matrix ... [4 row(s), 11215 column(s)] done [0.00s].
## writing  ... [4 set(s)] done [0.00s].
## Creating S4 object  ... done [0.00s].
inspect(maximal.eclat)
##     items     support   count
## [1] {rice}    0.2564423 2876 
## [2] {veggies} 0.1696835 1903 
## [3] {loaf}    0.1613018 1809 
## [4] {coke}    0.1529202 1715

Significance testing

Test if the rules related to “rice” are statistically significant (Fisher’s exact test)

is.significant(rules.rice, shopping)
##  [1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE
## [13]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
## [25]  TRUE FALSE  TRUE FALSE  TRUE  TRUE  TRUE  TRUE

Many rules show significance (TRUE), particularly after the 10th rule, indicating that the associations between those items and rice are statistically relevant in the dataset.

Maximal Rules

Check if the rules related to “rice” are maximal

is.maximal(rules.rice)
##                 {newspapers}               {pies/pasties} 
##                        FALSE                        FALSE 
##             {marinated meat}              {mineral water} 
##                        FALSE                        FALSE 
##               {Plastic bags}             {tropical fruit} 
##                        FALSE                        FALSE 
##                       {coke}                 {vegetables} 
##                        FALSE                        FALSE 
##                       {loaf}                     {yogurt} 
##                        FALSE                        FALSE 
##                    {veggies}                  {beef,rice} 
##                        FALSE                         TRUE 
##                  {curd,rice}           {brown bread,rice} 
##                         TRUE                         TRUE 
##             {margarine,rice}                {butter,rice} 
##                         TRUE                         TRUE 
## {fruit/vegetable juice,rice}            {newspapers,rice} 
##                         TRUE                         TRUE 
##             {pip fruit,rice}         {domestic eggs,rice} 
##                         TRUE                         TRUE 
##          {pies/pasties,rice}                {citrus,rice} 
##                         TRUE                         TRUE 
##        {marinated meat,rice}    {rice,whipped/sour cream} 
##                         TRUE                         TRUE 
##         {mineral water,rice}          {Plastic bags,rice} 
##                         TRUE                         TRUE 
##        {rice,tropical fruit}                  {coke,rice} 
##                         TRUE                         TRUE 
##            {rice,vegetables}                  {loaf,rice} 
##                         TRUE                         TRUE 
##                {rice,yogurt}               {rice,veggies} 
##                         TRUE                         TRUE

TRUE valuesare considered maximal. rules like {beef, rice}, {curd, rice}, and {margarine, rice} are maximal, meaning adding any other item to the left-hand side wouldn’t make the rule stronger or more significant.

FALSE values are not maximal. {newspapers}, {pies/pasties}, and {mineral water} are not maximal, meaning there might be other items or item combinations that could be added to the left-hand side to make the rule stronger.

Inspect only maximal rules

inspect(rules.rice[is.maximal(rules.rice)==TRUE])
##      lhs       rhs                     support    confidence coverage 
## [1]  {rice} => {beef}                  0.02318324 0.09040334 0.2564423
## [2]  {rice} => {curd}                  0.02683905 0.10465925 0.2564423
## [3]  {rice} => {brown bread}           0.02434240 0.09492350 0.2564423
## [4]  {rice} => {margarine}             0.02425323 0.09457580 0.2564423
## [5]  {rice} => {butter}                0.02710655 0.10570236 0.2564423
## [6]  {rice} => {fruit/vegetable juice} 0.02389657 0.09318498 0.2564423
## [7]  {rice} => {newspapers}            0.02737405 0.10674548 0.2564423
## [8]  {rice} => {pip fruit}             0.02666072 0.10396384 0.2564423
## [9]  {rice} => {domestic eggs}         0.02978154 0.11613352 0.2564423
## [10] {rice} => {pies/pasties}          0.02933571 0.11439499 0.2564423
## [11] {rice} => {citrus}                0.02746322 0.10709318 0.2564423
## [12] {rice} => {marinated meat}        0.02648239 0.10326843 0.2564423
## [13] {rice} => {whipped/sour cream}    0.03227820 0.12586926 0.2564423
## [14] {rice} => {mineral water}         0.03022737 0.11787204 0.2564423
## [15] {rice} => {Plastic bags}          0.02478823 0.09666203 0.2564423
## [16] {rice} => {tropical fruit}        0.03744984 0.14603616 0.2564423
## [17] {rice} => {coke}                  0.03557735 0.13873435 0.2564423
## [18] {rice} => {vegetables}            0.05162728 0.20132128 0.2564423
## [19] {rice} => {loaf}                  0.05020062 0.19575800 0.2564423
## [20] {rice} => {yogurt}                0.05563977 0.21696801 0.2564423
## [21] {rice} => {veggies}               0.06678556 0.26043115 0.2564423
##      lift      count
## [1]  1.5743376 260  
## [2]  1.8368599 301  
## [3]  1.4826840 273  
## [4]  1.6242995 272  
## [5]  1.9182071 304  
## [6]  1.4698587 268  
## [7]  1.3184477 307  
## [8]  1.5671431 299  
## [9]  1.8474290 334  
## [10] 1.3975380 329  
## [11] 1.4754915 308  
## [12] 1.2534150 297  
## [13] 1.7492240 362  
## [14] 1.2161315 339  
## [15] 0.9982179 278  
## [16] 1.5870112 420  
## [17] 0.9072337 399  
## [18] 1.7301289 579  
## [19] 1.2136130 563  
## [20] 1.5488837 624  
## [21] 1.5348058 749

Redundant rules

Identify and inspect non-redundant rules related to “rice”

is.redundant(rules.rice)
##  [1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [13] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [25] FALSE  TRUE FALSE  TRUE FALSE FALSE FALSE FALSE
inspect(rules.rice[is.redundant(rules.rice)==FALSE])
##      lhs       rhs                     support    confidence coverage  lift    
## [1]  {}     => {newspapers}            0.08096300 0.08096300 1.0000000 1.000000
## [2]  {}     => {pies/pasties}          0.08185466 0.08185466 1.0000000 1.000000
## [3]  {}     => {marinated meat}        0.08238966 0.08238966 1.0000000 1.000000
## [4]  {}     => {mineral water}         0.09692376 0.09692376 1.0000000 1.000000
## [5]  {}     => {Plastic bags}          0.09683460 0.09683460 1.0000000 1.000000
## [6]  {}     => {tropical fruit}        0.09201962 0.09201962 1.0000000 1.000000
## [7]  {}     => {coke}                  0.15292020 0.15292020 1.0000000 1.000000
## [8]  {}     => {vegetables}            0.11636202 0.11636202 1.0000000 1.000000
## [9]  {}     => {loaf}                  0.16130183 0.16130183 1.0000000 1.000000
## [10] {}     => {yogurt}                0.14008025 0.14008025 1.0000000 1.000000
## [11] {}     => {veggies}               0.16968346 0.16968346 1.0000000 1.000000
## [12] {rice} => {beef}                  0.02318324 0.09040334 0.2564423 1.574338
## [13] {rice} => {curd}                  0.02683905 0.10465925 0.2564423 1.836860
## [14] {rice} => {brown bread}           0.02434240 0.09492350 0.2564423 1.482684
## [15] {rice} => {margarine}             0.02425323 0.09457580 0.2564423 1.624300
## [16] {rice} => {butter}                0.02710655 0.10570236 0.2564423 1.918207
## [17] {rice} => {fruit/vegetable juice} 0.02389657 0.09318498 0.2564423 1.469859
## [18] {rice} => {newspapers}            0.02737405 0.10674548 0.2564423 1.318448
## [19] {rice} => {pip fruit}             0.02666072 0.10396384 0.2564423 1.567143
## [20] {rice} => {domestic eggs}         0.02978154 0.11613352 0.2564423 1.847429
## [21] {rice} => {pies/pasties}          0.02933571 0.11439499 0.2564423 1.397538
## [22] {rice} => {citrus}                0.02746322 0.10709318 0.2564423 1.475491
## [23] {rice} => {marinated meat}        0.02648239 0.10326843 0.2564423 1.253415
## [24] {rice} => {whipped/sour cream}    0.03227820 0.12586926 0.2564423 1.749224
## [25] {rice} => {mineral water}         0.03022737 0.11787204 0.2564423 1.216132
## [26] {rice} => {tropical fruit}        0.03744984 0.14603616 0.2564423 1.587011
## [27] {rice} => {vegetables}            0.05162728 0.20132128 0.2564423 1.730129
## [28] {rice} => {loaf}                  0.05020062 0.19575800 0.2564423 1.213613
## [29] {rice} => {yogurt}                0.05563977 0.21696801 0.2564423 1.548884
## [30] {rice} => {veggies}               0.06678556 0.26043115 0.2564423 1.534806
##      count
## [1]   908 
## [2]   918 
## [3]   924 
## [4]  1087 
## [5]  1086 
## [6]  1032 
## [7]  1715 
## [8]  1305 
## [9]  1809 
## [10] 1571 
## [11] 1903 
## [12]  260 
## [13]  301 
## [14]  273 
## [15]  272 
## [16]  304 
## [17]  268 
## [18]  307 
## [19]  299 
## [20]  334 
## [21]  329 
## [22]  308 
## [23]  297 
## [24]  362 
## [25]  339 
## [26]  420 
## [27]  579 
## [28]  563 
## [29]  624 
## [30]  749

Supersets and subsets

Check if the rules related to “rice” are supersets or subsets

is.superset(rules.rice)
##   [[ suppressing 32 column names '{newspapers}', '{pies/pasties}', '{marinated meat}' ... ]]
is.subset(rules.rice)
##   [[ suppressing 32 column names '{newspapers}', '{pies/pasties}', '{marinated meat}' ... ]]

Non-sparse check for supersets

is.superset(rules.rice, sparse=FALSE)
##                              {newspapers} {pies/pasties} {marinated meat}
## {newspapers}                         TRUE          FALSE            FALSE
## {pies/pasties}                      FALSE           TRUE            FALSE
## {marinated meat}                    FALSE          FALSE             TRUE
## {mineral water}                     FALSE          FALSE            FALSE
## {Plastic bags}                      FALSE          FALSE            FALSE
## {tropical fruit}                    FALSE          FALSE            FALSE
## {coke}                              FALSE          FALSE            FALSE
## {vegetables}                        FALSE          FALSE            FALSE
## {loaf}                              FALSE          FALSE            FALSE
## {yogurt}                            FALSE          FALSE            FALSE
## {veggies}                           FALSE          FALSE            FALSE
## {beef,rice}                         FALSE          FALSE            FALSE
## {curd,rice}                         FALSE          FALSE            FALSE
## {brown bread,rice}                  FALSE          FALSE            FALSE
## {margarine,rice}                    FALSE          FALSE            FALSE
## {butter,rice}                       FALSE          FALSE            FALSE
## {fruit/vegetable juice,rice}        FALSE          FALSE            FALSE
## {newspapers,rice}                    TRUE          FALSE            FALSE
## {pip fruit,rice}                    FALSE          FALSE            FALSE
## {domestic eggs,rice}                FALSE          FALSE            FALSE
## {pies/pasties,rice}                 FALSE           TRUE            FALSE
## {citrus,rice}                       FALSE          FALSE            FALSE
## {marinated meat,rice}               FALSE          FALSE             TRUE
## {rice,whipped/sour cream}           FALSE          FALSE            FALSE
## {mineral water,rice}                FALSE          FALSE            FALSE
## {Plastic bags,rice}                 FALSE          FALSE            FALSE
## {rice,tropical fruit}               FALSE          FALSE            FALSE
## {coke,rice}                         FALSE          FALSE            FALSE
## {rice,vegetables}                   FALSE          FALSE            FALSE
## {loaf,rice}                         FALSE          FALSE            FALSE
## {rice,yogurt}                       FALSE          FALSE            FALSE
## {rice,veggies}                      FALSE          FALSE            FALSE
##                              {mineral water} {Plastic bags} {tropical fruit}
## {newspapers}                           FALSE          FALSE            FALSE
## {pies/pasties}                         FALSE          FALSE            FALSE
## {marinated meat}                       FALSE          FALSE            FALSE
## {mineral water}                         TRUE          FALSE            FALSE
## {Plastic bags}                         FALSE           TRUE            FALSE
## {tropical fruit}                       FALSE          FALSE             TRUE
## {coke}                                 FALSE          FALSE            FALSE
## {vegetables}                           FALSE          FALSE            FALSE
## {loaf}                                 FALSE          FALSE            FALSE
## {yogurt}                               FALSE          FALSE            FALSE
## {veggies}                              FALSE          FALSE            FALSE
## {beef,rice}                            FALSE          FALSE            FALSE
## {curd,rice}                            FALSE          FALSE            FALSE
## {brown bread,rice}                     FALSE          FALSE            FALSE
## {margarine,rice}                       FALSE          FALSE            FALSE
## {butter,rice}                          FALSE          FALSE            FALSE
## {fruit/vegetable juice,rice}           FALSE          FALSE            FALSE
## {newspapers,rice}                      FALSE          FALSE            FALSE
## {pip fruit,rice}                       FALSE          FALSE            FALSE
## {domestic eggs,rice}                   FALSE          FALSE            FALSE
## {pies/pasties,rice}                    FALSE          FALSE            FALSE
## {citrus,rice}                          FALSE          FALSE            FALSE
## {marinated meat,rice}                  FALSE          FALSE            FALSE
## {rice,whipped/sour cream}              FALSE          FALSE            FALSE
## {mineral water,rice}                    TRUE          FALSE            FALSE
## {Plastic bags,rice}                    FALSE           TRUE            FALSE
## {rice,tropical fruit}                  FALSE          FALSE             TRUE
## {coke,rice}                            FALSE          FALSE            FALSE
## {rice,vegetables}                      FALSE          FALSE            FALSE
## {loaf,rice}                            FALSE          FALSE            FALSE
## {rice,yogurt}                          FALSE          FALSE            FALSE
## {rice,veggies}                         FALSE          FALSE            FALSE
##                              {coke} {vegetables} {loaf} {yogurt} {veggies}
## {newspapers}                  FALSE        FALSE  FALSE    FALSE     FALSE
## {pies/pasties}                FALSE        FALSE  FALSE    FALSE     FALSE
## {marinated meat}              FALSE        FALSE  FALSE    FALSE     FALSE
## {mineral water}               FALSE        FALSE  FALSE    FALSE     FALSE
## {Plastic bags}                FALSE        FALSE  FALSE    FALSE     FALSE
## {tropical fruit}              FALSE        FALSE  FALSE    FALSE     FALSE
## {coke}                         TRUE        FALSE  FALSE    FALSE     FALSE
## {vegetables}                  FALSE         TRUE  FALSE    FALSE     FALSE
## {loaf}                        FALSE        FALSE   TRUE    FALSE     FALSE
## {yogurt}                      FALSE        FALSE  FALSE     TRUE     FALSE
## {veggies}                     FALSE        FALSE  FALSE    FALSE      TRUE
## {beef,rice}                   FALSE        FALSE  FALSE    FALSE     FALSE
## {curd,rice}                   FALSE        FALSE  FALSE    FALSE     FALSE
## {brown bread,rice}            FALSE        FALSE  FALSE    FALSE     FALSE
## {margarine,rice}              FALSE        FALSE  FALSE    FALSE     FALSE
## {butter,rice}                 FALSE        FALSE  FALSE    FALSE     FALSE
## {fruit/vegetable juice,rice}  FALSE        FALSE  FALSE    FALSE     FALSE
## {newspapers,rice}             FALSE        FALSE  FALSE    FALSE     FALSE
## {pip fruit,rice}              FALSE        FALSE  FALSE    FALSE     FALSE
## {domestic eggs,rice}          FALSE        FALSE  FALSE    FALSE     FALSE
## {pies/pasties,rice}           FALSE        FALSE  FALSE    FALSE     FALSE
## {citrus,rice}                 FALSE        FALSE  FALSE    FALSE     FALSE
## {marinated meat,rice}         FALSE        FALSE  FALSE    FALSE     FALSE
## {rice,whipped/sour cream}     FALSE        FALSE  FALSE    FALSE     FALSE
## {mineral water,rice}          FALSE        FALSE  FALSE    FALSE     FALSE
## {Plastic bags,rice}           FALSE        FALSE  FALSE    FALSE     FALSE
## {rice,tropical fruit}         FALSE        FALSE  FALSE    FALSE     FALSE
## {coke,rice}                    TRUE        FALSE  FALSE    FALSE     FALSE
## {rice,vegetables}             FALSE         TRUE  FALSE    FALSE     FALSE
## {loaf,rice}                   FALSE        FALSE   TRUE    FALSE     FALSE
## {rice,yogurt}                 FALSE        FALSE  FALSE     TRUE     FALSE
## {rice,veggies}                FALSE        FALSE  FALSE    FALSE      TRUE
##                              {beef,rice} {curd,rice} {brown bread,rice}
## {newspapers}                       FALSE       FALSE              FALSE
## {pies/pasties}                     FALSE       FALSE              FALSE
## {marinated meat}                   FALSE       FALSE              FALSE
## {mineral water}                    FALSE       FALSE              FALSE
## {Plastic bags}                     FALSE       FALSE              FALSE
## {tropical fruit}                   FALSE       FALSE              FALSE
## {coke}                             FALSE       FALSE              FALSE
## {vegetables}                       FALSE       FALSE              FALSE
## {loaf}                             FALSE       FALSE              FALSE
## {yogurt}                           FALSE       FALSE              FALSE
## {veggies}                          FALSE       FALSE              FALSE
## {beef,rice}                         TRUE       FALSE              FALSE
## {curd,rice}                        FALSE        TRUE              FALSE
## {brown bread,rice}                 FALSE       FALSE               TRUE
## {margarine,rice}                   FALSE       FALSE              FALSE
## {butter,rice}                      FALSE       FALSE              FALSE
## {fruit/vegetable juice,rice}       FALSE       FALSE              FALSE
## {newspapers,rice}                  FALSE       FALSE              FALSE
## {pip fruit,rice}                   FALSE       FALSE              FALSE
## {domestic eggs,rice}               FALSE       FALSE              FALSE
## {pies/pasties,rice}                FALSE       FALSE              FALSE
## {citrus,rice}                      FALSE       FALSE              FALSE
## {marinated meat,rice}              FALSE       FALSE              FALSE
## {rice,whipped/sour cream}          FALSE       FALSE              FALSE
## {mineral water,rice}               FALSE       FALSE              FALSE
## {Plastic bags,rice}                FALSE       FALSE              FALSE
## {rice,tropical fruit}              FALSE       FALSE              FALSE
## {coke,rice}                        FALSE       FALSE              FALSE
## {rice,vegetables}                  FALSE       FALSE              FALSE
## {loaf,rice}                        FALSE       FALSE              FALSE
## {rice,yogurt}                      FALSE       FALSE              FALSE
## {rice,veggies}                     FALSE       FALSE              FALSE
##                              {margarine,rice} {butter,rice}
## {newspapers}                            FALSE         FALSE
## {pies/pasties}                          FALSE         FALSE
## {marinated meat}                        FALSE         FALSE
## {mineral water}                         FALSE         FALSE
## {Plastic bags}                          FALSE         FALSE
## {tropical fruit}                        FALSE         FALSE
## {coke}                                  FALSE         FALSE
## {vegetables}                            FALSE         FALSE
## {loaf}                                  FALSE         FALSE
## {yogurt}                                FALSE         FALSE
## {veggies}                               FALSE         FALSE
## {beef,rice}                             FALSE         FALSE
## {curd,rice}                             FALSE         FALSE
## {brown bread,rice}                      FALSE         FALSE
## {margarine,rice}                         TRUE         FALSE
## {butter,rice}                           FALSE          TRUE
## {fruit/vegetable juice,rice}            FALSE         FALSE
## {newspapers,rice}                       FALSE         FALSE
## {pip fruit,rice}                        FALSE         FALSE
## {domestic eggs,rice}                    FALSE         FALSE
## {pies/pasties,rice}                     FALSE         FALSE
## {citrus,rice}                           FALSE         FALSE
## {marinated meat,rice}                   FALSE         FALSE
## {rice,whipped/sour cream}               FALSE         FALSE
## {mineral water,rice}                    FALSE         FALSE
## {Plastic bags,rice}                     FALSE         FALSE
## {rice,tropical fruit}                   FALSE         FALSE
## {coke,rice}                             FALSE         FALSE
## {rice,vegetables}                       FALSE         FALSE
## {loaf,rice}                             FALSE         FALSE
## {rice,yogurt}                           FALSE         FALSE
## {rice,veggies}                          FALSE         FALSE
##                              {fruit/vegetable juice,rice} {newspapers,rice}
## {newspapers}                                        FALSE             FALSE
## {pies/pasties}                                      FALSE             FALSE
## {marinated meat}                                    FALSE             FALSE
## {mineral water}                                     FALSE             FALSE
## {Plastic bags}                                      FALSE             FALSE
## {tropical fruit}                                    FALSE             FALSE
## {coke}                                              FALSE             FALSE
## {vegetables}                                        FALSE             FALSE
## {loaf}                                              FALSE             FALSE
## {yogurt}                                            FALSE             FALSE
## {veggies}                                           FALSE             FALSE
## {beef,rice}                                         FALSE             FALSE
## {curd,rice}                                         FALSE             FALSE
## {brown bread,rice}                                  FALSE             FALSE
## {margarine,rice}                                    FALSE             FALSE
## {butter,rice}                                       FALSE             FALSE
## {fruit/vegetable juice,rice}                         TRUE             FALSE
## {newspapers,rice}                                   FALSE              TRUE
## {pip fruit,rice}                                    FALSE             FALSE
## {domestic eggs,rice}                                FALSE             FALSE
## {pies/pasties,rice}                                 FALSE             FALSE
## {citrus,rice}                                       FALSE             FALSE
## {marinated meat,rice}                               FALSE             FALSE
## {rice,whipped/sour cream}                           FALSE             FALSE
## {mineral water,rice}                                FALSE             FALSE
## {Plastic bags,rice}                                 FALSE             FALSE
## {rice,tropical fruit}                               FALSE             FALSE
## {coke,rice}                                         FALSE             FALSE
## {rice,vegetables}                                   FALSE             FALSE
## {loaf,rice}                                         FALSE             FALSE
## {rice,yogurt}                                       FALSE             FALSE
## {rice,veggies}                                      FALSE             FALSE
##                              {pip fruit,rice} {domestic eggs,rice}
## {newspapers}                            FALSE                FALSE
## {pies/pasties}                          FALSE                FALSE
## {marinated meat}                        FALSE                FALSE
## {mineral water}                         FALSE                FALSE
## {Plastic bags}                          FALSE                FALSE
## {tropical fruit}                        FALSE                FALSE
## {coke}                                  FALSE                FALSE
## {vegetables}                            FALSE                FALSE
## {loaf}                                  FALSE                FALSE
## {yogurt}                                FALSE                FALSE
## {veggies}                               FALSE                FALSE
## {beef,rice}                             FALSE                FALSE
## {curd,rice}                             FALSE                FALSE
## {brown bread,rice}                      FALSE                FALSE
## {margarine,rice}                        FALSE                FALSE
## {butter,rice}                           FALSE                FALSE
## {fruit/vegetable juice,rice}            FALSE                FALSE
## {newspapers,rice}                       FALSE                FALSE
## {pip fruit,rice}                         TRUE                FALSE
## {domestic eggs,rice}                    FALSE                 TRUE
## {pies/pasties,rice}                     FALSE                FALSE
## {citrus,rice}                           FALSE                FALSE
## {marinated meat,rice}                   FALSE                FALSE
## {rice,whipped/sour cream}               FALSE                FALSE
## {mineral water,rice}                    FALSE                FALSE
## {Plastic bags,rice}                     FALSE                FALSE
## {rice,tropical fruit}                   FALSE                FALSE
## {coke,rice}                             FALSE                FALSE
## {rice,vegetables}                       FALSE                FALSE
## {loaf,rice}                             FALSE                FALSE
## {rice,yogurt}                           FALSE                FALSE
## {rice,veggies}                          FALSE                FALSE
##                              {pies/pasties,rice} {citrus,rice}
## {newspapers}                               FALSE         FALSE
## {pies/pasties}                             FALSE         FALSE
## {marinated meat}                           FALSE         FALSE
## {mineral water}                            FALSE         FALSE
## {Plastic bags}                             FALSE         FALSE
## {tropical fruit}                           FALSE         FALSE
## {coke}                                     FALSE         FALSE
## {vegetables}                               FALSE         FALSE
## {loaf}                                     FALSE         FALSE
## {yogurt}                                   FALSE         FALSE
## {veggies}                                  FALSE         FALSE
## {beef,rice}                                FALSE         FALSE
## {curd,rice}                                FALSE         FALSE
## {brown bread,rice}                         FALSE         FALSE
## {margarine,rice}                           FALSE         FALSE
## {butter,rice}                              FALSE         FALSE
## {fruit/vegetable juice,rice}               FALSE         FALSE
## {newspapers,rice}                          FALSE         FALSE
## {pip fruit,rice}                           FALSE         FALSE
## {domestic eggs,rice}                       FALSE         FALSE
## {pies/pasties,rice}                         TRUE         FALSE
## {citrus,rice}                              FALSE          TRUE
## {marinated meat,rice}                      FALSE         FALSE
## {rice,whipped/sour cream}                  FALSE         FALSE
## {mineral water,rice}                       FALSE         FALSE
## {Plastic bags,rice}                        FALSE         FALSE
## {rice,tropical fruit}                      FALSE         FALSE
## {coke,rice}                                FALSE         FALSE
## {rice,vegetables}                          FALSE         FALSE
## {loaf,rice}                                FALSE         FALSE
## {rice,yogurt}                              FALSE         FALSE
## {rice,veggies}                             FALSE         FALSE
##                              {marinated meat,rice} {rice,whipped/sour cream}
## {newspapers}                                 FALSE                     FALSE
## {pies/pasties}                               FALSE                     FALSE
## {marinated meat}                             FALSE                     FALSE
## {mineral water}                              FALSE                     FALSE
## {Plastic bags}                               FALSE                     FALSE
## {tropical fruit}                             FALSE                     FALSE
## {coke}                                       FALSE                     FALSE
## {vegetables}                                 FALSE                     FALSE
## {loaf}                                       FALSE                     FALSE
## {yogurt}                                     FALSE                     FALSE
## {veggies}                                    FALSE                     FALSE
## {beef,rice}                                  FALSE                     FALSE
## {curd,rice}                                  FALSE                     FALSE
## {brown bread,rice}                           FALSE                     FALSE
## {margarine,rice}                             FALSE                     FALSE
## {butter,rice}                                FALSE                     FALSE
## {fruit/vegetable juice,rice}                 FALSE                     FALSE
## {newspapers,rice}                            FALSE                     FALSE
## {pip fruit,rice}                             FALSE                     FALSE
## {domestic eggs,rice}                         FALSE                     FALSE
## {pies/pasties,rice}                          FALSE                     FALSE
## {citrus,rice}                                FALSE                     FALSE
## {marinated meat,rice}                         TRUE                     FALSE
## {rice,whipped/sour cream}                    FALSE                      TRUE
## {mineral water,rice}                         FALSE                     FALSE
## {Plastic bags,rice}                          FALSE                     FALSE
## {rice,tropical fruit}                        FALSE                     FALSE
## {coke,rice}                                  FALSE                     FALSE
## {rice,vegetables}                            FALSE                     FALSE
## {loaf,rice}                                  FALSE                     FALSE
## {rice,yogurt}                                FALSE                     FALSE
## {rice,veggies}                               FALSE                     FALSE
##                              {mineral water,rice} {Plastic bags,rice}
## {newspapers}                                FALSE               FALSE
## {pies/pasties}                              FALSE               FALSE
## {marinated meat}                            FALSE               FALSE
## {mineral water}                             FALSE               FALSE
## {Plastic bags}                              FALSE               FALSE
## {tropical fruit}                            FALSE               FALSE
## {coke}                                      FALSE               FALSE
## {vegetables}                                FALSE               FALSE
## {loaf}                                      FALSE               FALSE
## {yogurt}                                    FALSE               FALSE
## {veggies}                                   FALSE               FALSE
## {beef,rice}                                 FALSE               FALSE
## {curd,rice}                                 FALSE               FALSE
## {brown bread,rice}                          FALSE               FALSE
## {margarine,rice}                            FALSE               FALSE
## {butter,rice}                               FALSE               FALSE
## {fruit/vegetable juice,rice}                FALSE               FALSE
## {newspapers,rice}                           FALSE               FALSE
## {pip fruit,rice}                            FALSE               FALSE
## {domestic eggs,rice}                        FALSE               FALSE
## {pies/pasties,rice}                         FALSE               FALSE
## {citrus,rice}                               FALSE               FALSE
## {marinated meat,rice}                       FALSE               FALSE
## {rice,whipped/sour cream}                   FALSE               FALSE
## {mineral water,rice}                         TRUE               FALSE
## {Plastic bags,rice}                         FALSE                TRUE
## {rice,tropical fruit}                       FALSE               FALSE
## {coke,rice}                                 FALSE               FALSE
## {rice,vegetables}                           FALSE               FALSE
## {loaf,rice}                                 FALSE               FALSE
## {rice,yogurt}                               FALSE               FALSE
## {rice,veggies}                              FALSE               FALSE
##                              {rice,tropical fruit} {coke,rice}
## {newspapers}                                 FALSE       FALSE
## {pies/pasties}                               FALSE       FALSE
## {marinated meat}                             FALSE       FALSE
## {mineral water}                              FALSE       FALSE
## {Plastic bags}                               FALSE       FALSE
## {tropical fruit}                             FALSE       FALSE
## {coke}                                       FALSE       FALSE
## {vegetables}                                 FALSE       FALSE
## {loaf}                                       FALSE       FALSE
## {yogurt}                                     FALSE       FALSE
## {veggies}                                    FALSE       FALSE
## {beef,rice}                                  FALSE       FALSE
## {curd,rice}                                  FALSE       FALSE
## {brown bread,rice}                           FALSE       FALSE
## {margarine,rice}                             FALSE       FALSE
## {butter,rice}                                FALSE       FALSE
## {fruit/vegetable juice,rice}                 FALSE       FALSE
## {newspapers,rice}                            FALSE       FALSE
## {pip fruit,rice}                             FALSE       FALSE
## {domestic eggs,rice}                         FALSE       FALSE
## {pies/pasties,rice}                          FALSE       FALSE
## {citrus,rice}                                FALSE       FALSE
## {marinated meat,rice}                        FALSE       FALSE
## {rice,whipped/sour cream}                    FALSE       FALSE
## {mineral water,rice}                         FALSE       FALSE
## {Plastic bags,rice}                          FALSE       FALSE
## {rice,tropical fruit}                         TRUE       FALSE
## {coke,rice}                                  FALSE        TRUE
## {rice,vegetables}                            FALSE       FALSE
## {loaf,rice}                                  FALSE       FALSE
## {rice,yogurt}                                FALSE       FALSE
## {rice,veggies}                               FALSE       FALSE
##                              {rice,vegetables} {loaf,rice} {rice,yogurt}
## {newspapers}                             FALSE       FALSE         FALSE
## {pies/pasties}                           FALSE       FALSE         FALSE
## {marinated meat}                         FALSE       FALSE         FALSE
## {mineral water}                          FALSE       FALSE         FALSE
## {Plastic bags}                           FALSE       FALSE         FALSE
## {tropical fruit}                         FALSE       FALSE         FALSE
## {coke}                                   FALSE       FALSE         FALSE
## {vegetables}                             FALSE       FALSE         FALSE
## {loaf}                                   FALSE       FALSE         FALSE
## {yogurt}                                 FALSE       FALSE         FALSE
## {veggies}                                FALSE       FALSE         FALSE
## {beef,rice}                              FALSE       FALSE         FALSE
## {curd,rice}                              FALSE       FALSE         FALSE
## {brown bread,rice}                       FALSE       FALSE         FALSE
## {margarine,rice}                         FALSE       FALSE         FALSE
## {butter,rice}                            FALSE       FALSE         FALSE
## {fruit/vegetable juice,rice}             FALSE       FALSE         FALSE
## {newspapers,rice}                        FALSE       FALSE         FALSE
## {pip fruit,rice}                         FALSE       FALSE         FALSE
## {domestic eggs,rice}                     FALSE       FALSE         FALSE
## {pies/pasties,rice}                      FALSE       FALSE         FALSE
## {citrus,rice}                            FALSE       FALSE         FALSE
## {marinated meat,rice}                    FALSE       FALSE         FALSE
## {rice,whipped/sour cream}                FALSE       FALSE         FALSE
## {mineral water,rice}                     FALSE       FALSE         FALSE
## {Plastic bags,rice}                      FALSE       FALSE         FALSE
## {rice,tropical fruit}                    FALSE       FALSE         FALSE
## {coke,rice}                              FALSE       FALSE         FALSE
## {rice,vegetables}                         TRUE       FALSE         FALSE
## {loaf,rice}                              FALSE        TRUE         FALSE
## {rice,yogurt}                            FALSE       FALSE          TRUE
## {rice,veggies}                           FALSE       FALSE         FALSE
##                              {rice,veggies}
## {newspapers}                          FALSE
## {pies/pasties}                        FALSE
## {marinated meat}                      FALSE
## {mineral water}                       FALSE
## {Plastic bags}                        FALSE
## {tropical fruit}                      FALSE
## {coke}                                FALSE
## {vegetables}                          FALSE
## {loaf}                                FALSE
## {yogurt}                              FALSE
## {veggies}                             FALSE
## {beef,rice}                           FALSE
## {curd,rice}                           FALSE
## {brown bread,rice}                    FALSE
## {margarine,rice}                      FALSE
## {butter,rice}                         FALSE
## {fruit/vegetable juice,rice}          FALSE
## {newspapers,rice}                     FALSE
## {pip fruit,rice}                      FALSE
## {domestic eggs,rice}                  FALSE
## {pies/pasties,rice}                   FALSE
## {citrus,rice}                         FALSE
## {marinated meat,rice}                 FALSE
## {rice,whipped/sour cream}             FALSE
## {mineral water,rice}                  FALSE
## {Plastic bags,rice}                   FALSE
## {rice,tropical fruit}                 FALSE
## {coke,rice}                           FALSE
## {rice,vegetables}                     FALSE
## {loaf,rice}                           FALSE
## {rice,yogurt}                         FALSE
## {rice,veggies}                         TRUE

Supporting transactions

Get the transactions supporting the rules for “rice”

supportingTransactions(rules.rice, shopping)
inspect(supportingTransactions(rules.rice, shopping))

Similarity and Dissimilarity (Jaccard)

Selecting transactions with at least 5% item frequency

selected.transactions <- shopping[, itemFrequency(shopping) > 0.05]

Filter to include only the top 20 items based on frequency (or another threshold)

top_items <- shopping[, itemFrequency(shopping) > 0.1]  
d.jac.i <- dissimilarity(top_items, which="items")
hclust_plot <- hclust(d.jac.i, method="ward.D2")
plot(hclust_plot, main="Dendrogram for Top Items Similarity")

Since lower heights suggest high similarity,{rice and veggies} in the dendogram, While higher heights suggest greater dissimilarity such as {rice/veggies and yogurt}

Or for transactions:

top_transactions <- shopping[1:100, ] 
d.jac.t <- dissimilarity(top_transactions, which="transactions")
hclust_plot_trans <- hclust(d.jac.t, method="ward.D2")
plot(hclust_plot_trans, main="Dendrogram for Top Transactions Similarity")

Transactions that are grouped together at lower levels of the tree are more similar, while those that are grouped together at higher levels have greater differences.

{10,23}, {89,90} more similar transactions

{47,12}, {70,4} greater difference in transactions

Plotting dendrogram for transactions and items

plot(hclust(d.jac.i, method="ward.D2"), main="Dendrogram for Items")

Vizualization

Visualization: Top 10 rules for rice by confidence

top_rules <- head(rules.rice.byconf, 10)
barplot(quality(top_rules)$confidence, names.arg=labels(top_rules), las=2,
        col="skyblue", main="Top 10 Rules for Rice by Confidence", cex.names=0.7)

The barplot shows the top 10 association rules related to rice, with their confidence scores represented as the bar height. Higher bars(namely veggies, vegetables, yogurt and loaf)represent stronger confidence in the association between the items in the rule.

Dendrogram visualization for items

d.jac.i <- dissimilarity(selected.transactions, which="items")
hclust_plot <- hclust(d.jac.i, method="ward.D2")
plot(hclust_plot, main="Dendrogram for Item Similarity")

This dendrogram shows how the items are grouped based on their similarity. Items that are clustered together at lower branches(rice, veggies and vegetables in our case) are more similar, while items joined at higher levels of the tree are more dissimilar.(green tea and plastic bags)

Dendrogram visualization for transactions

d.jac.t <- dissimilarity(selected.transactions, which="transactions")
hclust_plot_trans <- hclust(d.jac.t, method="ward.D2")

Transactions that are grouped together at lower levels of the tree are more similar to each other in terms of the items bought.

6. FPgroth Association Algorithm

FPgrowth

rules_fp_growth <- apriori(shopping, parameter = list(supp = 0.01, conf = 0.5))
## Apriori
## 
## Parameter specification:
##  confidence minval smax arem  aval originalSupport maxtime support minlen
##         0.5    0.1    1 none FALSE            TRUE       5    0.01      1
##  maxlen target  ext
##      10  rules TRUE
## 
## Algorithmic control:
##  filter tree heap memopt load sort verbose
##     0.1 TRUE TRUE  FALSE TRUE    2    TRUE
## 
## Absolute minimum support count: 112 
## 
## set item appearances ...[0 item(s)] done [0.00s].
## set transactions ...[190 item(s), 11215 transaction(s)] done [0.01s].
## sorting and recoding items ... [98 item(s)] done [0.00s].
## creating transaction tree ... done [0.00s].
## checking subsets of size 1 2 3 4 done [0.00s].
## writing ... [13 rule(s)] done [0.00s].
## creating S4 object  ... done [0.00s].
inspect(rules_fp_growth)
##      lhs                              rhs       support    confidence
## [1]  {curd, yogurt}                => {rice}    0.01052162 0.5784314 
## [2]  {butter, veggies}             => {rice}    0.01034329 0.5888325 
## [3]  {pip fruit, veggies}          => {rice}    0.01212662 0.5291829 
## [4]  {domestic eggs, veggies}      => {rice}    0.01087829 0.5570776 
## [5]  {whipped/sour cream, yogurt}  => {rice}    0.01096745 0.5324675 
## [6]  {veggies, whipped/sour cream} => {rice}    0.01292911 0.5105634 
## [7]  {tropical fruit, vegetables}  => {veggies} 0.01078912 0.5845411 
## [8]  {tropical fruit, vegetables}  => {rice}    0.01061079 0.5748792 
## [9]  {tropical fruit, yogurt}      => {rice}    0.01346411 0.5243056 
## [10] {loaf, vegetables}            => {veggies} 0.01069996 0.5020921 
## [11] {loaf, vegetables}            => {rice}    0.01123495 0.5271967 
## [12] {vegetables, yogurt}          => {rice}    0.01506910 0.5671141 
## [13] {veggies, yogurt}             => {rice}    0.01988408 0.5222482 
##      coverage   lift     count
## [1]  0.01818992 2.255601 118  
## [2]  0.01756576 2.296160 116  
## [3]  0.02291574 2.063556 136  
## [4]  0.01952742 2.172332 122  
## [5]  0.02059741 2.076364 123  
## [6]  0.02532323 1.990949 145  
## [7]  0.01845742 3.444891 121  
## [8]  0.01845742 2.241749 119  
## [9]  0.02567989 2.044536 151  
## [10] 0.02131074 2.958992 120  
## [11] 0.02131074 2.055810 126  
## [12] 0.02657156 2.211469 169  
## [13] 0.03807401 2.036514 223
plot(rules_fp_growth, method = "graph")

Support metric shows proportion of transactions that contain both the antecedent and the consequent items. For example, the support of 0.0105 means that 1.05% of all transactions include both curd and yogurt along with rice;

Confidence inturn represents the probability that the consequent item is purchased given that the antecedent (lhs) is purchased. For example, the confidence of 0.5784314 for {curd and yogurt}=>{rice} means that 57.8% of the transactions that have both curd and yogurt also include rice.

Lift is a measure of how much more likely the consequent is to be purchased when the antecedent is purchased compared to when the items are bought independently.

For {curd and yogurt}=>{rice}, the lift value of 2.255 suggests that curd and yogurt together make rice 2.26 times more likely to be purchased than rice on its own.

7. Sankey Diagram

Item Frequency Plot - Absolute and Relative Frequencies for Top 10 Items

itemFrequencyPlot(shopping, topN=15, type="absolute", main="Top 15 Items by Frequency (Absolute)")

itemFrequencyPlot(shopping, topN=15, type="relative", main="Top 15 Items by Frequency (Relative)")

Generate a data frame of the itemset and their associations

freq.items <- eclat(shopping, parameter=list(supp=0.006, maxlen=15))
## Eclat
## 
## parameter specification:
##  tidLists support minlen maxlen            target  ext
##     FALSE   0.006      1     15 frequent itemsets TRUE
## 
## algorithmic control:
##  sparse sort verbose
##       7   -2    TRUE
## 
## Absolute minimum support count: 67 
## 
## create itemset ... 
## set transactions ...[190 item(s), 11215 transaction(s)] done [0.00s].
## sorting and recoding items ... [122 item(s)] done [0.00s].
## creating sparse bit matrix ... [122 row(s), 11215 column(s)] done [0.00s].
## writing  ... [680 set(s)] done [0.02s].
## Creating S4 object  ... done [0.00s].

Here Creating the data frame for Sankey diagram I start with converting the frequent itemsets into pairs of items for the links

Getting itemsets from the frequent itemsets

itemsets <- inspect(freq.items) 

Example of a simple data frame for links (each link is an association between two items)

links <- data.frame(
  source = c("rice", "rice", "vegetables", "noodles"),
  target = c("noodles", "vegetables", "noodles", "rice"),
  value = c(100, 50, 70, 90)  
)

Create nodes data frame

nodes <- data.frame(name = unique(c(links$source, links$target)))

Map source and target to the node index

links$source <- match(links$source, nodes$name) - 1
links$target <- match(links$target, nodes$name) - 1

Finally creating the Sankey diagram

sankey <- sankeyNetwork(Links = links, Nodes = nodes, Source = "source", 
                        Target = "target", Value = "value", NodeID = "name", 
                        colourScale = JS("d3.scaleOrdinal(d3.schemeCategory20);"))

saveWidget(sankey, file = "sankey_diagram.html")

sankey

Spiral (cut part of the diagram) indicates that there is a movement of 90 from noodles to rice.The noodles->rice relationship imply that, for example, when noodles are bought, they tend to lead to the purchase of rice. The blue line represents rice, and this flow might be seen as a “driving” factor towards rice purchases. The rice->noodles relationship suggests that when rice is purchased, there is a high likelihood that noodles are bought as well.

8. Random transactions

Random transactions

trans<-random.transactions(nItems=10, nTrans=15, method="independent", verbose=FALSE)
image(trans)

inspect(trans)
##      items                                              transactionID
## [1]  {item1, item5, item6, item8, item9}                trans1       
## [2]  {item5, item8, item9}                              trans2       
## [3]  {item4, item9, item10}                             trans3       
## [4]  {item4, item5}                                     trans4       
## [5]  {item1, item7}                                     trans5       
## [6]  {item1, item3, item5, item7, item8, item9, item10} trans6       
## [7]  {item4, item5, item10}                             trans7       
## [8]  {item6}                                            trans8       
## [9]  {item5, item10}                                    trans9       
## [10] {item2, item7}                                     trans10      
## [11] {item5}                                            trans11      
## [12] {item4, item7, item9}                              trans12      
## [13] {item7, item9, item10}                             trans13      
## [14] {item4}                                            trans14      
## [15] {item6, item10}                                    trans15
rules.random<-apriori(trans, parameter=list(supp=0.05, conf=0.3)) 
## Apriori
## 
## Parameter specification:
##  confidence minval smax arem  aval originalSupport maxtime support minlen
##         0.3    0.1    1 none FALSE            TRUE       5    0.05      1
##  maxlen target  ext
##      10  rules TRUE
## 
## Algorithmic control:
##  filter tree heap memopt load sort verbose
##     0.1 TRUE TRUE  FALSE TRUE    2    TRUE
## 
## Absolute minimum support count: 0 
## 
## set item appearances ...[0 item(s)] done [0.00s].
## set transactions ...[10 item(s), 15 transaction(s)] done [0.00s].
## sorting and recoding items ... [10 item(s)] done [0.00s].
## creating transaction tree ... done [0.00s].
## checking subsets of size 1 2 3 4 5 6 7 done [0.00s].
## writing ... [497 rule(s)] done [0.00s].
## creating S4 object  ... done [0.00s].
# inspect(rules.random)
rules.by.conf<-sort(rules.random, by="confidence", decreasing=TRUE) 
inspect(rules.by.conf)
##       lhs                                            rhs      support   
## [1]   {item2}                                     => {item7}  0.06666667
## [2]   {item3}                                     => {item1}  0.06666667
## [3]   {item3}                                     => {item8}  0.06666667
## [4]   {item3}                                     => {item7}  0.06666667
## [5]   {item3}                                     => {item10} 0.06666667
## [6]   {item3}                                     => {item5}  0.06666667
## [7]   {item3}                                     => {item9}  0.06666667
## [8]   {item8}                                     => {item5}  0.20000000
## [9]   {item8}                                     => {item9}  0.20000000
## [10]  {item1, item3}                              => {item8}  0.06666667
## [11]  {item3, item8}                              => {item1}  0.06666667
## [12]  {item1, item3}                              => {item7}  0.06666667
## [13]  {item3, item7}                              => {item1}  0.06666667
## [14]  {item1, item3}                              => {item10} 0.06666667
## [15]  {item3, item10}                             => {item1}  0.06666667
## [16]  {item1, item10}                             => {item3}  0.06666667
## [17]  {item1, item3}                              => {item5}  0.06666667
## [18]  {item3, item5}                              => {item1}  0.06666667
## [19]  {item1, item3}                              => {item9}  0.06666667
## [20]  {item3, item9}                              => {item1}  0.06666667
## [21]  {item3, item8}                              => {item7}  0.06666667
## [22]  {item3, item7}                              => {item8}  0.06666667
## [23]  {item7, item8}                              => {item3}  0.06666667
## [24]  {item3, item8}                              => {item10} 0.06666667
## [25]  {item3, item10}                             => {item8}  0.06666667
## [26]  {item8, item10}                             => {item3}  0.06666667
## [27]  {item3, item8}                              => {item5}  0.06666667
## [28]  {item3, item5}                              => {item8}  0.06666667
## [29]  {item3, item8}                              => {item9}  0.06666667
## [30]  {item3, item9}                              => {item8}  0.06666667
## [31]  {item3, item7}                              => {item10} 0.06666667
## [32]  {item3, item10}                             => {item7}  0.06666667
## [33]  {item3, item7}                              => {item5}  0.06666667
## [34]  {item3, item5}                              => {item7}  0.06666667
## [35]  {item5, item7}                              => {item3}  0.06666667
## [36]  {item3, item7}                              => {item9}  0.06666667
## [37]  {item3, item9}                              => {item7}  0.06666667
## [38]  {item3, item10}                             => {item5}  0.06666667
## [39]  {item3, item5}                              => {item10} 0.06666667
## [40]  {item3, item10}                             => {item9}  0.06666667
## [41]  {item3, item9}                              => {item10} 0.06666667
## [42]  {item3, item5}                              => {item9}  0.06666667
## [43]  {item3, item9}                              => {item5}  0.06666667
## [44]  {item1, item6}                              => {item8}  0.06666667
## [45]  {item6, item8}                              => {item1}  0.06666667
## [46]  {item1, item6}                              => {item5}  0.06666667
## [47]  {item5, item6}                              => {item1}  0.06666667
## [48]  {item1, item6}                              => {item9}  0.06666667
## [49]  {item6, item9}                              => {item1}  0.06666667
## [50]  {item6, item8}                              => {item5}  0.06666667
## [51]  {item5, item6}                              => {item8}  0.06666667
## [52]  {item6, item8}                              => {item9}  0.06666667
## [53]  {item6, item9}                              => {item8}  0.06666667
## [54]  {item5, item6}                              => {item9}  0.06666667
## [55]  {item6, item9}                              => {item5}  0.06666667
## [56]  {item4, item7}                              => {item9}  0.06666667
## [57]  {item7, item8}                              => {item1}  0.06666667
## [58]  {item1, item10}                             => {item8}  0.06666667
## [59]  {item8, item10}                             => {item1}  0.06666667
## [60]  {item1, item8}                              => {item5}  0.13333333
## [61]  {item1, item5}                              => {item8}  0.13333333
## [62]  {item1, item8}                              => {item9}  0.13333333
## [63]  {item1, item9}                              => {item8}  0.13333333
## [64]  {item1, item10}                             => {item7}  0.06666667
## [65]  {item5, item7}                              => {item1}  0.06666667
## [66]  {item1, item10}                             => {item5}  0.06666667
## [67]  {item1, item10}                             => {item9}  0.06666667
## [68]  {item1, item5}                              => {item9}  0.13333333
## [69]  {item1, item9}                              => {item5}  0.13333333
## [70]  {item7, item8}                              => {item10} 0.06666667
## [71]  {item8, item10}                             => {item7}  0.06666667
## [72]  {item7, item8}                              => {item5}  0.06666667
## [73]  {item5, item7}                              => {item8}  0.06666667
## [74]  {item7, item8}                              => {item9}  0.06666667
## [75]  {item8, item10}                             => {item5}  0.06666667
## [76]  {item8, item10}                             => {item9}  0.06666667
## [77]  {item5, item8}                              => {item9}  0.20000000
## [78]  {item8, item9}                              => {item5}  0.20000000
## [79]  {item5, item9}                              => {item8}  0.20000000
## [80]  {item5, item7}                              => {item10} 0.06666667
## [81]  {item7, item10}                             => {item9}  0.13333333
## [82]  {item5, item7}                              => {item9}  0.06666667
## [83]  {item1, item3, item8}                       => {item7}  0.06666667
## [84]  {item1, item3, item7}                       => {item8}  0.06666667
## [85]  {item3, item7, item8}                       => {item1}  0.06666667
## [86]  {item1, item7, item8}                       => {item3}  0.06666667
## [87]  {item1, item3, item8}                       => {item10} 0.06666667
## [88]  {item1, item3, item10}                      => {item8}  0.06666667
## [89]  {item3, item8, item10}                      => {item1}  0.06666667
## [90]  {item1, item8, item10}                      => {item3}  0.06666667
## [91]  {item1, item3, item8}                       => {item5}  0.06666667
## [92]  {item1, item3, item5}                       => {item8}  0.06666667
## [93]  {item3, item5, item8}                       => {item1}  0.06666667
## [94]  {item1, item3, item8}                       => {item9}  0.06666667
## [95]  {item1, item3, item9}                       => {item8}  0.06666667
## [96]  {item3, item8, item9}                       => {item1}  0.06666667
## [97]  {item1, item3, item7}                       => {item10} 0.06666667
## [98]  {item1, item3, item10}                      => {item7}  0.06666667
## [99]  {item3, item7, item10}                      => {item1}  0.06666667
## [100] {item1, item7, item10}                      => {item3}  0.06666667
## [101] {item1, item3, item7}                       => {item5}  0.06666667
## [102] {item1, item3, item5}                       => {item7}  0.06666667
## [103] {item3, item5, item7}                       => {item1}  0.06666667
## [104] {item1, item5, item7}                       => {item3}  0.06666667
## [105] {item1, item3, item7}                       => {item9}  0.06666667
## [106] {item1, item3, item9}                       => {item7}  0.06666667
## [107] {item3, item7, item9}                       => {item1}  0.06666667
## [108] {item1, item7, item9}                       => {item3}  0.06666667
## [109] {item1, item3, item10}                      => {item5}  0.06666667
## [110] {item1, item3, item5}                       => {item10} 0.06666667
## [111] {item3, item5, item10}                      => {item1}  0.06666667
## [112] {item1, item5, item10}                      => {item3}  0.06666667
## [113] {item1, item3, item10}                      => {item9}  0.06666667
## [114] {item1, item3, item9}                       => {item10} 0.06666667
## [115] {item3, item9, item10}                      => {item1}  0.06666667
## [116] {item1, item9, item10}                      => {item3}  0.06666667
## [117] {item1, item3, item5}                       => {item9}  0.06666667
## [118] {item1, item3, item9}                       => {item5}  0.06666667
## [119] {item3, item5, item9}                       => {item1}  0.06666667
## [120] {item3, item7, item8}                       => {item10} 0.06666667
## [121] {item3, item8, item10}                      => {item7}  0.06666667
## [122] {item3, item7, item10}                      => {item8}  0.06666667
## [123] {item7, item8, item10}                      => {item3}  0.06666667
## [124] {item3, item7, item8}                       => {item5}  0.06666667
## [125] {item3, item5, item8}                       => {item7}  0.06666667
## [126] {item3, item5, item7}                       => {item8}  0.06666667
## [127] {item5, item7, item8}                       => {item3}  0.06666667
## [128] {item3, item7, item8}                       => {item9}  0.06666667
## [129] {item3, item8, item9}                       => {item7}  0.06666667
## [130] {item3, item7, item9}                       => {item8}  0.06666667
## [131] {item7, item8, item9}                       => {item3}  0.06666667
## [132] {item3, item8, item10}                      => {item5}  0.06666667
## [133] {item3, item5, item8}                       => {item10} 0.06666667
## [134] {item3, item5, item10}                      => {item8}  0.06666667
## [135] {item5, item8, item10}                      => {item3}  0.06666667
## [136] {item3, item8, item10}                      => {item9}  0.06666667
## [137] {item3, item8, item9}                       => {item10} 0.06666667
## [138] {item3, item9, item10}                      => {item8}  0.06666667
## [139] {item8, item9, item10}                      => {item3}  0.06666667
## [140] {item3, item5, item8}                       => {item9}  0.06666667
## [141] {item3, item8, item9}                       => {item5}  0.06666667
## [142] {item3, item5, item9}                       => {item8}  0.06666667
## [143] {item3, item7, item10}                      => {item5}  0.06666667
## [144] {item3, item5, item7}                       => {item10} 0.06666667
## [145] {item3, item5, item10}                      => {item7}  0.06666667
## [146] {item5, item7, item10}                      => {item3}  0.06666667
## [147] {item3, item7, item10}                      => {item9}  0.06666667
## [148] {item3, item7, item9}                       => {item10} 0.06666667
## [149] {item3, item9, item10}                      => {item7}  0.06666667
## [150] {item3, item5, item7}                       => {item9}  0.06666667
## [151] {item3, item7, item9}                       => {item5}  0.06666667
## [152] {item3, item5, item9}                       => {item7}  0.06666667
## [153] {item5, item7, item9}                       => {item3}  0.06666667
## [154] {item3, item5, item10}                      => {item9}  0.06666667
## [155] {item3, item9, item10}                      => {item5}  0.06666667
## [156] {item3, item5, item9}                       => {item10} 0.06666667
## [157] {item5, item9, item10}                      => {item3}  0.06666667
## [158] {item1, item6, item8}                       => {item5}  0.06666667
## [159] {item1, item5, item6}                       => {item8}  0.06666667
## [160] {item5, item6, item8}                       => {item1}  0.06666667
## [161] {item1, item6, item8}                       => {item9}  0.06666667
## [162] {item1, item6, item9}                       => {item8}  0.06666667
## [163] {item6, item8, item9}                       => {item1}  0.06666667
## [164] {item1, item5, item6}                       => {item9}  0.06666667
## [165] {item1, item6, item9}                       => {item5}  0.06666667
## [166] {item5, item6, item9}                       => {item1}  0.06666667
## [167] {item5, item6, item8}                       => {item9}  0.06666667
## [168] {item6, item8, item9}                       => {item5}  0.06666667
## [169] {item5, item6, item9}                       => {item8}  0.06666667
## [170] {item1, item7, item8}                       => {item10} 0.06666667
## [171] {item1, item8, item10}                      => {item7}  0.06666667
## [172] {item1, item7, item10}                      => {item8}  0.06666667
## [173] {item7, item8, item10}                      => {item1}  0.06666667
## [174] {item1, item7, item8}                       => {item5}  0.06666667
## [175] {item1, item5, item7}                       => {item8}  0.06666667
## [176] {item5, item7, item8}                       => {item1}  0.06666667
## [177] {item1, item7, item8}                       => {item9}  0.06666667
## [178] {item1, item7, item9}                       => {item8}  0.06666667
## [179] {item7, item8, item9}                       => {item1}  0.06666667
## [180] {item1, item8, item10}                      => {item5}  0.06666667
## [181] {item1, item5, item10}                      => {item8}  0.06666667
## [182] {item5, item8, item10}                      => {item1}  0.06666667
## [183] {item1, item8, item10}                      => {item9}  0.06666667
## [184] {item1, item9, item10}                      => {item8}  0.06666667
## [185] {item8, item9, item10}                      => {item1}  0.06666667
## [186] {item1, item5, item8}                       => {item9}  0.13333333
## [187] {item1, item8, item9}                       => {item5}  0.13333333
## [188] {item1, item5, item9}                       => {item8}  0.13333333
## [189] {item1, item7, item10}                      => {item5}  0.06666667
## [190] {item1, item5, item7}                       => {item10} 0.06666667
## [191] {item1, item5, item10}                      => {item7}  0.06666667
## [192] {item5, item7, item10}                      => {item1}  0.06666667
## [193] {item1, item7, item10}                      => {item9}  0.06666667
## [194] {item1, item7, item9}                       => {item10} 0.06666667
## [195] {item1, item9, item10}                      => {item7}  0.06666667
## [196] {item1, item5, item7}                       => {item9}  0.06666667
## [197] {item1, item7, item9}                       => {item5}  0.06666667
## [198] {item5, item7, item9}                       => {item1}  0.06666667
## [199] {item1, item5, item10}                      => {item9}  0.06666667
## [200] {item1, item9, item10}                      => {item5}  0.06666667
## [201] {item5, item9, item10}                      => {item1}  0.06666667
## [202] {item7, item8, item10}                      => {item5}  0.06666667
## [203] {item5, item7, item8}                       => {item10} 0.06666667
## [204] {item5, item8, item10}                      => {item7}  0.06666667
## [205] {item5, item7, item10}                      => {item8}  0.06666667
## [206] {item7, item8, item10}                      => {item9}  0.06666667
## [207] {item7, item8, item9}                       => {item10} 0.06666667
## [208] {item8, item9, item10}                      => {item7}  0.06666667
## [209] {item5, item7, item8}                       => {item9}  0.06666667
## [210] {item7, item8, item9}                       => {item5}  0.06666667
## [211] {item5, item7, item9}                       => {item8}  0.06666667
## [212] {item5, item8, item10}                      => {item9}  0.06666667
## [213] {item8, item9, item10}                      => {item5}  0.06666667
## [214] {item5, item9, item10}                      => {item8}  0.06666667
## [215] {item5, item7, item10}                      => {item9}  0.06666667
## [216] {item5, item7, item9}                       => {item10} 0.06666667
## [217] {item5, item9, item10}                      => {item7}  0.06666667
## [218] {item1, item3, item7, item8}                => {item10} 0.06666667
## [219] {item1, item3, item8, item10}               => {item7}  0.06666667
## [220] {item1, item3, item7, item10}               => {item8}  0.06666667
## [221] {item3, item7, item8, item10}               => {item1}  0.06666667
## [222] {item1, item7, item8, item10}               => {item3}  0.06666667
## [223] {item1, item3, item7, item8}                => {item5}  0.06666667
## [224] {item1, item3, item5, item8}                => {item7}  0.06666667
## [225] {item1, item3, item5, item7}                => {item8}  0.06666667
## [226] {item3, item5, item7, item8}                => {item1}  0.06666667
## [227] {item1, item5, item7, item8}                => {item3}  0.06666667
## [228] {item1, item3, item7, item8}                => {item9}  0.06666667
## [229] {item1, item3, item8, item9}                => {item7}  0.06666667
## [230] {item1, item3, item7, item9}                => {item8}  0.06666667
## [231] {item3, item7, item8, item9}                => {item1}  0.06666667
## [232] {item1, item7, item8, item9}                => {item3}  0.06666667
## [233] {item1, item3, item8, item10}               => {item5}  0.06666667
## [234] {item1, item3, item5, item8}                => {item10} 0.06666667
## [235] {item1, item3, item5, item10}               => {item8}  0.06666667
## [236] {item3, item5, item8, item10}               => {item1}  0.06666667
## [237] {item1, item5, item8, item10}               => {item3}  0.06666667
## [238] {item1, item3, item8, item10}               => {item9}  0.06666667
## [239] {item1, item3, item8, item9}                => {item10} 0.06666667
## [240] {item1, item3, item9, item10}               => {item8}  0.06666667
## [241] {item3, item8, item9, item10}               => {item1}  0.06666667
## [242] {item1, item8, item9, item10}               => {item3}  0.06666667
## [243] {item1, item3, item5, item8}                => {item9}  0.06666667
## [244] {item1, item3, item8, item9}                => {item5}  0.06666667
## [245] {item1, item3, item5, item9}                => {item8}  0.06666667
## [246] {item3, item5, item8, item9}                => {item1}  0.06666667
## [247] {item1, item3, item7, item10}               => {item5}  0.06666667
## [248] {item1, item3, item5, item7}                => {item10} 0.06666667
## [249] {item1, item3, item5, item10}               => {item7}  0.06666667
## [250] {item3, item5, item7, item10}               => {item1}  0.06666667
## [251] {item1, item5, item7, item10}               => {item3}  0.06666667
## [252] {item1, item3, item7, item10}               => {item9}  0.06666667
## [253] {item1, item3, item7, item9}                => {item10} 0.06666667
## [254] {item1, item3, item9, item10}               => {item7}  0.06666667
## [255] {item3, item7, item9, item10}               => {item1}  0.06666667
## [256] {item1, item7, item9, item10}               => {item3}  0.06666667
## [257] {item1, item3, item5, item7}                => {item9}  0.06666667
## [258] {item1, item3, item7, item9}                => {item5}  0.06666667
## [259] {item1, item3, item5, item9}                => {item7}  0.06666667
## [260] {item3, item5, item7, item9}                => {item1}  0.06666667
## [261] {item1, item5, item7, item9}                => {item3}  0.06666667
## [262] {item1, item3, item5, item10}               => {item9}  0.06666667
## [263] {item1, item3, item9, item10}               => {item5}  0.06666667
## [264] {item1, item3, item5, item9}                => {item10} 0.06666667
## [265] {item3, item5, item9, item10}               => {item1}  0.06666667
## [266] {item1, item5, item9, item10}               => {item3}  0.06666667
## [267] {item3, item7, item8, item10}               => {item5}  0.06666667
## [268] {item3, item5, item7, item8}                => {item10} 0.06666667
## [269] {item3, item5, item8, item10}               => {item7}  0.06666667
## [270] {item3, item5, item7, item10}               => {item8}  0.06666667
## [271] {item5, item7, item8, item10}               => {item3}  0.06666667
## [272] {item3, item7, item8, item10}               => {item9}  0.06666667
## [273] {item3, item7, item8, item9}                => {item10} 0.06666667
## [274] {item3, item8, item9, item10}               => {item7}  0.06666667
## [275] {item3, item7, item9, item10}               => {item8}  0.06666667
## [276] {item7, item8, item9, item10}               => {item3}  0.06666667
## [277] {item3, item5, item7, item8}                => {item9}  0.06666667
## [278] {item3, item7, item8, item9}                => {item5}  0.06666667
## [279] {item3, item5, item8, item9}                => {item7}  0.06666667
## [280] {item3, item5, item7, item9}                => {item8}  0.06666667
## [281] {item5, item7, item8, item9}                => {item3}  0.06666667
## [282] {item3, item5, item8, item10}               => {item9}  0.06666667
## [283] {item3, item8, item9, item10}               => {item5}  0.06666667
## [284] {item3, item5, item8, item9}                => {item10} 0.06666667
## [285] {item3, item5, item9, item10}               => {item8}  0.06666667
## [286] {item5, item8, item9, item10}               => {item3}  0.06666667
## [287] {item3, item5, item7, item10}               => {item9}  0.06666667
## [288] {item3, item7, item9, item10}               => {item5}  0.06666667
## [289] {item3, item5, item7, item9}                => {item10} 0.06666667
## [290] {item3, item5, item9, item10}               => {item7}  0.06666667
## [291] {item5, item7, item9, item10}               => {item3}  0.06666667
## [292] {item1, item5, item6, item8}                => {item9}  0.06666667
## [293] {item1, item6, item8, item9}                => {item5}  0.06666667
## [294] {item1, item5, item6, item9}                => {item8}  0.06666667
## [295] {item5, item6, item8, item9}                => {item1}  0.06666667
## [296] {item1, item7, item8, item10}               => {item5}  0.06666667
## [297] {item1, item5, item7, item8}                => {item10} 0.06666667
## [298] {item1, item5, item8, item10}               => {item7}  0.06666667
## [299] {item1, item5, item7, item10}               => {item8}  0.06666667
## [300] {item5, item7, item8, item10}               => {item1}  0.06666667
## [301] {item1, item7, item8, item10}               => {item9}  0.06666667
## [302] {item1, item7, item8, item9}                => {item10} 0.06666667
## [303] {item1, item8, item9, item10}               => {item7}  0.06666667
## [304] {item1, item7, item9, item10}               => {item8}  0.06666667
## [305] {item7, item8, item9, item10}               => {item1}  0.06666667
## [306] {item1, item5, item7, item8}                => {item9}  0.06666667
## [307] {item1, item7, item8, item9}                => {item5}  0.06666667
## [308] {item1, item5, item7, item9}                => {item8}  0.06666667
## [309] {item5, item7, item8, item9}                => {item1}  0.06666667
## [310] {item1, item5, item8, item10}               => {item9}  0.06666667
## [311] {item1, item8, item9, item10}               => {item5}  0.06666667
## [312] {item1, item5, item9, item10}               => {item8}  0.06666667
## [313] {item5, item8, item9, item10}               => {item1}  0.06666667
## [314] {item1, item5, item7, item10}               => {item9}  0.06666667
## [315] {item1, item7, item9, item10}               => {item5}  0.06666667
## [316] {item1, item5, item7, item9}                => {item10} 0.06666667
## [317] {item1, item5, item9, item10}               => {item7}  0.06666667
## [318] {item5, item7, item9, item10}               => {item1}  0.06666667
## [319] {item5, item7, item8, item10}               => {item9}  0.06666667
## [320] {item7, item8, item9, item10}               => {item5}  0.06666667
## [321] {item5, item7, item8, item9}                => {item10} 0.06666667
## [322] {item5, item8, item9, item10}               => {item7}  0.06666667
## [323] {item5, item7, item9, item10}               => {item8}  0.06666667
## [324] {item1, item3, item7, item8, item10}        => {item5}  0.06666667
## [325] {item1, item3, item5, item7, item8}         => {item10} 0.06666667
## [326] {item1, item3, item5, item8, item10}        => {item7}  0.06666667
## [327] {item1, item3, item5, item7, item10}        => {item8}  0.06666667
## [328] {item3, item5, item7, item8, item10}        => {item1}  0.06666667
## [329] {item1, item5, item7, item8, item10}        => {item3}  0.06666667
## [330] {item1, item3, item7, item8, item10}        => {item9}  0.06666667
## [331] {item1, item3, item7, item8, item9}         => {item10} 0.06666667
## [332] {item1, item3, item8, item9, item10}        => {item7}  0.06666667
## [333] {item1, item3, item7, item9, item10}        => {item8}  0.06666667
## [334] {item3, item7, item8, item9, item10}        => {item1}  0.06666667
## [335] {item1, item7, item8, item9, item10}        => {item3}  0.06666667
## [336] {item1, item3, item5, item7, item8}         => {item9}  0.06666667
## [337] {item1, item3, item7, item8, item9}         => {item5}  0.06666667
## [338] {item1, item3, item5, item8, item9}         => {item7}  0.06666667
## [339] {item1, item3, item5, item7, item9}         => {item8}  0.06666667
## [340] {item3, item5, item7, item8, item9}         => {item1}  0.06666667
## [341] {item1, item5, item7, item8, item9}         => {item3}  0.06666667
## [342] {item1, item3, item5, item8, item10}        => {item9}  0.06666667
## [343] {item1, item3, item8, item9, item10}        => {item5}  0.06666667
## [344] {item1, item3, item5, item8, item9}         => {item10} 0.06666667
## [345] {item1, item3, item5, item9, item10}        => {item8}  0.06666667
## [346] {item3, item5, item8, item9, item10}        => {item1}  0.06666667
## [347] {item1, item5, item8, item9, item10}        => {item3}  0.06666667
## [348] {item1, item3, item5, item7, item10}        => {item9}  0.06666667
## [349] {item1, item3, item7, item9, item10}        => {item5}  0.06666667
## [350] {item1, item3, item5, item7, item9}         => {item10} 0.06666667
## [351] {item1, item3, item5, item9, item10}        => {item7}  0.06666667
## [352] {item3, item5, item7, item9, item10}        => {item1}  0.06666667
## [353] {item1, item5, item7, item9, item10}        => {item3}  0.06666667
## [354] {item3, item5, item7, item8, item10}        => {item9}  0.06666667
## [355] {item3, item7, item8, item9, item10}        => {item5}  0.06666667
## [356] {item3, item5, item7, item8, item9}         => {item10} 0.06666667
## [357] {item3, item5, item8, item9, item10}        => {item7}  0.06666667
## [358] {item3, item5, item7, item9, item10}        => {item8}  0.06666667
## [359] {item5, item7, item8, item9, item10}        => {item3}  0.06666667
## [360] {item1, item5, item7, item8, item10}        => {item9}  0.06666667
## [361] {item1, item7, item8, item9, item10}        => {item5}  0.06666667
## [362] {item1, item5, item7, item8, item9}         => {item10} 0.06666667
## [363] {item1, item5, item8, item9, item10}        => {item7}  0.06666667
## [364] {item1, item5, item7, item9, item10}        => {item8}  0.06666667
## [365] {item5, item7, item8, item9, item10}        => {item1}  0.06666667
## [366] {item1, item3, item5, item7, item8, item10} => {item9}  0.06666667
## [367] {item1, item3, item7, item8, item9, item10} => {item5}  0.06666667
## [368] {item1, item3, item5, item7, item8, item9}  => {item10} 0.06666667
## [369] {item1, item3, item5, item8, item9, item10} => {item7}  0.06666667
## [370] {item1, item3, item5, item7, item9, item10} => {item8}  0.06666667
## [371] {item3, item5, item7, item8, item9, item10} => {item1}  0.06666667
## [372] {item1, item5, item7, item8, item9, item10} => {item3}  0.06666667
## [373] {item1}                                     => {item8}  0.13333333
## [374] {item8}                                     => {item1}  0.13333333
## [375] {item1}                                     => {item7}  0.13333333
## [376] {item1}                                     => {item5}  0.13333333
## [377] {item1}                                     => {item9}  0.13333333
## [378] {item5, item8}                              => {item1}  0.13333333
## [379] {item8, item9}                              => {item1}  0.13333333
## [380] {item5, item9}                              => {item1}  0.13333333
## [381] {item7, item9}                              => {item10} 0.13333333
## [382] {item9, item10}                             => {item7}  0.13333333
## [383] {item5, item8, item9}                       => {item1}  0.13333333
## [384] {item7}                                     => {item9}  0.20000000
## [385] {item9}                                     => {item8}  0.20000000
## [386] {item9}                                     => {item7}  0.20000000
## [387] {item10}                                    => {item5}  0.20000000
## [388] {item10}                                    => {item9}  0.20000000
## [389] {item9}                                     => {item10} 0.20000000
## [390] {item9}                                     => {item5}  0.20000000
## [391] {item1, item8}                              => {item3}  0.06666667
## [392] {item1, item7}                              => {item3}  0.06666667
## [393] {item1, item5}                              => {item3}  0.06666667
## [394] {item1, item9}                              => {item3}  0.06666667
## [395] {item7, item10}                             => {item3}  0.06666667
## [396] {item1, item8}                              => {item6}  0.06666667
## [397] {item1, item5}                              => {item6}  0.06666667
## [398] {item1, item9}                              => {item6}  0.06666667
## [399] {item4, item9}                              => {item7}  0.06666667
## [400] {item4, item10}                             => {item5}  0.06666667
## [401] {item4, item5}                              => {item10} 0.06666667
## [402] {item4, item10}                             => {item9}  0.06666667
## [403] {item4, item9}                              => {item10} 0.06666667
## [404] {item1, item8}                              => {item7}  0.06666667
## [405] {item1, item7}                              => {item8}  0.06666667
## [406] {item1, item8}                              => {item10} 0.06666667
## [407] {item1, item7}                              => {item10} 0.06666667
## [408] {item7, item10}                             => {item1}  0.06666667
## [409] {item1, item7}                              => {item5}  0.06666667
## [410] {item1, item5}                              => {item7}  0.06666667
## [411] {item1, item7}                              => {item9}  0.06666667
## [412] {item1, item9}                              => {item7}  0.06666667
## [413] {item1, item5}                              => {item10} 0.06666667
## [414] {item1, item9}                              => {item10} 0.06666667
## [415] {item7, item10}                             => {item8}  0.06666667
## [416] {item7, item10}                             => {item5}  0.06666667
## [417] {item1, item5, item8}                       => {item3}  0.06666667
## [418] {item1, item8, item9}                       => {item3}  0.06666667
## [419] {item1, item5, item9}                       => {item3}  0.06666667
## [420] {item7, item9, item10}                      => {item3}  0.06666667
## [421] {item1, item5, item8}                       => {item6}  0.06666667
## [422] {item1, item8, item9}                       => {item6}  0.06666667
## [423] {item1, item5, item9}                       => {item6}  0.06666667
## [424] {item1, item5, item8}                       => {item7}  0.06666667
## [425] {item1, item8, item9}                       => {item7}  0.06666667
## [426] {item1, item5, item8}                       => {item10} 0.06666667
## [427] {item1, item8, item9}                       => {item10} 0.06666667
## [428] {item7, item9, item10}                      => {item1}  0.06666667
## [429] {item1, item5, item9}                       => {item7}  0.06666667
## [430] {item1, item5, item9}                       => {item10} 0.06666667
## [431] {item7, item9, item10}                      => {item8}  0.06666667
## [432] {item7, item9, item10}                      => {item5}  0.06666667
## [433] {item1, item5, item8, item9}                => {item3}  0.06666667
## [434] {item1, item5, item8, item9}                => {item6}  0.06666667
## [435] {item1, item5, item8, item9}                => {item7}  0.06666667
## [436] {item1, item5, item8, item9}                => {item10} 0.06666667
## [437] {}                                          => {item5}  0.46666667
## [438] {item5}                                     => {item8}  0.20000000
## [439] {item5}                                     => {item10} 0.20000000
## [440] {item5}                                     => {item9}  0.20000000
## [441] {}                                          => {item10} 0.40000000
## [442] {}                                          => {item9}  0.40000000
## [443] {item4}                                     => {item10} 0.13333333
## [444] {item4}                                     => {item5}  0.13333333
## [445] {item4}                                     => {item9}  0.13333333
## [446] {item7}                                     => {item1}  0.13333333
## [447] {item7}                                     => {item10} 0.13333333
## [448] {}                                          => {item4}  0.33333333
## [449] {}                                          => {item7}  0.33333333
## [450] {item1}                                     => {item3}  0.06666667
## [451] {item8}                                     => {item3}  0.06666667
## [452] {item6}                                     => {item1}  0.06666667
## [453] {item1}                                     => {item6}  0.06666667
## [454] {item6}                                     => {item8}  0.06666667
## [455] {item8}                                     => {item6}  0.06666667
## [456] {item6}                                     => {item10} 0.06666667
## [457] {item6}                                     => {item5}  0.06666667
## [458] {item6}                                     => {item9}  0.06666667
## [459] {item10}                                    => {item4}  0.13333333
## [460] {item9}                                     => {item4}  0.13333333
## [461] {item1}                                     => {item10} 0.06666667
## [462] {item9}                                     => {item1}  0.13333333
## [463] {item8}                                     => {item7}  0.06666667
## [464] {item8}                                     => {item10} 0.06666667
## [465] {item10}                                    => {item7}  0.13333333
## [466] {item5, item8}                              => {item3}  0.06666667
## [467] {item8, item9}                              => {item3}  0.06666667
## [468] {item7, item9}                              => {item3}  0.06666667
## [469] {item5, item10}                             => {item3}  0.06666667
## [470] {item9, item10}                             => {item3}  0.06666667
## [471] {item5, item9}                              => {item3}  0.06666667
## [472] {item5, item8}                              => {item6}  0.06666667
## [473] {item8, item9}                              => {item6}  0.06666667
## [474] {item5, item9}                              => {item6}  0.06666667
## [475] {item7, item9}                              => {item4}  0.06666667
## [476] {item5, item10}                             => {item4}  0.06666667
## [477] {item9, item10}                             => {item4}  0.06666667
## [478] {item7, item9}                              => {item1}  0.06666667
## [479] {item5, item10}                             => {item1}  0.06666667
## [480] {item9, item10}                             => {item1}  0.06666667
## [481] {item5, item8}                              => {item7}  0.06666667
## [482] {item8, item9}                              => {item7}  0.06666667
## [483] {item7, item9}                              => {item8}  0.06666667
## [484] {item5, item8}                              => {item10} 0.06666667
## [485] {item5, item10}                             => {item8}  0.06666667
## [486] {item8, item9}                              => {item10} 0.06666667
## [487] {item9, item10}                             => {item8}  0.06666667
## [488] {item5, item10}                             => {item7}  0.06666667
## [489] {item7, item9}                              => {item5}  0.06666667
## [490] {item5, item9}                              => {item7}  0.06666667
## [491] {item5, item10}                             => {item9}  0.06666667
## [492] {item9, item10}                             => {item5}  0.06666667
## [493] {item5, item9}                              => {item10} 0.06666667
## [494] {item5, item8, item9}                       => {item3}  0.06666667
## [495] {item5, item8, item9}                       => {item6}  0.06666667
## [496] {item5, item8, item9}                       => {item7}  0.06666667
## [497] {item5, item8, item9}                       => {item10} 0.06666667
##       confidence coverage   lift       count
## [1]   1.0000000  0.06666667  3.0000000 1    
## [2]   1.0000000  0.06666667  5.0000000 1    
## [3]   1.0000000  0.06666667  5.0000000 1    
## [4]   1.0000000  0.06666667  3.0000000 1    
## [5]   1.0000000  0.06666667  2.5000000 1    
## [6]   1.0000000  0.06666667  2.1428571 1    
## [7]   1.0000000  0.06666667  2.5000000 1    
## [8]   1.0000000  0.20000000  2.1428571 3    
## [9]   1.0000000  0.20000000  2.5000000 3    
## [10]  1.0000000  0.06666667  5.0000000 1    
## [11]  1.0000000  0.06666667  5.0000000 1    
## [12]  1.0000000  0.06666667  3.0000000 1    
## [13]  1.0000000  0.06666667  5.0000000 1    
## [14]  1.0000000  0.06666667  2.5000000 1    
## [15]  1.0000000  0.06666667  5.0000000 1    
## [16]  1.0000000  0.06666667 15.0000000 1    
## [17]  1.0000000  0.06666667  2.1428571 1    
## [18]  1.0000000  0.06666667  5.0000000 1    
## [19]  1.0000000  0.06666667  2.5000000 1    
## [20]  1.0000000  0.06666667  5.0000000 1    
## [21]  1.0000000  0.06666667  3.0000000 1    
## [22]  1.0000000  0.06666667  5.0000000 1    
## [23]  1.0000000  0.06666667 15.0000000 1    
## [24]  1.0000000  0.06666667  2.5000000 1    
## [25]  1.0000000  0.06666667  5.0000000 1    
## [26]  1.0000000  0.06666667 15.0000000 1    
## [27]  1.0000000  0.06666667  2.1428571 1    
## [28]  1.0000000  0.06666667  5.0000000 1    
## [29]  1.0000000  0.06666667  2.5000000 1    
## [30]  1.0000000  0.06666667  5.0000000 1    
## [31]  1.0000000  0.06666667  2.5000000 1    
## [32]  1.0000000  0.06666667  3.0000000 1    
## [33]  1.0000000  0.06666667  2.1428571 1    
## [34]  1.0000000  0.06666667  3.0000000 1    
## [35]  1.0000000  0.06666667 15.0000000 1    
## [36]  1.0000000  0.06666667  2.5000000 1    
## [37]  1.0000000  0.06666667  3.0000000 1    
## [38]  1.0000000  0.06666667  2.1428571 1    
## [39]  1.0000000  0.06666667  2.5000000 1    
## [40]  1.0000000  0.06666667  2.5000000 1    
## [41]  1.0000000  0.06666667  2.5000000 1    
## [42]  1.0000000  0.06666667  2.5000000 1    
## [43]  1.0000000  0.06666667  2.1428571 1    
## [44]  1.0000000  0.06666667  5.0000000 1    
## [45]  1.0000000  0.06666667  5.0000000 1    
## [46]  1.0000000  0.06666667  2.1428571 1    
## [47]  1.0000000  0.06666667  5.0000000 1    
## [48]  1.0000000  0.06666667  2.5000000 1    
## [49]  1.0000000  0.06666667  5.0000000 1    
## [50]  1.0000000  0.06666667  2.1428571 1    
## [51]  1.0000000  0.06666667  5.0000000 1    
## [52]  1.0000000  0.06666667  2.5000000 1    
## [53]  1.0000000  0.06666667  5.0000000 1    
## [54]  1.0000000  0.06666667  2.5000000 1    
## [55]  1.0000000  0.06666667  2.1428571 1    
## [56]  1.0000000  0.06666667  2.5000000 1    
## [57]  1.0000000  0.06666667  5.0000000 1    
## [58]  1.0000000  0.06666667  5.0000000 1    
## [59]  1.0000000  0.06666667  5.0000000 1    
## [60]  1.0000000  0.13333333  2.1428571 2    
## [61]  1.0000000  0.13333333  5.0000000 2    
## [62]  1.0000000  0.13333333  2.5000000 2    
## [63]  1.0000000  0.13333333  5.0000000 2    
## [64]  1.0000000  0.06666667  3.0000000 1    
## [65]  1.0000000  0.06666667  5.0000000 1    
## [66]  1.0000000  0.06666667  2.1428571 1    
## [67]  1.0000000  0.06666667  2.5000000 1    
## [68]  1.0000000  0.13333333  2.5000000 2    
## [69]  1.0000000  0.13333333  2.1428571 2    
## [70]  1.0000000  0.06666667  2.5000000 1    
## [71]  1.0000000  0.06666667  3.0000000 1    
## [72]  1.0000000  0.06666667  2.1428571 1    
## [73]  1.0000000  0.06666667  5.0000000 1    
## [74]  1.0000000  0.06666667  2.5000000 1    
## [75]  1.0000000  0.06666667  2.1428571 1    
## [76]  1.0000000  0.06666667  2.5000000 1    
## [77]  1.0000000  0.20000000  2.5000000 3    
## [78]  1.0000000  0.20000000  2.1428571 3    
## [79]  1.0000000  0.20000000  5.0000000 3    
## [80]  1.0000000  0.06666667  2.5000000 1    
## [81]  1.0000000  0.13333333  2.5000000 2    
## [82]  1.0000000  0.06666667  2.5000000 1    
## [83]  1.0000000  0.06666667  3.0000000 1    
## [84]  1.0000000  0.06666667  5.0000000 1    
## [85]  1.0000000  0.06666667  5.0000000 1    
## [86]  1.0000000  0.06666667 15.0000000 1    
## [87]  1.0000000  0.06666667  2.5000000 1    
## [88]  1.0000000  0.06666667  5.0000000 1    
## [89]  1.0000000  0.06666667  5.0000000 1    
## [90]  1.0000000  0.06666667 15.0000000 1    
## [91]  1.0000000  0.06666667  2.1428571 1    
## [92]  1.0000000  0.06666667  5.0000000 1    
## [93]  1.0000000  0.06666667  5.0000000 1    
## [94]  1.0000000  0.06666667  2.5000000 1    
## [95]  1.0000000  0.06666667  5.0000000 1    
## [96]  1.0000000  0.06666667  5.0000000 1    
## [97]  1.0000000  0.06666667  2.5000000 1    
## [98]  1.0000000  0.06666667  3.0000000 1    
## [99]  1.0000000  0.06666667  5.0000000 1    
## [100] 1.0000000  0.06666667 15.0000000 1    
## [101] 1.0000000  0.06666667  2.1428571 1    
## [102] 1.0000000  0.06666667  3.0000000 1    
## [103] 1.0000000  0.06666667  5.0000000 1    
## [104] 1.0000000  0.06666667 15.0000000 1    
## [105] 1.0000000  0.06666667  2.5000000 1    
## [106] 1.0000000  0.06666667  3.0000000 1    
## [107] 1.0000000  0.06666667  5.0000000 1    
## [108] 1.0000000  0.06666667 15.0000000 1    
## [109] 1.0000000  0.06666667  2.1428571 1    
## [110] 1.0000000  0.06666667  2.5000000 1    
## [111] 1.0000000  0.06666667  5.0000000 1    
## [112] 1.0000000  0.06666667 15.0000000 1    
## [113] 1.0000000  0.06666667  2.5000000 1    
## [114] 1.0000000  0.06666667  2.5000000 1    
## [115] 1.0000000  0.06666667  5.0000000 1    
## [116] 1.0000000  0.06666667 15.0000000 1    
## [117] 1.0000000  0.06666667  2.5000000 1    
## [118] 1.0000000  0.06666667  2.1428571 1    
## [119] 1.0000000  0.06666667  5.0000000 1    
## [120] 1.0000000  0.06666667  2.5000000 1    
## [121] 1.0000000  0.06666667  3.0000000 1    
## [122] 1.0000000  0.06666667  5.0000000 1    
## [123] 1.0000000  0.06666667 15.0000000 1    
## [124] 1.0000000  0.06666667  2.1428571 1    
## [125] 1.0000000  0.06666667  3.0000000 1    
## [126] 1.0000000  0.06666667  5.0000000 1    
## [127] 1.0000000  0.06666667 15.0000000 1    
## [128] 1.0000000  0.06666667  2.5000000 1    
## [129] 1.0000000  0.06666667  3.0000000 1    
## [130] 1.0000000  0.06666667  5.0000000 1    
## [131] 1.0000000  0.06666667 15.0000000 1    
## [132] 1.0000000  0.06666667  2.1428571 1    
## [133] 1.0000000  0.06666667  2.5000000 1    
## [134] 1.0000000  0.06666667  5.0000000 1    
## [135] 1.0000000  0.06666667 15.0000000 1    
## [136] 1.0000000  0.06666667  2.5000000 1    
## [137] 1.0000000  0.06666667  2.5000000 1    
## [138] 1.0000000  0.06666667  5.0000000 1    
## [139] 1.0000000  0.06666667 15.0000000 1    
## [140] 1.0000000  0.06666667  2.5000000 1    
## [141] 1.0000000  0.06666667  2.1428571 1    
## [142] 1.0000000  0.06666667  5.0000000 1    
## [143] 1.0000000  0.06666667  2.1428571 1    
## [144] 1.0000000  0.06666667  2.5000000 1    
## [145] 1.0000000  0.06666667  3.0000000 1    
## [146] 1.0000000  0.06666667 15.0000000 1    
## [147] 1.0000000  0.06666667  2.5000000 1    
## [148] 1.0000000  0.06666667  2.5000000 1    
## [149] 1.0000000  0.06666667  3.0000000 1    
## [150] 1.0000000  0.06666667  2.5000000 1    
## [151] 1.0000000  0.06666667  2.1428571 1    
## [152] 1.0000000  0.06666667  3.0000000 1    
## [153] 1.0000000  0.06666667 15.0000000 1    
## [154] 1.0000000  0.06666667  2.5000000 1    
## [155] 1.0000000  0.06666667  2.1428571 1    
## [156] 1.0000000  0.06666667  2.5000000 1    
## [157] 1.0000000  0.06666667 15.0000000 1    
## [158] 1.0000000  0.06666667  2.1428571 1    
## [159] 1.0000000  0.06666667  5.0000000 1    
## [160] 1.0000000  0.06666667  5.0000000 1    
## [161] 1.0000000  0.06666667  2.5000000 1    
## [162] 1.0000000  0.06666667  5.0000000 1    
## [163] 1.0000000  0.06666667  5.0000000 1    
## [164] 1.0000000  0.06666667  2.5000000 1    
## [165] 1.0000000  0.06666667  2.1428571 1    
## [166] 1.0000000  0.06666667  5.0000000 1    
## [167] 1.0000000  0.06666667  2.5000000 1    
## [168] 1.0000000  0.06666667  2.1428571 1    
## [169] 1.0000000  0.06666667  5.0000000 1    
## [170] 1.0000000  0.06666667  2.5000000 1    
## [171] 1.0000000  0.06666667  3.0000000 1    
## [172] 1.0000000  0.06666667  5.0000000 1    
## [173] 1.0000000  0.06666667  5.0000000 1    
## [174] 1.0000000  0.06666667  2.1428571 1    
## [175] 1.0000000  0.06666667  5.0000000 1    
## [176] 1.0000000  0.06666667  5.0000000 1    
## [177] 1.0000000  0.06666667  2.5000000 1    
## [178] 1.0000000  0.06666667  5.0000000 1    
## [179] 1.0000000  0.06666667  5.0000000 1    
## [180] 1.0000000  0.06666667  2.1428571 1    
## [181] 1.0000000  0.06666667  5.0000000 1    
## [182] 1.0000000  0.06666667  5.0000000 1    
## [183] 1.0000000  0.06666667  2.5000000 1    
## [184] 1.0000000  0.06666667  5.0000000 1    
## [185] 1.0000000  0.06666667  5.0000000 1    
## [186] 1.0000000  0.13333333  2.5000000 2    
## [187] 1.0000000  0.13333333  2.1428571 2    
## [188] 1.0000000  0.13333333  5.0000000 2    
## [189] 1.0000000  0.06666667  2.1428571 1    
## [190] 1.0000000  0.06666667  2.5000000 1    
## [191] 1.0000000  0.06666667  3.0000000 1    
## [192] 1.0000000  0.06666667  5.0000000 1    
## [193] 1.0000000  0.06666667  2.5000000 1    
## [194] 1.0000000  0.06666667  2.5000000 1    
## [195] 1.0000000  0.06666667  3.0000000 1    
## [196] 1.0000000  0.06666667  2.5000000 1    
## [197] 1.0000000  0.06666667  2.1428571 1    
## [198] 1.0000000  0.06666667  5.0000000 1    
## [199] 1.0000000  0.06666667  2.5000000 1    
## [200] 1.0000000  0.06666667  2.1428571 1    
## [201] 1.0000000  0.06666667  5.0000000 1    
## [202] 1.0000000  0.06666667  2.1428571 1    
## [203] 1.0000000  0.06666667  2.5000000 1    
## [204] 1.0000000  0.06666667  3.0000000 1    
## [205] 1.0000000  0.06666667  5.0000000 1    
## [206] 1.0000000  0.06666667  2.5000000 1    
## [207] 1.0000000  0.06666667  2.5000000 1    
## [208] 1.0000000  0.06666667  3.0000000 1    
## [209] 1.0000000  0.06666667  2.5000000 1    
## [210] 1.0000000  0.06666667  2.1428571 1    
## [211] 1.0000000  0.06666667  5.0000000 1    
## [212] 1.0000000  0.06666667  2.5000000 1    
## [213] 1.0000000  0.06666667  2.1428571 1    
## [214] 1.0000000  0.06666667  5.0000000 1    
## [215] 1.0000000  0.06666667  2.5000000 1    
## [216] 1.0000000  0.06666667  2.5000000 1    
## [217] 1.0000000  0.06666667  3.0000000 1    
## [218] 1.0000000  0.06666667  2.5000000 1    
## [219] 1.0000000  0.06666667  3.0000000 1    
## [220] 1.0000000  0.06666667  5.0000000 1    
## [221] 1.0000000  0.06666667  5.0000000 1    
## [222] 1.0000000  0.06666667 15.0000000 1    
## [223] 1.0000000  0.06666667  2.1428571 1    
## [224] 1.0000000  0.06666667  3.0000000 1    
## [225] 1.0000000  0.06666667  5.0000000 1    
## [226] 1.0000000  0.06666667  5.0000000 1    
## [227] 1.0000000  0.06666667 15.0000000 1    
## [228] 1.0000000  0.06666667  2.5000000 1    
## [229] 1.0000000  0.06666667  3.0000000 1    
## [230] 1.0000000  0.06666667  5.0000000 1    
## [231] 1.0000000  0.06666667  5.0000000 1    
## [232] 1.0000000  0.06666667 15.0000000 1    
## [233] 1.0000000  0.06666667  2.1428571 1    
## [234] 1.0000000  0.06666667  2.5000000 1    
## [235] 1.0000000  0.06666667  5.0000000 1    
## [236] 1.0000000  0.06666667  5.0000000 1    
## [237] 1.0000000  0.06666667 15.0000000 1    
## [238] 1.0000000  0.06666667  2.5000000 1    
## [239] 1.0000000  0.06666667  2.5000000 1    
## [240] 1.0000000  0.06666667  5.0000000 1    
## [241] 1.0000000  0.06666667  5.0000000 1    
## [242] 1.0000000  0.06666667 15.0000000 1    
## [243] 1.0000000  0.06666667  2.5000000 1    
## [244] 1.0000000  0.06666667  2.1428571 1    
## [245] 1.0000000  0.06666667  5.0000000 1    
## [246] 1.0000000  0.06666667  5.0000000 1    
## [247] 1.0000000  0.06666667  2.1428571 1    
## [248] 1.0000000  0.06666667  2.5000000 1    
## [249] 1.0000000  0.06666667  3.0000000 1    
## [250] 1.0000000  0.06666667  5.0000000 1    
## [251] 1.0000000  0.06666667 15.0000000 1    
## [252] 1.0000000  0.06666667  2.5000000 1    
## [253] 1.0000000  0.06666667  2.5000000 1    
## [254] 1.0000000  0.06666667  3.0000000 1    
## [255] 1.0000000  0.06666667  5.0000000 1    
## [256] 1.0000000  0.06666667 15.0000000 1    
## [257] 1.0000000  0.06666667  2.5000000 1    
## [258] 1.0000000  0.06666667  2.1428571 1    
## [259] 1.0000000  0.06666667  3.0000000 1    
## [260] 1.0000000  0.06666667  5.0000000 1    
## [261] 1.0000000  0.06666667 15.0000000 1    
## [262] 1.0000000  0.06666667  2.5000000 1    
## [263] 1.0000000  0.06666667  2.1428571 1    
## [264] 1.0000000  0.06666667  2.5000000 1    
## [265] 1.0000000  0.06666667  5.0000000 1    
## [266] 1.0000000  0.06666667 15.0000000 1    
## [267] 1.0000000  0.06666667  2.1428571 1    
## [268] 1.0000000  0.06666667  2.5000000 1    
## [269] 1.0000000  0.06666667  3.0000000 1    
## [270] 1.0000000  0.06666667  5.0000000 1    
## [271] 1.0000000  0.06666667 15.0000000 1    
## [272] 1.0000000  0.06666667  2.5000000 1    
## [273] 1.0000000  0.06666667  2.5000000 1    
## [274] 1.0000000  0.06666667  3.0000000 1    
## [275] 1.0000000  0.06666667  5.0000000 1    
## [276] 1.0000000  0.06666667 15.0000000 1    
## [277] 1.0000000  0.06666667  2.5000000 1    
## [278] 1.0000000  0.06666667  2.1428571 1    
## [279] 1.0000000  0.06666667  3.0000000 1    
## [280] 1.0000000  0.06666667  5.0000000 1    
## [281] 1.0000000  0.06666667 15.0000000 1    
## [282] 1.0000000  0.06666667  2.5000000 1    
## [283] 1.0000000  0.06666667  2.1428571 1    
## [284] 1.0000000  0.06666667  2.5000000 1    
## [285] 1.0000000  0.06666667  5.0000000 1    
## [286] 1.0000000  0.06666667 15.0000000 1    
## [287] 1.0000000  0.06666667  2.5000000 1    
## [288] 1.0000000  0.06666667  2.1428571 1    
## [289] 1.0000000  0.06666667  2.5000000 1    
## [290] 1.0000000  0.06666667  3.0000000 1    
## [291] 1.0000000  0.06666667 15.0000000 1    
## [292] 1.0000000  0.06666667  2.5000000 1    
## [293] 1.0000000  0.06666667  2.1428571 1    
## [294] 1.0000000  0.06666667  5.0000000 1    
## [295] 1.0000000  0.06666667  5.0000000 1    
## [296] 1.0000000  0.06666667  2.1428571 1    
## [297] 1.0000000  0.06666667  2.5000000 1    
## [298] 1.0000000  0.06666667  3.0000000 1    
## [299] 1.0000000  0.06666667  5.0000000 1    
## [300] 1.0000000  0.06666667  5.0000000 1    
## [301] 1.0000000  0.06666667  2.5000000 1    
## [302] 1.0000000  0.06666667  2.5000000 1    
## [303] 1.0000000  0.06666667  3.0000000 1    
## [304] 1.0000000  0.06666667  5.0000000 1    
## [305] 1.0000000  0.06666667  5.0000000 1    
## [306] 1.0000000  0.06666667  2.5000000 1    
## [307] 1.0000000  0.06666667  2.1428571 1    
## [308] 1.0000000  0.06666667  5.0000000 1    
## [309] 1.0000000  0.06666667  5.0000000 1    
## [310] 1.0000000  0.06666667  2.5000000 1    
## [311] 1.0000000  0.06666667  2.1428571 1    
## [312] 1.0000000  0.06666667  5.0000000 1    
## [313] 1.0000000  0.06666667  5.0000000 1    
## [314] 1.0000000  0.06666667  2.5000000 1    
## [315] 1.0000000  0.06666667  2.1428571 1    
## [316] 1.0000000  0.06666667  2.5000000 1    
## [317] 1.0000000  0.06666667  3.0000000 1    
## [318] 1.0000000  0.06666667  5.0000000 1    
## [319] 1.0000000  0.06666667  2.5000000 1    
## [320] 1.0000000  0.06666667  2.1428571 1    
## [321] 1.0000000  0.06666667  2.5000000 1    
## [322] 1.0000000  0.06666667  3.0000000 1    
## [323] 1.0000000  0.06666667  5.0000000 1    
## [324] 1.0000000  0.06666667  2.1428571 1    
## [325] 1.0000000  0.06666667  2.5000000 1    
## [326] 1.0000000  0.06666667  3.0000000 1    
## [327] 1.0000000  0.06666667  5.0000000 1    
## [328] 1.0000000  0.06666667  5.0000000 1    
## [329] 1.0000000  0.06666667 15.0000000 1    
## [330] 1.0000000  0.06666667  2.5000000 1    
## [331] 1.0000000  0.06666667  2.5000000 1    
## [332] 1.0000000  0.06666667  3.0000000 1    
## [333] 1.0000000  0.06666667  5.0000000 1    
## [334] 1.0000000  0.06666667  5.0000000 1    
## [335] 1.0000000  0.06666667 15.0000000 1    
## [336] 1.0000000  0.06666667  2.5000000 1    
## [337] 1.0000000  0.06666667  2.1428571 1    
## [338] 1.0000000  0.06666667  3.0000000 1    
## [339] 1.0000000  0.06666667  5.0000000 1    
## [340] 1.0000000  0.06666667  5.0000000 1    
## [341] 1.0000000  0.06666667 15.0000000 1    
## [342] 1.0000000  0.06666667  2.5000000 1    
## [343] 1.0000000  0.06666667  2.1428571 1    
## [344] 1.0000000  0.06666667  2.5000000 1    
## [345] 1.0000000  0.06666667  5.0000000 1    
## [346] 1.0000000  0.06666667  5.0000000 1    
## [347] 1.0000000  0.06666667 15.0000000 1    
## [348] 1.0000000  0.06666667  2.5000000 1    
## [349] 1.0000000  0.06666667  2.1428571 1    
## [350] 1.0000000  0.06666667  2.5000000 1    
## [351] 1.0000000  0.06666667  3.0000000 1    
## [352] 1.0000000  0.06666667  5.0000000 1    
## [353] 1.0000000  0.06666667 15.0000000 1    
## [354] 1.0000000  0.06666667  2.5000000 1    
## [355] 1.0000000  0.06666667  2.1428571 1    
## [356] 1.0000000  0.06666667  2.5000000 1    
## [357] 1.0000000  0.06666667  3.0000000 1    
## [358] 1.0000000  0.06666667  5.0000000 1    
## [359] 1.0000000  0.06666667 15.0000000 1    
## [360] 1.0000000  0.06666667  2.5000000 1    
## [361] 1.0000000  0.06666667  2.1428571 1    
## [362] 1.0000000  0.06666667  2.5000000 1    
## [363] 1.0000000  0.06666667  3.0000000 1    
## [364] 1.0000000  0.06666667  5.0000000 1    
## [365] 1.0000000  0.06666667  5.0000000 1    
## [366] 1.0000000  0.06666667  2.5000000 1    
## [367] 1.0000000  0.06666667  2.1428571 1    
## [368] 1.0000000  0.06666667  2.5000000 1    
## [369] 1.0000000  0.06666667  3.0000000 1    
## [370] 1.0000000  0.06666667  5.0000000 1    
## [371] 1.0000000  0.06666667  5.0000000 1    
## [372] 1.0000000  0.06666667 15.0000000 1    
## [373] 0.6666667  0.20000000  3.3333333 2    
## [374] 0.6666667  0.20000000  3.3333333 2    
## [375] 0.6666667  0.20000000  2.0000000 2    
## [376] 0.6666667  0.20000000  1.4285714 2    
## [377] 0.6666667  0.20000000  1.6666667 2    
## [378] 0.6666667  0.20000000  3.3333333 2    
## [379] 0.6666667  0.20000000  3.3333333 2    
## [380] 0.6666667  0.20000000  3.3333333 2    
## [381] 0.6666667  0.20000000  1.6666667 2    
## [382] 0.6666667  0.20000000  2.0000000 2    
## [383] 0.6666667  0.20000000  3.3333333 2    
## [384] 0.6000000  0.33333333  1.5000000 3    
## [385] 0.5000000  0.40000000  2.5000000 3    
## [386] 0.5000000  0.40000000  1.5000000 3    
## [387] 0.5000000  0.40000000  1.0714286 3    
## [388] 0.5000000  0.40000000  1.2500000 3    
## [389] 0.5000000  0.40000000  1.2500000 3    
## [390] 0.5000000  0.40000000  1.0714286 3    
## [391] 0.5000000  0.13333333  7.5000000 1    
## [392] 0.5000000  0.13333333  7.5000000 1    
## [393] 0.5000000  0.13333333  7.5000000 1    
## [394] 0.5000000  0.13333333  7.5000000 1    
## [395] 0.5000000  0.13333333  7.5000000 1    
## [396] 0.5000000  0.13333333  2.5000000 1    
## [397] 0.5000000  0.13333333  2.5000000 1    
## [398] 0.5000000  0.13333333  2.5000000 1    
## [399] 0.5000000  0.13333333  1.5000000 1    
## [400] 0.5000000  0.13333333  1.0714286 1    
## [401] 0.5000000  0.13333333  1.2500000 1    
## [402] 0.5000000  0.13333333  1.2500000 1    
## [403] 0.5000000  0.13333333  1.2500000 1    
## [404] 0.5000000  0.13333333  1.5000000 1    
## [405] 0.5000000  0.13333333  2.5000000 1    
## [406] 0.5000000  0.13333333  1.2500000 1    
## [407] 0.5000000  0.13333333  1.2500000 1    
## [408] 0.5000000  0.13333333  2.5000000 1    
## [409] 0.5000000  0.13333333  1.0714286 1    
## [410] 0.5000000  0.13333333  1.5000000 1    
## [411] 0.5000000  0.13333333  1.2500000 1    
## [412] 0.5000000  0.13333333  1.5000000 1    
## [413] 0.5000000  0.13333333  1.2500000 1    
## [414] 0.5000000  0.13333333  1.2500000 1    
## [415] 0.5000000  0.13333333  2.5000000 1    
## [416] 0.5000000  0.13333333  1.0714286 1    
## [417] 0.5000000  0.13333333  7.5000000 1    
## [418] 0.5000000  0.13333333  7.5000000 1    
## [419] 0.5000000  0.13333333  7.5000000 1    
## [420] 0.5000000  0.13333333  7.5000000 1    
## [421] 0.5000000  0.13333333  2.5000000 1    
## [422] 0.5000000  0.13333333  2.5000000 1    
## [423] 0.5000000  0.13333333  2.5000000 1    
## [424] 0.5000000  0.13333333  1.5000000 1    
## [425] 0.5000000  0.13333333  1.5000000 1    
## [426] 0.5000000  0.13333333  1.2500000 1    
## [427] 0.5000000  0.13333333  1.2500000 1    
## [428] 0.5000000  0.13333333  2.5000000 1    
## [429] 0.5000000  0.13333333  1.5000000 1    
## [430] 0.5000000  0.13333333  1.2500000 1    
## [431] 0.5000000  0.13333333  2.5000000 1    
## [432] 0.5000000  0.13333333  1.0714286 1    
## [433] 0.5000000  0.13333333  7.5000000 1    
## [434] 0.5000000  0.13333333  2.5000000 1    
## [435] 0.5000000  0.13333333  1.5000000 1    
## [436] 0.5000000  0.13333333  1.2500000 1    
## [437] 0.4666667  1.00000000  1.0000000 7    
## [438] 0.4285714  0.46666667  2.1428571 3    
## [439] 0.4285714  0.46666667  1.0714286 3    
## [440] 0.4285714  0.46666667  1.0714286 3    
## [441] 0.4000000  1.00000000  1.0000000 6    
## [442] 0.4000000  1.00000000  1.0000000 6    
## [443] 0.4000000  0.33333333  1.0000000 2    
## [444] 0.4000000  0.33333333  0.8571429 2    
## [445] 0.4000000  0.33333333  1.0000000 2    
## [446] 0.4000000  0.33333333  2.0000000 2    
## [447] 0.4000000  0.33333333  1.0000000 2    
## [448] 0.3333333  1.00000000  1.0000000 5    
## [449] 0.3333333  1.00000000  1.0000000 5    
## [450] 0.3333333  0.20000000  5.0000000 1    
## [451] 0.3333333  0.20000000  5.0000000 1    
## [452] 0.3333333  0.20000000  1.6666667 1    
## [453] 0.3333333  0.20000000  1.6666667 1    
## [454] 0.3333333  0.20000000  1.6666667 1    
## [455] 0.3333333  0.20000000  1.6666667 1    
## [456] 0.3333333  0.20000000  0.8333333 1    
## [457] 0.3333333  0.20000000  0.7142857 1    
## [458] 0.3333333  0.20000000  0.8333333 1    
## [459] 0.3333333  0.40000000  1.0000000 2    
## [460] 0.3333333  0.40000000  1.0000000 2    
## [461] 0.3333333  0.20000000  0.8333333 1    
## [462] 0.3333333  0.40000000  1.6666667 2    
## [463] 0.3333333  0.20000000  1.0000000 1    
## [464] 0.3333333  0.20000000  0.8333333 1    
## [465] 0.3333333  0.40000000  1.0000000 2    
## [466] 0.3333333  0.20000000  5.0000000 1    
## [467] 0.3333333  0.20000000  5.0000000 1    
## [468] 0.3333333  0.20000000  5.0000000 1    
## [469] 0.3333333  0.20000000  5.0000000 1    
## [470] 0.3333333  0.20000000  5.0000000 1    
## [471] 0.3333333  0.20000000  5.0000000 1    
## [472] 0.3333333  0.20000000  1.6666667 1    
## [473] 0.3333333  0.20000000  1.6666667 1    
## [474] 0.3333333  0.20000000  1.6666667 1    
## [475] 0.3333333  0.20000000  1.0000000 1    
## [476] 0.3333333  0.20000000  1.0000000 1    
## [477] 0.3333333  0.20000000  1.0000000 1    
## [478] 0.3333333  0.20000000  1.6666667 1    
## [479] 0.3333333  0.20000000  1.6666667 1    
## [480] 0.3333333  0.20000000  1.6666667 1    
## [481] 0.3333333  0.20000000  1.0000000 1    
## [482] 0.3333333  0.20000000  1.0000000 1    
## [483] 0.3333333  0.20000000  1.6666667 1    
## [484] 0.3333333  0.20000000  0.8333333 1    
## [485] 0.3333333  0.20000000  1.6666667 1    
## [486] 0.3333333  0.20000000  0.8333333 1    
## [487] 0.3333333  0.20000000  1.6666667 1    
## [488] 0.3333333  0.20000000  1.0000000 1    
## [489] 0.3333333  0.20000000  0.7142857 1    
## [490] 0.3333333  0.20000000  1.0000000 1    
## [491] 0.3333333  0.20000000  0.8333333 1    
## [492] 0.3333333  0.20000000  0.7142857 1    
## [493] 0.3333333  0.20000000  0.8333333 1    
## [494] 0.3333333  0.20000000  5.0000000 1    
## [495] 0.3333333  0.20000000  1.6666667 1    
## [496] 0.3333333  0.20000000  1.0000000 1    
## [497] 0.3333333  0.20000000  0.8333333 1
size(rules.by.conf)
##   [1] 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
##  [38] 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
##  [75] 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4
## [112] 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4
## [149] 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4
## [186] 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5
## [223] 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5
## [260] 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5
## [297] 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6
## [334] 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 7 7 7 7 7
## [371] 7 7 2 2 2 2 2 3 3 3 3 3 4 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
## [408] 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 1 2 2 2 1 1 2 2
## [445] 2 2 2 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
## [482] 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4
length(rules.by.conf)
## [1] 497
freq.items<-eclat(trans, parameter=list(supp=0.25, maxlen=15)) 
## Eclat
## 
## parameter specification:
##  tidLists support minlen maxlen            target  ext
##     FALSE    0.25      1     15 frequent itemsets TRUE
## 
## algorithmic control:
##  sparse sort verbose
##       7   -2    TRUE
## 
## Absolute minimum support count: 3 
## 
## create itemset ... 
## set transactions ...[10 item(s), 15 transaction(s)] done [0.00s].
## sorting and recoding items ... [5 item(s)] done [0.00s].
## creating bit matrix ... [5 row(s), 15 column(s)] done [0.00s].
## writing  ... [5 set(s)] done [0.00s].
## Creating S4 object  ... done [0.00s].
inspect(freq.items)
##     items    support   count
## [1] {item9}  0.4000000 6    
## [2] {item5}  0.4666667 7    
## [3] {item10} 0.4000000 6    
## [4] {item7}  0.3333333 5    
## [5] {item4}  0.3333333 5

All the support values are between 0 and 1, indicating the relative frequency of the itemsets in the dataset. Since none of these support values are negative, it shows that the itemsets are present in a positive proportion of the transactions.

9. Saving Rules

write(rules.random, file = "random_rules.csv", sep = ",", quote = TRUE, row.names = FALSE)

10. Conclusion

What we’ve seen so far is a glimpse into how frequently certain items or combinations of items appear in transactions and how they interact with each other. The support values give us the frequency of how often an item or itemset shows up in the dataset, always falling between 0 and 1 (because it’s a proportion). While these numbers don’t tell us anything about the direction or strength of relationships, they do highlight which items are more common and which combos seem to appear together more often.

For instance, we saw that individual items like item1 have relatively high support, meaning they’re popular choices on their own, while combinations like {item1, item10} are less frequent but still noteworthy for those who like to bundle these two. That’s a clue for strategies like targeted marketing or product bundles. But just looking at support won’t tell you if item A and item B are best friends or just happen to be in the same basket more often-metrics like confidence and lift would dig deeper into the strength and direction of those relationships.

In the end, Sankey diagrams and itemset analysis open the door to understanding patterns-what products are bought together and how strongly those associations hold up. It’s about connecting the dots in the data to make better decisions, whether you’re organizing inventory or crafting promotions that hit the mark.

Thank you for your time and effort in following this project from start to finish. I believe that I’ve made a contribution to your learning and education through this interesting and valuable paper.