neatjson 0.8 → 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +13 -10
- data/lib/neatjson.rb +10 -8
- data/neatjson.gemspec +1 -1
- data/test/large.json +401 -0
- data/test/test_neatjson.rb +7 -2
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c99029c0e8a8363d4ab6bd23f896d1fedcc974c4
|
4
|
+
data.tar.gz: 3333be532eb6cd3727112ab8a1545f112c59355a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 419059cab47ec8ac138eaebbd010fb73743c42c044ebc57248ede55633023a53a010a3dc5eb402fc2756d006dd7982297e6b8921b41f56fe56950d782aad04a8
|
7
|
+
data.tar.gz: d0fb8d4847415517f6ec0a5007c68a100abacb0d46010ea549e38df1a8e407caf92f4dbaa1c716d6b6b53fb31d884f83379dd84a0f7a64076258492711ecaad1
|
data/README.md
CHANGED
@@ -155,35 +155,35 @@ For example:
|
|
155
155
|
# Ruby sorting examples
|
156
156
|
obj = {e:3, a:2, c:3, b:2, d:1, f:3}
|
157
157
|
|
158
|
-
JSON.neat_generate obj, sort:true
|
158
|
+
JSON.neat_generate obj, sort:true # sort by key name
|
159
159
|
#=> {"a":2,"b":2,"c":3,"d":1,"e":3,"f":3}
|
160
160
|
|
161
|
-
JSON.neat_generate obj,
|
161
|
+
JSON.neat_generate obj, sort:->(k){ k } # sort by key name (long way)
|
162
162
|
#=> {"a":2,"b":2,"c":3,"d":1,"e":3,"f":3}
|
163
163
|
|
164
|
-
JSON.neat_generate obj,
|
164
|
+
JSON.neat_generate obj, sort:->(k,v){ [-v,k] } # sort by descending value, ascending key
|
165
165
|
#=> {"c":3,"e":3,"f":3,"a":2,"b":2,"d":1}
|
166
166
|
|
167
|
-
JSON.neat_generate obj,
|
167
|
+
JSON.neat_generate obj, sort:->(k,v,h){ h.values.count(v) } # sort by count of keys with same value
|
168
168
|
#=> {"d":1,"a":2,"b":2,"e":3,"c":3,"f":3}
|
169
169
|
~~~
|
170
170
|
|
171
171
|
~~~ js
|
172
|
-
|
172
|
+
// JavaScript sorting examples
|
173
173
|
var obj = {e:3, a:2, c:3, b:2, d:1, f:3};
|
174
174
|
|
175
|
-
neatJSON( obj, {sort:true} );
|
175
|
+
neatJSON( obj, {sort:true} ); // sort by key name
|
176
176
|
// {"a":2,"b":2,"c":3,"d":1,"e":3,"f":3}
|
177
177
|
|
178
|
-
neatJSON( obj, {
|
178
|
+
neatJSON( obj, { sort:function(k){ return k }} ); // sort by key name (long way)
|
179
179
|
// {"a":2,"b":2,"c":3,"d":1,"e":3,"f":3}
|
180
180
|
|
181
|
-
neatJSON( obj, {
|
181
|
+
neatJSON( obj, { sort:function(k,v){ return -v }} ); // sort by descending value
|
182
182
|
// {"e":3,"c":3,"f":3,"a":2,"b":2,"d":1}
|
183
183
|
|
184
184
|
var countByValue = {};
|
185
185
|
for (var k in obj) countByValue[obj[k]] = (countByValue[obj[k]]||0) + 1;
|
186
|
-
neatJSON( obj, {
|
186
|
+
neatJSON( obj, { sort:function(k,v,h){ return countByValue[v] } } ); // sort by count of same value
|
187
187
|
// {"d":1,"a":2,"b":2,"e":3,"c":3,"f":3}
|
188
188
|
~~~
|
189
189
|
|
@@ -192,7 +192,7 @@ _Note that the JavaScript version of NeatJSON does not provide a mechanism for c
|
|
192
192
|
|
193
193
|
## License & Contact
|
194
194
|
|
195
|
-
NeatJSON is copyright ©2015 by Gavin Kistner and is released under
|
195
|
+
NeatJSON is copyright ©2015–2016 by Gavin Kistner and is released under
|
196
196
|
the [MIT License](http://www.opensource.org/licenses/mit-license.php).
|
197
197
|
See the LICENSE.txt file for more details.
|
198
198
|
|
@@ -208,6 +208,9 @@ For other communication you can [email the author directly](mailto:!@phrogz.net?
|
|
208
208
|
|
209
209
|
## HISTORY
|
210
210
|
|
211
|
+
* **v0.8.1** - April 22nd, 2016
|
212
|
+
* Make NeatJSON work with [Opal](http://opalrb.org) (by removing all in-place string mutations)
|
213
|
+
|
211
214
|
* **v0.8** - April 21st, 2016
|
212
215
|
* Allow `sort` to take a lambda for customized sorting of object key/values.
|
213
216
|
|
data/lib/neatjson.rb
CHANGED
@@ -25,7 +25,7 @@ module JSON
|
|
25
25
|
# @option opts [Integer] :around_colon_1 (0) Number of spaces to put before/after colons for single-line objects.
|
26
26
|
# @option opts [Integer] :before_colon_1 (0) Number of spaces to put before colons for single-line objects.
|
27
27
|
# @option opts [Integer] :after_colon_1 (0) Number of spaces to put after colons for single-line objects.
|
28
|
-
# @option opts [Integer] :
|
28
|
+
# @option opts [Integer] :aroun_n (0) Number of spaces to put before/after colons for multi-line objects.
|
29
29
|
# @option opts [Integer] :before_colon_n (0) Number of spaces to put before colons for multi-line objects.
|
30
30
|
# @option opts [Integer] :after_colon_n (0) Number of spaces to put after colons for multi-line objects.
|
31
31
|
# @return [String] the JSON representation of the object.
|
@@ -33,6 +33,7 @@ module JSON
|
|
33
33
|
# The lambda for the `sort` option will be passed the string name of the key, the value, and the hash for the object being sorted.
|
34
34
|
# The values returned for all keys must be all comparable, or an error will occur.
|
35
35
|
def self.neat_generate(object,opts={})
|
36
|
+
opts ||= {}
|
36
37
|
opts[:wrap] = 80 unless opts.key?(:wrap)
|
37
38
|
opts[:wrap] = -1 if opts[:wrap]==true
|
38
39
|
opts[:indent] ||= " "
|
@@ -81,8 +82,8 @@ module JSON
|
|
81
82
|
elsif opts[:short]
|
82
83
|
indent2 = "#{indent} #{apad}"
|
83
84
|
pieces = o.map{ |v| build[ v,indent2 ] }
|
84
|
-
pieces[0].sub
|
85
|
-
pieces.
|
85
|
+
pieces[0] = pieces[0].sub indent2, "#{indent}[#{apad}"
|
86
|
+
pieces[pieces.length-1] = "#{pieces.last}#{apad}]"
|
86
87
|
pieces.join ",\n"
|
87
88
|
else
|
88
89
|
indent2 = "#{indent}#{opts[:indent]}"
|
@@ -111,10 +112,11 @@ module JSON
|
|
111
112
|
else
|
112
113
|
if opts[:short]
|
113
114
|
keyvals = o.map{ |k,v| ["#{indent} #{opad}#{k.to_s.inspect}",v] }
|
114
|
-
keyvals[0][0].sub
|
115
|
+
keyvals[0][0] = keyvals[0][0].sub "#{indent} ", "#{indent}{"
|
115
116
|
if opts[:aligned]
|
116
117
|
longest = keyvals.map(&:first).map(&:length).max
|
117
|
-
|
118
|
+
formatk = "%-#{longest}s"
|
119
|
+
keyvals.map!{ |k,v| [ formatk % k,v] }
|
118
120
|
end
|
119
121
|
keyvals.map! do |k,v|
|
120
122
|
indent2 = " "*"#{k}#{colonn}".length
|
@@ -125,13 +127,14 @@ module JSON
|
|
125
127
|
one_line
|
126
128
|
end
|
127
129
|
end
|
128
|
-
keyvals.join(",\n")
|
130
|
+
"#{keyvals.join(",\n")}#{opad}}"
|
129
131
|
else
|
130
132
|
keyvals = o.map{ |k,v| ["#{indent}#{opts[:indent]}#{k.to_s.inspect}",v] }
|
131
133
|
keyvals = keyvals.sort_by(&:first) if opts[:sorted]
|
132
134
|
if opts[:aligned]
|
133
135
|
longest = keyvals.map(&:first).map(&:length).max
|
134
|
-
|
136
|
+
formatk = "%-#{longest}s"
|
137
|
+
keyvals.map!{ |k,v| [ formatk % k,v] }
|
135
138
|
end
|
136
139
|
indent2 = "#{indent}#{opts[:indent]}"
|
137
140
|
keyvals.map! do |k,v|
|
@@ -155,4 +158,3 @@ module JSON
|
|
155
158
|
build[object,'']
|
156
159
|
end
|
157
160
|
end
|
158
|
-
|
data/neatjson.gemspec
CHANGED
data/test/large.json
ADDED
@@ -0,0 +1,401 @@
|
|
1
|
+
[ { "_id" : "571a50573f1fe7fd05093129",
|
2
|
+
"index" : 0,
|
3
|
+
"guid" : "499370c4-1712-453f-a8a1-a63158092ee4",
|
4
|
+
"isActive" : false,
|
5
|
+
"balance" : "$3,080.93",
|
6
|
+
"picture" : "http://placehold.it/32x32",
|
7
|
+
"age" : 39,
|
8
|
+
"eyeColor" : "green",
|
9
|
+
"name" : "Beasley Sloan",
|
10
|
+
"gender" : "male",
|
11
|
+
"company" : "MICROLUXE",
|
12
|
+
"email" : "beasleysloan@microluxe.com",
|
13
|
+
"phone" : "+1 (856) 545-2974",
|
14
|
+
"address" : "674 Brooklyn Road, Gloucester, Kansas, 2683",
|
15
|
+
"about" : "Amet sit consectetur proident sunt do officia esse ipsum in cillum pariatur. Eiusmod consequat magna proident consectetur eiusmod ea velit sunt mollit commodo ut. Elit irure amet ipsum commodo dolore pariatur deserunt ut pariatur cupidatat elit in laboris. Dolor qui deserunt sit sint nulla id eiusmod deserunt. Velit laborum elit fugiat Lorem commodo magna nostrud exercitation. Qui aliquip duis ullamco eu occaecat ut nisi.\r\n",
|
16
|
+
"registered" : "2015-10-14T09:14:03 +06:00",
|
17
|
+
"latitude" : -9,
|
18
|
+
"longitude" : 123,
|
19
|
+
"tags" : [ "enim", "incididunt", "reprehenderit", "do", "sit", "labore", "commodo", "nisi", "eiusmod", "excepteur", "sunt", "elit", "velit", "nostrud", "nostrud", "do", "elit", "ipsum", "aute", "do" ],
|
20
|
+
"digits" : [ -8295,5538,4995,4891,-1803,-8380,-302,1283,3171,-3576,-8569,-4747,9776,9962,-2806,-7096,-6016,5071,-9070,8925,-5851,8251,-2045,7718,-3063,-2659,-5592,-9618,-5461,6650,1014,-3348,9854,-9609,859,-6102,7016,1892,1493,8625,6185,3838,3903,5614,7487,2634,5614,3779,8111,-1749,-5485,4156,-1867,9099,-5434,-6050,-8911,-4714,5318,-1297,5656,-8328,-7657,2215,2741,-896,5471,-5368,5796,879,5269,-8181,-6526,9830,6193,4969,547,-5749,-8030,4460,-3794,7756,1854,2768,-8087,-4328,5536,7436,-2716,9451,-6049,-1175,8901,-3590,7294,-9688,-8322,9396,2060,-3532,7411,-9891,-8937,-7063,-7621,-2621,-5894,6732,815,1035,-203,-6329,-9889,-3939,-8055,2733,1021,-5193,1803,-452,5736,7983,-67,-7224,9410,-2431,441,-1608,3146,5299,-7843,8451,5126,-5306,-7744,8908,4543,4425,-9391,5699,3267,-9504,1944,1027,-6210,5298,-5537,-7821,6708,6573,-3879,1286,-9154,6714,3322,8826,3874,-9485,-7294,5227,-9827,-903,8275,-898,-5109,3589,-2440,5951,-4641,90,-8570,7769,358,-232,7436,-8378,8777,-5594,-163,-4373,-4237,-6586,427,-3247,5173,5772,3730,-5315,2997,7986,-4441,8595,-73,-6691,-4356,9179,-6068,5203,8329,-6761,-6382,-3048,6508,4402,9391,-9914,-2193,-9567,-3219,7114,2073,4718,-5675,-7350,-4027,-4328,-2995,4892,9828,-708,-733,4392,-1491,-7138,4620,9324,-2234,8207,-6347,1382,3657,3014,3206,7657,4729,-492,-1002,7542,7771,7494,-4811,-412,2911,-9199,-5855,-7392,7131,3250,5580,6188,3509,-730,836,-2152,176,5250,-5624,-93,8962,5334,161,-487,-2894,-4488,-2899,-4873,-4873,1670,9880,-3890,-6240,5396,7731,-3616,4774,-755,7981,-5371,6968,-177,7453,8415,-4600,-147,-1679,-7771,-9570,366,-292,4837,-2998,-4390,-3670,2725,-9299,4543,-4647,7970,971,3612,2018,-3925,-2000,9929,4907,5449,-6227,-8710,-4641,2846,8873,7041,8665,5932,4862,9272,-7216,-3423,8227,1868,3050,2762,6093,-725,7817,5575,-4045,-9320,-5524,2606,9866,4907,8902,-368,-1693,7841,579,-4734,2394,-2485,4836,-7039,7033,8867,61,8380,1733,8118,-9294,5958,2895,-9596,3225,9326,-9849,-9080,1911,-1649,6781,-6312,-5862,-4143,-4167,2194,5970,-6053,-5213,6859,-6483,-5513,4838,-9832,-1600,-82,2306,8450,-1719,-4094,8689,7228,-460,6088,590,4420,-3899,-1064,6454,1903,8221,3302,3521,9437,6249,-3870,-7597,2182,-3161,-9174,8480,-8185,-4592,-2658,-4433,6304,4813,8687,2887,-3187,-5096,-2805,-4732,-13,7994,2644,-6172,-7077,6566,-5536,-268,-8037,251,-1179,-8009,4532,7576,-2976,3828,-1190,-5582,-8009,5,-1407,371,6004,-7465,9480,-1626,3611,-1888,9399,9352,-7615,1772,5872,-5881,2241,-2217,-1962,176,-7350,-7818,-7783,1111,-9327,-3278,-2824,7846,-9329,-8405,3386,-875,2234,-2768,-2056,-425,-5774,1958,-2945,3959,5929,-8342,-5298,6879,8097,-4542,8006,4502,5897,5226,9967,-7829,1885,3503,5520,-8890,4279,986,-9247,-9088,-4583,-1542,9013,5270,-5607,1801,3031,-6834,-7545,-389,-4958 ],
|
21
|
+
"friends" : [ { "id":0, "name":"Lawson Burke" },
|
22
|
+
{ "id":1, "name":"Anthony Gallagher" },
|
23
|
+
{ "id":2, "name":"Tamera York" },
|
24
|
+
{ "id":3, "name":"Calhoun Wallace" },
|
25
|
+
{ "id":4, "name":"Powell Harding" },
|
26
|
+
{ "id":5, "name":"April Payne" },
|
27
|
+
{ "id":6, "name":"Melton Kane" },
|
28
|
+
{ "id":7, "name":"Herrera Smith" },
|
29
|
+
{ "id":8, "name":"Cook Lloyd" },
|
30
|
+
{ "id":9, "name":"Mosley Steele" },
|
31
|
+
{ "id":10, "name":"Ella Guzman" },
|
32
|
+
{ "id":11, "name":"Annabelle Galloway" },
|
33
|
+
{ "id":12, "name":"Audra Potter" },
|
34
|
+
{ "id":13, "name":"Kara Parks" },
|
35
|
+
{ "id":14, "name":"Nannie Mcdowell" },
|
36
|
+
{ "id":15, "name":"Robert Stevenson" },
|
37
|
+
{ "id":16, "name":"Helga Hurley" },
|
38
|
+
{ "id":17, "name":"Gordon Everett" },
|
39
|
+
{ "id":18, "name":"Lila Stephens" },
|
40
|
+
{ "id":19, "name":"Kathie Burns" } ],
|
41
|
+
"greeting" : "Hello, Beasley Sloan! You have 2 unread messages.",
|
42
|
+
"favoriteFruit" : "apple" },
|
43
|
+
{ "_id" : "571a5057f782ddea4fcb99c2",
|
44
|
+
"index" : 1,
|
45
|
+
"guid" : "b928f0b2-2b31-483c-8834-c21636e470e4",
|
46
|
+
"isActive" : true,
|
47
|
+
"balance" : "$3,871.19",
|
48
|
+
"picture" : "http://placehold.it/32x32",
|
49
|
+
"age" : 34,
|
50
|
+
"eyeColor" : "brown",
|
51
|
+
"name" : "Nadine Frederick",
|
52
|
+
"gender" : "female",
|
53
|
+
"company" : "CUBICIDE",
|
54
|
+
"email" : "nadinefrederick@cubicide.com",
|
55
|
+
"phone" : "+1 (835) 542-3341",
|
56
|
+
"address" : "861 Sullivan Street, Greensburg, Nebraska, 5413",
|
57
|
+
"about" : "Adipisicing labore dolor duis sint. Ipsum aute id sit nostrud excepteur consectetur do anim. Veniam culpa sint ullamco nisi duis. Pariatur incididunt ut sint velit pariatur ut mollit. Esse eu do enim excepteur tempor amet labore laborum cupidatat dolor esse mollit. Veniam amet sit officia incididunt ipsum exercitation in mollit nisi consectetur duis incididunt aute ut. Est est amet labore ad commodo labore fugiat aliquip deserunt ipsum amet non consequat.\r\n",
|
58
|
+
"registered" : "2014-03-30T05:51:52 +06:00",
|
59
|
+
"latitude" : -25,
|
60
|
+
"longitude" : 75,
|
61
|
+
"tags" : [ "Lorem", "amet", "magna", "ad", "adipisicing", "quis", "et", "in", "ut", "consequat", "dolor", "tempor", "occaecat", "veniam", "in", "officia", "magna", "fugiat", "ipsum", "excepteur" ],
|
62
|
+
"digits" : [ -611,-8225,8589,4433,-2552,-8688,-119,-6499,7018,9777,-8501,9665,-6166,-4149,4048,-1562,3399,-6221,-7043,3616,5782,-7177,-6706,5715,-5235,4515,8152,8344,-3505,9603,-1092,1959,8079,-6274,9431,2420,9577,3239,2418,-3545,1755,-1479,2133,-224,6051,-9873,8011,7372,-91,-222,-7744,2985,-7343,9375,-4353,4121,-5033,-7918,-3967,3934,-8653,-4487,-9143,1455,8289,1945,-4895,-6539,-9896,9869,-4029,9626,3074,-4657,-2391,-4545,-1689,848,-6257,5291,-9080,-3706,3895,-9288,5569,-7942,8686,-2419,-9237,-6700,-7547,-5125,501,4606,-4808,4317,-6501,-7768,4294,-7901,6588,-3152,-5415,-7984,-233,4785,-9618,-7043,3532,3042,4975,-6891,5807,-3137,2762,8550,2757,8450,992,-9745,-9990,7174,5139,-944,5737,-4488,4341,-9407,-7338,6114,3808,-4987,-8626,-5823,5745,3405,-4923,2056,-8902,-7776,-1275,9476,-3823,-5142,3822,532,2547,-5077,3370,-5742,-9207,-3737,-9979,5788,-8352,3840,-7717,-3135,2458,5000,4304,4560,-9031,8782,-3103,2702,-6409,4308,9522,-6443,-4528,-3970,-792,7018,-6831,2503,-5282,2934,-5637,449,-516,4698,-5495,-3627,6498,-9937,8289,9731,-2699,-1979,-3092,-8470,-4631,-5517,-6465,-3695,-1226,9874,3731,-1235,-5604,-47,-3464,4990,712,9279,-6672,-2469,9936,1664,-1327,-3479,-3933,559,1951,-1965,-4814,-8695,3203,-2498,-9269,3124,-11,-8754,-9922,1690,6734,5770,-2186,1954,-7694,1996,-1000,-7868,7315,-6199,6795,-2949,7922,-8345,-8313,7146,-4307,-3337,8281,7164,5439,6472,-3451,6300,-9056,3138,5736,7646,-2818,-1707,6539,-1780,-706,1302,63,-1367,-4797,8288,-4962,-2293,6628,-5636,-5932,-6815,-8334,6768,3999,-5425,9668,6457,-927,5334,860,-5345,-4498,-8856,-2033,8097,2561,5231,4152,-8985,8841,-1280,6198,-3569,4626,8724,5268,8533,-3902,-997,-9657,725,2172,7340,6,-3868,9472,6818,-8220,-2126,-4128,9402,-7924,-8900,3308,1032,-854,3402,-5761,-7749,8671,-9427,-4440,605,9257,-5967,3684,2314,6781,-7476,3883,-2052,4809,-3181,9678,9909,-674,1746,1482,-1873,5708,-5946,-9943,532,-3133,9902,-9930,-4517,2912,-5613,6071,152,-838,-6336,4355,2728,-6583,4930,8640,-1018,4949,-5313,-4284,4099,-8165,4741,255,-3660,6128,-935,509,-3462,-4285,-8403,7963,8005,6271,-6206,-5482,8565,-5731,-1178,-7564,-3141,7106,-3936,-3152,7503,2706,8087,-8932,510,-4655,-760,-2445,1647,2101,3254,-5867,-578,9071,8691,-3838,9088,5614,-4048,-9312,2591,7172,9537,-1912,-214,-3515,-8213,266,-5014,-9495,3478,-241,-720,-8477,-9714,8053,7459,-2668,-1411,-1235,8726,8726,-6671,-2615,7283,-5146,6410,-7841,-4860,-9282,-2298,19,-8189,1598,7052,6576,-116,1645,-762,7334,29,-5643,-6192,7516,3634,2040,3300,-7255,-5565,4805,7200,683,-2921,-5424,-6361,1911,8078,-7632,-5963,4150,-9689,5205,-3603,-366,-9931,1704,-7578,5293,7604,-8617,3796,8948,-865,-9871,-6999,-2464,2873,9298,9676,-8050,-1538,-8751,-2458,-5293,-8214,9414,-4883,-8509,2016,9933,4771,-7293,-2988,452,-8766 ],
|
63
|
+
"friends" : [ { "id":0, "name":"Elaine Ochoa" },
|
64
|
+
{ "id":1, "name":"Russell Brown" },
|
65
|
+
{ "id":2, "name":"Patton Terrell" },
|
66
|
+
{ "id":3, "name":"Jessie Hayes" },
|
67
|
+
{ "id":4, "name":"Pope Church" },
|
68
|
+
{ "id":5, "name":"Hattie Rasmussen" },
|
69
|
+
{ "id":6, "name":"Nicholson Lawrence" },
|
70
|
+
{ "id":7, "name":"Melinda Meyers" },
|
71
|
+
{ "id":8, "name":"Tanya Alvarez" },
|
72
|
+
{ "id":9, "name":"Tami Young" },
|
73
|
+
{ "id":10, "name":"Phoebe Huber" },
|
74
|
+
{ "id":11, "name":"Mercer Norman" },
|
75
|
+
{ "id":12, "name":"Tia Callahan" },
|
76
|
+
{ "id":13, "name":"Johnston Pollard" },
|
77
|
+
{ "id":14, "name":"Sanford Newman" },
|
78
|
+
{ "id":15, "name":"Deann Blankenship" },
|
79
|
+
{ "id":16, "name":"Trisha Reyes" },
|
80
|
+
{ "id":17, "name":"Claudine Gilbert" },
|
81
|
+
{ "id":18, "name":"Holloway Davidson" },
|
82
|
+
{ "id":19, "name":"Latisha Park" } ],
|
83
|
+
"greeting" : "Hello, Nadine Frederick! You have 5 unread messages.",
|
84
|
+
"favoriteFruit" : "strawberry" },
|
85
|
+
{ "_id" : "571a505711170a705ba6da63",
|
86
|
+
"index" : 2,
|
87
|
+
"guid" : "39d5b6ca-b282-4337-9623-d6026d0f245d",
|
88
|
+
"isActive" : false,
|
89
|
+
"balance" : "$1,529.03",
|
90
|
+
"picture" : "http://placehold.it/32x32",
|
91
|
+
"age" : 24,
|
92
|
+
"eyeColor" : "brown",
|
93
|
+
"name" : "Althea Fuller",
|
94
|
+
"gender" : "female",
|
95
|
+
"company" : "CUIZINE",
|
96
|
+
"email" : "altheafuller@cuizine.com",
|
97
|
+
"phone" : "+1 (939) 434-3380",
|
98
|
+
"address" : "227 Tiffany Place, Seymour, American Samoa, 8300",
|
99
|
+
"about" : "Commodo dolor cillum esse anim cupidatat voluptate eu ullamco ex eiusmod duis deserunt. Nostrud mollit proident do eiusmod. Ut tempor aliqua esse Lorem dolor occaecat. Et nisi anim aliqua occaecat Lorem eu. Eiusmod eu laborum laboris cupidatat nostrud.\r\n",
|
100
|
+
"registered" : "2014-01-30T08:55:35 +07:00",
|
101
|
+
"latitude" : -70,
|
102
|
+
"longitude" : 174,
|
103
|
+
"tags" : [ "reprehenderit", "esse", "officia", "ipsum", "et", "adipisicing", "ullamco", "pariatur", "ipsum", "excepteur", "nulla", "ullamco", "consequat", "incididunt", "aute", "in", "ut", "quis", "esse", "fugiat" ],
|
104
|
+
"digits" : [ 7351,1489,9824,-273,7095,-9329,7831,8185,-4228,-5933,-9679,-1635,-4051,-7461,8221,-2958,-125,4691,9800,-377,6091,141,5301,-8102,-8983,8136,6104,5835,-5310,-9128,3101,1433,-70,-6005,2694,-3746,-6430,5929,-7018,-9333,-2265,-7839,4046,-6828,4876,4105,-2535,9365,-769,-1200,4732,-7713,-2,-9933,-4169,6457,-1731,6878,-7813,-4601,-1337,-4764,-5734,243,-7498,-8893,-820,9354,-2476,-1250,5475,-2590,4823,-4570,4188,-7284,-409,7089,5836,-6211,-2648,-3615,8020,-5146,9501,511,7953,-3973,-3057,-4934,7951,-9033,-4349,1890,-5470,-5534,-5928,-1585,-6533,-5727,5069,8503,6795,2870,-5503,5494,4446,8727,-4653,-5174,-6787,-7689,4279,-9051,1480,1512,9101,-9050,2165,3278,7130,-8028,-5824,2435,9297,2562,-5523,8649,-7133,3876,-6761,-7617,2927,-7523,5459,9473,6673,-3037,4119,807,1762,-2972,4286,-3105,7504,-2281,-9272,399,-4906,6300,-9724,4460,-3334,-5967,1595,7716,8346,4550,-4991,7359,-2307,-453,-2276,882,4737,2699,4726,-7428,993,2144,7752,-8346,-9823,7795,2590,-2888,-8163,5883,2913,-3109,9952,3187,-1583,1540,8427,267,-2437,8052,-7004,8499,7659,-1366,-762,9278,8002,-5779,8627,9394,3138,-6741,2864,-9383,-5712,5802,8785,3829,7790,-698,7022,1243,-7158,-9658,-1694,4824,-823,2875,-8056,4784,-5801,-7196,-2233,1663,8951,-189,-6909,-9980,4919,-5875,5155,-8098,3699,-1772,-2360,-2815,7536,-1057,-596,9518,-1250,-1153,9789,-5707,966,8543,8810,7251,-1733,9981,-3958,4823,-8518,7955,6190,8416,8633,-7362,9137,-878,289,7302,3377,586,2255,-6951,8520,6258,-9997,-3306,-2346,-7829,-3487,-2731,-9701,2511,4525,5048,6088,-4610,3646,9072,-9795,3538,-2994,7205,7902,4104,-9374,-6599,-6524,-2832,-6006,-5427,-1218,5331,-6440,-2936,7326,-2273,9980,-9975,6729,-6238,-1958,8100,2736,3822,-8854,7230,4529,1981,2801,-3851,-4962,-4554,9862,-8607,-4813,4412,-9022,-1727,5295,-3661,2012,4484,5631,-4552,-4755,-4086,-9116,5237,-7021,-6493,-2296,9762,-3146,-3547,-1809,1429,5172,-2185,-1052,2217,2481,6381,-2776,217,-950,-5924,493,-3246,-9237,237,-2797,7217,4239,2844,-397,7510,-9128,-4945,-4700,3258,-3651,-9679,2283,-7422,1041,-4646,-7275,4347,-4413,-4882,-3159,821,-1659,-2088,-37,9507,-2444,-7407,9244,8962,-6483,-2757,-7443,-2317,62,-4835,-3859,5246,3016,-8264,5738,-4428,-27,4871,-1152,-8742,-3078,-3735,-8034,125,-6074,8292,-1469,2810,5433,-9511,-6632,8857,-9304,-6235,-6649,2099,-9038,9857,7467,1993,-4324,1270,9621,-3671,-4296,3320,-351,272,-3989,8457,-4524,-2361,5501,3143,-6054,4608,-7631,-8368,624,-9906,-4633,-8241,-9043,9981,6262,9493,-8647,8730,-5664,4336,-6517,9625,-4075,6021,-5468,8122,7379,8138,6754,1692,7947,-4048,1626,-8554,-7237,-7082,-492,-7797,6036,-9968,-24,744,-5280,7361,-7957,865,6369,6255,-8268,-5047,-1966,-6338,-4318,16,-4930,6891,-83,-9371,-2439,7857,1817,2707,-3882,-875,-7245,-2575,7460,4362,2548,-9685,-5065,5097 ],
|
105
|
+
"friends" : [ { "id":0, "name":"Haney Cash" },
|
106
|
+
{ "id":1, "name":"Dana Rosa" },
|
107
|
+
{ "id":2, "name":"Odessa Jefferson" },
|
108
|
+
{ "id":3, "name":"Freeman Owens" },
|
109
|
+
{ "id":4, "name":"Ila Levy" },
|
110
|
+
{ "id":5, "name":"Velazquez Madden" },
|
111
|
+
{ "id":6, "name":"Bond Cotton" },
|
112
|
+
{ "id":7, "name":"Ashley Clemons" },
|
113
|
+
{ "id":8, "name":"Bernice Brewer" },
|
114
|
+
{ "id":9, "name":"Shaw Douglas" },
|
115
|
+
{ "id":10, "name":"Albert Dawson" },
|
116
|
+
{ "id":11, "name":"Pugh Conway" },
|
117
|
+
{ "id":12, "name":"Haley Buckner" },
|
118
|
+
{ "id":13, "name":"Barker Bowers" },
|
119
|
+
{ "id":14, "name":"Berger Joseph" },
|
120
|
+
{ "id":15, "name":"Natalia Mcfadden" },
|
121
|
+
{ "id":16, "name":"Conner Cherry" },
|
122
|
+
{ "id":17, "name":"Mcbride Bernard" },
|
123
|
+
{ "id":18, "name":"Lynnette Houston" },
|
124
|
+
{ "id":19, "name":"Castillo Cooper" } ],
|
125
|
+
"greeting" : "Hello, Althea Fuller! You have 5 unread messages.",
|
126
|
+
"favoriteFruit" : "banana" },
|
127
|
+
{ "_id" : "571a5057ed652724b818ab1e",
|
128
|
+
"index" : 3,
|
129
|
+
"guid" : "202583c7-4428-43d0-9cf8-46abbd191980",
|
130
|
+
"isActive" : false,
|
131
|
+
"balance" : "$2,926.09",
|
132
|
+
"picture" : "http://placehold.it/32x32",
|
133
|
+
"age" : 33,
|
134
|
+
"eyeColor" : "green",
|
135
|
+
"name" : "Riggs Tucker",
|
136
|
+
"gender" : "male",
|
137
|
+
"company" : "COMSTAR",
|
138
|
+
"email" : "riggstucker@comstar.com",
|
139
|
+
"phone" : "+1 (941) 408-2265",
|
140
|
+
"address" : "263 Ryder Street, Kula, Michigan, 4345",
|
141
|
+
"about" : "Aliquip tempor sit cillum enim exercitation velit magna voluptate ad ullamco sit Lorem reprehenderit commodo. Ex cillum voluptate incididunt aute incididunt ut voluptate ad enim. Exercitation duis eu culpa culpa dolore. Nulla ea eu occaecat magna consequat eu ullamco laborum excepteur tempor amet. Do voluptate duis sint non consequat reprehenderit ad est incididunt do irure incididunt eiusmod. Commodo fugiat nisi eiusmod qui adipisicing excepteur. Amet in proident aliqua amet nulla ullamco pariatur do voluptate fugiat cillum.\r\n",
|
142
|
+
"registered" : "2014-06-19T11:19:35 +06:00",
|
143
|
+
"latitude" : -26,
|
144
|
+
"longitude" : 32,
|
145
|
+
"tags" : [ "culpa", "dolore", "officia", "reprehenderit", "sint", "tempor", "eu", "ex", "ipsum", "duis", "elit", "anim", "ut", "ut", "exercitation", "ex", "mollit", "cupidatat", "tempor", "consectetur" ],
|
146
|
+
"digits" : [ 3715,9229,38,-9364,5275,-2950,1430,-7006,5161,1346,4938,-6124,-9870,-8984,3419,688,6078,7042,5316,3561,6493,-2921,7959,9050,8884,4467,9904,-7667,8469,9357,7683,7043,-7023,6823,-792,7599,-4890,2286,-9134,-7836,8155,-2290,-3920,-6032,3190,-7850,802,-373,-3319,-4533,7978,-5503,5075,9959,-717,1648,-3037,772,6980,5467,-865,6014,4,-2037,-865,1040,6360,9653,-6845,-7542,5535,-7918,-6781,168,3316,-2807,1243,4255,-7047,3841,8874,8282,5714,1423,-9237,-1363,-2370,-8461,-3663,4138,624,6720,1903,-2070,-2254,-943,-8511,-3551,-8151,-1092,-8551,-5593,5735,-3875,9545,4483,-904,2153,8973,1524,6157,6340,3299,149,-9020,3792,9566,-5894,8090,-4264,-9031,-8636,2077,-6904,-7682,-6635,-2781,8004,565,-2464,-1657,4271,3456,5105,-727,-2119,-7359,-3787,5350,-9180,3316,2585,691,-1852,3422,-8595,960,-6443,6018,-9685,3731,3265,-8907,8892,69,-6632,-7375,5236,6053,1572,6447,7472,4404,8638,-4538,-972,-2930,-5437,4523,-369,9946,-6712,-9125,231,7623,8370,2379,6771,9666,761,-8733,2136,1002,-2427,1609,1416,-1722,-5985,-6873,-3647,-8931,8378,-3993,304,696,8253,647,6998,3373,-4978,-4193,-1765,28,-4897,4022,-5269,-315,4792,4163,6100,-8221,-2,1476,1190,2314,9781,-1956,7204,-8906,-6534,-2842,6870,144,-9215,3425,-3358,-9418,1856,-6884,-6947,9913,-8017,9414,-1670,3325,-9946,-4387,5243,-4061,-8354,-5120,-5412,8559,-9133,1922,-7782,2196,422,8329,8089,-3557,-5881,78,8962,-240,7909,-4166,297,5619,-871,8648,-7595,-1628,855,2429,-8772,4486,-5907,-178,7007,6468,-9542,3055,5442,-9217,4340,406,1779,1210,6904,-4990,-5516,-1827,2212,-751,-8726,-4870,-9480,-8779,-2447,-3267,-8063,-1349,4654,-3880,8572,4197,7103,7932,-3944,8803,2802,5278,-6165,9890,-1596,-655,-7692,-4527,-107,1761,257,4687,-9411,2487,8747,-1266,7855,-4275,4747,4044,-8094,-9690,10,-4913,9266,-4879,-4565,-1302,-9200,-2713,-7565,415,-7767,-3684,4468,3658,-6700,-4941,-6925,3844,-9411,-4741,-8967,-2601,-345,7510,-836,1645,4673,7946,3709,4042,2065,222,761,-4477,-4179,-1761,8285,5456,-8164,-7522,4028,-9649,199,8876,-3438,-1177,-5024,-8950,5601,-8546,4581,-8291,-865,-699,1276,776,-5990,8204,-4198,-3635,-2122,5232,-2470,-3934,-5268,4513,5254,-1552,-8810,-99,5840,6376,-881,-4561,5658,6592,554,4616,-1057,152,3330,8173,5695,-2978,1476,6160,9740,3067,-2239,4887,-741,3999,-8307,6666,5276,-6258,1128,8181,-192,1687,7252,-6701,1189,7194,-2732,-8813,-5803,-7521,-5529,5964,-4454,-8584,-9002,9958,-2882,322,8700,9228,-5523,-5682,-826,-3262,1767,7137,-895,3851,5303,1518,-5409,-9799,1736,-5234,5426,-3776,-1607,159,2357,4926,-8543,4522,6249,-3164,9880,6323,-8811,-8658,-4628,8407,-4183,6590,8722,3243,2050,6598,4950,-7360,1199,8924,-1074,-7909,-679,3254,955,3077,-2240,6236,5522,-7975,7103,-5018,-7605,-2414,-1810,-2307,-944,217,-1583 ],
|
147
|
+
"friends" : [ { "id":0, "name":"Norton Kramer" },
|
148
|
+
{ "id":1, "name":"Fuller Ortiz" },
|
149
|
+
{ "id":2, "name":"Yvonne Ayers" },
|
150
|
+
{ "id":3, "name":"Bertha Le" },
|
151
|
+
{ "id":4, "name":"Pitts Butler" },
|
152
|
+
{ "id":5, "name":"Marsh Guthrie" },
|
153
|
+
{ "id":6, "name":"Katelyn Bartlett" },
|
154
|
+
{ "id":7, "name":"Welch Osborn" },
|
155
|
+
{ "id":8, "name":"Melva Kennedy" },
|
156
|
+
{ "id":9, "name":"Mamie Walls" },
|
157
|
+
{ "id":10, "name":"Teresa Morse" },
|
158
|
+
{ "id":11, "name":"Angela Watkins" },
|
159
|
+
{ "id":12, "name":"Charmaine Salazar" },
|
160
|
+
{ "id":13, "name":"Tracey Bradford" },
|
161
|
+
{ "id":14, "name":"Chapman Wells" },
|
162
|
+
{ "id":15, "name":"Matilda Nichols" },
|
163
|
+
{ "id":16, "name":"Jackie Wolf" },
|
164
|
+
{ "id":17, "name":"Peck Good" },
|
165
|
+
{ "id":18, "name":"Theresa Petty" },
|
166
|
+
{ "id":19, "name":"Roslyn Patel" } ],
|
167
|
+
"greeting" : "Hello, Riggs Tucker! You have 4 unread messages.",
|
168
|
+
"favoriteFruit" : "strawberry" },
|
169
|
+
{ "_id" : "571a5057e6b354792b1ac14c",
|
170
|
+
"index" : 4,
|
171
|
+
"guid" : "9cef7561-4fda-473b-a825-e042bc0685d1",
|
172
|
+
"isActive" : true,
|
173
|
+
"balance" : "$3,879.97",
|
174
|
+
"picture" : "http://placehold.it/32x32",
|
175
|
+
"age" : 40,
|
176
|
+
"eyeColor" : "blue",
|
177
|
+
"name" : "Georgia Hardin",
|
178
|
+
"gender" : "female",
|
179
|
+
"company" : "XOGGLE",
|
180
|
+
"email" : "georgiahardin@xoggle.com",
|
181
|
+
"phone" : "+1 (847) 408-3032",
|
182
|
+
"address" : "191 Caton Avenue, Herald, Montana, 4966",
|
183
|
+
"about" : "Duis proident eiusmod nulla Lorem cillum et velit Lorem ex nisi. Duis sunt fugiat et ex minim esse voluptate consectetur excepteur ad consectetur quis. Eu velit eu cupidatat amet aute anim. Laboris mollit eiusmod esse duis eiusmod sunt exercitation eiusmod ea eu.\r\n",
|
184
|
+
"registered" : "2014-11-06T04:31:21 +07:00",
|
185
|
+
"latitude" : -55,
|
186
|
+
"longitude" : -65,
|
187
|
+
"tags" : [ "aliquip", "dolor", "nisi", "anim", "magna", "sit", "sunt", "dolor", "aute", "ea", "excepteur", "sunt", "esse", "ut", "laboris", "nostrud", "enim", "mollit", "non", "duis" ], "digits" : [ -8553, -1778, 334, 5418, 1913, 1691, 5067, 7693, 7273, -9443, -6277, -6262, -5309, 5852, -554, 5102, 7196, 8334, 1651,9851,-6100,-1212,-2930,171,4226,3119,1028,-8815,7281,2867,5823,2275,1237,1461,9177,-6919,2041,-9981,4739,-9004,-8080,8416,2151,-8738,4490,358,2035,9835,-8802,-8624,7683,7627,-4721,526,31,8745,-7786,-8486,7892,218,7530,2832,-2173,-7538,2161,-8619,6778,661,-2958,-5389,8760,4107,9163,8529,1407,3511,-3383,1961,-2348,-2718,9340,1751,-2466,229,-7000,5221,-7835,-691,6992,4132,8888,-9385,-8914,2875,4651,-4772,9654,-2061,9537,-5281,-3633,9445,-5889,-2658,-8832,-3709,2613,5960,8415,1846,6527,803,-9582,-4288,-8937,-3712,5579,-2693,-1852,1651,6198,9039,-543,5446,-1516,-7499,2694,-9949,-6375,5342,-9805,-4788,5724,-9475,-8157,1467,1757,-7705,-6277,6232,-345,-6486,-4619,-4197,-8730,-4516,656,4823,-5851,-9183,-8010,-7156,-2137,-5644,4640,-9702,-582,-7085,-1347,-1893,-227,3021,731,-4191,9671,5226,3267,272,3200,-2722,5747,-6373,-1623,9081,3123,-401,-5951,-9842,-8811,-8217,5411,2202,8864,-54,7491,7780,228,-8170,5655,-3647,-7336,7506,4388,356,-1964,628,4936,2699,-5525,2162,7964,4142,-9340,-1249,-6551,-6909,-8313,-3929,6892,-1242,-7005,8747,5852,6892,5335,-3895,-9787,-2004,-2417,-1170,-4807,-9719,614,5053,-3142,6430,-8332,-5065,7894,9379,2398,3162,-8859,9231,1139,9118,4365,-3952,1169,-6893,134,-1294,2112,6285,-8639,8399,-5632,-4867,774,5821,-619,3742,4259,511,649,1635,3974,7004,5156,-6417,-3494,8544,-5123,-9548,2775,4488,-8068,-5719,-2498,403,-3460,8483,-6719,4058,6700,224,-4293,8300,8182,5176,2063,3414,9001,-1179,8229,4984,-3549,-1796,6209,9219,-550,4199,-7712,-2847,-8451,6879,4486,-8117,-8690,6285,-1012,9564,8401,1851,-1586,4350,-7856,-3909,3281,-7385,-9429,4949,2601,-3174,109,887,3743,1045,1361,-9855,5605,2664,-5198,-2780,-8888,-7872,-9828,1727,6634,7162,-8966,-9416,-8253,5084,2111,-1120,-4813,-6934,-1444,-5709,6072,1044,3200,2710,-9000,574,1441,1846,-635,9239,9352,-6215,-7956,-3299,2920,7585,-8546,8160,4362,-2545,-2029,-3252,-9279,-9549,6374,-6839,-346,795,-4162,-4592,-1591,5560,-1681,-6190,2472,-2711,-3288,-447,-8338,-8234,-1867,-7572,3888,-7231,6204,-9066,-1047,70,-1684,-6004,-7986,-9861,-6381,754,2502,8907,-6781,7015,996,-1610,9301,4814,4886,2421,2004,3881,-6300,8091,-6505,8930,-5115,4493,8199,5807,-4354,-7329,8895,-4996,9559,1319,1025,-5883,3707,4731,1596,-3144,1311,-1740,-3368,48,4096,2532,-4601,5832,5742,-785,-133,7559,5897,-7336,-6592,3170,-9394,2984,-7272,393,7255,5830,3220,8374,-3170,4638,-2465,-7789,-1489,-7247,-9269,7768,2925,-6129,-339,7953,8416,-5420,-1933,-8505,-7803,-7370,-3655,835,8887,1402,-9229,-7656,9355,-9370,-6520,4579,-3232,-4215,5654,-1849,-420,-5677,4189,-9114,8780,511,-7953,5366,-2275,-5228,-8966,-3277,7185,6925,-1484,-1129,6039,-1790 ],"friends" : [ { "id":0, "name":"Debora Guerrero" },{ "id":1, "name":"Blankenship Campbell" },{ "id":2, "name":"Kenya Robertson" },{ "id":3, "name":"Bruce Cannon" },{ "id":4, "name":"Krista Pace" },{ "id":5, "name":"Leta Pena" },{ "id":6, "name":"Sofia Wise" },{ "id":7, "name":"Peterson Berry" },{ "id":8, "name":"Lynette Sharp" },{ "id":9, "name":"Alice Mcconnell" },{ "id":10, "name":"Liz Alexander" },{ "id":11, "name":"Enid Carpenter" },{ "id":12, "name":"Myra Simpson" },{ "id":13, "name":"Marta Weiss" },{ "id":14, "name":"Dodson Campos" },{ "id":15, "name":"Mejia Martinez" },{ "id":16, "name":"Betty Henson" },{ "id":17, "name":"Pierce Farley" },
|
188
|
+
{ "id":18, "name":"Sandy Kirby" },
|
189
|
+
{ "id":19, "name":"Rhea Tyler" } ],
|
190
|
+
"greeting" : "Hello, Georgia Hardin! You have 9 unread messages.",
|
191
|
+
"favoriteFruit" : "apple" },
|
192
|
+
{ "_id" : "571a50575942dae842ef0d17",
|
193
|
+
"index" : 5,
|
194
|
+
"guid" : "c8a6a9b6-76a8-4b36-bd26-4926323d0510",
|
195
|
+
"isActive" : false,
|
196
|
+
"balance" : "$2,432.47",
|
197
|
+
"picture" : "http://placehold.it/32x32",
|
198
|
+
"age" : 32,
|
199
|
+
"eyeColor" : "blue",
|
200
|
+
"name" : "Evangeline Johnson",
|
201
|
+
"gender" : "female",
|
202
|
+
"company" : "MANGELICA",
|
203
|
+
"email" : "evangelinejohnson@mangelica.com",
|
204
|
+
"phone" : "+1 (963) 515-3733",
|
205
|
+
"address" : "274 Plymouth Street, Wauhillau, South Dakota, 7633",
|
206
|
+
"about" : "Labore pariatur aliqua excepteur tempor. Mollit veniam proident pariatur elit consectetur enim sint fugiat ullamco enim. Officia reprehenderit ut commodo cillum. In aliquip reprehenderit deserunt laborum ullamco culpa nostrud nisi do. Ea magna nostrud consectetur mollit ipsum velit quis dolore quis. Ullamco sit non cillum pariatur.\r\n",
|
207
|
+
"registered" : "2016-04-16T01:29:31 +06:00",
|
208
|
+
"latitude" : -3,
|
209
|
+
"longitude" : -47,
|
210
|
+
"tags" : [ "eiusmod", "fugiat", "pariatur", "occaecat", "eu", "laborum", "non", "velit", "anim", "Lorem", "dolor", "pariatur", "dolore", "ex", "qui", "elit", "consequat", "deserunt", "magna", "cupidatat" ],
|
211
|
+
"digits" : [ 775,-2224,5380,-9339,-1134,-3785,6182,5645,-8679,1523,-753,9048,-7727,6815,-9135,-2450,5402,-5115,485,6776,-8553,-148,8954,-9662,-4261,-4333,7397,-3207,-5244,6777,4382,-5419,1108,-9734,-9562,-8459,7457,4645,1782,4134,6090,3187,4280,-5581,7710,5872,-6037,894,2164,-4798,-6260,-7359,-2721,699,-7507,-644,-3621,772,1956,3092,8058,6419,-6061,-7371,8702,-4161,2520,-2232,4641,1609,-1537,4815,4924,4005,-3616,-7054,4450,9769,6199,-7000,9074,-4101,-6602,-159,4054,-1571,-7950,5817,2358,5910,-2970,-5028,-9647,-4333,7697,-8037,-1079,-8398,3380,9993,-467,-7098,-6209,5488,8448,-1290,-7469,-7427,3765,2718,-4534,-2938,-6835,9644,-8481,9624,7322,5830,2210,-7521,-2511,4362,5299,-5837,-863,7468,7077,2366,3418,8274,6656,-524,-7691,-9824,8829,-6441,6807,8544,7258,6702,1074,4248,3430,-1798,-9668,-4926,-3336,9283,-6591,-2048,-4478,4521,-6987,-7377,6875,6904,-3551,552,9922,-9938,-4897,764,9908,9919,2399,-176,6984,1646,-9980,-5646,-3987,4106,-4609,9565,-881,-7328,2934,-9081,-1475,-7730,7227,6039,-1673,9860,-7604,8688,6059,6424,-7290,-4359,-4005,-3332,566,6934,-6932,-7079,3827,4361,5782,-8474,5138,-7764,6214,-4473,-8806,1940,-5784,-2446,5215,7600,4669,8457,1128,-1475,4347,-971,1680,6704,5325,5998,-7422,3559,-177,-8115,3538,-8896,-2005,9406,-273,-7226,-5099,-3246,-9090,6310,4248,812,-1150,-5121,-930,-2192,-5534,-3142,-919,3499,8945,4217,-5848,3967,7035,2458,-1921,-477,6284,-8720,-2582,-8957,4044,-7176,-9925,8683,-3598,4015,8048,-9687,8788,6393,-5942,3432,-9262,-4843,1832,930,9390,8462,-1768,-4599,1803,-4751,-329,7078,-5463,1777,-4442,1257,6560,7198,-3422,5471,7880,3731,1240,-7372,-4097,-3651,-5541,-5640,9741,-8345,9736,-2477,-2000,1730,-1433,-428,5009,2672,-3286,1838,8406,-649,4248,-3295,-9162,1899,-7539,840,6679,6391,3077,2060,-4331,6097,8853,8469,4824,-9764,-1203,6523,6760,9022,-9543,-897,2446,-1419,-2854,-5194,-9190,-6571,4818,1110,-2387,-7654,6495,-9581,1727,6905,6493,2025,-8911,-2050,-617,-253,3172,5245,-6861,1859,-7779,-3190,1547,-7036,6182,-8566,7618,-9383,8865,-5070,9614,-1253,-9068,1053,2077,-4570,-4591,-1435,-6082,-7654,-1470,1663,-6808,1811,3801,-6398,-9561,3903,-3806,8050,898,-4062,9951,-8423,-2685,-7867,-8990,8552,9782,-834,3442,-6991,9502,-9484,5517,-9482,4453,1844,2023,-8732,3169,7996,-3206,9024,-2094,-7306,-436,-6761,-8784,-4163,3609,5567,3133,4514,8559,-8940,2684,4094,-5754,-7605,2147,-682,8307,8173,7895,-6555,3486,-6054,-1667,2171,-3510,-1051,-2288,2010,-2109,8235,-4161,-5897,-1809,2827,-1178,-8524,-4754,-2539,4008,3535,1420,7961,4903,-2810,-5968,-126,4971,-8278,-6540,-9282,-3442,202,-9312,502,9472,8572,-5637,3251,-9971,1616,5234,8542,4232,3273,9065,1522,-7812,-5300,-1324,99,5194,9509,9598,4234,9150,5659,4307,4895,5052,-7852,-7149,9200,5016,-3819,-6515,-7004,1775,-1201 ],
|
212
|
+
"friends" : [ { "id":0, "name":"Ladonna Manning" },
|
213
|
+
{ "id":1, "name":"Webster Sharpe" },
|
214
|
+
{ "id":2, "name":"Cummings Moore" },
|
215
|
+
{ "id":3, "name":"Marisol Griffith" },
|
216
|
+
{ "id":4, "name":"Kathy Stanley" },
|
217
|
+
{ "id":5, "name":"Guerrero Oneil" },
|
218
|
+
{ "id":6, "name":"Earnestine Gentry" },
|
219
|
+
{ "id":7, "name":"Imelda Savage" },
|
220
|
+
{ "id":8, "name":"Johnnie Rich" },
|
221
|
+
{ "id":9, "name":"Adele Ball" },
|
222
|
+
{ "id":10, "name":"Hahn Oneal" },
|
223
|
+
{ "id":11, "name":"Jenifer Jennings" },
|
224
|
+
{ "id":12, "name":"Hope Brennan" },
|
225
|
+
{ "id":13, "name":"Holman Hardy" },
|
226
|
+
{ "id":14, "name":"Barber Price" },
|
227
|
+
{ "id":15, "name":"Hurst Valentine" },
|
228
|
+
{ "id":16, "name":"Veronica Dejesus" },
|
229
|
+
{ "id":17, "name":"Krystal Cochran" },
|
230
|
+
{ "id":18, "name":"Cornelia Conner" },
|
231
|
+
{ "id":19, "name":"Carter Malone" } ],
|
232
|
+
"greeting" : "Hello, Evangeline Johnson! You have 8 unread messages.",
|
233
|
+
"favoriteFruit" : "apple" },
|
234
|
+
{ "_id" : "571a5057e77d6d3cfffa223a",
|
235
|
+
"index" : 6,
|
236
|
+
"guid" : "f5190513-5597-4925-9e5c-9a9a2e9976c0",
|
237
|
+
"isActive" : false,
|
238
|
+
"balance" : "$1,617.80",
|
239
|
+
"picture" : "http://placehold.it/32x32",
|
240
|
+
"age" : 40,
|
241
|
+
"eyeColor" : "green",
|
242
|
+
"name" : "Hancock Buckley",
|
243
|
+
"gender" : "male",
|
244
|
+
"company" : "BLEENDOT",
|
245
|
+
"email" : "hancockbuckley@bleendot.com",
|
246
|
+
"phone" : "+1 (906) 461-2044",
|
247
|
+
"address" : "507 Bedford Place, Lindcove, Marshall Islands, 334",
|
248
|
+
"about" : "Eu anim dolor sunt aliquip qui eiusmod anim dolor eiusmod. Incididunt consequat nisi id proident sunt sit dolore Lorem occaecat aliquip mollit aliquip. Laboris et excepteur dolore nostrud aliqua aute magna. Eu nulla esse deserunt enim deserunt. Pariatur cupidatat labore labore sunt ullamco laborum. Eu qui duis incididunt elit in velit anim est labore ad aliqua amet.\r\n",
|
249
|
+
"registered" : "2015-08-14T04:07:26 +06:00",
|
250
|
+
"latitude" : -76,
|
251
|
+
"longitude" : -74,
|
252
|
+
"tags" : [ "minim", "consectetur", "nisi", "eu", "consequat", "incididunt", "deserunt", "ea", "culpa", "eu", "sit", "sint", "irure", "officia", "mollit", "exercitation", "enim", "ex", "esse", "voluptate" ],
|
253
|
+
"digits" : [ 1780,-6840,5169,-6718,-6628,-2549,1283,5976,209,-963,-9924,-1743,6819,-5120,-2687,-4035,-260,-8253,-1912,2011,-5308,-8123,8515,1813,116,272,-5702,-7621,5811,6861,-6154,-8738,-3856,4736,966,-6311,1068,-6828,-4005,3248,4009,2281,1646,-2815,-2130,-5286,4988,-2496,8182,-1832,3692,3857,-8097,5471,-9903,2197,921,2960,2656,-5129,-5578,4844,319,2358,-4757,1748,1606,-4808,-681,9050,9845,5140,3510,-3330,-7992,4432,-6210,4233,-1543,-2166,-620,4148,4103,4825,5074,-6606,7398,8422,-5347,5590,6255,-2068,-9942,-7226,-1318,7580,-2110,8075,3117,3303,-4249,-1162,-276,6310,6310,-3077,4296,622,-3076,5788,-1404,1249,-7602,2577,5857,90,6338,1987,-9785,6461,8052,-27,5996,8053,-7643,7702,5577,-1982,3900,-8700,-3031,-9769,1281,4394,8485,-7965,9948,2271,-5704,-2717,-6201,5938,2530,3138,4794,-1852,4808,-9329,-2419,8601,5157,-9130,8682,4523,5692,2737,-6064,5452,-8328,7952,3812,2999,-8103,-9405,-9684,2306,-8983,-2998,-3664,-2523,5305,-7155,-8414,9663,8051,7845,-9229,1240,-2894,2080,3765,-2209,-8446,1552,-8122,5243,-7543,-7476,8979,-4864,-9979,4276,-171,7961,-5600,-1163,-6106,8100,8459,2633,8753,-1690,-5861,9785,238,-1358,-9235,-3064,-4272,-6344,3366,2017,-4543,-9433,3948,4230,3557,-3870,-8572,7524,180,-9855,4470,465,4782,7311,-678,9931,-502,5759,-4589,841,-7228,-6606,-7240,8562,8673,3723,-9940,7630,-8065,-1228,5160,-6521,6838,3249,39,1513,4475,272,2532,-9035,-4747,7259,-2003,-6504,9955,-7927,-6187,-3962,4350,-2879,4036,8271,-6139,-6908,2293,-3472,8659,576,5267,3740,7417,-3653,6445,-2523,2234,-4175,-5727,2380,-9497,-9266,4432,4889,3677,4484,-5133,4292,3397,5153,-4976,-4539,6339,2158,2524,-185,9731,1304,4377,-3332,-7423,9249,-8604,-5225,-3642,-6800,2040,8251,-192,9246,-5609,1122,-7120,2531,5889,-675,5891,750,6001,-1139,-7837,6576,-7085,-3489,2314,-5280,-9428,-3743,-8874,1463,3481,446,1373,-9327,1132,-5359,-9239,4447,7514,-4207,-8939,-8241,3527,-8647,9378,-1623,-3931,-6219,-6967,-321,1199,-1442,-9565,28,6822,-9578,-3416,-6673,2373,7141,-3535,-1174,2873,-3344,-9763,3656,2869,-5036,5479,4991,7359,-2306,1738,-5511,-9274,7161,-5161,-4462,955,8425,-8274,-9892,-2029,-6772,-6783,-9020,-7038,4581,-4581,7535,4265,-4447,-7767,632,-2846,2218,689,9937,724,9601,1827,-5518,-6975,-306,8784,3776,-100,4484,253,8650,4242,7153,1896,-9904,8047,-5411,8490,5704,-9297,-9274,-7889,-6544,6341,1413,-3653,-5074,-2022,8289,-7860,-7996,7135,-240,7563,2733,-117,1489,5071,-6317,9479,7624,-3400,5346,1109,-4241,-6242,651,-2490,-7035,9796,-1805,9011,982,833,-9081,-7942,-1709,6534,5809,-2071,1465,-7951,-198,-701,-4214,4659,-2911,-2759,9103,8502,-9858,3990,2491,4731,3267,-7183,-1786,-968,-3775,-8046,-1705,1515,-7128,9687,1700,-6426,-2746,-3339,-5054,8057,-2558,8385,-4412,-760,9629,-7933,-8196,158,1408,-1860,953 ],
|
254
|
+
"friends" : [ { "id":0, "name":"Hoover Shannon" },
|
255
|
+
{ "id":1, "name":"Velasquez Lucas" },
|
256
|
+
{ "id":2, "name":"Sabrina Newton" },
|
257
|
+
{ "id":3, "name":"Deana Salinas" },
|
258
|
+
{ "id":4, "name":"Katheryn Lott" },
|
259
|
+
{ "id":5, "name":"Sellers Whitley" },
|
260
|
+
{ "id":6, "name":"Everett Macias" },
|
261
|
+
{ "id":7, "name":"Todd Sparks" },
|
262
|
+
{ "id":8, "name":"Foreman Snider" },
|
263
|
+
{ "id":9, "name":"Franks Saunders" },
|
264
|
+
{ "id":10, "name":"Cunningham Stark" },
|
265
|
+
{ "id":11, "name":"Eugenia Nguyen" },
|
266
|
+
{ "id":12, "name":"Eunice Doyle" },
|
267
|
+
{ "id":13, "name":"Kathryn Medina" },
|
268
|
+
{ "id":14, "name":"Eloise Roach" },
|
269
|
+
{ "id":15, "name":"Drake Weaver" },
|
270
|
+
{ "id":16, "name":"Beverly Frost" },
|
271
|
+
{ "id":17, "name":"Roman Bond" },
|
272
|
+
{ "id":18, "name":"Cleveland Gray" },
|
273
|
+
{ "id":19, "name":"Loraine Trevino" } ],
|
274
|
+
"greeting" : "Hello, Hancock Buckley! You have 5 unread messages.",
|
275
|
+
"favoriteFruit" : "apple" },
|
276
|
+
{ "_id" : "571a5057ae4de7e8aad706a3",
|
277
|
+
"index" : 7,
|
278
|
+
"guid" : "d888101d-2f6e-415e-86b9-bca24cecb821",
|
279
|
+
"isActive" : true,
|
280
|
+
"balance" : "$1,433.58",
|
281
|
+
"picture" : "http://placehold.it/32x32",
|
282
|
+
"age" : 25,
|
283
|
+
"eyeColor" : "green",
|
284
|
+
"name" : "Deidre Cooley",
|
285
|
+
"gender" : "female",
|
286
|
+
"company" : "WAZZU",
|
287
|
+
"email" : "deidrecooley@wazzu.com",
|
288
|
+
"phone" : "+1 (831) 440-2072",
|
289
|
+
"address" : "540 Sapphire Street, Whitewater, Louisiana, 8593",
|
290
|
+
"about" : "Anim esse dolor consequat adipisicing. Deserunt elit id sunt ea commodo et proident. In veniam pariatur adipisicing eiusmod do pariatur et id excepteur veniam consequat.\r\n",
|
291
|
+
"registered" : "2016-04-06T02:30:55 +06:00",
|
292
|
+
"latitude" : -3,
|
293
|
+
"longitude" : -32,
|
294
|
+
"tags" : [ "deserunt", "incididunt", "eu", "ullamco", "velit", "do", "culpa", "cillum", "consectetur", "tempor", "exercitation", "eiusmod", "ipsum", "amet", "exercitation", "quis", "fugiat", "mollit", "consequat", "ex" ],
|
295
|
+
"digits" : [ 9159,6531,8011,-863,7716,-6672,-5112,-8229,-1821,-9080,9073,-4231,9194,4781,9263,3417,-5870,8109,-3381,9459,7147,-4710,264,-1666,5901,6452,-4962,-7977,-3947,7363,8571,1027,1097,2838,-3243,-4158,5159,7389,4033,-9918,-7096,-9967,8960,2464,-1506,8545,-5114,8200,-4424,4929,798,2185,-4852,5924,539,1530,8251,1958,-5215,-9293,545,7801,7031,7632,5665,-8867,-1766,5958,-3738,-3659,-7496,-2661,335,6984,-7960,-9505,-6526,-1855,-1326,-7234,4748,173,-4564,-93,-5024,6808,493,-9451,-2110,-5972,-2209,-8937,-7740,-7057,-9846,-934,-8318,-8665,-4076,-1252,2553,9966,-5572,9437,-8037,9676,8999,-8716,-9610,-5133,334,-9458,-2208,6541,1250,6857,-1875,-610,9218,-4990,1246,-1431,-8632,803,-3779,-6918,1866,415,-9070,3599,8393,-7888,-9962,-2326,4133,-8060,-7380,2768,-4258,-3383,-7024,-5874,-6850,8586,4284,2191,-6037,-2184,242,5645,9686,2130,1592,8094,2868,562,-2911,-6200,-84,9341,5539,8555,-609,946,225,4835,-7230,-8227,-2793,8018,4612,5865,5242,848,-1352,-7611,7028,-3763,-1830,-6270,5445,-9087,-3543,59,6733,1376,-7176,4026,-9523,-9917,-4408,-5665,-8754,-9583,4735,-2731,1697,6800,-5279,-7560,-4079,3460,2752,4907,-1322,5314,-2441,-2251,-3394,-3397,2398,-7553,6883,125,6845,6014,1443,-7618,-1199,-43,2641,9469,-426,53,-3258,-3374,-4821,4758,-7431,5309,-365,-4993,-1099,-1476,-2404,-5019,844,-5120,5535,6719,-8359,-5634,-9711,4253,7203,-5713,647,8347,-2435,-2656,-8153,8548,-9359,-4725,7086,-528,-114,7409,-8044,1894,8839,-9334,2831,2655,-4938,6222,-4441,-8411,-5096,-7959,-7659,-2790,-2376,-778,3831,-2838,-6082,7648,-1462,-1335,9332,-1072,-5975,9271,-3395,-9498,9402,4972,3424,-1420,338,1928,7098,6700,-1770,5362,8132,-3786,-6202,-5066,-737,-3395,-3257,-4445,3970,-8448,3993,5544,-4513,-4544,5185,-5299,-2787,-1131,5022,5779,-3422,1627,9099,-729,-5196,-7830,-2101,-2287,6789,7467,7036,-7818,-137,-1193,6888,-762,2424,-1870,609,-1123,-4520,-6928,-83,-3416,-8776,-1172,-5867,-6540,992,6938,-7150,3546,-7948,3489,3054,4854,-8153,-1940,-2487,-9080,-5098,-9212,1798,8342,1190,3654,6431,9182,-734,1801,-8802,-9681,-8818,6178,-6848,4157,-6928,2804,8518,5417,-2614,-824,6958,5894,6845,5398,3111,-4294,8746,7541,1537,-24,5342,-2820,-5027,9557,8617,-6237,-2197,-4724,3303,-9563,-7389,-5439,5440,8826,-9957,562,3694,-4954,23,-1285,5179,5743,8618,-8513,3129,7352,959,3214,1187,5978,3041,-1493,4843,1070,5894,-525,8927,6945,2542,4999,822,936,6961,-4995,5041,4212,6371,-7958,1072,-8176,-6172,365,982,-111,-2294,-3526,5605,1728,-4316,-7234,-677,9591,2199,-3611,3261,-4316,9426,4288,-6951,-2439,4162,-5073,-1703,-2558,5233,-8545,-8788,2609,2870,6574,831,1388,-8969,-5461,-2808,-6490,-9104,197,-1975,-6521,44,-4825,4103,4601,9092,4980,-5454,-4648,7962,1336,8654,9901,6683,-3811,7481,8932,-4854,-3991,406,2498,986,-8179 ],
|
296
|
+
"friends" : [ { "id":0, "name":"Patterson Griffin" },
|
297
|
+
{ "id":1, "name":"Nikki Blackburn" },
|
298
|
+
{ "id":2, "name":"Caitlin Mcleod" },
|
299
|
+
{ "id":3, "name":"Barnes Turner" },
|
300
|
+
{ "id":4, "name":"Pauline Kinney" },
|
301
|
+
{ "id":5, "name":"Samantha Faulkner" },
|
302
|
+
{ "id":6, "name":"Morales Flores" },
|
303
|
+
{ "id":7, "name":"Phillips Roberson" },
|
304
|
+
{ "id":8, "name":"Bonner Wynn" },
|
305
|
+
{ "id":9, "name":"Kline Tate" },
|
306
|
+
{ "id":10, "name":"Bessie Boyle" },
|
307
|
+
{ "id":11, "name":"Shannon Sims" },
|
308
|
+
{ "id":12, "name":"Marion Koch" },
|
309
|
+
{ "id":13, "name":"Cherry Leon" },
|
310
|
+
{ "id":14, "name":"Shirley Crane" },
|
311
|
+
{ "id":15, "name":"Janette Schneider" },
|
312
|
+
{ "id":16, "name":"Jeannie Conley" },
|
313
|
+
{ "id":17, "name":"Brewer Lester" },
|
314
|
+
{ "id":18, "name":"Leticia Olson" },
|
315
|
+
{ "id":19, "name":"Bradley Poole" } ],
|
316
|
+
"greeting" : "Hello, Deidre Cooley! You have 6 unread messages.",
|
317
|
+
"favoriteFruit" : "strawberry" },
|
318
|
+
{ "_id" : "571a505718cf369579b69262",
|
319
|
+
"index" : 8,
|
320
|
+
"guid" : "7e32ff02-f755-4000-86e9-1bf276f66f53",
|
321
|
+
"isActive" : true,
|
322
|
+
"balance" : "$3,040.34",
|
323
|
+
"picture" : "http://placehold.it/32x32",
|
324
|
+
"age" : 24,
|
325
|
+
"eyeColor" : "blue",
|
326
|
+
"name" : "Herring Odonnell",
|
327
|
+
"gender" : "male",
|
328
|
+
"company" : "ELENTRIX",
|
329
|
+
"email" : "herringodonnell@elentrix.com",
|
330
|
+
"phone" : "+1 (994) 581-2961",
|
331
|
+
"address" : "626 Tompkins Avenue, Gordon, Wyoming, 5401",
|
332
|
+
"about" : "Officia ipsum incididunt incididunt exercitation pariatur mollit laboris consequat mollit est adipisicing deserunt. Dolore labore ipsum eiusmod adipisicing mollit minim. Nisi ex mollit velit sit non duis cillum non deserunt anim quis cupidatat laboris officia.\r\n",
|
333
|
+
"registered" : "2015-11-02T04:52:07 +07:00",
|
334
|
+
"latitude" : 74,
|
335
|
+
"longitude" : -78,
|
336
|
+
"tags" : [ "quis", "id", "snt", "ad", "pariatur", "magna", "sunt", "esse", "adipisicing", "magna", "anim", "ullamco", "sit", "reprehenderit", "deserunt", "id", "cmmodo", "ut" ],
|
337
|
+
"digits" : [ -2941,1778,5555,-4714,-2515,2125,-195,-6372,427,-1414,9151,1542,-1882,4832,-1412,-252,-731,-4710,-2019,8660,-9552,-697,-1340,-6822,-3824,3098,7298,2871,-9379,-9867,2611,-1914,-4289,-5129,-1220,-8689,-2278,5844,-9002,3398,4858,3467,7629,7142,-4538,-9960,-1163,-4971,996,7771,7969,-4294,5628,122,5299,1835,707,-8608,3307,9099,1720,-8311,9472,-3294,4799,9647,7290,9969,5409,-4466,6194,7830,-9656,328,-8842,2172,6320,3930,5585,7939,-4694,688,-1261,-6927,-8973,-141,4316,-9223,-1288,2490,-5568,1860,1491,9205,-6531,5528,9515,4335,-1784,-9947,1628,4900,1138,-1801,-585,9978,-7653,-124,9783,-5627,-8378,-4242,1765,-7907,-4311,-4884,-6850,5901,1356,1887,1565,-8748,-6908,7240,5491,-6646,-3035,2245,-2793,6827,-2832,-1021,-1551,8448,7698,-7990,751,-6606,-3730,-2554,-1547,-1251,-2014,-2666,-4479,-878,-6902,2376,9311,-5948,9110,201,-4760,1452,-8212,-2105,-9634,7454,-654,6100,3074,-2841,3933,6991,4083,7691,-1462,-8461,-2710,-7843,-4487,225,3006,-4353,-3726,5896,5566,-8439,5363,3756,-9550,-7710,-4661,3850,-9993,1551,4882,-4903,6438,-6258,631,7514,-7244,3109,-9423,-9131,4048,-9928,-6840,1094,-1462,9008,5944,-1125,-3405,5033,3636,4563,2334,5350,-2326,5515,3096,1099,-7286,4141,-9577,-9550,6843,-5294,9219,-2445,5992,2481,-9924,-1367,-2193,-1863,6054,7945,1437,-4824,5638,8999,4248,-9978,9072,-6368,-9753,-9321,577,-3859,-9486,-3687,-9675,8083,-816,-8461,3667,9350,-4931,2500,-7569,-3956,1395,1020,6015,-8514,-6742,-3626,-7618,-5030,7495,-4662,-4586,-9390,5739,-7513,-4461,-3531,-6125,-444,-688,9348,1533,-7786,-3109,-7095,-9134,-9256,180,759,-6515,-2705,4052,8168,4889,-8143,-5075,-466,6118,-7266,-2570,-8920,9895,4518,-9014,6084,4003,-1756,-1133,1495,4384,-475,-4724,-6894,-1883,9861,6093,-2061,-5525,-6198,-429,3403,-7826,-6051,1862,2742,-8720,-6661,9919,6564,-8695,-2612,9797,4164,-497,-1912,7721,-4875,1797,5040,5037,-653,-2752,-5035,-789,-9188,-848,980,-7948,9543,-5963,2865,-5490,9891,-7518,-9674,8175,-3158,4348,-6404,-6799,-8793,-8695,-5563,1423,1101,8224,-2071,-8278,-1808,-9043,-5752,7205,4082,-2989,3113,-9063,2087,-6862,9259,575,-6570,-545,-1731,-9242,2812,-9044,554,4911,-7872,1647,-7572,390,2407,-5947,1923,-7111,-6130,6137,-6649,-3690,-6711,6421,3889,7428,1012,-3225,-609,-3856,9621,-5838,5409,-151,-7035,-6191,1046,-5147,1270,-1254,4793,-2765,4426,-9329,7804,-781,7665,3876,5942,-7948,-2112,3988,992,-3036,-1930,-2477,4267,-757,-2940,2914,-2818,6132,686,6659,3120,7641,1217,8391,-6360,-3220,-8214,-2447,4803,-7022,-7185,4265,-9753,-2995,-9592,6570,6137,-8306,-8850,719,-3987,2748,3577,-622,3792,3167,-2627,6620,654,-8660,1180,5242,5365,7258,-2667,3140,5434,835,-2849,2199,-4111,-4988,3116,-2989,2432,6207,2974,-250,8630,3101,-1003,-6631,9675,6655,4076,-9121,-2741,-5286,-7800,-7415,4044,-9173,2706,-4832,-4252 ],
|
338
|
+
"friends" : [ { "id":0, "name":"Lolita Huff" },
|
339
|
+
{ "id":1, "name":"Viola Stone" },
|
340
|
+
{ "id":2, "name":"Cohen Bowman" },
|
341
|
+
{ "id":3, "name":"Knox Francis" },
|
342
|
+
{ "id":4, "name":"Fletcher Dudley" },
|
343
|
+
{ "id":5, "name":"Anna Morton" },
|
344
|
+
{ "id":6, "name":"Corine Ingram" },
|
345
|
+
{ "id":7, "name":"Rivera Gould" },
|
346
|
+
{ "id":8, "name":"Sherri Richards" },
|
347
|
+
{ "id":9, "name":"Battle Spears" },
|
348
|
+
{ "id":10, "name":"Jan Whitney" },
|
349
|
+
{ "id":11, "name":"Gould Santana" },
|
350
|
+
{ "id":12, "name":"Dillard Pittman" },
|
351
|
+
{ "id":13, "name":"Fernandez Rollins" },
|
352
|
+
{ "id":14, "name":"Klein Serrano" },
|
353
|
+
{ "id":15, "name":"Yates Hale" },
|
354
|
+
{ "id":16, "name":"Hull Farrell" },
|
355
|
+
{ "id":17, "name":"Valeria Morgan" },
|
356
|
+
{ "id":18, "name":"Knowles Gates" },
|
357
|
+
{ "id":19, "name":"Elnora Holden" } ],
|
358
|
+
"greeting" : "Hello, Herring Odonnell! You have 9 unread messages.",
|
359
|
+
"favoriteFruit" : "apple" },
|
360
|
+
{ "_id" : "571a5057d08beeacfbc930fd",
|
361
|
+
"index" : 9,
|
362
|
+
"guid" : "7e040ee8-f213-471a-90c2-e3d4bbb67f22",
|
363
|
+
"isActive" : true,
|
364
|
+
"balance" : "$2,037.23",
|
365
|
+
"picture" : "http://placehold.it/32x32",
|
366
|
+
"age" : 30,
|
367
|
+
"eyeColor" : "blue",
|
368
|
+
"name" : "Griffin Blake",
|
369
|
+
"gender" : "male",
|
370
|
+
"company" : "QOT",
|
371
|
+
"email" : "griffinblake@qot.com",
|
372
|
+
"phone" : "+1 (889) 447-2106",
|
373
|
+
"address" : "598 Roder Avenue, Cassel, Palau, 4941",
|
374
|
+
"about" : "Exercitation ipsum eiusmod dolore culpa proident eiusmod. Do est eiusmod cillum sunt exercitation reprehenderit. Nulla aliquip ad esse non cupidatat ullamco minim laboris non excepteur qui enim non eu. Labore exercitation sunt elit duis.\r\n",
|
375
|
+
"registered" : "2014-10-25T07:35:22 +06:00",
|
376
|
+
"latitude" : 73,
|
377
|
+
"longitude" : -44,
|
378
|
+
"tags" : [ "ea", "minim", "sit", "do", "elit", "aliqua", "tempor", "eiusmod", "Lorem", "proident", "sint", "esse", "aute", "nostrud", "ex", "dolore", "aute", "irure", "proident", "velit" ],
|
379
|
+
"digits" : [ 6026,5025,-9431,9955,7975,9466,-9509,-3357,9080,-8545,-6754,9673,-5582,7232,1884,4484,-8878,-2997,-3718,9954,6177,-8339,-2878,7067,8605,2777,6353,-9389,8474,9947,5701,6739,-1639,6238,9748,-3491,1584,-8877,9475,-8448,-5553,4114,4356,-842,9873,-7254,3277,4684,6385,4619,-9208,-8450,7591,5247,2832,8154,9136,-2603,-7836,-6620,5088,-2885,447,6968,1734,1970,9982,213,-9642,-8949,-5772,3437,5902,-725,-1998,-6305,-9647,-1481,1970,-4605,-9424,2905,-1685,1116,5549,-2349,-9905,-2749,4509,-8593,8769,1858,-6851,-6720,9848,313,-3670,-8459,-1890,2150,7530,-3292,9354,-3052,-5579,-451,7324,-363,-5956,7141,-3535,-1023,4128,-6697,-337,-2203,-3565,-2598,-3640,7511,-8528,1707,-6862,3053,-4168,6383,5253,6289,5673,-1789,8839,-3915,9629,-4896,2200,-3120,8407,5127,1193,8720,-2826,-9950,-1780,-1267,-7319,-7908,5044,-7853,7767,6241,2261,7913,3762,9087,-8445,494,1764,-1339,9964,7734,3798,-602,-3680,3355,5625,-3321,-754,3893,-6335,-5050,7501,2175,-7179,-4626,-1814,585,-3552,5214,-2080,6180,9419,7055,-2370,152,2438,-415,497,-2671,-180,1983,7351,2611,-8537,8707,-6406,-5846,5699,-7423,-3244,-7304,8927,8419,-2243,-9484,-7026,809,-8767,-7725,1017,1132,-7609,8155,1824,194,3774,-1384,9023,-195,-6394,5725,-8950,4514,-9270,-113,1289,-9748,-3621,2254,6865,4040,3192,-1379,7471,9577,5819,6,-9004,5497,4948,2552,-5777,1532,-895,-306,4937,-1506,4862,-6222,-4248,-4703,4169,8679,1629,-2558,-2634,-80,5728,7703,3452,-2913,-2038,674,-1140,-3296,6211,7555,6110,6159,-3650,-6573,-5892,-4837,-5221,5627,1839,5441,9549,-4229,4316,-7820,7057,8529,1012,-905,2078,5991,8011,8920,5009,-4227,1818,2195,6279,-6350,-6566,-1828,-1909,369,4518,3757,-760,-8710,-1928,-5148,281,5054,9167,9220,-5684,6822,659,5172,5459,-5629,1920,3910,926,-5230,-4134,-3587,2585,-2021,-1997,-1484,7294,1545,3160,5087,-1931,2015,4021,-9620,-2931,-2770,-7222,9222,4720,3375,6624,5358,-1455,-4790,-145,-70,-8508,-3839,6875,-7649,-2173,-7923,9953,578,3475,-8347,6928,-2212,-6221,2146,-9259,4165,5775,-8588,3084,2512,8394,5365,-7521,-2393,-4856,-7542,1641,9304,-1649,559,-130,2449,8456,-5394,1008,5505,-7819,-857,-6386,-9265,4252,-7561,-7809,2640,4862,-266,-2509,-7008,-6445,5904,2008,-6422,-2117,-5554,-2816,2019,-1027,-4108,392,4618,-2701,7243,1708,5597,6297,1267,1791,1052,9266,-4215,-3530,-6178,-4431,1947,-9132,6746,-3164,5657,-5679,2588,-54,-9498,2049,-8123,13,-211,-3651,7828,-9041,516,8423,-8732,6435,4096,9144,-6592,9739,5871,-5465,7971,-2098,-874,-7922,-7435,-9997,-6661,-7876,-5792,5500,2725,-5198,-9410,-7288,4980,-7950,2232,7014,2513,-5205,8181,-9208,4597,6776,-589,-17,-873,7820,7663,8632,-1601,-1395,7887,260,-9916,-4734,5521,-2746,-9950,6832,125,-1242,-8293,-4171,-7490,-4304,-5552,3827,9574,-3262,-8743,-8364,5638,6083,6400,-4603,3036 ],
|
380
|
+
"friends" : [ { "id":0, "name":"Mary Aguirre" },
|
381
|
+
{ "id":1, "name":"Pansy Hampton" },
|
382
|
+
{ "id":2, "name":"Burks Chapman" },
|
383
|
+
{ "id":3, "name":"Harris Bell" },
|
384
|
+
{ "id":4, "name":"Workman Rosario" },
|
385
|
+
{ "id":5, "name":"Sosa Mathews" },
|
386
|
+
{ "id":6, "name":"Dalton Valdez" },
|
387
|
+
{ "id":7, "name":"Maryellen Mccormick" },
|
388
|
+
{ "id":8, "name":"Huff Case" },
|
389
|
+
{ "id":9, "name":"Cervantes Wiggins" },
|
390
|
+
{ "id":10, "name":"Maribel Green" },
|
391
|
+
{ "id":11, "name":"Miranda Conrad" },
|
392
|
+
{ "id":12, "name":"Lilly Vaughan" },
|
393
|
+
{ "id":13, "name":"Ball Bryant" },
|
394
|
+
{ "id":14, "name":"Ida Moses" },
|
395
|
+
{ "id":15, "name":"Wiley Little" },
|
396
|
+
{ "id":16, "name":"Cecile Velazquez" },
|
397
|
+
{ "id":17, "name":"Helena Morrison" },
|
398
|
+
{ "id":18, "name":"Darcy English" },
|
399
|
+
{ "id":19, "name":"Jill Suarez" } ],
|
400
|
+
"greeting" : "Hello, Griffin Blake! You have 2 unread messages.",
|
401
|
+
"favoriteFruit" : "strawberry" } ]
|
data/test/test_neatjson.rb
CHANGED
@@ -1,13 +1,15 @@
|
|
1
1
|
require_relative '../lib/neatjson'
|
2
2
|
require_relative './tests'
|
3
3
|
|
4
|
-
start = Time.now
|
5
4
|
pass = 0
|
6
5
|
count = 0
|
6
|
+
$perftesting = %w[-p --perfest].include?(ARGV.first)
|
7
|
+
$large = JSON.parse(IO.read(File.expand_path('../large.json',__FILE__))) if $perftesting
|
8
|
+
start = Time.now
|
7
9
|
TESTS.each do |value_tests|
|
8
10
|
val, tests = value_tests[:value], value_tests[:tests]
|
9
11
|
tests.each do |test|
|
10
|
-
cmd =
|
12
|
+
cmd = "JSON.neat_generate(#{val.inspect},#{test[:opts].inspect})"
|
11
13
|
begin
|
12
14
|
json = test[:opts] ? JSON.neat_generate(val,test[:opts].dup) : JSON.neat_generate(val)
|
13
15
|
raise "EXPECTED:\n#{test[:json]}\nACTUAL:\n#{json}" unless test[:json]===json
|
@@ -16,6 +18,9 @@ TESTS.each do |value_tests|
|
|
16
18
|
puts "Error running #{cmd}", e, ""
|
17
19
|
end
|
18
20
|
count += 1
|
21
|
+
if $perftesting
|
22
|
+
JSON.neat_generate($large,test[:opts]) rescue puts "Error serializing $large with #{test[:opts].inspect}"
|
23
|
+
end
|
19
24
|
end
|
20
25
|
end
|
21
26
|
elapsed = Time.now-start
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: neatjson
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 0.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gavin Kistner
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-04-
|
11
|
+
date: 2016-04-22 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: 'Generate JSON strings from Ruby objects with flexible formatting options.
|
14
14
|
Key features: keep arrays and objects on a single line when they fit; format floats
|
@@ -24,6 +24,7 @@ files:
|
|
24
24
|
- README.md
|
25
25
|
- lib/neatjson.rb
|
26
26
|
- neatjson.gemspec
|
27
|
+
- test/large.json
|
27
28
|
- test/test_neatjson.js
|
28
29
|
- test/test_neatjson.rb
|
29
30
|
- test/tests.js
|