gridder 0.0.7 → 0.0.8
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.
- data/lib/gridder.rb +3 -1
- data/lib/gridder/version.rb +1 -1
- data/test/dummy/app/controllers/welcome_controller.rb +2 -1
- data/test/dummy/app/models/address.rb +3 -0
- data/test/dummy/app/models/base.rb +20 -0
- data/test/dummy/app/models/person.rb +3 -0
- data/test/dummy/app/views/welcome/index.html.erb +47 -12
- data/test/dummy/config/routes.rb +1 -58
- data/test/dummy/data.yml +701 -0
- data/test/dummy/db/production.sqlite3 +0 -0
- data/test/dummy/log/development.log +3863 -0
- data/test/dummy/log/production.log +21 -0
- data/test/dummy/tmp/cache/assets/{DAF/2C0/sprockets%2Fcab45e548fe8052c62e467fde4dfe368 → C55/BD0/sprockets%2Faecd4700129c44c79c71965552019594} +0 -0
- data/test/dummy/tmp/cache/assets/C7B/190/sprockets%2F37b103f4623089af1456b90830fe941c +0 -0
- data/test/dummy/tmp/cache/assets/{D02/7C0/sprockets%2F5a91dd113f57ac4a330b9800376ed1e6 → C8D/630/sprockets%2Fc56919665888c4ca123324825ab5f56e} +0 -0
- data/test/dummy/tmp/cache/assets/{E03/DD0/sprockets%2Fc0b56c43d65acbf25696aced895cde6a → C97/410/sprockets%2F56fe119098922d0755dd813be3c86798} +0 -0
- data/test/dummy/tmp/cache/assets/{E54/0A0/sprockets%2F0c12aa3768b3dcccdeec7f29ed0b15ff → CBB/B80/sprockets%2F0a78b5099ffe20185b75dd4716147a97} +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/D13/C60/sprockets%2F2dedb8177c20286c4259c1d58c5646cc +0 -0
- data/test/dummy/tmp/cache/assets/D21/5D0/sprockets%2Fe2c4f946939f2d7d0b42d86383755cae +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D3E/F40/sprockets%2F25a167c7563d6fe8ec6b13ec1ac09274 +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- metadata +24 -12
data/lib/gridder.rb
CHANGED
@@ -61,8 +61,10 @@ module Gridder
|
|
61
61
|
{:id => ActionController::RecordIdentifier.dom_id(record)}
|
62
62
|
elsif config[:tr].is_a?(Proc)
|
63
63
|
config[:tr].arity.zero? ? config[:tr].call : config[:tr].call(record)
|
64
|
-
|
64
|
+
elsif config[:tr].is_a?(Symbol)
|
65
65
|
record.send(config[:tr])
|
66
|
+
else
|
67
|
+
config[:tr]
|
66
68
|
end
|
67
69
|
|
68
70
|
doc.tr(tr_config) do
|
data/lib/gridder/version.rb
CHANGED
@@ -0,0 +1,20 @@
|
|
1
|
+
class Base
|
2
|
+
|
3
|
+
def initialize(*opts)
|
4
|
+
opts.extract_options!.each do |k,v|
|
5
|
+
self.send("#{k}=", v) if self.respond_to?("#{k}=")
|
6
|
+
end
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.load(amount=10)
|
10
|
+
data = YAML::load_file("data.yml")[0..amount]
|
11
|
+
|
12
|
+
data.each_with_index.map do |e, i|
|
13
|
+
p = Person.new(e)
|
14
|
+
p.address = Address.new(e[:address])
|
15
|
+
|
16
|
+
p
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
@@ -1,16 +1,51 @@
|
|
1
|
-
<h1>
|
2
|
-
<p>Find me in app/views/welcome/index.html.erb</p>
|
1
|
+
<h1>Demo</h1>
|
3
2
|
|
4
3
|
<p>
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
4
|
+
Simples, data => :nome_do_attributo
|
5
|
+
<%= Gridder.for(@list, :body => [{:title => "Name", :data => :name}] ) %>
|
6
|
+
</p>
|
7
|
+
|
8
|
+
<p>
|
9
|
+
Lambda, lambda{|registro| registro.attributo}
|
10
|
+
<%= Gridder.for(@list, :body => [ {:title => "Name", :data => :name},
|
11
|
+
{:title => "Street", :data => lambda{|e|[e.address.number, e.address.street].join(", ")}},
|
12
|
+
{:title => "City", :data => lambda{|e|e.address.city}},
|
13
|
+
{:title => "State", :data => lambda{|e|e.address.state}},
|
14
|
+
{:title => "Country", :data => lambda{|e|e.address.country}}
|
15
|
+
] ) %>
|
16
|
+
</p>
|
17
|
+
|
18
|
+
<p>
|
19
|
+
Definindo atributos
|
20
|
+
<%= Gridder.for(@list, :body => [ {:title => "Name", :data => :name},
|
21
|
+
{:title => "Street", :data => lambda{|e|[e.address.number, e.address.street].join(", ")}},
|
22
|
+
{:title => "City", :data => lambda{|e|e.address.city}},
|
23
|
+
{:title => "State", :data => lambda{|e|e.address.state}},
|
24
|
+
{:title => "Country", :data => lambda{|e|e.address.country}}
|
25
|
+
],
|
26
|
+
:table => {:style => "background-color:#efefef"},
|
27
|
+
:tr => {:style => "color:red"},
|
28
|
+
:thead => {:style => "font-family:tahoma;font-size:30px"} ) %>
|
29
|
+
</p>
|
30
|
+
|
31
|
+
<p>
|
32
|
+
Adicionando namespace no cabeçalho
|
33
|
+
<%= Gridder.for(@list, :body => [ {:title => "Name", :data => :name},
|
34
|
+
{:title => "Address::Street", :data => lambda{|e|[e.address.number, e.address.street].join(", ")}, :style => "width:200px"},
|
35
|
+
{:title => "Address::City", :data => lambda{|e|e.address.city}},
|
36
|
+
{:title => "Address::State", :data => lambda{|e|e.address.state}},
|
37
|
+
{:title => "Address::Country", :data => lambda{|e|e.address.country}}
|
38
|
+
], :table => {:border => 1, :cellpadding => 5, :cellspacing=> 0}) %>
|
39
|
+
</p>
|
40
|
+
|
41
|
+
<p>
|
42
|
+
Adicionando namespace de 2 niveis no cabeçalho
|
43
|
+
<%= Gridder.for(@list, :body => [ {:title => "Name", :data => :name},
|
44
|
+
{:title => "Address::Number", :data => lambda{|e|e.address.number}, :style => "width:50px"},
|
45
|
+
{:title => "Address::Street", :data => lambda{|e|e.address.street}, :style => "width:150px"},
|
46
|
+
{:title => "Address::Region::City", :data => lambda{|e|e.address.city}},
|
47
|
+
{:title => "Address::Region::State", :data => lambda{|e|e.address.state}},
|
48
|
+
{:title => "Address::Region::Country", :data => lambda{|e|e.address.country}}
|
49
|
+
], :table => {:border => 1, :cellpadding => 5, :cellspacing=> 0}) %>
|
15
50
|
</p>
|
16
51
|
|
data/test/dummy/config/routes.rb
CHANGED
@@ -1,60 +1,3 @@
|
|
1
1
|
Dummy::Application.routes.draw do
|
2
|
-
|
3
|
-
|
4
|
-
# The priority is based upon order of creation:
|
5
|
-
# first created -> highest priority.
|
6
|
-
|
7
|
-
# Sample of regular route:
|
8
|
-
# match 'products/:id' => 'catalog#view'
|
9
|
-
# Keep in mind you can assign values other than :controller and :action
|
10
|
-
|
11
|
-
# Sample of named route:
|
12
|
-
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
13
|
-
# This route can be invoked with purchase_url(:id => product.id)
|
14
|
-
|
15
|
-
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
16
|
-
# resources :products
|
17
|
-
|
18
|
-
# Sample resource route with options:
|
19
|
-
# resources :products do
|
20
|
-
# member do
|
21
|
-
# get 'short'
|
22
|
-
# post 'toggle'
|
23
|
-
# end
|
24
|
-
#
|
25
|
-
# collection do
|
26
|
-
# get 'sold'
|
27
|
-
# end
|
28
|
-
# end
|
29
|
-
|
30
|
-
# Sample resource route with sub-resources:
|
31
|
-
# resources :products do
|
32
|
-
# resources :comments, :sales
|
33
|
-
# resource :seller
|
34
|
-
# end
|
35
|
-
|
36
|
-
# Sample resource route with more complex sub-resources
|
37
|
-
# resources :products do
|
38
|
-
# resources :comments
|
39
|
-
# resources :sales do
|
40
|
-
# get 'recent', :on => :collection
|
41
|
-
# end
|
42
|
-
# end
|
43
|
-
|
44
|
-
# Sample resource route within a namespace:
|
45
|
-
# namespace :admin do
|
46
|
-
# # Directs /admin/products/* to Admin::ProductsController
|
47
|
-
# # (app/controllers/admin/products_controller.rb)
|
48
|
-
# resources :products
|
49
|
-
# end
|
50
|
-
|
51
|
-
# You can have the root of your site routed with "root"
|
52
|
-
# just remember to delete public/index.html.
|
53
|
-
# root :to => 'welcome#index'
|
54
|
-
|
55
|
-
# See how all your routes lay out with "rake routes"
|
56
|
-
|
57
|
-
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
58
|
-
# Note: This route will make all actions in every controller accessible via GET requests.
|
59
|
-
# match ':controller(/:action(/:id))(.:format)'
|
2
|
+
root :to => "welcome#index"
|
60
3
|
end
|
data/test/dummy/data.yml
ADDED
@@ -0,0 +1,701 @@
|
|
1
|
+
---
|
2
|
+
- :name: Alexandro Farrell Sr.
|
3
|
+
:address:
|
4
|
+
:street: Kayleigh Square
|
5
|
+
:number: "153"
|
6
|
+
:city: New Ofelia
|
7
|
+
:state: Alabama
|
8
|
+
:country: Bouvet Island (Bouvetoya)
|
9
|
+
- :name: Miss Jeanie Stark
|
10
|
+
:address:
|
11
|
+
:street: Sandy Crossroad
|
12
|
+
:number: "885"
|
13
|
+
:city: Monahanfurt
|
14
|
+
:state: Delaware
|
15
|
+
:country: Iceland
|
16
|
+
- :name: Kaia Altenwerth
|
17
|
+
:address:
|
18
|
+
:street: Weimann Rapids
|
19
|
+
:number: "63229"
|
20
|
+
:city: Nyahport
|
21
|
+
:state: New Mexico
|
22
|
+
:country: Malaysia
|
23
|
+
- :name: Rebeka Roberts
|
24
|
+
:address:
|
25
|
+
:street: Stoltenberg Springs
|
26
|
+
:number: "5698"
|
27
|
+
:city: Waylonstad
|
28
|
+
:state: Colorado
|
29
|
+
:country: Senegal
|
30
|
+
- :name: Kaleb Crooks MD
|
31
|
+
:address:
|
32
|
+
:street: Brakus Heights
|
33
|
+
:number: "1157"
|
34
|
+
:city: Port Bertramtown
|
35
|
+
:state: Wyoming
|
36
|
+
:country: Dominican Republic
|
37
|
+
- :name: Ms. Ara Schaefer
|
38
|
+
:address:
|
39
|
+
:street: Gutmann Harbors
|
40
|
+
:number: "43009"
|
41
|
+
:city: West Sheaborough
|
42
|
+
:state: Pennsylvania
|
43
|
+
:country: Bulgaria
|
44
|
+
- :name: Miss Jacquelyn Barton
|
45
|
+
:address:
|
46
|
+
:street: Goldner Turnpike
|
47
|
+
:number: "75400"
|
48
|
+
:city: Remingtonburgh
|
49
|
+
:state: Nevada
|
50
|
+
:country: Somalia
|
51
|
+
- :name: Chauncey Becker
|
52
|
+
:address:
|
53
|
+
:street: Mills Summit
|
54
|
+
:number: "5001"
|
55
|
+
:city: North Maud
|
56
|
+
:state: Indiana
|
57
|
+
:country: United States of America
|
58
|
+
- :name: Alexandria Kilback
|
59
|
+
:address:
|
60
|
+
:street: Johns Bridge
|
61
|
+
:number: "4979"
|
62
|
+
:city: Dimitriside
|
63
|
+
:state: California
|
64
|
+
:country: Mongolia
|
65
|
+
- :name: Edwina Conn
|
66
|
+
:address:
|
67
|
+
:street: Rebecca Fort
|
68
|
+
:number: "873"
|
69
|
+
:city: Lemkehaven
|
70
|
+
:state: Georgia
|
71
|
+
:country: Jordan
|
72
|
+
- :name: Rahsaan Swaniawski
|
73
|
+
:address:
|
74
|
+
:street: Alphonso Mountains
|
75
|
+
:number: "22715"
|
76
|
+
:city: Lake Derickhaven
|
77
|
+
:state: Massachusetts
|
78
|
+
:country: Palau
|
79
|
+
- :name: Doris Shanahan I
|
80
|
+
:address:
|
81
|
+
:street: Eileen Station
|
82
|
+
:number: "2440"
|
83
|
+
:city: Lake Craig
|
84
|
+
:state: Mississippi
|
85
|
+
:country: Turkey
|
86
|
+
- :name: Albin Brekke V
|
87
|
+
:address:
|
88
|
+
:street: Elian Estates
|
89
|
+
:number: "1060"
|
90
|
+
:city: Westleyfort
|
91
|
+
:state: Louisiana
|
92
|
+
:country: Egypt
|
93
|
+
- :name: Reginald Nitzsche
|
94
|
+
:address:
|
95
|
+
:street: Kiehn Corners
|
96
|
+
:number: "635"
|
97
|
+
:city: Wilfredobury
|
98
|
+
:state: California
|
99
|
+
:country: Liechtenstein
|
100
|
+
- :name: Robyn Beer
|
101
|
+
:address:
|
102
|
+
:street: Emmerich Fall
|
103
|
+
:number: "594"
|
104
|
+
:city: Michalemouth
|
105
|
+
:state: Montana
|
106
|
+
:country: Finland
|
107
|
+
- :name: Baylee Marks
|
108
|
+
:address:
|
109
|
+
:street: Noelia Rue
|
110
|
+
:number: "24207"
|
111
|
+
:city: Caseyberg
|
112
|
+
:state: Alabama
|
113
|
+
:country: Antigua and Barbuda
|
114
|
+
- :name: Juliana Ryan
|
115
|
+
:address:
|
116
|
+
:street: Zoila Plaza
|
117
|
+
:number: "9564"
|
118
|
+
:city: Port Valeriefurt
|
119
|
+
:state: Hawaii
|
120
|
+
:country: Mongolia
|
121
|
+
- :name: Hermann Altenwerth
|
122
|
+
:address:
|
123
|
+
:street: Trevion Common
|
124
|
+
:number: "63506"
|
125
|
+
:city: East Nelleville
|
126
|
+
:state: New Mexico
|
127
|
+
:country: Qatar
|
128
|
+
- :name: Cynthia Rosenbaum MD
|
129
|
+
:address:
|
130
|
+
:street: Ziemann Meadows
|
131
|
+
:number: "13732"
|
132
|
+
:city: East Casimerland
|
133
|
+
:state: Delaware
|
134
|
+
:country: Mozambique
|
135
|
+
- :name: Leonor Watsica
|
136
|
+
:address:
|
137
|
+
:street: Ziemann Via
|
138
|
+
:number: "175"
|
139
|
+
:city: Jermaineberg
|
140
|
+
:state: Idaho
|
141
|
+
:country: Georgia
|
142
|
+
- :name: Jazmyn Nolan
|
143
|
+
:address:
|
144
|
+
:street: Gardner Mill
|
145
|
+
:number: "69330"
|
146
|
+
:city: Caraville
|
147
|
+
:state: Ohio
|
148
|
+
:country: Austria
|
149
|
+
- :name: Jon Hettinger
|
150
|
+
:address:
|
151
|
+
:street: Edd Falls
|
152
|
+
:number: "4180"
|
153
|
+
:city: South Orvalmouth
|
154
|
+
:state: Montana
|
155
|
+
:country: Saint Lucia
|
156
|
+
- :name: Ms. Elenor Tromp
|
157
|
+
:address:
|
158
|
+
:street: Towne Shoal
|
159
|
+
:number: "69235"
|
160
|
+
:city: Eudoraburgh
|
161
|
+
:state: Delaware
|
162
|
+
:country: Saint Vincent and the Grenadines
|
163
|
+
- :name: Madge Ruecker MD
|
164
|
+
:address:
|
165
|
+
:street: Fay Coves
|
166
|
+
:number: "85241"
|
167
|
+
:city: Dickensside
|
168
|
+
:state: Indiana
|
169
|
+
:country: El Salvador
|
170
|
+
- :name: Bernie Witting
|
171
|
+
:address:
|
172
|
+
:street: Era Square
|
173
|
+
:number: "1654"
|
174
|
+
:city: West Vedabury
|
175
|
+
:state: Maryland
|
176
|
+
:country: Albania
|
177
|
+
- :name: Jackeline Nolan DVM
|
178
|
+
:address:
|
179
|
+
:street: Wilfredo Throughway
|
180
|
+
:number: "17133"
|
181
|
+
:city: Schultzmouth
|
182
|
+
:state: California
|
183
|
+
:country: Guernsey
|
184
|
+
- :name: Kiera Grimes
|
185
|
+
:address:
|
186
|
+
:street: Octavia Creek
|
187
|
+
:number: "841"
|
188
|
+
:city: Jonatanfurt
|
189
|
+
:state: Wyoming
|
190
|
+
:country: Malaysia
|
191
|
+
- :name: Rey Ryan Jr.
|
192
|
+
:address:
|
193
|
+
:street: Waters Mill
|
194
|
+
:number: "54785"
|
195
|
+
:city: Kilbackville
|
196
|
+
:state: California
|
197
|
+
:country: Cayman Islands
|
198
|
+
- :name: Baron Grant
|
199
|
+
:address:
|
200
|
+
:street: Goldner Causeway
|
201
|
+
:number: "240"
|
202
|
+
:city: Hellermouth
|
203
|
+
:state: West Virginia
|
204
|
+
:country: Brazil
|
205
|
+
- :name: Derick Bednar
|
206
|
+
:address:
|
207
|
+
:street: Gislason Flats
|
208
|
+
:number: "9574"
|
209
|
+
:city: Port Mabelle
|
210
|
+
:state: Massachusetts
|
211
|
+
:country: Oman
|
212
|
+
- :name: Alec Trantow
|
213
|
+
:address:
|
214
|
+
:street: Howe Parks
|
215
|
+
:number: "660"
|
216
|
+
:city: North Kevon
|
217
|
+
:state: New Mexico
|
218
|
+
:country: Botswana
|
219
|
+
- :name: Howard Leffler
|
220
|
+
:address:
|
221
|
+
:street: Hammes Ville
|
222
|
+
:number: "4486"
|
223
|
+
:city: New Baileyview
|
224
|
+
:state: Vermont
|
225
|
+
:country: Puerto Rico
|
226
|
+
- :name: Ignacio Gottlieb
|
227
|
+
:address:
|
228
|
+
:street: Marvin Circle
|
229
|
+
:number: "747"
|
230
|
+
:city: Spencerview
|
231
|
+
:state: Kentucky
|
232
|
+
:country: Honduras
|
233
|
+
- :name: Kaylin Haley
|
234
|
+
:address:
|
235
|
+
:street: Jesus Tunnel
|
236
|
+
:number: "3646"
|
237
|
+
:city: West Aubree
|
238
|
+
:state: Wisconsin
|
239
|
+
:country: Monaco
|
240
|
+
- :name: Jonathon Padberg PhD
|
241
|
+
:address:
|
242
|
+
:street: Chadrick Dam
|
243
|
+
:number: "501"
|
244
|
+
:city: Priceville
|
245
|
+
:state: Nebraska
|
246
|
+
:country: Honduras
|
247
|
+
- :name: Pearl Goldner III
|
248
|
+
:address:
|
249
|
+
:street: Morissette Common
|
250
|
+
:number: "58547"
|
251
|
+
:city: East Isaiasstad
|
252
|
+
:state: Florida
|
253
|
+
:country: Oman
|
254
|
+
- :name: Alda Hessel
|
255
|
+
:address:
|
256
|
+
:street: Casper Park
|
257
|
+
:number: "804"
|
258
|
+
:city: Hauckmouth
|
259
|
+
:state: Wyoming
|
260
|
+
:country: Puerto Rico
|
261
|
+
- :name: Florence Grady
|
262
|
+
:address:
|
263
|
+
:street: Geoffrey Light
|
264
|
+
:number: "4481"
|
265
|
+
:city: New Braedenfort
|
266
|
+
:state: Ohio
|
267
|
+
:country: Iran
|
268
|
+
- :name: Myrtle Muller
|
269
|
+
:address:
|
270
|
+
:street: Auer Mountains
|
271
|
+
:number: "27452"
|
272
|
+
:city: Lake Misaelville
|
273
|
+
:state: Kansas
|
274
|
+
:country: Costa Rica
|
275
|
+
- :name: Laurianne Reilly
|
276
|
+
:address:
|
277
|
+
:street: Itzel Trail
|
278
|
+
:number: "6725"
|
279
|
+
:city: North Corine
|
280
|
+
:state: Massachusetts
|
281
|
+
:country: Mauritius
|
282
|
+
- :name: Edna Murphy
|
283
|
+
:address:
|
284
|
+
:street: Libbie Flats
|
285
|
+
:number: "326"
|
286
|
+
:city: Calebside
|
287
|
+
:state: Virginia
|
288
|
+
:country: Martinique
|
289
|
+
- :name: Mercedes Harvey
|
290
|
+
:address:
|
291
|
+
:street: Ardith Passage
|
292
|
+
:number: "30994"
|
293
|
+
:city: Alyciamouth
|
294
|
+
:state: Colorado
|
295
|
+
:country: Niger
|
296
|
+
- :name: Christelle Dickinson
|
297
|
+
:address:
|
298
|
+
:street: Berge Trafficway
|
299
|
+
:number: "8079"
|
300
|
+
:city: Alexandremouth
|
301
|
+
:state: Maine
|
302
|
+
:country: Dominican Republic
|
303
|
+
- :name: Elyse Schroeder
|
304
|
+
:address:
|
305
|
+
:street: Schultz Lodge
|
306
|
+
:number: "28244"
|
307
|
+
:city: East Mike
|
308
|
+
:state: Illinois
|
309
|
+
:country: Canada
|
310
|
+
- :name: Rosie Ondricka
|
311
|
+
:address:
|
312
|
+
:street: Mraz Ramp
|
313
|
+
:number: "561"
|
314
|
+
:city: Port Elsie
|
315
|
+
:state: Pennsylvania
|
316
|
+
:country: Mauritius
|
317
|
+
- :name: Frances Koepp
|
318
|
+
:address:
|
319
|
+
:street: Denesik Circle
|
320
|
+
:number: "3158"
|
321
|
+
:city: Queenieton
|
322
|
+
:state: Iowa
|
323
|
+
:country: Bosnia and Herzegovina
|
324
|
+
- :name: Wilson Swift
|
325
|
+
:address:
|
326
|
+
:street: Streich Oval
|
327
|
+
:number: "2097"
|
328
|
+
:city: North Maya
|
329
|
+
:state: Tennessee
|
330
|
+
:country: Pakistan
|
331
|
+
- :name: Laurence Mills
|
332
|
+
:address:
|
333
|
+
:street: Jacobs Locks
|
334
|
+
:number: "2451"
|
335
|
+
:city: Laylafurt
|
336
|
+
:state: Oregon
|
337
|
+
:country: Liechtenstein
|
338
|
+
- :name: Ronny Ondricka Sr.
|
339
|
+
:address:
|
340
|
+
:street: O'Conner Rue
|
341
|
+
:number: "492"
|
342
|
+
:city: West Evelyn
|
343
|
+
:state: Louisiana
|
344
|
+
:country: Guatemala
|
345
|
+
- :name: Vicente Gorczany
|
346
|
+
:address:
|
347
|
+
:street: Madelynn Manor
|
348
|
+
:number: "42578"
|
349
|
+
:city: Casimerview
|
350
|
+
:state: North Dakota
|
351
|
+
:country: Western Sahara
|
352
|
+
- :name: Omer Jewess
|
353
|
+
:address:
|
354
|
+
:street: Morar Way
|
355
|
+
:number: "2312"
|
356
|
+
:city: Rodriguezshire
|
357
|
+
:state: North Dakota
|
358
|
+
:country: Cuba
|
359
|
+
- :name: Pattie Weber
|
360
|
+
:address:
|
361
|
+
:street: Kellie Parkways
|
362
|
+
:number: "932"
|
363
|
+
:city: Halvorsonborough
|
364
|
+
:state: Oklahoma
|
365
|
+
:country: Burkina Faso
|
366
|
+
- :name: Theo Krajcik
|
367
|
+
:address:
|
368
|
+
:street: Buddy Prairie
|
369
|
+
:number: "206"
|
370
|
+
:city: New Jorgestad
|
371
|
+
:state: New Jersey
|
372
|
+
:country: Brazil
|
373
|
+
- :name: Mr. Gregoria Schaefer
|
374
|
+
:address:
|
375
|
+
:street: Schmeler Circles
|
376
|
+
:number: "93083"
|
377
|
+
:city: North Norwood
|
378
|
+
:state: California
|
379
|
+
:country: Tanzania
|
380
|
+
- :name: Cloyd Bartell
|
381
|
+
:address:
|
382
|
+
:street: Shad Prairie
|
383
|
+
:number: "5878"
|
384
|
+
:city: West Geovanniview
|
385
|
+
:state: Vermont
|
386
|
+
:country: Congo
|
387
|
+
- :name: Josiah Schaefer
|
388
|
+
:address:
|
389
|
+
:street: Mertz Port
|
390
|
+
:number: "96093"
|
391
|
+
:city: West Joanamouth
|
392
|
+
:state: Wyoming
|
393
|
+
:country: Georgia
|
394
|
+
- :name: Annamarie Kertzmann
|
395
|
+
:address:
|
396
|
+
:street: Parisian Center
|
397
|
+
:number: "617"
|
398
|
+
:city: South Isadoremouth
|
399
|
+
:state: South Carolina
|
400
|
+
:country: Vietnam
|
401
|
+
- :name: Miss Lilyan Flatley
|
402
|
+
:address:
|
403
|
+
:street: Luettgen Tunnel
|
404
|
+
:number: "62948"
|
405
|
+
:city: Lake Bonniestad
|
406
|
+
:state: Alaska
|
407
|
+
:country: Dominica
|
408
|
+
- :name: Dr. Javonte Zemlak
|
409
|
+
:address:
|
410
|
+
:street: Queen Avenue
|
411
|
+
:number: "382"
|
412
|
+
:city: East Carmeloland
|
413
|
+
:state: Louisiana
|
414
|
+
:country: Brunei Darussalam
|
415
|
+
- :name: Ceasar Wisozk
|
416
|
+
:address:
|
417
|
+
:street: Schmitt Garden
|
418
|
+
:number: "374"
|
419
|
+
:city: Connville
|
420
|
+
:state: Kansas
|
421
|
+
:country: Togo
|
422
|
+
- :name: Janick Miller
|
423
|
+
:address:
|
424
|
+
:street: O'Connell Haven
|
425
|
+
:number: "4727"
|
426
|
+
:city: West Howardstad
|
427
|
+
:state: Colorado
|
428
|
+
:country: Oman
|
429
|
+
- :name: Mr. Dagmar Pollich
|
430
|
+
:address:
|
431
|
+
:street: Jerrell Villages
|
432
|
+
:number: "161"
|
433
|
+
:city: Kossville
|
434
|
+
:state: Illinois
|
435
|
+
:country: Nicaragua
|
436
|
+
- :name: Joel Hilpert
|
437
|
+
:address:
|
438
|
+
:street: Mireille Overpass
|
439
|
+
:number: "7612"
|
440
|
+
:city: West Brice
|
441
|
+
:state: Pennsylvania
|
442
|
+
:country: Cambodia
|
443
|
+
- :name: Bella Auer
|
444
|
+
:address:
|
445
|
+
:street: Schmeler Heights
|
446
|
+
:number: "180"
|
447
|
+
:city: Kylieton
|
448
|
+
:state: West Virginia
|
449
|
+
:country: Niue
|
450
|
+
- :name: Alexanne Hane V
|
451
|
+
:address:
|
452
|
+
:street: Bennett Fields
|
453
|
+
:number: "746"
|
454
|
+
:city: South Floydmouth
|
455
|
+
:state: Louisiana
|
456
|
+
:country: Tuvalu
|
457
|
+
- :name: Frederik Ruecker
|
458
|
+
:address:
|
459
|
+
:street: Queenie Burgs
|
460
|
+
:number: "493"
|
461
|
+
:city: Franeckishire
|
462
|
+
:state: Arkansas
|
463
|
+
:country: United States Virgin Islands
|
464
|
+
- :name: Ben Dickinson
|
465
|
+
:address:
|
466
|
+
:street: Konopelski Lodge
|
467
|
+
:number: "50234"
|
468
|
+
:city: Jairoshire
|
469
|
+
:state: Alabama
|
470
|
+
:country: French Southern Territories
|
471
|
+
- :name: Cristopher Langworth I
|
472
|
+
:address:
|
473
|
+
:street: Kris Crest
|
474
|
+
:number: "519"
|
475
|
+
:city: Port Paolofurt
|
476
|
+
:state: West Virginia
|
477
|
+
:country: Saudi Arabia
|
478
|
+
- :name: Mr. Flossie Ullrich
|
479
|
+
:address:
|
480
|
+
:street: Reuben Rapid
|
481
|
+
:number: "9335"
|
482
|
+
:city: Gulgowskiside
|
483
|
+
:state: Nebraska
|
484
|
+
:country: Bahrain
|
485
|
+
- :name: Alan Smitham II
|
486
|
+
:address:
|
487
|
+
:street: Clint Radial
|
488
|
+
:number: "215"
|
489
|
+
:city: New Mateo
|
490
|
+
:state: North Dakota
|
491
|
+
:country: Eritrea
|
492
|
+
- :name: Scotty McGlynn
|
493
|
+
:address:
|
494
|
+
:street: Howe Key
|
495
|
+
:number: "961"
|
496
|
+
:city: Travonview
|
497
|
+
:state: Maryland
|
498
|
+
:country: Faroe Islands
|
499
|
+
- :name: Anthony Stamm
|
500
|
+
:address:
|
501
|
+
:street: Bernhard Turnpike
|
502
|
+
:number: "3552"
|
503
|
+
:city: Lake Rosieland
|
504
|
+
:state: Oregon
|
505
|
+
:country: Uruguay
|
506
|
+
- :name: Nat Erdman
|
507
|
+
:address:
|
508
|
+
:street: Parisian Junction
|
509
|
+
:number: "380"
|
510
|
+
:city: East Ledaberg
|
511
|
+
:state: South Dakota
|
512
|
+
:country: Indonesia
|
513
|
+
- :name: Natalia Becker
|
514
|
+
:address:
|
515
|
+
:street: Brekke Cape
|
516
|
+
:number: "78630"
|
517
|
+
:city: Hermannside
|
518
|
+
:state: Minnesota
|
519
|
+
:country: Saint Barthelemy
|
520
|
+
- :name: Lorena Emard
|
521
|
+
:address:
|
522
|
+
:street: Arjun Prairie
|
523
|
+
:number: "92295"
|
524
|
+
:city: Lake Orphaton
|
525
|
+
:state: Iowa
|
526
|
+
:country: Bolivia
|
527
|
+
- :name: Alysa Littel
|
528
|
+
:address:
|
529
|
+
:street: Feeney Forge
|
530
|
+
:number: "76832"
|
531
|
+
:city: Lorineton
|
532
|
+
:state: Connecticut
|
533
|
+
:country: Armenia
|
534
|
+
- :name: Annabell Hartmann
|
535
|
+
:address:
|
536
|
+
:street: Kuvalis Squares
|
537
|
+
:number: "261"
|
538
|
+
:city: Claudiamouth
|
539
|
+
:state: Delaware
|
540
|
+
:country: Madagascar
|
541
|
+
- :name: Kaycee Miller DDS
|
542
|
+
:address:
|
543
|
+
:street: Kshlerin Mountains
|
544
|
+
:number: "9417"
|
545
|
+
:city: Lake Lafayette
|
546
|
+
:state: Wyoming
|
547
|
+
:country: Faroe Islands
|
548
|
+
- :name: Ezequiel Buckridge DDS
|
549
|
+
:address:
|
550
|
+
:street: Rowe Pines
|
551
|
+
:number: "921"
|
552
|
+
:city: Lake Chasitytown
|
553
|
+
:state: Nebraska
|
554
|
+
:country: Canada
|
555
|
+
- :name: Tess Cole
|
556
|
+
:address:
|
557
|
+
:street: Omer Gardens
|
558
|
+
:number: "1962"
|
559
|
+
:city: South Lily
|
560
|
+
:state: Illinois
|
561
|
+
:country: Estonia
|
562
|
+
- :name: Salvador Kozey III
|
563
|
+
:address:
|
564
|
+
:street: Cayla Gateway
|
565
|
+
:number: "9402"
|
566
|
+
:city: Greenland
|
567
|
+
:state: New York
|
568
|
+
:country: Solomon Islands
|
569
|
+
- :name: Johanna Monahan PhD
|
570
|
+
:address:
|
571
|
+
:street: Kuhlman Parks
|
572
|
+
:number: "9437"
|
573
|
+
:city: Schowalterborough
|
574
|
+
:state: Arizona
|
575
|
+
:country: Estonia
|
576
|
+
- :name: Lucious Dietrich
|
577
|
+
:address:
|
578
|
+
:street: Reinhold Burgs
|
579
|
+
:number: "8569"
|
580
|
+
:city: East Esmeralda
|
581
|
+
:state: Idaho
|
582
|
+
:country: Belgium
|
583
|
+
- :name: Toby Romaguera
|
584
|
+
:address:
|
585
|
+
:street: Louie Mount
|
586
|
+
:number: "74814"
|
587
|
+
:city: Adrainfort
|
588
|
+
:state: Nevada
|
589
|
+
:country: Falkland Islands (Malvinas)
|
590
|
+
- :name: Maya Borer
|
591
|
+
:address:
|
592
|
+
:street: Lenora Corners
|
593
|
+
:number: "78001"
|
594
|
+
:city: West Eliseo
|
595
|
+
:state: Washington
|
596
|
+
:country: Turks and Caicos Islands
|
597
|
+
- :name: Jacinthe Osinski Sr.
|
598
|
+
:address:
|
599
|
+
:street: O'Reilly Lodge
|
600
|
+
:number: "87436"
|
601
|
+
:city: Sherwoodhaven
|
602
|
+
:state: Kansas
|
603
|
+
:country: United Arab Emirates
|
604
|
+
- :name: Dr. Donnell Tillman
|
605
|
+
:address:
|
606
|
+
:street: MacGyver View
|
607
|
+
:number: "471"
|
608
|
+
:city: Gaylordmouth
|
609
|
+
:state: South Dakota
|
610
|
+
:country: Ecuador
|
611
|
+
- :name: Kaleigh Cronin DVM
|
612
|
+
:address:
|
613
|
+
:street: Stanton Stravenue
|
614
|
+
:number: "68754"
|
615
|
+
:city: Gerlachville
|
616
|
+
:state: Wyoming
|
617
|
+
:country: Netherlands Antilles
|
618
|
+
- :name: Amelia Jacobs
|
619
|
+
:address:
|
620
|
+
:street: Maxwell Fall
|
621
|
+
:number: "6645"
|
622
|
+
:city: Bradlyport
|
623
|
+
:state: Minnesota
|
624
|
+
:country: Jordan
|
625
|
+
- :name: Candelario Zboncak
|
626
|
+
:address:
|
627
|
+
:street: Aurore Pines
|
628
|
+
:number: "8874"
|
629
|
+
:city: Hoegerchester
|
630
|
+
:state: Colorado
|
631
|
+
:country: Saint Martin
|
632
|
+
- :name: Patricia Kirlin
|
633
|
+
:address:
|
634
|
+
:street: Fritsch Brook
|
635
|
+
:number: "815"
|
636
|
+
:city: Feeneyhaven
|
637
|
+
:state: Louisiana
|
638
|
+
:country: Libyan Arab Jamahiriya
|
639
|
+
- :name: Mallory Rau
|
640
|
+
:address:
|
641
|
+
:street: Crist Field
|
642
|
+
:number: "37808"
|
643
|
+
:city: Fadelchester
|
644
|
+
:state: Arizona
|
645
|
+
:country: Slovenia
|
646
|
+
- :name: Ned Christiansen
|
647
|
+
:address:
|
648
|
+
:street: Gleichner Trafficway
|
649
|
+
:number: "4054"
|
650
|
+
:city: North Lemuelside
|
651
|
+
:state: Maine
|
652
|
+
:country: Maldives
|
653
|
+
- :name: Rory Rohan
|
654
|
+
:address:
|
655
|
+
:street: Hilda Point
|
656
|
+
:number: "3705"
|
657
|
+
:city: Kington
|
658
|
+
:state: Connecticut
|
659
|
+
:country: Luxembourg
|
660
|
+
- :name: Osbaldo Kutch
|
661
|
+
:address:
|
662
|
+
:street: Tromp Junction
|
663
|
+
:number: "735"
|
664
|
+
:city: Mayertown
|
665
|
+
:state: Hawaii
|
666
|
+
:country: Uzbekistan
|
667
|
+
- :name: Edythe Lueilwitz
|
668
|
+
:address:
|
669
|
+
:street: Trantow Street
|
670
|
+
:number: "542"
|
671
|
+
:city: Lake Markus
|
672
|
+
:state: Oklahoma
|
673
|
+
:country: French Southern Territories
|
674
|
+
- :name: Yoshiko Torp
|
675
|
+
:address:
|
676
|
+
:street: Lonnie Centers
|
677
|
+
:number: "92901"
|
678
|
+
:city: Lake Quinton
|
679
|
+
:state: Rhode Island
|
680
|
+
:country: Spain
|
681
|
+
- :name: Al O'Connell III
|
682
|
+
:address:
|
683
|
+
:street: Schmeler Green
|
684
|
+
:number: "21369"
|
685
|
+
:city: Zettaside
|
686
|
+
:state: Idaho
|
687
|
+
:country: Holy See (Vatican City State)
|
688
|
+
- :name: Jermain Lowe
|
689
|
+
:address:
|
690
|
+
:street: Maddison Orchard
|
691
|
+
:number: "8930"
|
692
|
+
:city: Marksfurt
|
693
|
+
:state: Oregon
|
694
|
+
:country: Antigua and Barbuda
|
695
|
+
- :name: Cydney Turcotte PhD
|
696
|
+
:address:
|
697
|
+
:street: Keeling Field
|
698
|
+
:number: "2945"
|
699
|
+
:city: Reganland
|
700
|
+
:state: Michigan
|
701
|
+
:country: Svalbard & Jan Mayen Islands
|