lcbo 0.11.0 → 1.0.0beta1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,9 @@
1
+ Version 1.0.0beta1
2
+
3
+ * Added rule to titlecase helper to account for names like L'Andéol.
4
+ * Changed instances of `store_no`, and `product_no`, to `store_id`,
5
+ `product_id`, and `id` where appropriate.
6
+
1
7
  Version 0.11.0
2
8
 
3
9
  * Added helper to format phone numbers to (XXX) XXX-XXXX regardless of the
data/README.md CHANGED
@@ -9,19 +9,19 @@ store list pages directly from the [LCBO](http://lcbo.com) website.
9
9
  require 'lcbo'
10
10
 
11
11
  LCBO.store(511)
12
- # => { :store_no => 511, :name => "King & Spadina", ... }
12
+ # => { :id => 511, :name => "King & Spadina", ... }
13
13
 
14
14
  LCBO.product(18)
15
- # => { :product_no => 18, :name => "Heineken Lager", ... }
15
+ # => { :id => 18, :name => "Heineken Lager", ... }
16
16
 
17
17
  LCBO.inventory(18)
18
- # => { :product_no => 18, :inventory_count => 40398, :inventories => [ ... ] }
18
+ # => { :id => 18, :inventory_count => 40398, :inventories => [ ... ] }
19
19
 
20
20
  LCBO.products_list(1)
21
- # => { :page => 1, :final_page => 108, ..., :product_nos => [ ... ] }
21
+ # => { :page => 1, :final_page => 108, ..., :product_ids => [ ... ] }
22
22
 
23
23
  LCBO.store_list
24
- # => { :store_nos => [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, ...] }
24
+ # => { :store_ids => [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, ...] }
25
25
 
26
26
  ## Crawlers
27
27
 
@@ -6,14 +6,14 @@ class InventoriesCrawler
6
6
  ProductListsCrawler.run
7
7
  end
8
8
 
9
- def request(product_no)
10
- LCBO.inventory(product_no)
9
+ def request(product_id)
10
+ LCBO.inventory(product_id)
11
11
  end
12
12
 
13
- def failure(error, product_no)
13
+ def failure(error, product_id)
14
14
  case error
15
15
  when LCBO::CrawlKit::NotFoundError
16
- puts "[missing] Skipped inventory for product ##{product_no}"
16
+ puts "[missing] Skipped inventory for product ##{product_id}"
17
17
  else
18
18
  raise error
19
19
  end
@@ -11,7 +11,7 @@ class ProductListsCrawler
11
11
  end
12
12
 
13
13
  def reduce
14
- responses.map { |params| params[:product_nos] }.flatten
14
+ responses.map { |params| params[:product_ids] }.flatten
15
15
  end
16
16
 
17
17
  end
@@ -6,14 +6,14 @@ class ProductsCrawler
6
6
  ProductListsCrawler.run
7
7
  end
8
8
 
9
- def request(product_no)
10
- LCBO.product(product_no)
9
+ def request(id)
10
+ LCBO.product(id)
11
11
  end
12
12
 
13
- def failure(error, product_no)
13
+ def failure(error, id)
14
14
  case error
15
15
  when LCBO::CrawlKit::NotFoundError
16
- puts "[missing] Skipped product ##{product_no}"
16
+ puts "[missing] Skipped product ##{id}"
17
17
  else
18
18
  raise error
19
19
  end
@@ -6,15 +6,15 @@ class ProductsQueueCrawler
6
6
  $redis.rpop('lcbo.products.queue')
7
7
  end
8
8
 
9
- def request(product_no)
10
- LCBO.product(product_no)
9
+ def request(id)
10
+ LCBO.product(id)
11
11
  end
12
12
 
13
- def failure(error, product_no)
13
+ def failure(error, id)
14
14
  case error
15
15
  when LCBO::CrawlKit::NotFoundError
16
- puts "[missing] Skipped product ##{product_no}"
17
- $redis.rpush('lcbo.products.missing', product_no)
16
+ puts "[missing] Skipped product ##{id}"
17
+ $redis.rpush('lcbo.products.missing', id)
18
18
  else
19
19
  raise error
20
20
  end
@@ -3,17 +3,17 @@ class StoresCrawler
3
3
  include LCBO::CrawlKit::Crawler
4
4
 
5
5
  def enum
6
- LCBO.store_list[:store_nos]
6
+ LCBO.store_list[:store_ids]
7
7
  end
8
8
 
9
- def request(store_no)
10
- LCBO.store(store_no)
9
+ def request(id)
10
+ LCBO.store(id)
11
11
  end
12
12
 
13
- def failure(error, store_no)
13
+ def failure(error, id)
14
14
  case error
15
15
  when LCBO::CrawlKit::NotFoundError
16
- puts "[missing] Skipped store ##{store_no}"
16
+ puts "[missing] Skipped store ##{id}"
17
17
  else
18
18
  raise error
19
19
  end
@@ -2,6 +2,7 @@ require 'nokogiri'
2
2
  require 'typhoeus'
3
3
  require 'unicode_utils'
4
4
  require 'stringex'
5
+ require 'timeout'
5
6
  require 'uri'
6
7
 
7
8
  module LCBO
@@ -4,15 +4,13 @@ module LCBO
4
4
  class TitleCaseHelper
5
5
 
6
6
  SMALL_WORDS = %w[
7
- a an and as at but by en for
8
- if in of del de on or the to
9
- v v. via vs vs.
7
+ a an and as at but by en for if in of del de on or the to v v. via
8
+ vs.
10
9
  ]
11
10
 
12
11
  ACRONYMS = %w[
13
- vqa vsop xo nq5 vs xxx igt
14
- xiii xi xoxo srl bdb cvbg
15
- ocb lcbo i ii iii
12
+ i ii iii iv v vi vii viii ix x xiii xi vqa vsop xo nq5 vs xxx igt xoxo
13
+ srl bdb cvbg ocb lcbo gtm hf yo vs
16
14
  ]
17
15
 
18
16
  attr_reader :input
@@ -57,7 +55,10 @@ module LCBO
57
55
  else
58
56
  word
59
57
  end
60
- end.join(' ').gsub(/(['’])S\b/, '\1s')
58
+ end.
59
+ join(' ').
60
+ gsub(/(['’])S\b/, '\1s'). # Word'S => Word's
61
+ gsub(/(\S{1})'(\S{2,})/u) { "#{$1}'#{capitalize $2}" } # D'aux => D'Aux
61
62
  end
62
63
 
63
64
  end
@@ -16,20 +16,20 @@ module LCBO
16
16
  page[page_type].parse(response)
17
17
  end
18
18
 
19
- def self.product(product_no)
20
- ProductPage.process(:product_no => product_no).as_hash
19
+ def self.product(id)
20
+ ProductPage.process(:id => id).as_hash
21
21
  end
22
22
 
23
- def self.store(store_no)
24
- StorePage.process(:store_no => store_no).as_hash
23
+ def self.store(id)
24
+ StorePage.process(:id => id).as_hash
25
25
  end
26
26
 
27
- def self.inventory(product_no)
28
- InventoryPage.process(:product_no => product_no).as_hash
27
+ def self.inventory(product_id)
28
+ InventoryPage.process(:product_id => product_id).as_hash
29
29
  end
30
30
 
31
- def self.product_list(page_number)
32
- ProductListPage.process({}, { :page => page_number }).as_hash
31
+ def self.product_list(page_num)
32
+ ProductListPage.process({}, :page => page_num).as_hash
33
33
  end
34
34
 
35
35
  def self.store_list
@@ -4,10 +4,10 @@ module LCBO
4
4
  include CrawlKit::Page
5
5
 
6
6
  uri 'http://www.lcbo.com/lcbo-ear/lcbo/product/inventory/searchResults.do' \
7
- '?language=EN&itemNumber={product_no}'
7
+ '?language=EN&itemNumber={product_id}'
8
8
 
9
- emits :product_no do
10
- query_params[:product_no].to_i
9
+ emits :product_id do
10
+ query_params[:product_id].to_i
11
11
  end
12
12
 
13
13
  emits :inventory_count do
@@ -15,16 +15,17 @@ module LCBO
15
15
  end
16
16
 
17
17
  emits :inventories do
18
- # [updated_on, store_no, quantity]
18
+ # [updated_on, store_id, quantity]
19
19
  doc.css('table[cellpadding="3"] tr[bgcolor] > td[width="17%"] > a.item-details-col5').zip(
20
20
  doc.css('table[cellpadding="3"] tr[bgcolor] > td > a.item-details-col0'),
21
- doc.css('table[cellpadding="3"] tr[bgcolor] > td[width="13%"]')).map do |updated_on, store_no, quantity|
21
+ doc.css('table[cellpadding="3"] tr[bgcolor] > td[width="13%"]')).map do |updated_on, store_id, quantity|
22
22
  {
23
23
  :updated_on => CrawlKit::FastDateHelper[updated_on.text.strip],
24
- :store_no => store_no["href"].match(/\?STORE=([0-9]{1,3})\&/)[1].to_i,
24
+ :store_id => store_id['href'].match(/\?STORE=([0-9]{1,3})\&/)[1].to_i,
25
25
  :quantity => quantity.content.strip.to_i,
26
26
  }
27
27
  end
28
28
  end
29
+
29
30
  end
30
31
  end
@@ -64,7 +64,7 @@ module LCBO
64
64
  end
65
65
  end
66
66
 
67
- emits :product_nos do
67
+ emits :product_ids do
68
68
  product_anchors.reduce([]) do |ary, a|
69
69
  if (match = a.attribute('href').value.match(/\&itemNumber=([0-9]+)/))
70
70
  ary << (match.captures[0].to_i)
@@ -73,7 +73,7 @@ module LCBO
73
73
  end
74
74
  end
75
75
  end
76
- alias_method :as_array, :product_nos
76
+ alias_method :as_array, :product_ids
77
77
 
78
78
  def product_anchors
79
79
  doc.css('td[style="padding: 5 5 5 0;"] a.item-details-col2')
@@ -4,15 +4,15 @@ module LCBO
4
4
  include CrawlKit::Page
5
5
 
6
6
  uri 'http://lcbo.com/lcbo-ear/lcbo/product/details.do?' \
7
- 'language=EN&itemNumber={product_no}'
7
+ 'language=EN&itemNumber={id}'
8
8
 
9
9
  on :before_parse, :verify_response_not_blank
10
10
  on :after_parse, :verify_product_details_form
11
11
  on :after_parse, :verify_product_name
12
12
  on :after_parse, :verify_third_info_cell
13
13
 
14
- emits :product_no do
15
- query_params[:product_no].to_i
14
+ emits :id do
15
+ query_params[:id].to_i
16
16
  end
17
17
 
18
18
  emits :name do
@@ -304,25 +304,25 @@ module LCBO
304
304
  return unless has_package? && info_cell_lines[2][0,1] != '|'
305
305
  raise CrawlKit::MalformedError,
306
306
  "Expected third line in info cell to begin with bar. LCBO No: " \
307
- "#{product_no}, Dump: #{info_cell_lines[2].inspect}"
307
+ "#{id}, Dump: #{info_cell_lines[2].inspect}"
308
308
  end
309
309
 
310
310
  def verify_response_not_blank
311
311
  return unless html.strip == ''
312
312
  raise CrawlKit::NotFoundError,
313
- "product #{product_no} does not appear to exist"
313
+ "product #{id} does not appear to exist"
314
314
  end
315
315
 
316
316
  def verify_product_name
317
317
  return unless product_details_form('itemName').strip == ''
318
318
  raise CrawlKit::NotFoundError,
319
- "can not locate name for product #{product_no}"
319
+ "can not locate name for product #{id}"
320
320
  end
321
321
 
322
322
  def verify_product_details_form
323
323
  return unless doc.css('form[name="productdetails"]').empty?
324
324
  raise CrawlKit::MalformedError,
325
- "productdetails form not found in doc for product #{product_no}"
325
+ "productdetails form not found in doc for product #{id}"
326
326
  end
327
327
 
328
328
  end
@@ -24,8 +24,8 @@ module LCBO
24
24
  :'Find Stores.y' => '9',
25
25
  :municipality_citywide => ''
26
26
 
27
- emits :store_nos do
28
- @store_nos ||= begin
27
+ emits :store_ids do
28
+ @store_ids ||= begin
29
29
  anchors.reduce([]) { |ary, a|
30
30
  if (match = a.attribute('href').value.match(/\&STORE=([0-9]+)/))
31
31
  ary << match.captures[0].to_i
@@ -41,7 +41,7 @@ module LCBO
41
41
  end
42
42
 
43
43
  def verify_number_of_stores
44
- return if STORE_COUNT_RANGE.include?(store_nos.length)
44
+ return if STORE_COUNT_RANGE.include?(store_ids.length)
45
45
  raise CrawlKit::MalformedError,
46
46
  "Store count (#{total_stores}) not in range: #{STORE_COUNT_RANGE}"
47
47
  end
@@ -5,8 +5,7 @@ module LCBO
5
5
 
6
6
  include CrawlKit::Page
7
7
 
8
- uri 'http://www.lcbo.com/lcbo-ear/jsp/storeinfo.jsp?' \
9
- 'STORE={store_no}&language=EN'
8
+ uri 'http://www.lcbo.com/lcbo-ear/jsp/storeinfo.jsp?STORE={id}&language=EN'
10
9
 
11
10
  DAY_NAMES = %w[
12
11
  monday
@@ -32,8 +31,8 @@ module LCBO
32
31
  on :after_parse, :verify_node_count
33
32
  on :after_parse, :verify_telephone_number
34
33
 
35
- emits :store_no do
36
- query_params[:store_no].to_i
34
+ emits :id do
35
+ query_params[:id].to_i
37
36
  end
38
37
 
39
38
  emits :name do
@@ -54,7 +53,7 @@ module LCBO
54
53
  data = info_nodes[2].content.strip.split(',')[0]
55
54
  unless data
56
55
  raise CrawlKit::MalformedError,
57
- "unable to locate address for store #{store_no}"
56
+ "unable to locate address for store #{idid}"
58
57
  end
59
58
  CrawlKit::TitleCaseHelper[data.gsub(/[\n\r\t]+/, ' ').strip]
60
59
  end
@@ -73,7 +72,7 @@ module LCBO
73
72
  data = info_nodes[3].content.strip.split(',')[1]
74
73
  unless data
75
74
  raise CrawlKit::MalformedError,
76
- "unable to locate postal code for store #{store_no}"
75
+ "unable to locate postal code for store #{id}"
77
76
  end
78
77
  data.gsub(/[\n\r\t]+/, ' ').strip.upcase
79
78
  end
@@ -188,19 +187,19 @@ module LCBO
188
187
 
189
188
  def verify_store_returned
190
189
  return if !@html.include?('No stores were located using your criteria.')
191
- raise CrawlKit::NotFoundError, "store #{store_no} does not exist"
190
+ raise CrawlKit::NotFoundError, "store #{id} does not exist"
192
191
  end
193
192
 
194
193
  def verify_telephone_number
195
194
  return if telephone
196
195
  raise CrawlKit::MalformedError,
197
- "unable to locate telephone number for store #{store_no}"
196
+ "unable to locate telephone number for store #{id}"
198
197
  end
199
198
 
200
199
  def verify_node_count
201
200
  return if expected_node_count == info_nodes.size
202
201
  raise CrawlKit::MalformedError,
203
- "Expected #{expected_node_count} nodes for store #{store_no} but found " \
202
+ "Expected #{expected_node_count} nodes for store #{id} but found " \
204
203
  "#{info_nodes.size} instead."
205
204
  end
206
205
 
@@ -1,3 +1,3 @@
1
1
  module LCBO
2
- VERSION = '0.11.0'
2
+ VERSION = '1.0.0beta1'
3
3
  end
@@ -13,7 +13,8 @@ describe LCBO::CrawlKit::TitleCaseHelper do
13
13
  'SOME NICE VQA WINE' => 'Some Nice VQA Wine',
14
14
  'A PRODUCT NAME (WITH STUPID CRAP' => 'A Product Name',
15
15
  'A PRODUCT NAME (FROM FRANCE)' => 'A Product Name',
16
- 'SOMEONE\'S PRODUCT' => 'Someone\'s Product' }
16
+ 'SOMEONE\'S PRODUCT' => 'Someone\'s Product',
17
+ 'CUVÉE DE L\'ÉCUSSON BRUT' => 'Cuvée de L\'Écusson Brut' }
17
18
 
18
19
  @expectations.each_pair do |input, expectation|
19
20
  it "should convert: #{input.inspect} to: #{expectation.inspect}" do
@@ -3,1683 +3,1683 @@
3
3
  :uri: http://www.lcbo.com/lcbo-ear/lcbo/product/inventory/searchResults.do?language=EN&itemNumber=18
4
4
  :method: :get
5
5
  :query_params:
6
- :product_no: 18
6
+ :product_id: 18
7
7
  :expectation:
8
- :product_no: 18
8
+ :product_id: 18
9
9
  :inventory_count: 58866
10
10
  :inventories:
11
11
  - :updated_on: 2010-07-21
12
- :store_no: 444
12
+ :store_id: 444
13
13
  :quantity: 1303
14
14
  - :updated_on: 2010-07-21
15
- :store_no: 355
15
+ :store_id: 355
16
16
  :quantity: 1146
17
17
  - :updated_on: 2010-07-21
18
- :store_no: 228
18
+ :store_id: 228
19
19
  :quantity: 1139
20
20
  - :updated_on: 2010-07-21
21
- :store_no: 329
21
+ :store_id: 329
22
22
  :quantity: 1138
23
23
  - :updated_on: 2010-07-21
24
- :store_no: 171
24
+ :store_id: 171
25
25
  :quantity: 1106
26
26
  - :updated_on: 2010-07-21
27
- :store_no: 226
27
+ :store_id: 226
28
28
  :quantity: 1022
29
29
  - :updated_on: 2010-07-21
30
- :store_no: 6
30
+ :store_id: 6
31
31
  :quantity: 842
32
32
  - :updated_on: 2010-07-21
33
- :store_no: 416
33
+ :store_id: 416
34
34
  :quantity: 803
35
35
  - :updated_on: 2010-07-21
36
- :store_no: 555
36
+ :store_id: 555
37
37
  :quantity: 768
38
38
  - :updated_on: 2010-07-20
39
- :store_no: 458
39
+ :store_id: 458
40
40
  :quantity: 763
41
41
  - :updated_on: 2010-07-21
42
- :store_no: 408
42
+ :store_id: 408
43
43
  :quantity: 731
44
44
  - :updated_on: 2010-07-21
45
- :store_no: 590
45
+ :store_id: 590
46
46
  :quantity: 731
47
47
  - :updated_on: 2010-07-21
48
- :store_no: 164
48
+ :store_id: 164
49
49
  :quantity: 604
50
50
  - :updated_on: 2010-07-21
51
- :store_no: 383
51
+ :store_id: 383
52
52
  :quantity: 603
53
53
  - :updated_on: 2010-07-21
54
- :store_no: 1
54
+ :store_id: 1
55
55
  :quantity: 596
56
56
  - :updated_on: 2010-07-21
57
- :store_no: 19
57
+ :store_id: 19
58
58
  :quantity: 596
59
59
  - :updated_on: 2010-07-21
60
- :store_no: 523
60
+ :store_id: 523
61
61
  :quantity: 569
62
62
  - :updated_on: 2010-07-21
63
- :store_no: 436
63
+ :store_id: 436
64
64
  :quantity: 564
65
65
  - :updated_on: 2010-07-21
66
- :store_no: 182
66
+ :store_id: 182
67
67
  :quantity: 562
68
68
  - :updated_on: 2010-07-21
69
- :store_no: 703
69
+ :store_id: 703
70
70
  :quantity: 558
71
71
  - :updated_on: 2010-07-21
72
- :store_no: 346
72
+ :store_id: 346
73
73
  :quantity: 529
74
74
  - :updated_on: 2010-07-21
75
- :store_no: 183
75
+ :store_id: 183
76
76
  :quantity: 519
77
77
  - :updated_on: 2010-07-21
78
- :store_no: 360
78
+ :store_id: 360
79
79
  :quantity: 493
80
80
  - :updated_on: 2010-07-21
81
- :store_no: 3
81
+ :store_id: 3
82
82
  :quantity: 489
83
83
  - :updated_on: 2010-07-21
84
- :store_no: 553
84
+ :store_id: 553
85
85
  :quantity: 475
86
86
  - :updated_on: 2010-07-21
87
- :store_no: 445
87
+ :store_id: 445
88
88
  :quantity: 455
89
89
  - :updated_on: 2010-07-21
90
- :store_no: 632
90
+ :store_id: 632
91
91
  :quantity: 448
92
92
  - :updated_on: 2010-07-21
93
- :store_no: 5
93
+ :store_id: 5
94
94
  :quantity: 444
95
95
  - :updated_on: 2010-07-21
96
- :store_no: 334
96
+ :store_id: 334
97
97
  :quantity: 435
98
98
  - :updated_on: 2010-07-21
99
- :store_no: 470
99
+ :store_id: 470
100
100
  :quantity: 430
101
101
  - :updated_on: 2010-07-21
102
- :store_no: 362
102
+ :store_id: 362
103
103
  :quantity: 428
104
104
  - :updated_on: 2010-07-21
105
- :store_no: 511
105
+ :store_id: 511
106
106
  :quantity: 428
107
107
  - :updated_on: 2010-07-21
108
- :store_no: 564
108
+ :store_id: 564
109
109
  :quantity: 426
110
110
  - :updated_on: 2010-07-21
111
- :store_no: 188
111
+ :store_id: 188
112
112
  :quantity: 425
113
113
  - :updated_on: 2010-07-21
114
- :store_no: 14
114
+ :store_id: 14
115
115
  :quantity: 422
116
116
  - :updated_on: 2010-07-21
117
- :store_no: 572
117
+ :store_id: 572
118
118
  :quantity: 417
119
119
  - :updated_on: 2010-07-21
120
- :store_no: 217
120
+ :store_id: 217
121
121
  :quantity: 414
122
122
  - :updated_on: 2010-07-21
123
- :store_no: 12
123
+ :store_id: 12
124
124
  :quantity: 413
125
125
  - :updated_on: 2010-07-21
126
- :store_no: 533
126
+ :store_id: 533
127
127
  :quantity: 411
128
128
  - :updated_on: 2010-07-21
129
- :store_no: 140
129
+ :store_id: 140
130
130
  :quantity: 401
131
131
  - :updated_on: 2010-07-21
132
- :store_no: 218
132
+ :store_id: 218
133
133
  :quantity: 394
134
134
  - :updated_on: 2010-07-21
135
- :store_no: 269
135
+ :store_id: 269
136
136
  :quantity: 389
137
137
  - :updated_on: 2010-07-21
138
- :store_no: 542
138
+ :store_id: 542
139
139
  :quantity: 388
140
140
  - :updated_on: 2010-07-21
141
- :store_no: 485
141
+ :store_id: 485
142
142
  :quantity: 383
143
143
  - :updated_on: 2010-07-21
144
- :store_no: 11
144
+ :store_id: 11
145
145
  :quantity: 378
146
146
  - :updated_on: 2010-07-21
147
- :store_no: 356
147
+ :store_id: 356
148
148
  :quantity: 374
149
149
  - :updated_on: 2010-07-21
150
- :store_no: 771
150
+ :store_id: 771
151
151
  :quantity: 371
152
152
  - :updated_on: 2010-07-21
153
- :store_no: 398
153
+ :store_id: 398
154
154
  :quantity: 362
155
155
  - :updated_on: 2010-07-21
156
- :store_no: 618
156
+ :store_id: 618
157
157
  :quantity: 358
158
158
  - :updated_on: 2010-07-21
159
- :store_no: 536
159
+ :store_id: 536
160
160
  :quantity: 357
161
161
  - :updated_on: 2010-07-21
162
- :store_no: 601
162
+ :store_id: 601
163
163
  :quantity: 356
164
164
  - :updated_on: 2010-07-21
165
- :store_no: 534
165
+ :store_id: 534
166
166
  :quantity: 354
167
167
  - :updated_on: 2010-07-21
168
- :store_no: 20
168
+ :store_id: 20
169
169
  :quantity: 351
170
170
  - :updated_on: 2010-07-21
171
- :store_no: 698
171
+ :store_id: 698
172
172
  :quantity: 350
173
173
  - :updated_on: 2010-07-21
174
- :store_no: 452
174
+ :store_id: 452
175
175
  :quantity: 348
176
176
  - :updated_on: 2010-07-21
177
- :store_no: 185
177
+ :store_id: 185
178
178
  :quantity: 340
179
179
  - :updated_on: 2010-07-21
180
- :store_no: 619
180
+ :store_id: 619
181
181
  :quantity: 338
182
182
  - :updated_on: 2010-07-21
183
- :store_no: 525
183
+ :store_id: 525
184
184
  :quantity: 314
185
185
  - :updated_on: 2010-07-21
186
- :store_no: 629
186
+ :store_id: 629
187
187
  :quantity: 308
188
188
  - :updated_on: 2010-07-21
189
- :store_no: 321
189
+ :store_id: 321
190
190
  :quantity: 301
191
191
  - :updated_on: 2010-07-21
192
- :store_no: 434
192
+ :store_id: 434
193
193
  :quantity: 291
194
194
  - :updated_on: 2010-07-21
195
- :store_no: 630
195
+ :store_id: 630
196
196
  :quantity: 285
197
197
  - :updated_on: 2010-07-21
198
- :store_no: 426
198
+ :store_id: 426
199
199
  :quantity: 282
200
200
  - :updated_on: 2010-07-21
201
- :store_no: 545
201
+ :store_id: 545
202
202
  :quantity: 281
203
203
  - :updated_on: 2010-07-21
204
- :store_no: 198
204
+ :store_id: 198
205
205
  :quantity: 270
206
206
  - :updated_on: 2010-07-21
207
- :store_no: 115
207
+ :store_id: 115
208
208
  :quantity: 266
209
209
  - :updated_on: 2010-07-21
210
- :store_no: 486
210
+ :store_id: 486
211
211
  :quantity: 261
212
212
  - :updated_on: 2010-07-21
213
- :store_no: 21
213
+ :store_id: 21
214
214
  :quantity: 255
215
215
  - :updated_on: 2010-07-21
216
- :store_no: 200
216
+ :store_id: 200
217
217
  :quantity: 254
218
218
  - :updated_on: 2010-07-21
219
- :store_no: 15
219
+ :store_id: 15
220
220
  :quantity: 253
221
221
  - :updated_on: 2010-07-21
222
- :store_no: 499
222
+ :store_id: 499
223
223
  :quantity: 247
224
224
  - :updated_on: 2010-07-21
225
- :store_no: 568
225
+ :store_id: 568
226
226
  :quantity: 232
227
227
  - :updated_on: 2010-07-21
228
- :store_no: 428
228
+ :store_id: 428
229
229
  :quantity: 224
230
230
  - :updated_on: 2010-07-21
231
- :store_no: 9
231
+ :store_id: 9
232
232
  :quantity: 221
233
233
  - :updated_on: 2010-07-21
234
- :store_no: 163
234
+ :store_id: 163
235
235
  :quantity: 216
236
236
  - :updated_on: 2010-07-21
237
- :store_no: 617
237
+ :store_id: 617
238
238
  :quantity: 209
239
239
  - :updated_on: 2010-07-21
240
- :store_no: 10
240
+ :store_id: 10
241
241
  :quantity: 199
242
242
  - :updated_on: 2010-07-21
243
- :store_no: 390
243
+ :store_id: 390
244
244
  :quantity: 197
245
245
  - :updated_on: 2010-07-21
246
- :store_no: 584
246
+ :store_id: 584
247
247
  :quantity: 197
248
248
  - :updated_on: 2010-07-21
249
- :store_no: 65
249
+ :store_id: 65
250
250
  :quantity: 192
251
251
  - :updated_on: 2010-07-21
252
- :store_no: 546
252
+ :store_id: 546
253
253
  :quantity: 189
254
254
  - :updated_on: 2010-07-21
255
- :store_no: 776
255
+ :store_id: 776
256
256
  :quantity: 187
257
257
  - :updated_on: 2010-07-21
258
- :store_no: 326
258
+ :store_id: 326
259
259
  :quantity: 185
260
260
  - :updated_on: 2010-07-21
261
- :store_no: 149
261
+ :store_id: 149
262
262
  :quantity: 184
263
263
  - :updated_on: 2010-07-21
264
- :store_no: 279
264
+ :store_id: 279
265
265
  :quantity: 183
266
266
  - :updated_on: 2010-07-21
267
- :store_no: 18
267
+ :store_id: 18
268
268
  :quantity: 182
269
269
  - :updated_on: 2010-07-21
270
- :store_no: 361
270
+ :store_id: 361
271
271
  :quantity: 181
272
272
  - :updated_on: 2010-07-21
273
- :store_no: 265
273
+ :store_id: 265
274
274
  :quantity: 179
275
275
  - :updated_on: 2010-07-21
276
- :store_no: 631
276
+ :store_id: 631
277
277
  :quantity: 178
278
278
  - :updated_on: 2010-07-21
279
- :store_no: 253
279
+ :store_id: 253
280
280
  :quantity: 177
281
281
  - :updated_on: 2010-07-21
282
- :store_no: 187
282
+ :store_id: 187
283
283
  :quantity: 174
284
284
  - :updated_on: 2010-07-21
285
- :store_no: 212
285
+ :store_id: 212
286
286
  :quantity: 173
287
287
  - :updated_on: 2010-07-21
288
- :store_no: 8
288
+ :store_id: 8
289
289
  :quantity: 172
290
290
  - :updated_on: 2010-07-21
291
- :store_no: 191
291
+ :store_id: 191
292
292
  :quantity: 171
293
293
  - :updated_on: 2010-07-21
294
- :store_no: 415
294
+ :store_id: 415
295
295
  :quantity: 171
296
296
  - :updated_on: 2010-07-21
297
- :store_no: 505
297
+ :store_id: 505
298
298
  :quantity: 167
299
299
  - :updated_on: 2010-07-21
300
- :store_no: 623
300
+ :store_id: 623
301
301
  :quantity: 167
302
302
  - :updated_on: 2010-07-21
303
- :store_no: 494
303
+ :store_id: 494
304
304
  :quantity: 163
305
305
  - :updated_on: 2010-07-21
306
- :store_no: 443
306
+ :store_id: 443
307
307
  :quantity: 161
308
308
  - :updated_on: 2010-07-21
309
- :store_no: 587
309
+ :store_id: 587
310
310
  :quantity: 158
311
311
  - :updated_on: 2010-07-21
312
- :store_no: 73
312
+ :store_id: 73
313
313
  :quantity: 156
314
314
  - :updated_on: 2010-07-21
315
- :store_no: 495
315
+ :store_id: 495
316
316
  :quantity: 152
317
317
  - :updated_on: 2010-07-21
318
- :store_no: 148
318
+ :store_id: 148
319
319
  :quantity: 151
320
320
  - :updated_on: 2010-07-21
321
- :store_no: 404
321
+ :store_id: 404
322
322
  :quantity: 151
323
323
  - :updated_on: 2010-07-21
324
- :store_no: 378
324
+ :store_id: 378
325
325
  :quantity: 148
326
326
  - :updated_on: 2010-07-21
327
- :store_no: 25
327
+ :store_id: 25
328
328
  :quantity: 147
329
329
  - :updated_on: 2010-07-21
330
- :store_no: 624
330
+ :store_id: 624
331
331
  :quantity: 146
332
332
  - :updated_on: 2010-07-21
333
- :store_no: 242
333
+ :store_id: 242
334
334
  :quantity: 145
335
335
  - :updated_on: 2010-07-21
336
- :store_no: 481
336
+ :store_id: 481
337
337
  :quantity: 145
338
338
  - :updated_on: 2010-07-21
339
- :store_no: 34
339
+ :store_id: 34
340
340
  :quantity: 141
341
341
  - :updated_on: 2010-07-21
342
- :store_no: 243
342
+ :store_id: 243
343
343
  :quantity: 140
344
344
  - :updated_on: 2010-07-21
345
- :store_no: 573
345
+ :store_id: 573
346
346
  :quantity: 140
347
347
  - :updated_on: 2010-07-21
348
- :store_no: 22
348
+ :store_id: 22
349
349
  :quantity: 139
350
350
  - :updated_on: 2010-07-21
351
- :store_no: 95
351
+ :store_id: 95
352
352
  :quantity: 137
353
353
  - :updated_on: 2010-07-21
354
- :store_no: 27
354
+ :store_id: 27
355
355
  :quantity: 136
356
356
  - :updated_on: 2010-07-21
357
- :store_no: 411
357
+ :store_id: 411
358
358
  :quantity: 135
359
359
  - :updated_on: 2010-07-21
360
- :store_no: 154
360
+ :store_id: 154
361
361
  :quantity: 134
362
362
  - :updated_on: 2010-07-21
363
- :store_no: 179
363
+ :store_id: 179
364
364
  :quantity: 134
365
365
  - :updated_on: 2010-07-21
366
- :store_no: 214
366
+ :store_id: 214
367
367
  :quantity: 134
368
368
  - :updated_on: 2010-07-21
369
- :store_no: 263
369
+ :store_id: 263
370
370
  :quantity: 134
371
371
  - :updated_on: 2010-07-21
372
- :store_no: 2
372
+ :store_id: 2
373
373
  :quantity: 132
374
374
  - :updated_on: 2010-07-21
375
- :store_no: 252
375
+ :store_id: 252
376
376
  :quantity: 132
377
377
  - :updated_on: 2010-07-21
378
- :store_no: 384
378
+ :store_id: 384
379
379
  :quantity: 132
380
380
  - :updated_on: 2010-07-21
381
- :store_no: 84
381
+ :store_id: 84
382
382
  :quantity: 130
383
383
  - :updated_on: 2010-07-21
384
- :store_no: 432
384
+ :store_id: 432
385
385
  :quantity: 129
386
386
  - :updated_on: 2010-07-21
387
- :store_no: 324
387
+ :store_id: 324
388
388
  :quantity: 126
389
389
  - :updated_on: 2010-07-21
390
- :store_no: 325
390
+ :store_id: 325
391
391
  :quantity: 125
392
392
  - :updated_on: 2010-07-21
393
- :store_no: 371
393
+ :store_id: 371
394
394
  :quantity: 125
395
395
  - :updated_on: 2010-07-21
396
- :store_no: 31
396
+ :store_id: 31
397
397
  :quantity: 124
398
398
  - :updated_on: 2010-07-21
399
- :store_no: 167
399
+ :store_id: 167
400
400
  :quantity: 122
401
401
  - :updated_on: 2010-07-21
402
- :store_no: 38
402
+ :store_id: 38
403
403
  :quantity: 120
404
404
  - :updated_on: 2010-07-21
405
- :store_no: 186
405
+ :store_id: 186
406
406
  :quantity: 120
407
407
  - :updated_on: 2010-07-21
408
- :store_no: 344
408
+ :store_id: 344
409
409
  :quantity: 117
410
410
  - :updated_on: 2010-07-21
411
- :store_no: 248
411
+ :store_id: 248
412
412
  :quantity: 115
413
413
  - :updated_on: 2010-07-21
414
- :store_no: 437
414
+ :store_id: 437
415
415
  :quantity: 115
416
416
  - :updated_on: 2010-07-21
417
- :store_no: 366
417
+ :store_id: 366
418
418
  :quantity: 114
419
419
  - :updated_on: 2010-07-21
420
- :store_no: 4
420
+ :store_id: 4
421
421
  :quantity: 113
422
422
  - :updated_on: 2010-07-21
423
- :store_no: 412
423
+ :store_id: 412
424
424
  :quantity: 113
425
425
  - :updated_on: 2010-07-21
426
- :store_no: 64
426
+ :store_id: 64
427
427
  :quantity: 112
428
428
  - :updated_on: 2010-07-21
429
- :store_no: 425
429
+ :store_id: 425
430
430
  :quantity: 111
431
431
  - :updated_on: 2010-07-21
432
- :store_no: 288
432
+ :store_id: 288
433
433
  :quantity: 109
434
434
  - :updated_on: 2010-07-21
435
- :store_no: 438
435
+ :store_id: 438
436
436
  :quantity: 108
437
437
  - :updated_on: 2010-07-21
438
- :store_no: 636
438
+ :store_id: 636
439
439
  :quantity: 106
440
440
  - :updated_on: 2010-07-21
441
- :store_no: 209
441
+ :store_id: 209
442
442
  :quantity: 104
443
443
  - :updated_on: 2010-07-21
444
- :store_no: 359
444
+ :store_id: 359
445
445
  :quantity: 104
446
446
  - :updated_on: 2010-07-21
447
- :store_no: 465
447
+ :store_id: 465
448
448
  :quantity: 104
449
449
  - :updated_on: 2010-07-21
450
- :store_no: 417
450
+ :store_id: 417
451
451
  :quantity: 101
452
452
  - :updated_on: 2010-07-21
453
- :store_no: 40
453
+ :store_id: 40
454
454
  :quantity: 100
455
455
  - :updated_on: 2010-07-21
456
- :store_no: 57
456
+ :store_id: 57
457
457
  :quantity: 99
458
458
  - :updated_on: 2010-07-21
459
- :store_no: 549
459
+ :store_id: 549
460
460
  :quantity: 99
461
461
  - :updated_on: 2010-07-21
462
- :store_no: 233
462
+ :store_id: 233
463
463
  :quantity: 97
464
464
  - :updated_on: 2010-07-21
465
- :store_no: 237
465
+ :store_id: 237
466
466
  :quantity: 96
467
467
  - :updated_on: 2010-07-21
468
- :store_no: 559
468
+ :store_id: 559
469
469
  :quantity: 96
470
470
  - :updated_on: 2010-07-21
471
- :store_no: 207
471
+ :store_id: 207
472
472
  :quantity: 95
473
473
  - :updated_on: 2010-07-21
474
- :store_no: 143
474
+ :store_id: 143
475
475
  :quantity: 94
476
476
  - :updated_on: 2010-07-21
477
- :store_no: 152
477
+ :store_id: 152
478
478
  :quantity: 94
479
479
  - :updated_on: 2010-07-21
480
- :store_no: 373
480
+ :store_id: 373
481
481
  :quantity: 94
482
482
  - :updated_on: 2010-07-21
483
- :store_no: 407
483
+ :store_id: 407
484
484
  :quantity: 94
485
485
  - :updated_on: 2010-07-21
486
- :store_no: 556
486
+ :store_id: 556
487
487
  :quantity: 93
488
488
  - :updated_on: 2010-07-21
489
- :store_no: 700
489
+ :store_id: 700
490
490
  :quantity: 92
491
491
  - :updated_on: 2010-07-21
492
- :store_no: 106
492
+ :store_id: 106
493
493
  :quantity: 90
494
494
  - :updated_on: 2010-07-21
495
- :store_no: 515
495
+ :store_id: 515
496
496
  :quantity: 89
497
497
  - :updated_on: 2010-07-21
498
- :store_no: 313
498
+ :store_id: 313
499
499
  :quantity: 88
500
500
  - :updated_on: 2010-07-21
501
- :store_no: 385
501
+ :store_id: 385
502
502
  :quantity: 88
503
503
  - :updated_on: 2010-07-21
504
- :store_no: 431
504
+ :store_id: 431
505
505
  :quantity: 87
506
506
  - :updated_on: 2010-07-21
507
- :store_no: 62
507
+ :store_id: 62
508
508
  :quantity: 86
509
509
  - :updated_on: 2010-07-21
510
- :store_no: 586
510
+ :store_id: 586
511
511
  :quantity: 86
512
512
  - :updated_on: 2010-07-21
513
- :store_no: 36
513
+ :store_id: 36
514
514
  :quantity: 85
515
515
  - :updated_on: 2010-07-21
516
- :store_no: 528
516
+ :store_id: 528
517
517
  :quantity: 85
518
518
  - :updated_on: 2010-07-21
519
- :store_no: 287
519
+ :store_id: 287
520
520
  :quantity: 84
521
521
  - :updated_on: 2010-07-21
522
- :store_no: 589
522
+ :store_id: 589
523
523
  :quantity: 84
524
524
  - :updated_on: 2010-07-21
525
- :store_no: 382
525
+ :store_id: 382
526
526
  :quantity: 83
527
527
  - :updated_on: 2010-07-21
528
- :store_no: 575
528
+ :store_id: 575
529
529
  :quantity: 83
530
530
  - :updated_on: 2010-07-21
531
- :store_no: 386
531
+ :store_id: 386
532
532
  :quantity: 82
533
533
  - :updated_on: 2010-07-21
534
- :store_no: 387
534
+ :store_id: 387
535
535
  :quantity: 82
536
536
  - :updated_on: 2010-07-21
537
- :store_no: 532
537
+ :store_id: 532
538
538
  :quantity: 82
539
539
  - :updated_on: 2010-07-21
540
- :store_no: 602
540
+ :store_id: 602
541
541
  :quantity: 82
542
542
  - :updated_on: 2010-07-21
543
- :store_no: 44
543
+ :store_id: 44
544
544
  :quantity: 81
545
545
  - :updated_on: 2010-07-21
546
- :store_no: 101
546
+ :store_id: 101
547
547
  :quantity: 81
548
548
  - :updated_on: 2010-07-21
549
- :store_no: 512
549
+ :store_id: 512
550
550
  :quantity: 81
551
551
  - :updated_on: 2010-07-21
552
- :store_no: 702
552
+ :store_id: 702
553
553
  :quantity: 78
554
554
  - :updated_on: 2010-07-21
555
- :store_no: 249
555
+ :store_id: 249
556
556
  :quantity: 77
557
557
  - :updated_on: 2010-07-21
558
- :store_no: 255
558
+ :store_id: 255
559
559
  :quantity: 77
560
560
  - :updated_on: 2010-07-21
561
- :store_no: 156
561
+ :store_id: 156
562
562
  :quantity: 76
563
563
  - :updated_on: 2010-07-21
564
- :store_no: 420
564
+ :store_id: 420
565
565
  :quantity: 76
566
566
  - :updated_on: 2010-07-21
567
- :store_no: 13
567
+ :store_id: 13
568
568
  :quantity: 75
569
569
  - :updated_on: 2010-07-20
570
- :store_no: 145
570
+ :store_id: 145
571
571
  :quantity: 75
572
572
  - :updated_on: 2010-07-21
573
- :store_no: 389
573
+ :store_id: 389
574
574
  :quantity: 75
575
575
  - :updated_on: 2010-07-21
576
- :store_no: 393
576
+ :store_id: 393
577
577
  :quantity: 75
578
578
  - :updated_on: 2010-07-21
579
- :store_no: 457
579
+ :store_id: 457
580
580
  :quantity: 75
581
581
  - :updated_on: 2010-07-21
582
- :store_no: 323
582
+ :store_id: 323
583
583
  :quantity: 72
584
584
  - :updated_on: 2010-07-21
585
- :store_no: 742
585
+ :store_id: 742
586
586
  :quantity: 71
587
587
  - :updated_on: 2010-07-21
588
- :store_no: 35
588
+ :store_id: 35
589
589
  :quantity: 70
590
590
  - :updated_on: 2010-07-21
591
- :store_no: 130
591
+ :store_id: 130
592
592
  :quantity: 70
593
593
  - :updated_on: 2010-07-21
594
- :store_no: 132
594
+ :store_id: 132
595
595
  :quantity: 70
596
596
  - :updated_on: 2010-07-21
597
- :store_no: 459
597
+ :store_id: 459
598
598
  :quantity: 68
599
599
  - :updated_on: 2010-07-21
600
- :store_no: 37
600
+ :store_id: 37
601
601
  :quantity: 67
602
602
  - :updated_on: 2010-07-21
603
- :store_no: 227
603
+ :store_id: 227
604
604
  :quantity: 67
605
605
  - :updated_on: 2010-07-21
606
- :store_no: 367
606
+ :store_id: 367
607
607
  :quantity: 67
608
608
  - :updated_on: 2010-07-21
609
- :store_no: 250
609
+ :store_id: 250
610
610
  :quantity: 66
611
611
  - :updated_on: 2010-07-21
612
- :store_no: 598
612
+ :store_id: 598
613
613
  :quantity: 66
614
614
  - :updated_on: 2010-07-21
615
- :store_no: 192
615
+ :store_id: 192
616
616
  :quantity: 65
617
617
  - :updated_on: 2010-07-21
618
- :store_no: 394
618
+ :store_id: 394
619
619
  :quantity: 65
620
620
  - :updated_on: 2010-07-21
621
- :store_no: 563
621
+ :store_id: 563
622
622
  :quantity: 65
623
623
  - :updated_on: 2010-07-21
624
- :store_no: 23
624
+ :store_id: 23
625
625
  :quantity: 64
626
626
  - :updated_on: 2010-07-21
627
- :store_no: 55
627
+ :store_id: 55
628
628
  :quantity: 64
629
629
  - :updated_on: 2010-07-21
630
- :store_no: 251
630
+ :store_id: 251
631
631
  :quantity: 64
632
632
  - :updated_on: 2010-07-21
633
- :store_no: 497
633
+ :store_id: 497
634
634
  :quantity: 64
635
635
  - :updated_on: 2010-07-21
636
- :store_no: 340
636
+ :store_id: 340
637
637
  :quantity: 63
638
638
  - :updated_on: 2010-07-21
639
- :store_no: 354
639
+ :store_id: 354
640
640
  :quantity: 62
641
641
  - :updated_on: 2010-07-21
642
- :store_no: 544
642
+ :store_id: 544
643
643
  :quantity: 62
644
644
  - :updated_on: 2010-07-21
645
- :store_no: 561
645
+ :store_id: 561
646
646
  :quantity: 62
647
647
  - :updated_on: 2010-07-20
648
- :store_no: 388
648
+ :store_id: 388
649
649
  :quantity: 61
650
650
  - :updated_on: 2010-07-21
651
- :store_no: 175
651
+ :store_id: 175
652
652
  :quantity: 60
653
653
  - :updated_on: 2010-07-21
654
- :store_no: 301
654
+ :store_id: 301
655
655
  :quantity: 60
656
656
  - :updated_on: 2010-07-21
657
- :store_no: 345
657
+ :store_id: 345
658
658
  :quantity: 60
659
659
  - :updated_on: 2010-07-21
660
- :store_no: 333
660
+ :store_id: 333
661
661
  :quantity: 59
662
662
  - :updated_on: 2010-07-21
663
- :store_no: 195
663
+ :store_id: 195
664
664
  :quantity: 58
665
665
  - :updated_on: 2010-07-21
666
- :store_no: 298
666
+ :store_id: 298
667
667
  :quantity: 58
668
668
  - :updated_on: 2010-07-20
669
- :store_no: 521
669
+ :store_id: 521
670
670
  :quantity: 58
671
671
  - :updated_on: 2010-07-21
672
- :store_no: 593
672
+ :store_id: 593
673
673
  :quantity: 58
674
674
  - :updated_on: 2010-07-21
675
- :store_no: 400
675
+ :store_id: 400
676
676
  :quantity: 56
677
677
  - :updated_on: 2010-07-21
678
- :store_no: 599
678
+ :store_id: 599
679
679
  :quantity: 56
680
680
  - :updated_on: 2010-07-21
681
- :store_no: 540
681
+ :store_id: 540
682
682
  :quantity: 55
683
683
  - :updated_on: 2010-07-21
684
- :store_no: 16
684
+ :store_id: 16
685
685
  :quantity: 54
686
686
  - :updated_on: 2010-07-21
687
- :store_no: 311
687
+ :store_id: 311
688
688
  :quantity: 53
689
689
  - :updated_on: 2010-07-21
690
- :store_no: 456
690
+ :store_id: 456
691
691
  :quantity: 53
692
692
  - :updated_on: 2010-07-21
693
- :store_no: 582
693
+ :store_id: 582
694
694
  :quantity: 53
695
695
  - :updated_on: 2010-07-21
696
- :store_no: 60
696
+ :store_id: 60
697
697
  :quantity: 52
698
698
  - :updated_on: 2010-07-21
699
- :store_no: 201
699
+ :store_id: 201
700
700
  :quantity: 52
701
701
  - :updated_on: 2010-07-21
702
- :store_no: 203
702
+ :store_id: 203
703
703
  :quantity: 52
704
704
  - :updated_on: 2010-07-21
705
- :store_no: 59
705
+ :store_id: 59
706
706
  :quantity: 51
707
707
  - :updated_on: 2010-07-21
708
- :store_no: 446
708
+ :store_id: 446
709
709
  :quantity: 50
710
710
  - :updated_on: 2010-07-21
711
- :store_no: 467
711
+ :store_id: 467
712
712
  :quantity: 50
713
713
  - :updated_on: 2010-07-21
714
- :store_no: 566
714
+ :store_id: 566
715
715
  :quantity: 50
716
716
  - :updated_on: 2010-07-21
717
- :store_no: 616
717
+ :store_id: 616
718
718
  :quantity: 50
719
719
  - :updated_on: 2010-07-21
720
- :store_no: 365
720
+ :store_id: 365
721
721
  :quantity: 49
722
722
  - :updated_on: 2010-07-21
723
- :store_no: 194
723
+ :store_id: 194
724
724
  :quantity: 48
725
725
  - :updated_on: 2010-07-21
726
- :store_no: 453
726
+ :store_id: 453
727
727
  :quantity: 48
728
728
  - :updated_on: 2010-07-21
729
- :store_no: 168
729
+ :store_id: 168
730
730
  :quantity: 47
731
731
  - :updated_on: 2010-07-21
732
- :store_no: 335
732
+ :store_id: 335
733
733
  :quantity: 46
734
734
  - :updated_on: 2010-07-21
735
- :store_no: 697
735
+ :store_id: 697
736
736
  :quantity: 46
737
737
  - :updated_on: 2010-07-21
738
- :store_no: 594
738
+ :store_id: 594
739
739
  :quantity: 46
740
740
  - :updated_on: 2010-07-21
741
- :store_no: 297
741
+ :store_id: 297
742
742
  :quantity: 45
743
743
  - :updated_on: 2010-07-21
744
- :store_no: 569
744
+ :store_id: 569
745
745
  :quantity: 45
746
746
  - :updated_on: 2010-07-21
747
- :store_no: 278
747
+ :store_id: 278
748
748
  :quantity: 44
749
749
  - :updated_on: 2010-07-21
750
- :store_no: 222
750
+ :store_id: 222
751
751
  :quantity: 44
752
752
  - :updated_on: 2010-07-21
753
- :store_no: 295
753
+ :store_id: 295
754
754
  :quantity: 44
755
755
  - :updated_on: 2010-07-21
756
- :store_no: 312
756
+ :store_id: 312
757
757
  :quantity: 44
758
758
  - :updated_on: 2010-07-21
759
- :store_no: 613
759
+ :store_id: 613
760
760
  :quantity: 44
761
761
  - :updated_on: 2010-07-21
762
- :store_no: 83
762
+ :store_id: 83
763
763
  :quantity: 43
764
764
  - :updated_on: 2010-07-21
765
- :store_no: 221
765
+ :store_id: 221
766
766
  :quantity: 43
767
767
  - :updated_on: 2010-07-21
768
- :store_no: 579
768
+ :store_id: 579
769
769
  :quantity: 43
770
770
  - :updated_on: 2010-07-21
771
- :store_no: 82
771
+ :store_id: 82
772
772
  :quantity: 42
773
773
  - :updated_on: 2010-07-21
774
- :store_no: 522
774
+ :store_id: 522
775
775
  :quantity: 42
776
776
  - :updated_on: 2010-07-21
777
- :store_no: 310
777
+ :store_id: 310
778
778
  :quantity: 41
779
779
  - :updated_on: 2010-07-21
780
- :store_no: 320
780
+ :store_id: 320
781
781
  :quantity: 41
782
782
  - :updated_on: 2010-07-21
783
- :store_no: 461
783
+ :store_id: 461
784
784
  :quantity: 41
785
785
  - :updated_on: 2010-07-21
786
- :store_no: 472
786
+ :store_id: 472
787
787
  :quantity: 41
788
788
  - :updated_on: 2010-07-21
789
- :store_no: 50
789
+ :store_id: 50
790
790
  :quantity: 39
791
791
  - :updated_on: 2010-07-21
792
- :store_no: 93
792
+ :store_id: 93
793
793
  :quantity: 39
794
794
  - :updated_on: 2010-07-21
795
- :store_no: 97
795
+ :store_id: 97
796
796
  :quantity: 39
797
797
  - :updated_on: 2010-07-21
798
- :store_no: 381
798
+ :store_id: 381
799
799
  :quantity: 39
800
800
  - :updated_on: 2010-07-21
801
- :store_no: 547
801
+ :store_id: 547
802
802
  :quantity: 39
803
803
  - :updated_on: 2010-07-21
804
- :store_no: 153
804
+ :store_id: 153
805
805
  :quantity: 38
806
806
  - :updated_on: 2010-07-21
807
- :store_no: 165
807
+ :store_id: 165
808
808
  :quantity: 38
809
809
  - :updated_on: 2010-07-21
810
- :store_no: 229
810
+ :store_id: 229
811
811
  :quantity: 38
812
812
  - :updated_on: 2010-07-21
813
- :store_no: 234
813
+ :store_id: 234
814
814
  :quantity: 38
815
815
  - :updated_on: 2010-07-21
816
- :store_no: 403
816
+ :store_id: 403
817
817
  :quantity: 38
818
818
  - :updated_on: 2010-07-21
819
- :store_no: 80
819
+ :store_id: 80
820
820
  :quantity: 37
821
821
  - :updated_on: 2010-07-21
822
- :store_no: 268
822
+ :store_id: 268
823
823
  :quantity: 37
824
824
  - :updated_on: 2010-07-21
825
- :store_no: 318
825
+ :store_id: 318
826
826
  :quantity: 37
827
827
  - :updated_on: 2010-07-21
828
- :store_no: 347
828
+ :store_id: 347
829
829
  :quantity: 37
830
830
  - :updated_on: 2010-07-21
831
- :store_no: 74
831
+ :store_id: 74
832
832
  :quantity: 36
833
833
  - :updated_on: 2010-07-21
834
- :store_no: 88
834
+ :store_id: 88
835
835
  :quantity: 36
836
836
  - :updated_on: 2010-07-21
837
- :store_no: 205
837
+ :store_id: 205
838
838
  :quantity: 36
839
839
  - :updated_on: 2010-07-21
840
- :store_no: 409
840
+ :store_id: 409
841
841
  :quantity: 36
842
842
  - :updated_on: 2010-07-21
843
- :store_no: 135
843
+ :store_id: 135
844
844
  :quantity: 35
845
845
  - :updated_on: 2010-07-21
846
- :store_no: 406
846
+ :store_id: 406
847
847
  :quantity: 35
848
848
  - :updated_on: 2010-07-21
849
- :store_no: 449
849
+ :store_id: 449
850
850
  :quantity: 35
851
851
  - :updated_on: 2010-07-21
852
- :store_no: 24
852
+ :store_id: 24
853
853
  :quantity: 34
854
854
  - :updated_on: 2010-07-21
855
- :store_no: 395
855
+ :store_id: 395
856
856
  :quantity: 34
857
857
  - :updated_on: 2010-07-21
858
- :store_no: 401
858
+ :store_id: 401
859
859
  :quantity: 34
860
860
  - :updated_on: 2010-07-21
861
- :store_no: 32
861
+ :store_id: 32
862
862
  :quantity: 33
863
863
  - :updated_on: 2010-07-21
864
- :store_no: 210
864
+ :store_id: 210
865
865
  :quantity: 33
866
866
  - :updated_on: 2010-07-21
867
- :store_no: 261
867
+ :store_id: 261
868
868
  :quantity: 33
869
869
  - :updated_on: 2010-07-21
870
- :store_no: 380
870
+ :store_id: 380
871
871
  :quantity: 33
872
872
  - :updated_on: 2010-07-21
873
- :store_no: 454
873
+ :store_id: 454
874
874
  :quantity: 33
875
875
  - :updated_on: 2010-07-21
876
- :store_no: 502
876
+ :store_id: 502
877
877
  :quantity: 33
878
878
  - :updated_on: 2010-07-21
879
- :store_no: 508
879
+ :store_id: 508
880
880
  :quantity: 33
881
881
  - :updated_on: 2010-07-21
882
- :store_no: 26
882
+ :store_id: 26
883
883
  :quantity: 32
884
884
  - :updated_on: 2010-07-21
885
- :store_no: 45
885
+ :store_id: 45
886
886
  :quantity: 32
887
887
  - :updated_on: 2010-07-21
888
- :store_no: 351
888
+ :store_id: 351
889
889
  :quantity: 32
890
890
  - :updated_on: 2010-07-21
891
- :store_no: 94
891
+ :store_id: 94
892
892
  :quantity: 31
893
893
  - :updated_on: 2010-07-21
894
- :store_no: 162
894
+ :store_id: 162
895
895
  :quantity: 31
896
896
  - :updated_on: 2010-07-20
897
- :store_no: 520
897
+ :store_id: 520
898
898
  :quantity: 31
899
899
  - :updated_on: 2010-07-21
900
- :store_no: 539
900
+ :store_id: 539
901
901
  :quantity: 31
902
902
  - :updated_on: 2010-07-21
903
- :store_no: 277
903
+ :store_id: 277
904
904
  :quantity: 30
905
905
  - :updated_on: 2010-07-21
906
- :store_no: 43
906
+ :store_id: 43
907
907
  :quantity: 29
908
908
  - :updated_on: 2010-07-21
909
- :store_no: 244
909
+ :store_id: 244
910
910
  :quantity: 29
911
911
  - :updated_on: 2010-07-21
912
- :store_no: 423
912
+ :store_id: 423
913
913
  :quantity: 29
914
914
  - :updated_on: 2010-07-21
915
- :store_no: 58
915
+ :store_id: 58
916
916
  :quantity: 28
917
917
  - :updated_on: 2010-07-21
918
- :store_no: 113
918
+ :store_id: 113
919
919
  :quantity: 28
920
920
  - :updated_on: 2010-07-21
921
- :store_no: 116
921
+ :store_id: 116
922
922
  :quantity: 28
923
923
  - :updated_on: 2010-07-21
924
- :store_no: 124
924
+ :store_id: 124
925
925
  :quantity: 28
926
926
  - :updated_on: 2010-07-21
927
- :store_no: 159
927
+ :store_id: 159
928
928
  :quantity: 28
929
929
  - :updated_on: 2010-07-21
930
- :store_no: 419
930
+ :store_id: 419
931
931
  :quantity: 28
932
932
  - :updated_on: 2010-07-21
933
- :store_no: 474
933
+ :store_id: 474
934
934
  :quantity: 28
935
935
  - :updated_on: 2010-07-21
936
- :store_no: 571
936
+ :store_id: 571
937
937
  :quantity: 28
938
938
  - :updated_on: 2010-07-21
939
- :store_no: 588
939
+ :store_id: 588
940
940
  :quantity: 28
941
941
  - :updated_on: 2010-07-20
942
- :store_no: 48
942
+ :store_id: 48
943
943
  :quantity: 27
944
944
  - :updated_on: 2010-07-21
945
- :store_no: 54
945
+ :store_id: 54
946
946
  :quantity: 27
947
947
  - :updated_on: 2010-07-21
948
- :store_no: 77
948
+ :store_id: 77
949
949
  :quantity: 27
950
950
  - :updated_on: 2010-07-21
951
- :store_no: 123
951
+ :store_id: 123
952
952
  :quantity: 27
953
953
  - :updated_on: 2010-07-21
954
- :store_no: 61
954
+ :store_id: 61
955
955
  :quantity: 26
956
956
  - :updated_on: 2010-07-21
957
- :store_no: 155
957
+ :store_id: 155
958
958
  :quantity: 26
959
959
  - :updated_on: 2010-07-21
960
- :store_no: 196
960
+ :store_id: 196
961
961
  :quantity: 26
962
962
  - :updated_on: 2010-07-21
963
- :store_no: 300
963
+ :store_id: 300
964
964
  :quantity: 26
965
965
  - :updated_on: 2010-07-21
966
- :store_no: 468
966
+ :store_id: 468
967
967
  :quantity: 26
968
968
  - :updated_on: 2010-07-21
969
- :store_no: 612
969
+ :store_id: 612
970
970
  :quantity: 26
971
971
  - :updated_on: 2010-07-21
972
- :store_no: 99
972
+ :store_id: 99
973
973
  :quantity: 25
974
974
  - :updated_on: 2010-07-21
975
- :store_no: 219
975
+ :store_id: 219
976
976
  :quantity: 25
977
977
  - :updated_on: 2010-07-21
978
- :store_no: 257
978
+ :store_id: 257
979
979
  :quantity: 25
980
980
  - :updated_on: 2010-07-21
981
- :store_no: 430
981
+ :store_id: 430
982
982
  :quantity: 25
983
983
  - :updated_on: 2010-07-21
984
- :store_no: 442
984
+ :store_id: 442
985
985
  :quantity: 25
986
986
  - :updated_on: 2010-07-21
987
- :store_no: 483
987
+ :store_id: 483
988
988
  :quantity: 25
989
989
  - :updated_on: 2010-07-21
990
- :store_no: 527
990
+ :store_id: 527
991
991
  :quantity: 25
992
992
  - :updated_on: 2010-07-21
993
- :store_no: 626
993
+ :store_id: 626
994
994
  :quantity: 25
995
995
  - :updated_on: 2010-07-21
996
- :store_no: 108
996
+ :store_id: 108
997
997
  :quantity: 24
998
998
  - :updated_on: 2010-07-21
999
- :store_no: 128
999
+ :store_id: 128
1000
1000
  :quantity: 24
1001
1001
  - :updated_on: 2010-07-21
1002
- :store_no: 190
1002
+ :store_id: 190
1003
1003
  :quantity: 24
1004
1004
  - :updated_on: 2010-07-21
1005
- :store_no: 349
1005
+ :store_id: 349
1006
1006
  :quantity: 24
1007
1007
  - :updated_on: 2010-07-21
1008
- :store_no: 402
1008
+ :store_id: 402
1009
1009
  :quantity: 24
1010
1010
  - :updated_on: 2010-07-21
1011
- :store_no: 482
1011
+ :store_id: 482
1012
1012
  :quantity: 24
1013
1013
  - :updated_on: 2010-07-21
1014
- :store_no: 558
1014
+ :store_id: 558
1015
1015
  :quantity: 24
1016
1016
  - :updated_on: 2010-07-21
1017
- :store_no: 85
1017
+ :store_id: 85
1018
1018
  :quantity: 23
1019
1019
  - :updated_on: 2010-07-21
1020
- :store_no: 136
1020
+ :store_id: 136
1021
1021
  :quantity: 23
1022
1022
  - :updated_on: 2010-07-21
1023
- :store_no: 343
1023
+ :store_id: 343
1024
1024
  :quantity: 23
1025
1025
  - :updated_on: 2010-07-21
1026
- :store_no: 427
1026
+ :store_id: 427
1027
1027
  :quantity: 23
1028
1028
  - :updated_on: 2010-07-21
1029
- :store_no: 90
1029
+ :store_id: 90
1030
1030
  :quantity: 22
1031
1031
  - :updated_on: 2010-07-21
1032
- :store_no: 110
1032
+ :store_id: 110
1033
1033
  :quantity: 22
1034
1034
  - :updated_on: 2010-07-21
1035
- :store_no: 267
1035
+ :store_id: 267
1036
1036
  :quantity: 22
1037
1037
  - :updated_on: 2010-07-21
1038
- :store_no: 216
1038
+ :store_id: 216
1039
1039
  :quantity: 22
1040
1040
  - :updated_on: 2010-07-21
1041
- :store_no: 266
1041
+ :store_id: 266
1042
1042
  :quantity: 22
1043
1043
  - :updated_on: 2010-07-21
1044
- :store_no: 462
1044
+ :store_id: 462
1045
1045
  :quantity: 22
1046
1046
  - :updated_on: 2010-07-21
1047
- :store_no: 513
1047
+ :store_id: 513
1048
1048
  :quantity: 22
1049
1049
  - :updated_on: 2010-07-21
1050
- :store_no: 47
1050
+ :store_id: 47
1051
1051
  :quantity: 21
1052
1052
  - :updated_on: 2010-07-21
1053
- :store_no: 79
1053
+ :store_id: 79
1054
1054
  :quantity: 21
1055
1055
  - :updated_on: 2010-07-21
1056
- :store_no: 98
1056
+ :store_id: 98
1057
1057
  :quantity: 21
1058
1058
  - :updated_on: 2010-07-21
1059
- :store_no: 126
1059
+ :store_id: 126
1060
1060
  :quantity: 21
1061
1061
  - :updated_on: 2010-07-21
1062
- :store_no: 260
1062
+ :store_id: 260
1063
1063
  :quantity: 21
1064
1064
  - :updated_on: 2010-07-21
1065
- :store_no: 276
1065
+ :store_id: 276
1066
1066
  :quantity: 21
1067
1067
  - :updated_on: 2010-07-21
1068
- :store_no: 306
1068
+ :store_id: 306
1069
1069
  :quantity: 21
1070
1070
  - :updated_on: 2010-07-21
1071
- :store_no: 490
1071
+ :store_id: 490
1072
1072
  :quantity: 21
1073
1073
  - :updated_on: 2010-07-21
1074
- :store_no: 557
1074
+ :store_id: 557
1075
1075
  :quantity: 21
1076
1076
  - :updated_on: 2010-07-21
1077
- :store_no: 39
1077
+ :store_id: 39
1078
1078
  :quantity: 20
1079
1079
  - :updated_on: 2010-07-21
1080
- :store_no: 81
1080
+ :store_id: 81
1081
1081
  :quantity: 20
1082
1082
  - :updated_on: 2010-07-21
1083
- :store_no: 105
1083
+ :store_id: 105
1084
1084
  :quantity: 20
1085
1085
  - :updated_on: 2010-07-21
1086
- :store_no: 119
1086
+ :store_id: 119
1087
1087
  :quantity: 20
1088
1088
  - :updated_on: 2010-07-21
1089
- :store_no: 169
1089
+ :store_id: 169
1090
1090
  :quantity: 20
1091
1091
  - :updated_on: 2010-07-21
1092
- :store_no: 231
1092
+ :store_id: 231
1093
1093
  :quantity: 20
1094
1094
  - :updated_on: 2010-07-21
1095
- :store_no: 283
1095
+ :store_id: 283
1096
1096
  :quantity: 20
1097
1097
  - :updated_on: 2010-07-21
1098
- :store_no: 352
1098
+ :store_id: 352
1099
1099
  :quantity: 20
1100
1100
  - :updated_on: 2010-07-21
1101
- :store_no: 363
1101
+ :store_id: 363
1102
1102
  :quantity: 20
1103
1103
  - :updated_on: 2010-07-21
1104
- :store_no: 560
1104
+ :store_id: 560
1105
1105
  :quantity: 20
1106
1106
  - :updated_on: 2010-07-21
1107
- :store_no: 69
1107
+ :store_id: 69
1108
1108
  :quantity: 19
1109
1109
  - :updated_on: 2010-07-21
1110
- :store_no: 264
1110
+ :store_id: 264
1111
1111
  :quantity: 19
1112
1112
  - :updated_on: 2010-07-21
1113
- :store_no: 286
1113
+ :store_id: 286
1114
1114
  :quantity: 19
1115
1115
  - :updated_on: 2010-07-21
1116
- :store_no: 418
1116
+ :store_id: 418
1117
1117
  :quantity: 19
1118
1118
  - :updated_on: 2010-07-21
1119
- :store_no: 501
1119
+ :store_id: 501
1120
1120
  :quantity: 19
1121
1121
  - :updated_on: 2010-07-21
1122
- :store_no: 548
1122
+ :store_id: 548
1123
1123
  :quantity: 19
1124
1124
  - :updated_on: 2010-07-21
1125
- :store_no: 567
1125
+ :store_id: 567
1126
1126
  :quantity: 19
1127
1127
  - :updated_on: 2010-07-21
1128
- :store_no: 605
1128
+ :store_id: 605
1129
1129
  :quantity: 19
1130
1130
  - :updated_on: 2010-07-21
1131
- :store_no: 29
1131
+ :store_id: 29
1132
1132
  :quantity: 18
1133
1133
  - :updated_on: 2010-07-21
1134
- :store_no: 72
1134
+ :store_id: 72
1135
1135
  :quantity: 18
1136
1136
  - :updated_on: 2010-07-21
1137
- :store_no: 109
1137
+ :store_id: 109
1138
1138
  :quantity: 18
1139
1139
  - :updated_on: 2010-07-21
1140
- :store_no: 197
1140
+ :store_id: 197
1141
1141
  :quantity: 18
1142
1142
  - :updated_on: 2010-07-21
1143
- :store_no: 232
1143
+ :store_id: 232
1144
1144
  :quantity: 18
1145
1145
  - :updated_on: 2010-07-21
1146
- :store_no: 293
1146
+ :store_id: 293
1147
1147
  :quantity: 18
1148
1148
  - :updated_on: 2010-07-21
1149
- :store_no: 294
1149
+ :store_id: 294
1150
1150
  :quantity: 18
1151
1151
  - :updated_on: 2010-07-21
1152
- :store_no: 518
1152
+ :store_id: 518
1153
1153
  :quantity: 18
1154
1154
  - :updated_on: 2010-07-21
1155
- :store_no: 543
1155
+ :store_id: 543
1156
1156
  :quantity: 18
1157
1157
  - :updated_on: 2010-07-21
1158
- :store_no: 86
1158
+ :store_id: 86
1159
1159
  :quantity: 17
1160
1160
  - :updated_on: 2010-07-21
1161
- :store_no: 181
1161
+ :store_id: 181
1162
1162
  :quantity: 17
1163
1163
  - :updated_on: 2010-07-21
1164
- :store_no: 211
1164
+ :store_id: 211
1165
1165
  :quantity: 17
1166
1166
  - :updated_on: 2010-07-21
1167
- :store_no: 240
1167
+ :store_id: 240
1168
1168
  :quantity: 17
1169
1169
  - :updated_on: 2010-07-21
1170
- :store_no: 317
1170
+ :store_id: 317
1171
1171
  :quantity: 17
1172
1172
  - :updated_on: 2010-07-21
1173
- :store_no: 370
1173
+ :store_id: 370
1174
1174
  :quantity: 17
1175
1175
  - :updated_on: 2010-07-21
1176
- :store_no: 348
1176
+ :store_id: 348
1177
1177
  :quantity: 17
1178
1178
  - :updated_on: 2010-07-21
1179
- :store_no: 538
1179
+ :store_id: 538
1180
1180
  :quantity: 17
1181
1181
  - :updated_on: 2010-07-21
1182
- :store_no: 28
1182
+ :store_id: 28
1183
1183
  :quantity: 16
1184
1184
  - :updated_on: 2010-07-21
1185
- :store_no: 56
1185
+ :store_id: 56
1186
1186
  :quantity: 16
1187
1187
  - :updated_on: 2010-07-21
1188
- :store_no: 68
1188
+ :store_id: 68
1189
1189
  :quantity: 16
1190
1190
  - :updated_on: 2010-07-21
1191
- :store_no: 125
1191
+ :store_id: 125
1192
1192
  :quantity: 16
1193
1193
  - :updated_on: 2010-07-21
1194
- :store_no: 270
1194
+ :store_id: 270
1195
1195
  :quantity: 16
1196
1196
  - :updated_on: 2010-07-21
1197
- :store_no: 372
1197
+ :store_id: 372
1198
1198
  :quantity: 16
1199
1199
  - :updated_on: 2010-07-21
1200
- :store_no: 504
1200
+ :store_id: 504
1201
1201
  :quantity: 16
1202
1202
  - :updated_on: 2010-07-21
1203
- :store_no: 595
1203
+ :store_id: 595
1204
1204
  :quantity: 16
1205
1205
  - :updated_on: 2010-07-21
1206
- :store_no: 144
1206
+ :store_id: 144
1207
1207
  :quantity: 15
1208
1208
  - :updated_on: 2010-07-21
1209
- :store_no: 166
1209
+ :store_id: 166
1210
1210
  :quantity: 15
1211
1211
  - :updated_on: 2010-07-21
1212
- :store_no: 235
1212
+ :store_id: 235
1213
1213
  :quantity: 15
1214
1214
  - :updated_on: 2010-07-21
1215
- :store_no: 327
1215
+ :store_id: 327
1216
1216
  :quantity: 15
1217
1217
  - :updated_on: 2010-07-21
1218
- :store_no: 392
1218
+ :store_id: 392
1219
1219
  :quantity: 15
1220
1220
  - :updated_on: 2010-07-21
1221
- :store_no: 529
1221
+ :store_id: 529
1222
1222
  :quantity: 15
1223
1223
  - :updated_on: 2010-07-21
1224
- :store_no: 146
1224
+ :store_id: 146
1225
1225
  :quantity: 14
1226
1226
  - :updated_on: 2010-07-21
1227
- :store_no: 160
1227
+ :store_id: 160
1228
1228
  :quantity: 14
1229
1229
  - :updated_on: 2010-07-21
1230
- :store_no: 173
1230
+ :store_id: 173
1231
1231
  :quantity: 14
1232
1232
  - :updated_on: 2010-07-21
1233
- :store_no: 224
1233
+ :store_id: 224
1234
1234
  :quantity: 14
1235
1235
  - :updated_on: 2010-07-21
1236
- :store_no: 421
1236
+ :store_id: 421
1237
1237
  :quantity: 14
1238
1238
  - :updated_on: 2010-07-21
1239
- :store_no: 435
1239
+ :store_id: 435
1240
1240
  :quantity: 14
1241
1241
  - :updated_on: 2010-07-21
1242
- :store_no: 478
1242
+ :store_id: 478
1243
1243
  :quantity: 14
1244
1244
  - :updated_on: 2010-07-21
1245
- :store_no: 479
1245
+ :store_id: 479
1246
1246
  :quantity: 14
1247
1247
  - :updated_on: 2010-07-21
1248
- :store_no: 562
1248
+ :store_id: 562
1249
1249
  :quantity: 14
1250
1250
  - :updated_on: 2010-07-21
1251
- :store_no: 49
1251
+ :store_id: 49
1252
1252
  :quantity: 13
1253
1253
  - :updated_on: 2010-07-21
1254
- :store_no: 53
1254
+ :store_id: 53
1255
1255
  :quantity: 13
1256
1256
  - :updated_on: 2010-07-21
1257
- :store_no: 111
1257
+ :store_id: 111
1258
1258
  :quantity: 13
1259
1259
  - :updated_on: 2010-07-21
1260
- :store_no: 139
1260
+ :store_id: 139
1261
1261
  :quantity: 13
1262
1262
  - :updated_on: 2010-07-21
1263
- :store_no: 259
1263
+ :store_id: 259
1264
1264
  :quantity: 13
1265
1265
  - :updated_on: 2010-07-21
1266
- :store_no: 353
1266
+ :store_id: 353
1267
1267
  :quantity: 13
1268
1268
  - :updated_on: 2010-07-21
1269
- :store_no: 455
1269
+ :store_id: 455
1270
1270
  :quantity: 13
1271
1271
  - :updated_on: 2010-07-21
1272
- :store_no: 52
1272
+ :store_id: 52
1273
1273
  :quantity: 12
1274
1274
  - :updated_on: 2010-07-21
1275
- :store_no: 71
1275
+ :store_id: 71
1276
1276
  :quantity: 12
1277
1277
  - :updated_on: 2010-07-21
1278
- :store_no: 78
1278
+ :store_id: 78
1279
1279
  :quantity: 12
1280
1280
  - :updated_on: 2010-07-21
1281
- :store_no: 92
1281
+ :store_id: 92
1282
1282
  :quantity: 12
1283
1283
  - :updated_on: 2010-07-21
1284
- :store_no: 122
1284
+ :store_id: 122
1285
1285
  :quantity: 12
1286
1286
  - :updated_on: 2010-07-21
1287
- :store_no: 127
1287
+ :store_id: 127
1288
1288
  :quantity: 12
1289
1289
  - :updated_on: 2010-07-21
1290
- :store_no: 161
1290
+ :store_id: 161
1291
1291
  :quantity: 12
1292
1292
  - :updated_on: 2010-07-21
1293
- :store_no: 202
1293
+ :store_id: 202
1294
1294
  :quantity: 12
1295
1295
  - :updated_on: 2010-07-20
1296
- :store_no: 225
1296
+ :store_id: 225
1297
1297
  :quantity: 12
1298
1298
  - :updated_on: 2010-07-21
1299
- :store_no: 236
1299
+ :store_id: 236
1300
1300
  :quantity: 12
1301
1301
  - :updated_on: 2010-07-21
1302
- :store_no: 238
1302
+ :store_id: 238
1303
1303
  :quantity: 12
1304
1304
  - :updated_on: 2010-07-21
1305
- :store_no: 247
1305
+ :store_id: 247
1306
1306
  :quantity: 12
1307
1307
  - :updated_on: 2010-07-21
1308
- :store_no: 299
1308
+ :store_id: 299
1309
1309
  :quantity: 12
1310
1310
  - :updated_on: 2010-07-21
1311
- :store_no: 328
1311
+ :store_id: 328
1312
1312
  :quantity: 12
1313
1313
  - :updated_on: 2010-07-21
1314
- :store_no: 339
1314
+ :store_id: 339
1315
1315
  :quantity: 12
1316
1316
  - :updated_on: 2010-07-21
1317
- :store_no: 429
1317
+ :store_id: 429
1318
1318
  :quantity: 12
1319
1319
  - :updated_on: 2010-07-21
1320
- :store_no: 439
1320
+ :store_id: 439
1321
1321
  :quantity: 12
1322
1322
  - :updated_on: 2010-07-21
1323
- :store_no: 441
1323
+ :store_id: 441
1324
1324
  :quantity: 12
1325
1325
  - :updated_on: 2010-07-21
1326
- :store_no: 484
1326
+ :store_id: 484
1327
1327
  :quantity: 12
1328
1328
  - :updated_on: 2010-07-21
1329
- :store_no: 496
1329
+ :store_id: 496
1330
1330
  :quantity: 12
1331
1331
  - :updated_on: 2010-07-21
1332
- :store_no: 530
1332
+ :store_id: 530
1333
1333
  :quantity: 12
1334
1334
  - :updated_on: 2010-07-21
1335
- :store_no: 531
1335
+ :store_id: 531
1336
1336
  :quantity: 12
1337
1337
  - :updated_on: 2010-07-21
1338
- :store_no: 535
1338
+ :store_id: 535
1339
1339
  :quantity: 12
1340
1340
  - :updated_on: 2010-07-21
1341
- :store_no: 578
1341
+ :store_id: 578
1342
1342
  :quantity: 12
1343
1343
  - :updated_on: 2010-07-21
1344
- :store_no: 118
1344
+ :store_id: 118
1345
1345
  :quantity: 11
1346
1346
  - :updated_on: 2010-07-21
1347
- :store_no: 246
1347
+ :store_id: 246
1348
1348
  :quantity: 11
1349
1349
  - :updated_on: 2010-07-21
1350
- :store_no: 303
1350
+ :store_id: 303
1351
1351
  :quantity: 11
1352
1352
  - :updated_on: 2010-07-21
1353
- :store_no: 314
1353
+ :store_id: 314
1354
1354
  :quantity: 11
1355
1355
  - :updated_on: 2010-07-21
1356
- :store_no: 375
1356
+ :store_id: 375
1357
1357
  :quantity: 11
1358
1358
  - :updated_on: 2010-07-21
1359
- :store_no: 379
1359
+ :store_id: 379
1360
1360
  :quantity: 11
1361
1361
  - :updated_on: 2010-07-21
1362
- :store_no: 410
1362
+ :store_id: 410
1363
1363
  :quantity: 11
1364
1364
  - :updated_on: 2010-07-21
1365
- :store_no: 509
1365
+ :store_id: 509
1366
1366
  :quantity: 11
1367
1367
  - :updated_on: 2010-07-21
1368
- :store_no: 30
1368
+ :store_id: 30
1369
1369
  :quantity: 10
1370
1370
  - :updated_on: 2010-07-21
1371
- :store_no: 70
1371
+ :store_id: 70
1372
1372
  :quantity: 10
1373
1373
  - :updated_on: 2010-07-21
1374
- :store_no: 96
1374
+ :store_id: 96
1375
1375
  :quantity: 10
1376
1376
  - :updated_on: 2010-07-21
1377
- :store_no: 137
1377
+ :store_id: 137
1378
1378
  :quantity: 10
1379
1379
  - :updated_on: 2010-07-21
1380
- :store_no: 142
1380
+ :store_id: 142
1381
1381
  :quantity: 10
1382
1382
  - :updated_on: 2010-07-21
1383
- :store_no: 157
1383
+ :store_id: 157
1384
1384
  :quantity: 10
1385
1385
  - :updated_on: 2010-07-21
1386
- :store_no: 178
1386
+ :store_id: 178
1387
1387
  :quantity: 10
1388
1388
  - :updated_on: 2010-07-21
1389
- :store_no: 239
1389
+ :store_id: 239
1390
1390
  :quantity: 10
1391
1391
  - :updated_on: 2010-07-21
1392
- :store_no: 275
1392
+ :store_id: 275
1393
1393
  :quantity: 10
1394
1394
  - :updated_on: 2010-07-21
1395
- :store_no: 337
1395
+ :store_id: 337
1396
1396
  :quantity: 10
1397
1397
  - :updated_on: 2010-07-21
1398
- :store_no: 338
1398
+ :store_id: 338
1399
1399
  :quantity: 10
1400
1400
  - :updated_on: 2010-07-21
1401
- :store_no: 433
1401
+ :store_id: 433
1402
1402
  :quantity: 10
1403
1403
  - :updated_on: 2010-07-21
1404
- :store_no: 448
1404
+ :store_id: 448
1405
1405
  :quantity: 10
1406
1406
  - :updated_on: 2010-07-21
1407
- :store_no: 475
1407
+ :store_id: 475
1408
1408
  :quantity: 10
1409
1409
  - :updated_on: 2010-07-21
1410
- :store_no: 487
1410
+ :store_id: 487
1411
1411
  :quantity: 10
1412
1412
  - :updated_on: 2010-07-21
1413
- :store_no: 489
1413
+ :store_id: 489
1414
1414
  :quantity: 10
1415
1415
  - :updated_on: 2010-07-21
1416
- :store_no: 507
1416
+ :store_id: 507
1417
1417
  :quantity: 10
1418
1418
  - :updated_on: 2010-07-21
1419
- :store_no: 583
1419
+ :store_id: 583
1420
1420
  :quantity: 10
1421
1421
  - :updated_on: 2010-07-21
1422
- :store_no: 63
1422
+ :store_id: 63
1423
1423
  :quantity: 9
1424
1424
  - :updated_on: 2010-07-21
1425
- :store_no: 134
1425
+ :store_id: 134
1426
1426
  :quantity: 9
1427
1427
  - :updated_on: 2010-07-21
1428
- :store_no: 141
1428
+ :store_id: 141
1429
1429
  :quantity: 9
1430
1430
  - :updated_on: 2010-07-21
1431
- :store_no: 199
1431
+ :store_id: 199
1432
1432
  :quantity: 9
1433
1433
  - :updated_on: 2010-07-21
1434
- :store_no: 273
1434
+ :store_id: 273
1435
1435
  :quantity: 9
1436
1436
  - :updated_on: 2010-07-21
1437
- :store_no: 304
1437
+ :store_id: 304
1438
1438
  :quantity: 9
1439
1439
  - :updated_on: 2010-07-21
1440
- :store_no: 316
1440
+ :store_id: 316
1441
1441
  :quantity: 9
1442
1442
  - :updated_on: 2010-07-21
1443
- :store_no: 330
1443
+ :store_id: 330
1444
1444
  :quantity: 9
1445
1445
  - :updated_on: 2010-07-21
1446
- :store_no: 451
1446
+ :store_id: 451
1447
1447
  :quantity: 9
1448
1448
  - :updated_on: 2010-07-21
1449
- :store_no: 565
1449
+ :store_id: 565
1450
1450
  :quantity: 9
1451
1451
  - :updated_on: 2010-07-21
1452
- :store_no: 603
1452
+ :store_id: 603
1453
1453
  :quantity: 9
1454
1454
  - :updated_on: 2010-07-21
1455
- :store_no: 604
1455
+ :store_id: 604
1456
1456
  :quantity: 9
1457
1457
  - :updated_on: 2010-07-21
1458
- :store_no: 608
1458
+ :store_id: 608
1459
1459
  :quantity: 9
1460
1460
  - :updated_on: 2010-07-21
1461
- :store_no: 67
1461
+ :store_id: 67
1462
1462
  :quantity: 8
1463
1463
  - :updated_on: 2010-07-21
1464
- :store_no: 208
1464
+ :store_id: 208
1465
1465
  :quantity: 8
1466
1466
  - :updated_on: 2010-07-21
1467
- :store_no: 213
1467
+ :store_id: 213
1468
1468
  :quantity: 8
1469
1469
  - :updated_on: 2010-07-21
1470
- :store_no: 281
1470
+ :store_id: 281
1471
1471
  :quantity: 8
1472
1472
  - :updated_on: 2010-07-21
1473
- :store_no: 450
1473
+ :store_id: 450
1474
1474
  :quantity: 8
1475
1475
  - :updated_on: 2010-07-21
1476
- :store_no: 492
1476
+ :store_id: 492
1477
1477
  :quantity: 8
1478
1478
  - :updated_on: 2010-07-21
1479
- :store_no: 524
1479
+ :store_id: 524
1480
1480
  :quantity: 8
1481
1481
  - :updated_on: 2010-07-21
1482
- :store_no: 526
1482
+ :store_id: 526
1483
1483
  :quantity: 8
1484
1484
  - :updated_on: 2010-07-21
1485
- :store_no: 570
1485
+ :store_id: 570
1486
1486
  :quantity: 8
1487
1487
  - :updated_on: 2010-07-21
1488
- :store_no: 51
1488
+ :store_id: 51
1489
1489
  :quantity: 7
1490
1490
  - :updated_on: 2010-07-21
1491
- :store_no: 282
1491
+ :store_id: 282
1492
1492
  :quantity: 7
1493
1493
  - :updated_on: 2010-07-21
1494
- :store_no: 103
1494
+ :store_id: 103
1495
1495
  :quantity: 7
1496
1496
  - :updated_on: 2010-07-21
1497
- :store_no: 114
1497
+ :store_id: 114
1498
1498
  :quantity: 7
1499
1499
  - :updated_on: 2010-07-21
1500
- :store_no: 174
1500
+ :store_id: 174
1501
1501
  :quantity: 7
1502
1502
  - :updated_on: 2010-07-21
1503
- :store_no: 176
1503
+ :store_id: 176
1504
1504
  :quantity: 7
1505
1505
  - :updated_on: 2010-07-21
1506
- :store_no: 245
1506
+ :store_id: 245
1507
1507
  :quantity: 7
1508
1508
  - :updated_on: 2010-07-21
1509
- :store_no: 256
1509
+ :store_id: 256
1510
1510
  :quantity: 7
1511
1511
  - :updated_on: 2010-07-21
1512
- :store_no: 358
1512
+ :store_id: 358
1513
1513
  :quantity: 7
1514
1514
  - :updated_on: 2010-07-21
1515
- :store_no: 463
1515
+ :store_id: 463
1516
1516
  :quantity: 7
1517
1517
  - :updated_on: 2010-07-21
1518
- :store_no: 517
1518
+ :store_id: 517
1519
1519
  :quantity: 7
1520
1520
  - :updated_on: 2010-07-21
1521
- :store_no: 552
1521
+ :store_id: 552
1522
1522
  :quantity: 7
1523
1523
  - :updated_on: 2010-07-21
1524
- :store_no: 576
1524
+ :store_id: 576
1525
1525
  :quantity: 7
1526
1526
  - :updated_on: 2010-07-21
1527
- :store_no: 596
1527
+ :store_id: 596
1528
1528
  :quantity: 7
1529
1529
  - :updated_on: 2010-07-21
1530
- :store_no: 597
1530
+ :store_id: 597
1531
1531
  :quantity: 7
1532
1532
  - :updated_on: 2010-07-21
1533
- :store_no: 66
1533
+ :store_id: 66
1534
1534
  :quantity: 6
1535
1535
  - :updated_on: 2010-07-21
1536
- :store_no: 89
1536
+ :store_id: 89
1537
1537
  :quantity: 6
1538
1538
  - :updated_on: 2010-07-21
1539
- :store_no: 112
1539
+ :store_id: 112
1540
1540
  :quantity: 6
1541
1541
  - :updated_on: 2010-07-21
1542
- :store_no: 131
1542
+ :store_id: 131
1543
1543
  :quantity: 6
1544
1544
  - :updated_on: 2010-07-21
1545
- :store_no: 220
1545
+ :store_id: 220
1546
1546
  :quantity: 6
1547
1547
  - :updated_on: 2010-07-21
1548
- :store_no: 274
1548
+ :store_id: 274
1549
1549
  :quantity: 6
1550
1550
  - :updated_on: 2010-07-21
1551
- :store_no: 302
1551
+ :store_id: 302
1552
1552
  :quantity: 6
1553
1553
  - :updated_on: 2010-07-21
1554
- :store_no: 350
1554
+ :store_id: 350
1555
1555
  :quantity: 6
1556
1556
  - :updated_on: 2010-07-21
1557
- :store_no: 377
1557
+ :store_id: 377
1558
1558
  :quantity: 6
1559
1559
  - :updated_on: 2010-07-21
1560
- :store_no: 460
1560
+ :store_id: 460
1561
1561
  :quantity: 6
1562
1562
  - :updated_on: 2010-07-21
1563
- :store_no: 466
1563
+ :store_id: 466
1564
1564
  :quantity: 6
1565
1565
  - :updated_on: 2010-07-21
1566
- :store_no: 133
1566
+ :store_id: 133
1567
1567
  :quantity: 5
1568
1568
  - :updated_on: 2010-07-21
1569
- :store_no: 254
1569
+ :store_id: 254
1570
1570
  :quantity: 5
1571
1571
  - :updated_on: 2010-07-21
1572
- :store_no: 291
1572
+ :store_id: 291
1573
1573
  :quantity: 5
1574
1574
  - :updated_on: 2010-07-21
1575
- :store_no: 374
1575
+ :store_id: 374
1576
1576
  :quantity: 5
1577
1577
  - :updated_on: 2010-07-21
1578
- :store_no: 405
1578
+ :store_id: 405
1579
1579
  :quantity: 5
1580
1580
  - :updated_on: 2010-07-21
1581
- :store_no: 550
1581
+ :store_id: 550
1582
1582
  :quantity: 5
1583
1583
  - :updated_on: 2010-07-21
1584
- :store_no: 46
1584
+ :store_id: 46
1585
1585
  :quantity: 4
1586
1586
  - :updated_on: 2010-07-21
1587
- :store_no: 121
1587
+ :store_id: 121
1588
1588
  :quantity: 4
1589
1589
  - :updated_on: 2010-07-21
1590
- :store_no: 172
1590
+ :store_id: 172
1591
1591
  :quantity: 4
1592
1592
  - :updated_on: 2010-07-21
1593
- :store_no: 189
1593
+ :store_id: 189
1594
1594
  :quantity: 4
1595
1595
  - :updated_on: 2010-07-21
1596
- :store_no: 289
1596
+ :store_id: 289
1597
1597
  :quantity: 4
1598
1598
  - :updated_on: 2010-07-21
1599
- :store_no: 296
1599
+ :store_id: 296
1600
1600
  :quantity: 4
1601
1601
  - :updated_on: 2010-07-21
1602
- :store_no: 315
1602
+ :store_id: 315
1603
1603
  :quantity: 4
1604
1604
  - :updated_on: 2010-07-21
1605
- :store_no: 319
1605
+ :store_id: 319
1606
1606
  :quantity: 4
1607
1607
  - :updated_on: 2010-07-21
1608
- :store_no: 414
1608
+ :store_id: 414
1609
1609
  :quantity: 4
1610
1610
  - :updated_on: 2010-07-21
1611
- :store_no: 476
1611
+ :store_id: 476
1612
1612
  :quantity: 4
1613
1613
  - :updated_on: 2010-07-21
1614
- :store_no: 91
1614
+ :store_id: 91
1615
1615
  :quantity: 3
1616
1616
  - :updated_on: 2010-07-21
1617
- :store_no: 184
1617
+ :store_id: 184
1618
1618
  :quantity: 3
1619
1619
  - :updated_on: 2010-07-21
1620
- :store_no: 369
1620
+ :store_id: 369
1621
1621
  :quantity: 3
1622
1622
  - :updated_on: 2010-07-21
1623
- :store_no: 510
1623
+ :store_id: 510
1624
1624
  :quantity: 3
1625
1625
  - :updated_on: 2010-07-21
1626
- :store_no: 541
1626
+ :store_id: 541
1627
1627
  :quantity: 3
1628
1628
  - :updated_on: 2010-07-21
1629
- :store_no: 577
1629
+ :store_id: 577
1630
1630
  :quantity: 3
1631
1631
  - :updated_on: 2010-07-21
1632
- :store_no: 591
1632
+ :store_id: 591
1633
1633
  :quantity: 3
1634
1634
  - :updated_on: 2010-07-21
1635
- :store_no: 615
1635
+ :store_id: 615
1636
1636
  :quantity: 3
1637
1637
  - :updated_on: 2010-07-21
1638
- :store_no: 271
1638
+ :store_id: 271
1639
1639
  :quantity: 2
1640
1640
  - :updated_on: 2010-07-21
1641
- :store_no: 258
1641
+ :store_id: 258
1642
1642
  :quantity: 2
1643
1643
  - :updated_on: 2010-07-21
1644
- :store_no: 331
1644
+ :store_id: 331
1645
1645
  :quantity: 2
1646
1646
  - :updated_on: 2010-07-21
1647
- :store_no: 514
1647
+ :store_id: 514
1648
1648
  :quantity: 2
1649
1649
  - :updated_on: 2010-07-21
1650
- :store_no: 87
1650
+ :store_id: 87
1651
1651
  :quantity: 1
1652
1652
  - :updated_on: 2010-07-21
1653
- :store_no: 170
1653
+ :store_id: 170
1654
1654
  :quantity: 1
1655
1655
  - :updated_on: 2010-07-21
1656
- :store_no: 262
1656
+ :store_id: 262
1657
1657
  :quantity: 1
1658
1658
  - :updated_on: 2010-07-21
1659
- :store_no: 284
1659
+ :store_id: 284
1660
1660
  :quantity: 1
1661
1661
  - :updated_on: 2010-07-21
1662
- :store_no: 336
1662
+ :store_id: 336
1663
1663
  :quantity: 1
1664
1664
  - :updated_on: 2010-07-21
1665
- :store_no: 364
1665
+ :store_id: 364
1666
1666
  :quantity: 1
1667
1667
  - :updated_on: 2010-07-21
1668
- :store_no: 399
1668
+ :store_id: 399
1669
1669
  :quantity: 1
1670
1670
  - :updated_on: 2010-07-21
1671
- :store_no: 480
1671
+ :store_id: 480
1672
1672
  :quantity: 1
1673
1673
  - :updated_on: 2010-07-21
1674
- :store_no: 607
1674
+ :store_id: 607
1675
1675
  :quantity: 1
1676
1676
  - :file: 2.html
1677
1677
  :desc: Product with no inventories
1678
1678
  :uri: http://www.lcbo.com/lcbo-ear/lcbo/product/inventory/searchResults.do?language=EN&itemNumber=8466
1679
1679
  :method: :get
1680
1680
  :query_params:
1681
- :product_no: 8466
1681
+ :product_id: 8466
1682
1682
  :expectation:
1683
1683
  :inventory_count: 0
1684
- :product_no: 8466
1684
+ :product_id: 8466
1685
1685
  :inventories: []