├── css ├── theme.css ├── theme-teal-amber.html └── theme-blue-pink.html ├── theme.css ├── .gitignore ├── README.md ├── .bowerrc ├── shared.css ├── bower.json ├── elements ├── themable-toolbar.html ├── contacts-data.html ├── themable-fab.html ├── contact-detail-group.html ├── contacts-list.html └── contacts-detail.html ├── index.html └── data └── contacts.json /css/theme.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | components 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 0.8-contacts-vignette 2 | -------------------------------------------------------------------------------- /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "components" 3 | } -------------------------------------------------------------------------------- /shared.css: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | Copyright (c) 2015 The Polymer Project Authors. All rights reserved. 4 | This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt 5 | The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 6 | The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt 7 | Code distributed by Google as part of the polymer project is also 8 | subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt 9 | */ 10 | 11 | .below-toolbar { 12 | position: relative; 13 | top: 50%; 14 | } 15 | 16 | /* FIXME */ 17 | core-drawer-panel[narrow] .outside-fab { 18 | display: none; 19 | } 20 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "0.8-contacts-vignette", 3 | "version": "0.0.1", 4 | "authors": [ 5 | "Yvonne Yip " 6 | ], 7 | "keywords": [ 8 | "polymer" 9 | ], 10 | "main": "index.html", 11 | "private": true, 12 | "repository": { 13 | "type": "git", 14 | "url": "git://github.com/PolymerLabs/0.8-contacts-vignette" 15 | }, 16 | "license": "MIT", 17 | "homepage": "https://github.com/PolymerLabs/0.8-contacts-vignette/", 18 | "ignore": [ 19 | ], 20 | "dependencies": { 21 | "polymer": "Polymer/polymer#0.8-preview", 22 | "webcomponentsjs": "Polymer/webcomponentsjs#master", 23 | "core-drawer-panel": "Polymer/core-drawer-panel#0.8-preview", 24 | "core-header-panel": "Polymer/core-header-panel#0.8-preview", 25 | "core-toolbar": "Polymer/core-toolbar#0.8-preview", 26 | "layout": "Polymer/layout#0.8-preview", 27 | "paper-card": "Polymer/paper-card#0.8-preview", 28 | "paper-style": "PolymerLabs/paper-styles/paper-styles#master" 29 | }, 30 | "devDependencies": { 31 | "test-fixture": "*", 32 | "web-component-tester": "*" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /css/theme-teal-amber.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /elements/themable-toolbar.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 25 | 26 | 33 | 34 | 35 | 36 | 51 | -------------------------------------------------------------------------------- /css/theme-blue-pink.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /elements/contacts-data.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 21 | 22 | 23 | 24 | 64 | -------------------------------------------------------------------------------- /elements/themable-fab.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 34 | 35 | 38 | 39 | 40 | 41 | 71 | -------------------------------------------------------------------------------- /elements/contact-detail-group.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 33 | 34 | 56 | 57 | 58 | 59 | 97 | -------------------------------------------------------------------------------- /elements/contacts-list.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 44 | 45 | 71 | 72 | 73 | 74 | 106 | -------------------------------------------------------------------------------- /elements/contacts-detail.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 48 | 49 | 66 | 67 | 68 | 69 | 110 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 63 | 64 | 65 | 66 | 67 | 97 | 98 | 111 | 112 | 113 | 114 | -------------------------------------------------------------------------------- /data/contacts.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "guid": "85b3e45a-51d1-48cd-8c05-bb64de47866c", 4 | "background": "http://lorempixel.com/700/275", 5 | "name": "Alphonso Engelking", 6 | "group": 0, 7 | "favorite": true, 8 | "handle": "alphonsoe", 9 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/angelcolberg/128.jpg", 10 | "info": [ 11 | { 12 | "type": "phone", 13 | "items": [ 14 | { 15 | "type": "work", 16 | "value": "(834) 482-2381" 17 | }, 18 | { 19 | "type": "mobile", 20 | "value": "(986) 527-2644" 21 | }, 22 | { 23 | "type": "mobile", 24 | "value": "(995) 432-2157" 25 | } 26 | ] 27 | }, 28 | { 29 | "type": "email", 30 | "items": [ 31 | { 32 | "type": "work", 33 | "value": "lenorawhitley@portaline.com" 34 | }, 35 | { 36 | "type": "work", 37 | "value": "brewerclemons@softmicro.com" 38 | } 39 | ] 40 | }, 41 | { 42 | "type": "address", 43 | "items": [ 44 | { 45 | "type": "home", 46 | "value": "647 Russell Street, Coalmont, Montana, 7690" 47 | }, 48 | { 49 | "type": "home", 50 | "value": "564 Mill Road, Maury, North Carolina, 6543" 51 | } 52 | ] 53 | } 54 | ] 55 | }, 56 | { 57 | "guid": "2a25cb14-0aeb-4d84-b6d4-f88f35f1663c", 58 | "background": "http://lorempixel.com/700/275", 59 | "name": "Andrews Boyd", 60 | "group": 4, 61 | "handle": "Robbinsid", 62 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/nwdsha/128.jpg", 63 | "info": [ 64 | { 65 | "type": "phone", 66 | "items": [ 67 | { 68 | "type": "mobile", 69 | "value": "(843) 525-3788" 70 | }, 71 | { 72 | "type": "work", 73 | "value": "(930) 417-2893" 74 | }, 75 | { 76 | "type": "home", 77 | "value": "(892) 449-3277" 78 | } 79 | ] 80 | }, 81 | { 82 | "type": "email", 83 | "items": [ 84 | { 85 | "type": "home", 86 | "value": "imeldamejia@canopoly.com" 87 | }, 88 | { 89 | "type": "home", 90 | "value": "monroeayers@ginkogene.com" 91 | } 92 | ] 93 | }, 94 | { 95 | "type": "address", 96 | "items": [ 97 | { 98 | "type": "work", 99 | "value": "282 Allen Avenue, Fresno, Colorado, 4517" 100 | }, 101 | { 102 | "type": "work", 103 | "value": "909 Franklin Street, Henrietta, Connecticut, 6895" 104 | } 105 | ] 106 | } 107 | ] 108 | }, 109 | { 110 | "guid": "4a8e0a93-f550-43db-89af-df157575e15c", 111 | "background": "http://lorempixel.com/700/275", 112 | "name": "Angela Decker", 113 | "group": 1, 114 | "handle": "Pearsonlabore", 115 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/adobi/128.jpg", 116 | "info": [ 117 | { 118 | "type": "phone", 119 | "items": [ 120 | { 121 | "type": "mobile", 122 | "value": "(988) 477-2620" 123 | }, 124 | { 125 | "type": "home", 126 | "value": "(999) 536-2670" 127 | } 128 | ] 129 | }, 130 | { 131 | "type": "email", 132 | "items": [ 133 | { 134 | "type": "home", 135 | "value": "millsowen@printspan.com" 136 | }, 137 | { 138 | "type": "home", 139 | "value": "lakishawebb@harmoney.com" 140 | } 141 | ] 142 | }, 143 | { 144 | "type": "address", 145 | "items": [ 146 | { 147 | "type": "work", 148 | "value": "521 Bethel Loop, Gratton, Colorado, 3702" 149 | } 150 | ] 151 | } 152 | ] 153 | }, 154 | { 155 | "guid": "77b419b3-cde0-4ed0-9dde-ada2720b204e", 156 | "background": "http://lorempixel.com/700/275", 157 | "name": "April Wilcox", 158 | "group": 0, 159 | "handle": "Tianon", 160 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/rweve/128.jpg", 161 | "info": [ 162 | { 163 | "type": "phone", 164 | "items": [ 165 | { 166 | "type": "home", 167 | "value": "(964) 470-2874" 168 | }, 169 | { 170 | "type": "work", 171 | "value": "(821) 519-3578" 172 | }, 173 | { 174 | "type": "home", 175 | "value": "(855) 460-3508" 176 | } 177 | ] 178 | }, 179 | { 180 | "type": "email", 181 | "items": [ 182 | { 183 | "type": "work", 184 | "value": "sherylsalazar@isoplex.com" 185 | } 186 | ] 187 | }, 188 | { 189 | "type": "address", 190 | "items": [ 191 | { 192 | "type": "home", 193 | "value": "756 Narrows Avenue, Caroline, Tennessee, 8240" 194 | }, 195 | { 196 | "type": "home", 197 | "value": "798 Tudor Terrace, Wyoming, Hawaii, 4742" 198 | } 199 | ] 200 | } 201 | ] 202 | }, 203 | { 204 | "guid": "69a9e233-18e3-4779-b863-7203d0dcc48a", 205 | "background": "http://lorempixel.com/700/275", 206 | "name": "Berry Preston", 207 | "group": 4, 208 | "handle": "Ivynisi", 209 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/russoedu/128.jpg", 210 | "info": [ 211 | { 212 | "type": "phone", 213 | "items": [ 214 | { 215 | "type": "work", 216 | "value": "(836) 461-3375" 217 | } 218 | ] 219 | }, 220 | { 221 | "type": "email", 222 | "items": [ 223 | { 224 | "type": "home", 225 | "value": "vernapitts@assistix.com" 226 | }, 227 | { 228 | "type": "work", 229 | "value": "leighwise@daycore.com" 230 | } 231 | ] 232 | }, 233 | { 234 | "type": "address", 235 | "items": [ 236 | { 237 | "type": "home", 238 | "value": "948 Heyward Street, Lowell, Vermont, 9351" 239 | } 240 | ] 241 | } 242 | ] 243 | }, 244 | { 245 | "guid": "db0444c4-3e2e-4bb2-95ae-755f1e952576", 246 | "background": "http://lorempixel.com/700/275", 247 | "name": "Brandi Carrillo", 248 | "group": 1, 249 | "handle": "Blevinsexercitation", 250 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/alek_djuric/128.jpg", 251 | "info": [ 252 | { 253 | "type": "phone", 254 | "items": [ 255 | { 256 | "type": "work", 257 | "value": "(958) 464-3825" 258 | }, 259 | { 260 | "type": "work", 261 | "value": "(953) 584-3271" 262 | } 263 | ] 264 | }, 265 | { 266 | "type": "email", 267 | "items": [ 268 | { 269 | "type": "work", 270 | "value": "silvawoodward@uni.com" 271 | } 272 | ] 273 | }, 274 | { 275 | "type": "address", 276 | "items": [ 277 | { 278 | "type": "work", 279 | "value": "629 Wolf Place, Riner, Oklahoma, 4288" 280 | }, 281 | { 282 | "type": "home", 283 | "value": "513 Myrtle Avenue, Belgreen, Alaska, 9404" 284 | } 285 | ] 286 | } 287 | ] 288 | }, 289 | { 290 | "guid": "38887397-dc76-4c76-9c2e-90fd2b98811e", 291 | "background": "http://lorempixel.com/700/275", 292 | "name": "Brennan Walsh", 293 | "group": 2, 294 | "handle": "Fredalaboris", 295 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/dhooyenga/128.jpg", 296 | "info": [ 297 | { 298 | "type": "phone", 299 | "items": [ 300 | { 301 | "type": "home", 302 | "value": "(889) 460-3479" 303 | }, 304 | { 305 | "type": "home", 306 | "value": "(850) 478-3589" 307 | } 308 | ] 309 | }, 310 | { 311 | "type": "email", 312 | "items": [ 313 | { 314 | "type": "home", 315 | "value": "reevesstrickland@talendula.com" 316 | }, 317 | { 318 | "type": "work", 319 | "value": "gallegosayala@nixelt.com" 320 | } 321 | ] 322 | }, 323 | { 324 | "type": "address", 325 | "items": [ 326 | { 327 | "type": "work", 328 | "value": "452 Atlantic Avenue, Valle, Maryland, 5850" 329 | }, 330 | { 331 | "type": "work", 332 | "value": "841 Monitor Street, Edneyville, Illinois, 1277" 333 | } 334 | ] 335 | } 336 | ] 337 | }, 338 | { 339 | "guid": "6fc41b51-80d5-468b-8101-48ca7824c4bd", 340 | "background": "http://lorempixel.com/700/275", 341 | "name": "Briana Bradley", 342 | "group": 4, 343 | "handle": "Monicalaboris", 344 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/mekal/128.jpg", 345 | "info": [ 346 | { 347 | "type": "phone", 348 | "items": [ 349 | { 350 | "type": "work", 351 | "value": "(998) 444-2996" 352 | }, 353 | { 354 | "type": "mobile", 355 | "value": "(860) 513-3833" 356 | }, 357 | { 358 | "type": "home", 359 | "value": "(987) 597-3042" 360 | } 361 | ] 362 | }, 363 | { 364 | "type": "email", 365 | "items": [ 366 | { 367 | "type": "work", 368 | "value": "sybilmercado@eyewax.com" 369 | } 370 | ] 371 | }, 372 | { 373 | "type": "address", 374 | "items": [ 375 | { 376 | "type": "work", 377 | "value": "334 Dewey Place, Carrsville, New York, 2589" 378 | } 379 | ] 380 | } 381 | ] 382 | }, 383 | { 384 | "guid": "57a5b99f-45ad-446a-a789-32d6a3e789b2", 385 | "background": "http://lorempixel.com/700/275", 386 | "name": "Bright Fitzgerald", 387 | "group": 4, 388 | "handle": "Higginseiusmod", 389 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/davidhemphill/128.jpg", 390 | "info": [ 391 | { 392 | "type": "phone", 393 | "items": [ 394 | { 395 | "type": "home", 396 | "value": "(810) 571-3889" 397 | } 398 | ] 399 | }, 400 | { 401 | "type": "email", 402 | "items": [ 403 | { 404 | "type": "home", 405 | "value": "browningvelazquez@corpulse.com" 406 | } 407 | ] 408 | }, 409 | { 410 | "type": "address", 411 | "items": [ 412 | { 413 | "type": "home", 414 | "value": "771 Debevoise Street, Moscow, Alaska, 5810" 415 | } 416 | ] 417 | } 418 | ] 419 | }, 420 | { 421 | "guid": "9f38a861-b593-4e06-b073-f5825b7890a8", 422 | "background": "http://lorempixel.com/700/275", 423 | "name": "Castro Warner", 424 | "group": 4, 425 | "handle": "Careydolor", 426 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/91bilal/128.jpg", 427 | "info": [ 428 | { 429 | "type": "phone", 430 | "items": [ 431 | { 432 | "type": "work", 433 | "value": "(891) 584-3778" 434 | } 435 | ] 436 | }, 437 | { 438 | "type": "email", 439 | "items": [ 440 | { 441 | "type": "home", 442 | "value": "janetteshelton@duoflex.com" 443 | } 444 | ] 445 | }, 446 | { 447 | "type": "address", 448 | "items": [ 449 | { 450 | "type": "home", 451 | "value": "110 Nassau Avenue, Garnet, Alaska, 2102" 452 | } 453 | ] 454 | } 455 | ] 456 | }, 457 | { 458 | "guid": "23b471d5-63fb-4f49-98d2-e4373e3a62fc", 459 | "background": "http://lorempixel.com/700/275", 460 | "name": "Celina Howell", 461 | "group": 3, 462 | "handle": "Bullockqui", 463 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/bartoszdawydzik/128.jpg", 464 | "info": [ 465 | { 466 | "type": "phone", 467 | "items": [ 468 | { 469 | "type": "mobile", 470 | "value": "(863) 437-2825" 471 | } 472 | ] 473 | }, 474 | { 475 | "type": "email", 476 | "items": [ 477 | { 478 | "type": "home", 479 | "value": "catalinawitt@kiosk.com" 480 | }, 481 | { 482 | "type": "work", 483 | "value": "hammondbennett@zounds.com" 484 | } 485 | ] 486 | }, 487 | { 488 | "type": "address", 489 | "items": [ 490 | { 491 | "type": "work", 492 | "value": "876 Cozine Avenue, Goochland, Mississippi, 6511" 493 | } 494 | ] 495 | } 496 | ] 497 | }, 498 | { 499 | "guid": "3e42552d-35a6-44e4-bfb4-35624806affd", 500 | "background": "http://lorempixel.com/700/275", 501 | "name": "Chandler Sharpe", 502 | "group": 2, 503 | "handle": "Esperanzaaliqua", 504 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/hjartstrorn/128.jpg", 505 | "info": [ 506 | { 507 | "type": "phone", 508 | "items": [ 509 | { 510 | "type": "home", 511 | "value": "(850) 444-3722" 512 | }, 513 | { 514 | "type": "work", 515 | "value": "(872) 418-2690" 516 | } 517 | ] 518 | }, 519 | { 520 | "type": "email", 521 | "items": [ 522 | { 523 | "type": "home", 524 | "value": "burchvaldez@ceprene.com" 525 | }, 526 | { 527 | "type": "home", 528 | "value": "graveshays@liquicom.com" 529 | } 530 | ] 531 | }, 532 | { 533 | "type": "address", 534 | "items": [ 535 | { 536 | "type": "home", 537 | "value": "144 Christopher Avenue, Cashtown, Alabama, 7925" 538 | }, 539 | { 540 | "type": "home", 541 | "value": "892 Irving Avenue, Whitewater, Missouri, 6912" 542 | } 543 | ] 544 | } 545 | ] 546 | }, 547 | { 548 | "guid": "8e4b0b13-1620-40c3-8110-3c56d4f3afb4", 549 | "background": "http://lorempixel.com/700/275", 550 | "name": "Cindy Bush", 551 | "group": 1, 552 | "handle": "Rosalindcommodo", 553 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/silv3rgvn/128.jpg", 554 | "info": [ 555 | { 556 | "type": "phone", 557 | "items": [ 558 | { 559 | "type": "mobile", 560 | "value": "(869) 585-3689" 561 | }, 562 | { 563 | "type": "work", 564 | "value": "(852) 519-2860" 565 | } 566 | ] 567 | }, 568 | { 569 | "type": "email", 570 | "items": [ 571 | { 572 | "type": "work", 573 | "value": "latoyabradford@comcur.com" 574 | }, 575 | { 576 | "type": "work", 577 | "value": "racheljacobs@pyrami.com" 578 | } 579 | ] 580 | }, 581 | { 582 | "type": "address", 583 | "items": [ 584 | { 585 | "type": "work", 586 | "value": "642 Linden Boulevard, Haring, South Carolina, 1328" 587 | }, 588 | { 589 | "type": "home", 590 | "value": "532 Strauss Street, Soham, Washington, 6258" 591 | } 592 | ] 593 | } 594 | ] 595 | }, 596 | { 597 | "guid": "e49e1a69-7237-4c4d-bf61-ba3e34cfbc28", 598 | "background": "http://lorempixel.com/700/275", 599 | "name": "Clark Vazquez", 600 | "group": 2, 601 | "handle": "Williamsonveniam", 602 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/themadray/128.jpg", 603 | "info": [ 604 | { 605 | "type": "phone", 606 | "items": [ 607 | { 608 | "type": "work", 609 | "value": "(978) 489-2469" 610 | }, 611 | { 612 | "type": "home", 613 | "value": "(809) 577-3211" 614 | }, 615 | { 616 | "type": "work", 617 | "value": "(996) 520-2153" 618 | } 619 | ] 620 | }, 621 | { 622 | "type": "email", 623 | "items": [ 624 | { 625 | "type": "work", 626 | "value": "patsyconley@rodeology.com" 627 | }, 628 | { 629 | "type": "work", 630 | "value": "kittyreid@kindaloo.com" 631 | } 632 | ] 633 | }, 634 | { 635 | "type": "address", 636 | "items": [ 637 | { 638 | "type": "home", 639 | "value": "580 Rogers Avenue, Whitmer, Texas, 7570" 640 | } 641 | ] 642 | } 643 | ] 644 | }, 645 | { 646 | "guid": "65ab2af4-a5ab-49b2-a8bc-00c8773dac93", 647 | "background": "http://lorempixel.com/700/275", 648 | "name": "Colette Mcclain", 649 | "group": 2, 650 | "handle": "Randallnulla", 651 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/mfacchinello/128.jpg", 652 | "info": [ 653 | { 654 | "type": "phone", 655 | "items": [ 656 | { 657 | "type": "mobile", 658 | "value": "(999) 404-3729" 659 | }, 660 | { 661 | "type": "home", 662 | "value": "(999) 535-2640" 663 | }, 664 | { 665 | "type": "home", 666 | "value": "(826) 475-3138" 667 | } 668 | ] 669 | }, 670 | { 671 | "type": "email", 672 | "items": [ 673 | { 674 | "type": "work", 675 | "value": "mabelsantos@buzzmaker.com" 676 | }, 677 | { 678 | "type": "work", 679 | "value": "bellramirez@freakin.com" 680 | } 681 | ] 682 | }, 683 | { 684 | "type": "address", 685 | "items": [ 686 | { 687 | "type": "home", 688 | "value": "700 Duffield Street, Greenfields, Wisconsin, 6997" 689 | } 690 | ] 691 | } 692 | ] 693 | }, 694 | { 695 | "guid": "27e841e1-6d78-4657-9b98-37de45b22f1a", 696 | "background": "http://lorempixel.com/700/275", 697 | "name": "Cora Beasley", 698 | "group": 3, 699 | "handle": "Kerrideserunt", 700 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/commadelimited/128.jpg", 701 | "info": [ 702 | { 703 | "type": "phone", 704 | "items": [ 705 | { 706 | "type": "mobile", 707 | "value": "(908) 456-3684" 708 | }, 709 | { 710 | "type": "mobile", 711 | "value": "(972) 400-3319" 712 | }, 713 | { 714 | "type": "mobile", 715 | "value": "(928) 539-2639" 716 | } 717 | ] 718 | }, 719 | { 720 | "type": "email", 721 | "items": [ 722 | { 723 | "type": "home", 724 | "value": "haleyoconnor@toyletry.com" 725 | }, 726 | { 727 | "type": "work", 728 | "value": "deleonbarnes@viagreat.com" 729 | } 730 | ] 731 | }, 732 | { 733 | "type": "address", 734 | "items": [ 735 | { 736 | "type": "work", 737 | "value": "368 Brigham Street, Dixonville, Kansas, 1185" 738 | } 739 | ] 740 | } 741 | ] 742 | }, 743 | { 744 | "guid": "de2fa989-78e2-4964-8ef2-6b25c5f47d7a", 745 | "background": "http://lorempixel.com/700/275", 746 | "name": "Courtney Cain", 747 | "group": 2, 748 | "handle": "Elainefugiat", 749 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/bassamology/128.jpg", 750 | "info": [ 751 | { 752 | "type": "phone", 753 | "items": [ 754 | { 755 | "type": "home", 756 | "value": "(817) 459-2503" 757 | }, 758 | { 759 | "type": "home", 760 | "value": "(910) 599-3508" 761 | } 762 | ] 763 | }, 764 | { 765 | "type": "email", 766 | "items": [ 767 | { 768 | "type": "work", 769 | "value": "meyersreilly@talkalot.com" 770 | }, 771 | { 772 | "type": "work", 773 | "value": "normamccarthy@protodyne.com" 774 | } 775 | ] 776 | }, 777 | { 778 | "type": "address", 779 | "items": [ 780 | { 781 | "type": "home", 782 | "value": "666 Grand Avenue, Itmann, Idaho, 1599" 783 | }, 784 | { 785 | "type": "home", 786 | "value": "796 Crosby Avenue, Wikieup, Missouri, 4850" 787 | } 788 | ] 789 | } 790 | ] 791 | }, 792 | { 793 | "guid": "14c11ce7-4964-44ab-a69a-075f157b3553", 794 | "background": "http://lorempixel.com/700/275", 795 | "name": "Darla Walter", 796 | "group": 1, 797 | "handle": "Farmerexcepteur", 798 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/jqiuss/128.jpg", 799 | "info": [ 800 | { 801 | "type": "phone", 802 | "items": [ 803 | { 804 | "type": "work", 805 | "value": "(975) 472-3479" 806 | }, 807 | { 808 | "type": "work", 809 | "value": "(890) 575-2717" 810 | } 811 | ] 812 | }, 813 | { 814 | "type": "email", 815 | "items": [ 816 | { 817 | "type": "home", 818 | "value": "angelicapotter@tropolis.com" 819 | }, 820 | { 821 | "type": "home", 822 | "value": "andreacampbell@krog.com" 823 | } 824 | ] 825 | }, 826 | { 827 | "type": "address", 828 | "items": [ 829 | { 830 | "type": "work", 831 | "value": "463 Walker Court, Singer, New Hampshire, 8505" 832 | }, 833 | { 834 | "type": "home", 835 | "value": "163 Pineapple Street, Brethren, Kansas, 741" 836 | } 837 | ] 838 | } 839 | ] 840 | }, 841 | { 842 | "guid": "8d40b979-e431-4ab2-835b-848d20756d3b", 843 | "background": "http://lorempixel.com/700/275", 844 | "name": "Davenport Gonzales", 845 | "group": 2, 846 | "handle": "Katelynmollit", 847 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/derekebradley/128.jpg", 848 | "info": [ 849 | { 850 | "type": "phone", 851 | "items": [ 852 | { 853 | "type": "work", 854 | "value": "(900) 534-3886" 855 | }, 856 | { 857 | "type": "work", 858 | "value": "(818) 460-3414" 859 | } 860 | ] 861 | }, 862 | { 863 | "type": "email", 864 | "items": [ 865 | { 866 | "type": "work", 867 | "value": "corneliaclay@strezzo.com" 868 | }, 869 | { 870 | "type": "work", 871 | "value": "glennaleblanc@zolar.com" 872 | } 873 | ] 874 | }, 875 | { 876 | "type": "address", 877 | "items": [ 878 | { 879 | "type": "home", 880 | "value": "267 Irving Avenue, Dahlen, Tennessee, 7922" 881 | }, 882 | { 883 | "type": "home", 884 | "value": "102 Noel Avenue, Sharon, Wyoming, 6398" 885 | } 886 | ] 887 | } 888 | ] 889 | }, 890 | { 891 | "guid": "11d7ca0c-c4b6-4aa7-a8f2-de5f34989fa9", 892 | "background": "http://lorempixel.com/700/275", 893 | "name": "Davidson Noel", 894 | "group": 3, 895 | "handle": "Carmellacommodo", 896 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/mymyboy/128.jpg", 897 | "info": [ 898 | { 899 | "type": "phone", 900 | "items": [ 901 | { 902 | "type": "mobile", 903 | "value": "(946) 544-2020" 904 | }, 905 | { 906 | "type": "home", 907 | "value": "(816) 542-3342" 908 | } 909 | ] 910 | }, 911 | { 912 | "type": "email", 913 | "items": [ 914 | { 915 | "type": "home", 916 | "value": "nadineholland@zentia.com" 917 | }, 918 | { 919 | "type": "work", 920 | "value": "jeanniesanford@cognicode.com" 921 | } 922 | ] 923 | }, 924 | { 925 | "type": "address", 926 | "items": [ 927 | { 928 | "type": "work", 929 | "value": "802 Ferry Place, Bayview, Kentucky, 4778" 930 | }, 931 | { 932 | "type": "work", 933 | "value": "351 College Place, Vowinckel, Rhode Island, 5995" 934 | } 935 | ] 936 | } 937 | ] 938 | }, 939 | { 940 | "guid": "9eb44c93-f1d4-449f-969d-eee49073f0da", 941 | "background": "http://lorempixel.com/700/275", 942 | "name": "Deanna Conrad", 943 | "group": 2, 944 | "handle": "Dorothycommodo", 945 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/mugukamil/128.jpg", 946 | "info": [ 947 | { 948 | "type": "phone", 949 | "items": [ 950 | { 951 | "type": "home", 952 | "value": "(833) 504-2047" 953 | }, 954 | { 955 | "type": "mobile", 956 | "value": "(820) 493-3007" 957 | } 958 | ] 959 | }, 960 | { 961 | "type": "email", 962 | "items": [ 963 | { 964 | "type": "work", 965 | "value": "hamptonhumphrey@intrawear.com" 966 | } 967 | ] 968 | }, 969 | { 970 | "type": "address", 971 | "items": [ 972 | { 973 | "type": "home", 974 | "value": "958 Aitken Place, Bourg, North Carolina, 3875" 975 | } 976 | ] 977 | } 978 | ] 979 | }, 980 | { 981 | "guid": "a6d70b7b-fbc0-4003-9abe-fa7d312ce490", 982 | "background": "http://lorempixel.com/700/275", 983 | "name": "Delaney Beard", 984 | "group": 2, 985 | "handle": "Conwayanim", 986 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/hoangloi/128.jpg", 987 | "info": [ 988 | { 989 | "type": "phone", 990 | "items": [ 991 | { 992 | "type": "home", 993 | "value": "(888) 554-2115" 994 | }, 995 | { 996 | "type": "work", 997 | "value": "(832) 499-3592" 998 | } 999 | ] 1000 | }, 1001 | { 1002 | "type": "email", 1003 | "items": [ 1004 | { 1005 | "type": "home", 1006 | "value": "albadoyle@idealis.com" 1007 | }, 1008 | { 1009 | "type": "work", 1010 | "value": "hensonknowles@kraggle.com" 1011 | } 1012 | ] 1013 | }, 1014 | { 1015 | "type": "address", 1016 | "items": [ 1017 | { 1018 | "type": "work", 1019 | "value": "362 Woodhull Street, Farmington, Kentucky, 8664" 1020 | }, 1021 | { 1022 | "type": "work", 1023 | "value": "127 River Street, Salvo, Delaware, 2816" 1024 | } 1025 | ] 1026 | } 1027 | ] 1028 | }, 1029 | { 1030 | "guid": "224e139d-a64e-4764-8a88-083cfc5854ba", 1031 | "background": "http://lorempixel.com/700/275", 1032 | "name": "Desiree Maddox", 1033 | "group": 3, 1034 | "handle": "Georgedolor", 1035 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/xripunov/128.jpg", 1036 | "info": [ 1037 | { 1038 | "type": "phone", 1039 | "items": [ 1040 | { 1041 | "type": "home", 1042 | "value": "(867) 438-2374" 1043 | } 1044 | ] 1045 | }, 1046 | { 1047 | "type": "email", 1048 | "items": [ 1049 | { 1050 | "type": "home", 1051 | "value": "nelliechurch@quilk.com" 1052 | }, 1053 | { 1054 | "type": "home", 1055 | "value": "sawyerellis@makingway.com" 1056 | } 1057 | ] 1058 | }, 1059 | { 1060 | "type": "address", 1061 | "items": [ 1062 | { 1063 | "type": "work", 1064 | "value": "578 Lewis Place, Bellfountain, Delaware, 5606" 1065 | }, 1066 | { 1067 | "type": "home", 1068 | "value": "952 Joval Court, Jacksonwald, Ohio, 4105" 1069 | } 1070 | ] 1071 | } 1072 | ] 1073 | }, 1074 | { 1075 | "guid": "4d453cfa-071d-47db-aa4e-e80beeff5051", 1076 | "background": "http://lorempixel.com/700/275", 1077 | "name": "Dunn Velez", 1078 | "group": 0, 1079 | "handle": "Caraeu", 1080 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/heykenneth/128.jpg", 1081 | "info": [ 1082 | { 1083 | "type": "phone", 1084 | "items": [ 1085 | { 1086 | "type": "work", 1087 | "value": "(846) 583-2041" 1088 | }, 1089 | { 1090 | "type": "home", 1091 | "value": "(810) 434-2670" 1092 | } 1093 | ] 1094 | }, 1095 | { 1096 | "type": "email", 1097 | "items": [ 1098 | { 1099 | "type": "home", 1100 | "value": "kirstenwolf@eclipto.com" 1101 | }, 1102 | { 1103 | "type": "work", 1104 | "value": "watkinskelly@turnling.com" 1105 | } 1106 | ] 1107 | }, 1108 | { 1109 | "type": "address", 1110 | "items": [ 1111 | { 1112 | "type": "home", 1113 | "value": "842 Trucklemans Lane, Courtland, Washington, 5671" 1114 | }, 1115 | { 1116 | "type": "home", 1117 | "value": "159 Chestnut Avenue, Marienthal, Oregon, 5143" 1118 | } 1119 | ] 1120 | } 1121 | ] 1122 | }, 1123 | { 1124 | "guid": "8576b012-1ab3-4523-bb18-a39a8ac059a4", 1125 | "background": "http://lorempixel.com/700/275", 1126 | "name": "Ebony Hester", 1127 | "group": 3, 1128 | "handle": "Conniequi", 1129 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/magoo04/128.jpg", 1130 | "info": [ 1131 | { 1132 | "type": "phone", 1133 | "items": [ 1134 | { 1135 | "type": "mobile", 1136 | "value": "(913) 588-3003" 1137 | }, 1138 | { 1139 | "type": "home", 1140 | "value": "(931) 489-2650" 1141 | } 1142 | ] 1143 | }, 1144 | { 1145 | "type": "email", 1146 | "items": [ 1147 | { 1148 | "type": "home", 1149 | "value": "loweharmon@makingway.com" 1150 | } 1151 | ] 1152 | }, 1153 | { 1154 | "type": "address", 1155 | "items": [ 1156 | { 1157 | "type": "home", 1158 | "value": "339 Lafayette Walk, Springdale, Indiana, 5580" 1159 | }, 1160 | { 1161 | "type": "home", 1162 | "value": "359 Sedgwick Place, Tetherow, Georgia, 6009" 1163 | } 1164 | ] 1165 | } 1166 | ] 1167 | }, 1168 | { 1169 | "guid": "736e7f3d-924b-4445-830b-3dd527564a9d", 1170 | "background": "http://lorempixel.com/700/275", 1171 | "name": "Felicia Cantrell", 1172 | "group": 1, 1173 | "handle": "Mcintyreproident", 1174 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/mirfanqureshi/128.jpg", 1175 | "info": [ 1176 | { 1177 | "type": "phone", 1178 | "items": [ 1179 | { 1180 | "type": "mobile", 1181 | "value": "(862) 538-2579" 1182 | }, 1183 | { 1184 | "type": "mobile", 1185 | "value": "(889) 426-3072" 1186 | }, 1187 | { 1188 | "type": "work", 1189 | "value": "(973) 474-2114" 1190 | } 1191 | ] 1192 | }, 1193 | { 1194 | "type": "email", 1195 | "items": [ 1196 | { 1197 | "type": "home", 1198 | "value": "burnsmerrill@nipaz.com" 1199 | } 1200 | ] 1201 | }, 1202 | { 1203 | "type": "address", 1204 | "items": [ 1205 | { 1206 | "type": "work", 1207 | "value": "683 Grattan Street, Laurelton, Michigan, 9177" 1208 | }, 1209 | { 1210 | "type": "work", 1211 | "value": "561 Canda Avenue, Marenisco, Nevada, 2077" 1212 | } 1213 | ] 1214 | } 1215 | ] 1216 | }, 1217 | { 1218 | "guid": "35b9c47e-f985-468d-b14b-94ac7874d162", 1219 | "background": "http://lorempixel.com/700/275", 1220 | "name": "Franco Bell", 1221 | "group": 4, 1222 | "handle": "Cynthiaullamco", 1223 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/gonzalorobaina/128.jpg", 1224 | "info": [ 1225 | { 1226 | "type": "phone", 1227 | "items": [ 1228 | { 1229 | "type": "home", 1230 | "value": "(853) 416-2182" 1231 | }, 1232 | { 1233 | "type": "mobile", 1234 | "value": "(874) 435-2788" 1235 | } 1236 | ] 1237 | }, 1238 | { 1239 | "type": "email", 1240 | "items": [ 1241 | { 1242 | "type": "home", 1243 | "value": "reynadiaz@melbacor.com" 1244 | }, 1245 | { 1246 | "type": "home", 1247 | "value": "glassdaniels@zanity.com" 1248 | } 1249 | ] 1250 | }, 1251 | { 1252 | "type": "address", 1253 | "items": [ 1254 | { 1255 | "type": "work", 1256 | "value": "992 Duffield Street, Kula, Iowa, 9594" 1257 | }, 1258 | { 1259 | "type": "work", 1260 | "value": "413 Conover Street, Juarez, North Carolina, 3771" 1261 | } 1262 | ] 1263 | } 1264 | ] 1265 | }, 1266 | { 1267 | "guid": "c6191514-6f98-4158-80f0-ab85aa3e6ec5", 1268 | "background": "http://lorempixel.com/700/275", 1269 | "name": "Freeman Mcbride", 1270 | "group": 2, 1271 | "handle": "Bergid", 1272 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/amandabuzard/128.jpg", 1273 | "info": [ 1274 | { 1275 | "type": "phone", 1276 | "items": [ 1277 | { 1278 | "type": "work", 1279 | "value": "(921) 590-3431" 1280 | }, 1281 | { 1282 | "type": "home", 1283 | "value": "(855) 575-2494" 1284 | }, 1285 | { 1286 | "type": "mobile", 1287 | "value": "(820) 578-3111" 1288 | } 1289 | ] 1290 | }, 1291 | { 1292 | "type": "email", 1293 | "items": [ 1294 | { 1295 | "type": "work", 1296 | "value": "lydiaavila@renovize.com" 1297 | }, 1298 | { 1299 | "type": "work", 1300 | "value": "lenawright@interfind.com" 1301 | } 1302 | ] 1303 | }, 1304 | { 1305 | "type": "address", 1306 | "items": [ 1307 | { 1308 | "type": "home", 1309 | "value": "675 Kossuth Place, Volta, New York, 9050" 1310 | } 1311 | ] 1312 | } 1313 | ] 1314 | }, 1315 | { 1316 | "guid": "2bc3d3b2-5664-498c-8a3d-45253d52c137", 1317 | "background": "http://lorempixel.com/700/275", 1318 | "name": "Gabrielle Calhoun", 1319 | "group": 2, 1320 | "handle": "Lancasterculpa", 1321 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/horaciobella/128.jpg", 1322 | "info": [ 1323 | { 1324 | "type": "phone", 1325 | "items": [ 1326 | { 1327 | "type": "home", 1328 | "value": "(897) 597-3836" 1329 | } 1330 | ] 1331 | }, 1332 | { 1333 | "type": "email", 1334 | "items": [ 1335 | { 1336 | "type": "work", 1337 | "value": "deanlangley@extremo.com" 1338 | } 1339 | ] 1340 | }, 1341 | { 1342 | "type": "address", 1343 | "items": [ 1344 | { 1345 | "type": "home", 1346 | "value": "475 Linwood Street, Emison, West Virginia, 2690" 1347 | }, 1348 | { 1349 | "type": "home", 1350 | "value": "147 Bethel Loop, Nicut, Wyoming, 8066" 1351 | } 1352 | ] 1353 | } 1354 | ] 1355 | }, 1356 | { 1357 | "guid": "0bcdddb9-01bb-4032-a6a3-b317bc334e30", 1358 | "background": "http://lorempixel.com/700/275", 1359 | "name": "Gibbs Berry", 1360 | "group": 0, 1361 | "handle": "Armstrongcommodo", 1362 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/rpeezy/128.jpg", 1363 | "info": [ 1364 | { 1365 | "type": "phone", 1366 | "items": [ 1367 | { 1368 | "type": "work", 1369 | "value": "(931) 498-3714" 1370 | }, 1371 | { 1372 | "type": "mobile", 1373 | "value": "(818) 573-3427" 1374 | }, 1375 | { 1376 | "type": "mobile", 1377 | "value": "(894) 586-3042" 1378 | } 1379 | ] 1380 | }, 1381 | { 1382 | "type": "email", 1383 | "items": [ 1384 | { 1385 | "type": "work", 1386 | "value": "charityskinner@cipromox.com" 1387 | } 1388 | ] 1389 | }, 1390 | { 1391 | "type": "address", 1392 | "items": [ 1393 | { 1394 | "type": "home", 1395 | "value": "300 Oxford Walk, Shindler, Hawaii, 6237" 1396 | } 1397 | ] 1398 | } 1399 | ] 1400 | }, 1401 | { 1402 | "guid": "b386dc45-8c3a-4c7d-8039-65aeaa6771ed", 1403 | "background": "http://lorempixel.com/700/275", 1404 | "name": "Guerra Hernandez", 1405 | "group": 0, 1406 | "handle": "Kristentempor", 1407 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/petebernardo/128.jpg", 1408 | "info": [ 1409 | { 1410 | "type": "phone", 1411 | "items": [ 1412 | { 1413 | "type": "work", 1414 | "value": "(935) 450-3831" 1415 | } 1416 | ] 1417 | }, 1418 | { 1419 | "type": "email", 1420 | "items": [ 1421 | { 1422 | "type": "work", 1423 | "value": "diazsoto@xyqag.com" 1424 | } 1425 | ] 1426 | }, 1427 | { 1428 | "type": "address", 1429 | "items": [ 1430 | { 1431 | "type": "home", 1432 | "value": "373 Village Court, Ryderwood, Pennsylvania, 4386" 1433 | } 1434 | ] 1435 | } 1436 | ] 1437 | }, 1438 | { 1439 | "guid": "9a0ef643-8b9f-4a5f-9958-6e85fae7a15f", 1440 | "background": "http://lorempixel.com/700/275", 1441 | "name": "Haley Arnold", 1442 | "group": 3, 1443 | "handle": "Madelinealiqua", 1444 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/mocabyte/128.jpg", 1445 | "info": [ 1446 | { 1447 | "type": "phone", 1448 | "items": [ 1449 | { 1450 | "type": "mobile", 1451 | "value": "(895) 451-3011" 1452 | } 1453 | ] 1454 | }, 1455 | { 1456 | "type": "email", 1457 | "items": [ 1458 | { 1459 | "type": "home", 1460 | "value": "houserichard@noralex.com" 1461 | }, 1462 | { 1463 | "type": "home", 1464 | "value": "curtishenson@xurban.com" 1465 | } 1466 | ] 1467 | }, 1468 | { 1469 | "type": "address", 1470 | "items": [ 1471 | { 1472 | "type": "home", 1473 | "value": "485 Grove Street, Bladensburg, Alabama, 7172" 1474 | } 1475 | ] 1476 | } 1477 | ] 1478 | }, 1479 | { 1480 | "guid": "d452e8cc-a613-4508-9de9-77f5a8ad9ec1", 1481 | "background": "http://lorempixel.com/700/275", 1482 | "name": "Haley Moreno", 1483 | "group": 4, 1484 | "handle": "Catherineconsequat", 1485 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/ilya_pestov/128.jpg", 1486 | "info": [ 1487 | { 1488 | "type": "phone", 1489 | "items": [ 1490 | { 1491 | "type": "mobile", 1492 | "value": "(878) 579-2848" 1493 | }, 1494 | { 1495 | "type": "work", 1496 | "value": "(832) 579-2098" 1497 | } 1498 | ] 1499 | }, 1500 | { 1501 | "type": "email", 1502 | "items": [ 1503 | { 1504 | "type": "home", 1505 | "value": "krismelton@quarmony.com" 1506 | } 1507 | ] 1508 | }, 1509 | { 1510 | "type": "address", 1511 | "items": [ 1512 | { 1513 | "type": "home", 1514 | "value": "973 Christopher Avenue, Woodburn, Nebraska, 8427" 1515 | }, 1516 | { 1517 | "type": "home", 1518 | "value": "759 Locust Avenue, Walton, Illinois, 7554" 1519 | } 1520 | ] 1521 | } 1522 | ] 1523 | }, 1524 | { 1525 | "guid": "81f0929c-7cde-4252-a536-6bde0139e97b", 1526 | "background": "http://lorempixel.com/700/275", 1527 | "name": "Harrell Church", 1528 | "group": 4, 1529 | "handle": "Patrickipsum", 1530 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/nachtmeister/128.jpg", 1531 | "info": [ 1532 | { 1533 | "type": "phone", 1534 | "items": [ 1535 | { 1536 | "type": "home", 1537 | "value": "(884) 495-2654" 1538 | }, 1539 | { 1540 | "type": "home", 1541 | "value": "(963) 465-3500" 1542 | }, 1543 | { 1544 | "type": "mobile", 1545 | "value": "(938) 537-2825" 1546 | } 1547 | ] 1548 | }, 1549 | { 1550 | "type": "email", 1551 | "items": [ 1552 | { 1553 | "type": "home", 1554 | "value": "marissabishop@zanity.com" 1555 | }, 1556 | { 1557 | "type": "home", 1558 | "value": "irenehebert@zisis.com" 1559 | } 1560 | ] 1561 | }, 1562 | { 1563 | "type": "address", 1564 | "items": [ 1565 | { 1566 | "type": "home", 1567 | "value": "130 Garden Street, Independence, New York, 7275" 1568 | } 1569 | ] 1570 | } 1571 | ] 1572 | }, 1573 | { 1574 | "guid": "dbcab9ef-3c9f-4330-8f29-9811131af52f", 1575 | "background": "http://lorempixel.com/700/275", 1576 | "name": "Hayden Beck", 1577 | "group": 3, 1578 | "handle": "Jennynostrud", 1579 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/linux29/128.jpg", 1580 | "info": [ 1581 | { 1582 | "type": "phone", 1583 | "items": [ 1584 | { 1585 | "type": "home", 1586 | "value": "(887) 417-3277" 1587 | }, 1588 | { 1589 | "type": "work", 1590 | "value": "(925) 444-2530" 1591 | } 1592 | ] 1593 | }, 1594 | { 1595 | "type": "email", 1596 | "items": [ 1597 | { 1598 | "type": "home", 1599 | "value": "krismurray@rodeocean.com" 1600 | } 1601 | ] 1602 | }, 1603 | { 1604 | "type": "address", 1605 | "items": [ 1606 | { 1607 | "type": "home", 1608 | "value": "760 Calyer Street, Durham, Massachusetts, 8413" 1609 | }, 1610 | { 1611 | "type": "home", 1612 | "value": "443 Conduit Boulevard, Carbonville, Alabama, 402" 1613 | } 1614 | ] 1615 | } 1616 | ] 1617 | }, 1618 | { 1619 | "guid": "aee3ed9d-3655-4a83-8c37-59918d093435", 1620 | "background": "http://lorempixel.com/700/275", 1621 | "name": "Heidi Barrera", 1622 | "group": 3, 1623 | "handle": "Hurstpariatur", 1624 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/grahamkennery/128.jpg", 1625 | "info": [ 1626 | { 1627 | "type": "phone", 1628 | "items": [ 1629 | { 1630 | "type": "work", 1631 | "value": "(818) 402-3397" 1632 | }, 1633 | { 1634 | "type": "home", 1635 | "value": "(923) 568-2336" 1636 | } 1637 | ] 1638 | }, 1639 | { 1640 | "type": "email", 1641 | "items": [ 1642 | { 1643 | "type": "work", 1644 | "value": "onealkane@glukgluk.com" 1645 | }, 1646 | { 1647 | "type": "work", 1648 | "value": "donovanklein@microluxe.com" 1649 | } 1650 | ] 1651 | }, 1652 | { 1653 | "type": "address", 1654 | "items": [ 1655 | { 1656 | "type": "home", 1657 | "value": "486 Pioneer Street, Accoville, Virginia, 9230" 1658 | } 1659 | ] 1660 | } 1661 | ] 1662 | }, 1663 | { 1664 | "guid": "02a6eb24-5be7-4d20-8ae2-fd74588215c1", 1665 | "background": "http://lorempixel.com/700/275", 1666 | "name": "Higgins Clements", 1667 | "group": 4, 1668 | "handle": "Berthaveniam", 1669 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/ifarafonow/128.jpg", 1670 | "info": [ 1671 | { 1672 | "type": "phone", 1673 | "items": [ 1674 | { 1675 | "type": "home", 1676 | "value": "(801) 456-3428" 1677 | }, 1678 | { 1679 | "type": "home", 1680 | "value": "(863) 438-2795" 1681 | } 1682 | ] 1683 | }, 1684 | { 1685 | "type": "email", 1686 | "items": [ 1687 | { 1688 | "type": "work", 1689 | "value": "benderhubbard@recognia.com" 1690 | }, 1691 | { 1692 | "type": "work", 1693 | "value": "agnesfrench@intrawear.com" 1694 | } 1695 | ] 1696 | }, 1697 | { 1698 | "type": "address", 1699 | "items": [ 1700 | { 1701 | "type": "work", 1702 | "value": "874 Thatford Avenue, Noblestown, Arizona, 5445" 1703 | } 1704 | ] 1705 | } 1706 | ] 1707 | }, 1708 | { 1709 | "guid": "ff507c57-3418-47d3-9fa8-eef0ba121438", 1710 | "background": "http://lorempixel.com/700/275", 1711 | "name": "Hill Velasquez", 1712 | "group": 3, 1713 | "handle": "Englishincididunt", 1714 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/bluefx_/128.jpg", 1715 | "info": [ 1716 | { 1717 | "type": "phone", 1718 | "items": [ 1719 | { 1720 | "type": "work", 1721 | "value": "(842) 595-2048" 1722 | } 1723 | ] 1724 | }, 1725 | { 1726 | "type": "email", 1727 | "items": [ 1728 | { 1729 | "type": "home", 1730 | "value": "claudiabullock@centuria.com" 1731 | } 1732 | ] 1733 | }, 1734 | { 1735 | "type": "address", 1736 | "items": [ 1737 | { 1738 | "type": "home", 1739 | "value": "760 Remsen Street, Coinjock, Delaware, 1419" 1740 | }, 1741 | { 1742 | "type": "work", 1743 | "value": "638 Jodie Court, Cavalero, Arkansas, 2831" 1744 | } 1745 | ] 1746 | } 1747 | ] 1748 | }, 1749 | { 1750 | "guid": "fa5c0866-c44f-47b5-89cd-df3910fc11ba", 1751 | "background": "http://lorempixel.com/700/275", 1752 | "name": "Hopper Cochran", 1753 | "group": 3, 1754 | "handle": "Sanchezfugiat", 1755 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/mattbilotti/128.jpg", 1756 | "info": [ 1757 | { 1758 | "type": "phone", 1759 | "items": [ 1760 | { 1761 | "type": "work", 1762 | "value": "(922) 517-2355" 1763 | }, 1764 | { 1765 | "type": "mobile", 1766 | "value": "(924) 485-3609" 1767 | }, 1768 | { 1769 | "type": "work", 1770 | "value": "(845) 469-3889" 1771 | } 1772 | ] 1773 | }, 1774 | { 1775 | "type": "email", 1776 | "items": [ 1777 | { 1778 | "type": "home", 1779 | "value": "amaliavega@duflex.com" 1780 | }, 1781 | { 1782 | "type": "work", 1783 | "value": "gaylesantana@zillar.com" 1784 | } 1785 | ] 1786 | }, 1787 | { 1788 | "type": "address", 1789 | "items": [ 1790 | { 1791 | "type": "home", 1792 | "value": "403 Broome Street, Watchtower, New Jersey, 8778" 1793 | }, 1794 | { 1795 | "type": "home", 1796 | "value": "683 Lake Street, Eggertsville, Idaho, 6030" 1797 | } 1798 | ] 1799 | } 1800 | ] 1801 | }, 1802 | { 1803 | "guid": "fbcccd6f-4c95-46fd-a678-a3073751f459", 1804 | "background": "http://lorempixel.com/700/275", 1805 | "name": "Hunter Cantrell", 1806 | "group": 4, 1807 | "handle": "Amparocupidatat", 1808 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/falconerie/128.jpg", 1809 | "info": [ 1810 | { 1811 | "type": "phone", 1812 | "items": [ 1813 | { 1814 | "type": "home", 1815 | "value": "(925) 544-2356" 1816 | }, 1817 | { 1818 | "type": "work", 1819 | "value": "(807) 511-3719" 1820 | } 1821 | ] 1822 | }, 1823 | { 1824 | "type": "email", 1825 | "items": [ 1826 | { 1827 | "type": "work", 1828 | "value": "kimberlykim@sarasonic.com" 1829 | }, 1830 | { 1831 | "type": "home", 1832 | "value": "daphnegrant@olucore.com" 1833 | } 1834 | ] 1835 | }, 1836 | { 1837 | "type": "address", 1838 | "items": [ 1839 | { 1840 | "type": "work", 1841 | "value": "919 Boynton Place, Riegelwood, Rhode Island, 1540" 1842 | }, 1843 | { 1844 | "type": "home", 1845 | "value": "957 Carlton Avenue, Albany, Georgia, 559" 1846 | } 1847 | ] 1848 | } 1849 | ] 1850 | }, 1851 | { 1852 | "guid": "f1a77869-f362-4af5-a78d-2c48258f8935", 1853 | "background": "http://lorempixel.com/700/275", 1854 | "name": "Ines Hutchinson", 1855 | "group": 3, 1856 | "handle": "Odessasit", 1857 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/elliotnolten/128.jpg", 1858 | "info": [ 1859 | { 1860 | "type": "phone", 1861 | "items": [ 1862 | { 1863 | "type": "home", 1864 | "value": "(843) 500-3473" 1865 | }, 1866 | { 1867 | "type": "mobile", 1868 | "value": "(972) 488-3934" 1869 | }, 1870 | { 1871 | "type": "work", 1872 | "value": "(837) 520-3780" 1873 | } 1874 | ] 1875 | }, 1876 | { 1877 | "type": "email", 1878 | "items": [ 1879 | { 1880 | "type": "work", 1881 | "value": "loweryewing@sloganaut.com" 1882 | } 1883 | ] 1884 | }, 1885 | { 1886 | "type": "address", 1887 | "items": [ 1888 | { 1889 | "type": "work", 1890 | "value": "977 Central Avenue, Newkirk, California, 4991" 1891 | }, 1892 | { 1893 | "type": "work", 1894 | "value": "722 Congress Street, Chalfant, New Mexico, 2574" 1895 | } 1896 | ] 1897 | } 1898 | ] 1899 | }, 1900 | { 1901 | "guid": "0d2324cd-f7ee-4788-9bf7-61050d46900a", 1902 | "background": "http://lorempixel.com/700/275", 1903 | "name": "Irene Sellers", 1904 | "group": 1, 1905 | "handle": "Juareznisi", 1906 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/chris_witko/128.jpg", 1907 | "info": [ 1908 | { 1909 | "type": "phone", 1910 | "items": [ 1911 | { 1912 | "type": "work", 1913 | "value": "(999) 587-2602" 1914 | }, 1915 | { 1916 | "type": "mobile", 1917 | "value": "(907) 497-2755" 1918 | }, 1919 | { 1920 | "type": "work", 1921 | "value": "(947) 569-3199" 1922 | } 1923 | ] 1924 | }, 1925 | { 1926 | "type": "email", 1927 | "items": [ 1928 | { 1929 | "type": "work", 1930 | "value": "griffinshort@bicol.com" 1931 | }, 1932 | { 1933 | "type": "work", 1934 | "value": "kimdale@eclipsent.com" 1935 | } 1936 | ] 1937 | }, 1938 | { 1939 | "type": "address", 1940 | "items": [ 1941 | { 1942 | "type": "home", 1943 | "value": "721 Miller Avenue, Starks, Maine, 7348" 1944 | }, 1945 | { 1946 | "type": "work", 1947 | "value": "249 Harrison Place, Ilchester, Tennessee, 5054" 1948 | } 1949 | ] 1950 | } 1951 | ] 1952 | }, 1953 | { 1954 | "guid": "dfc3a4fd-e787-4e17-85d3-19b3029b86fa", 1955 | "background": "http://lorempixel.com/700/275", 1956 | "name": "Jacqueline Ray", 1957 | "group": 0, 1958 | "handle": "Bridgetttempor", 1959 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/gaborenton/128.jpg", 1960 | "info": [ 1961 | { 1962 | "type": "phone", 1963 | "items": [ 1964 | { 1965 | "type": "home", 1966 | "value": "(874) 440-3502" 1967 | }, 1968 | { 1969 | "type": "work", 1970 | "value": "(951) 492-2552" 1971 | } 1972 | ] 1973 | }, 1974 | { 1975 | "type": "email", 1976 | "items": [ 1977 | { 1978 | "type": "work", 1979 | "value": "christiewood@chillium.com" 1980 | }, 1981 | { 1982 | "type": "home", 1983 | "value": "alicejoseph@sunclipse.com" 1984 | } 1985 | ] 1986 | }, 1987 | { 1988 | "type": "address", 1989 | "items": [ 1990 | { 1991 | "type": "home", 1992 | "value": "159 Rost Place, Baden, Minnesota, 3907" 1993 | }, 1994 | { 1995 | "type": "work", 1996 | "value": "941 Suydam Street, Lafferty, Oregon, 7105" 1997 | } 1998 | ] 1999 | } 2000 | ] 2001 | }, 2002 | { 2003 | "guid": "27a70ec2-ebbf-489a-9961-82b1972dcec4", 2004 | "background": "http://lorempixel.com/700/275", 2005 | "name": "Janine Tillman", 2006 | "group": 1, 2007 | "handle": "Mcleodqui", 2008 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/stefooo/128.jpg", 2009 | "info": [ 2010 | { 2011 | "type": "phone", 2012 | "items": [ 2013 | { 2014 | "type": "home", 2015 | "value": "(900) 457-3103" 2016 | }, 2017 | { 2018 | "type": "mobile", 2019 | "value": "(813) 515-3149" 2020 | }, 2021 | { 2022 | "type": "work", 2023 | "value": "(815) 463-2711" 2024 | } 2025 | ] 2026 | }, 2027 | { 2028 | "type": "email", 2029 | "items": [ 2030 | { 2031 | "type": "home", 2032 | "value": "sandramoss@utara.com" 2033 | } 2034 | ] 2035 | }, 2036 | { 2037 | "type": "address", 2038 | "items": [ 2039 | { 2040 | "type": "work", 2041 | "value": "679 Hamilton Walk, Southview, New York, 4696" 2042 | } 2043 | ] 2044 | } 2045 | ] 2046 | }, 2047 | { 2048 | "guid": "24cdf4b3-0f56-4972-802f-f1eacb924543", 2049 | "background": "http://lorempixel.com/700/275", 2050 | "name": "Jenifer Herman", 2051 | "group": 0, 2052 | "handle": "Jimenezdolor", 2053 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/carlyson/128.jpg", 2054 | "info": [ 2055 | { 2056 | "type": "phone", 2057 | "items": [ 2058 | { 2059 | "type": "home", 2060 | "value": "(845) 584-2823" 2061 | } 2062 | ] 2063 | }, 2064 | { 2065 | "type": "email", 2066 | "items": [ 2067 | { 2068 | "type": "work", 2069 | "value": "madelineleach@datacator.com" 2070 | }, 2071 | { 2072 | "type": "work", 2073 | "value": "moniquegordon@insectus.com" 2074 | } 2075 | ] 2076 | }, 2077 | { 2078 | "type": "address", 2079 | "items": [ 2080 | { 2081 | "type": "home", 2082 | "value": "290 Lancaster Avenue, Boomer, Kentucky, 6603" 2083 | } 2084 | ] 2085 | } 2086 | ] 2087 | }, 2088 | { 2089 | "guid": "ef4edc8d-3061-43e8-85bd-09d0b13d0280", 2090 | "background": "http://lorempixel.com/700/275", 2091 | "name": "Jessie Mathis", 2092 | "group": 1, 2093 | "handle": "Kimberleyqui", 2094 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/timgthomas/128.jpg", 2095 | "info": [ 2096 | { 2097 | "type": "phone", 2098 | "items": [ 2099 | { 2100 | "type": "mobile", 2101 | "value": "(966) 409-3344" 2102 | } 2103 | ] 2104 | }, 2105 | { 2106 | "type": "email", 2107 | "items": [ 2108 | { 2109 | "type": "home", 2110 | "value": "charitysherman@viasia.com" 2111 | }, 2112 | { 2113 | "type": "home", 2114 | "value": "goffmcgowan@euron.com" 2115 | } 2116 | ] 2117 | }, 2118 | { 2119 | "type": "address", 2120 | "items": [ 2121 | { 2122 | "type": "home", 2123 | "value": "424 Columbia Place, Rockhill, Hawaii, 5847" 2124 | }, 2125 | { 2126 | "type": "home", 2127 | "value": "145 India Street, Fairfield, Florida, 7446" 2128 | } 2129 | ] 2130 | } 2131 | ] 2132 | }, 2133 | { 2134 | "guid": "ead44789-c90d-473a-94e6-960b6d86273a", 2135 | "background": "http://lorempixel.com/700/275", 2136 | "name": "Jo Nichols", 2137 | "group": 1, 2138 | "handle": "Whitneyvoluptate", 2139 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/darylws/128.jpg", 2140 | "info": [ 2141 | { 2142 | "type": "phone", 2143 | "items": [ 2144 | { 2145 | "type": "work", 2146 | "value": "(944) 554-3705" 2147 | }, 2148 | { 2149 | "type": "work", 2150 | "value": "(844) 446-2041" 2151 | } 2152 | ] 2153 | }, 2154 | { 2155 | "type": "email", 2156 | "items": [ 2157 | { 2158 | "type": "work", 2159 | "value": "pottsgallegos@zilphur.com" 2160 | }, 2161 | { 2162 | "type": "work", 2163 | "value": "morganhenson@virva.com" 2164 | } 2165 | ] 2166 | }, 2167 | { 2168 | "type": "address", 2169 | "items": [ 2170 | { 2171 | "type": "home", 2172 | "value": "719 Metropolitan Avenue, Waverly, Maine, 469" 2173 | }, 2174 | { 2175 | "type": "home", 2176 | "value": "960 Florence Avenue, Holcombe, Maryland, 9094" 2177 | } 2178 | ] 2179 | } 2180 | ] 2181 | }, 2182 | { 2183 | "guid": "43a7d55e-1a9e-423b-bec2-e9a7a141a96f", 2184 | "background": "http://lorempixel.com/700/275", 2185 | "name": "Juana Best", 2186 | "group": 2, 2187 | "handle": "Louisanostrud", 2188 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/amayvs/128.jpg", 2189 | "info": [ 2190 | { 2191 | "type": "phone", 2192 | "items": [ 2193 | { 2194 | "type": "home", 2195 | "value": "(901) 511-2372" 2196 | } 2197 | ] 2198 | }, 2199 | { 2200 | "type": "email", 2201 | "items": [ 2202 | { 2203 | "type": "work", 2204 | "value": "queenbarnett@panzent.com" 2205 | } 2206 | ] 2207 | }, 2208 | { 2209 | "type": "address", 2210 | "items": [ 2211 | { 2212 | "type": "work", 2213 | "value": "836 Railroad Avenue, Mammoth, Idaho, 1957" 2214 | }, 2215 | { 2216 | "type": "home", 2217 | "value": "313 Tiffany Place, Noxen, Virginia, 7244" 2218 | } 2219 | ] 2220 | } 2221 | ] 2222 | }, 2223 | { 2224 | "guid": "82297b02-ef8d-408d-a139-0357f77a9037", 2225 | "background": "http://lorempixel.com/700/275", 2226 | "name": "Justine Gardner", 2227 | "group": 3, 2228 | "handle": "Rossexcepteur", 2229 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/jagan123/128.jpg", 2230 | "info": [ 2231 | { 2232 | "type": "phone", 2233 | "items": [ 2234 | { 2235 | "type": "mobile", 2236 | "value": "(929) 474-2753" 2237 | }, 2238 | { 2239 | "type": "mobile", 2240 | "value": "(821) 454-3920" 2241 | }, 2242 | { 2243 | "type": "mobile", 2244 | "value": "(910) 477-2439" 2245 | } 2246 | ] 2247 | }, 2248 | { 2249 | "type": "email", 2250 | "items": [ 2251 | { 2252 | "type": "work", 2253 | "value": "elviafranks@comdom.com" 2254 | } 2255 | ] 2256 | }, 2257 | { 2258 | "type": "address", 2259 | "items": [ 2260 | { 2261 | "type": "home", 2262 | "value": "166 Downing Street, Zeba, North Dakota, 4765" 2263 | } 2264 | ] 2265 | } 2266 | ] 2267 | }, 2268 | { 2269 | "guid": "36c89822-8b05-40fc-a993-3bc5567bfc6a", 2270 | "background": "http://lorempixel.com/700/275", 2271 | "name": "Kay Smith", 2272 | "group": 0, 2273 | "handle": "Tamraipsum", 2274 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/loganjlambert/128.jpg", 2275 | "info": [ 2276 | { 2277 | "type": "phone", 2278 | "items": [ 2279 | { 2280 | "type": "work", 2281 | "value": "(961) 535-2851" 2282 | } 2283 | ] 2284 | }, 2285 | { 2286 | "type": "email", 2287 | "items": [ 2288 | { 2289 | "type": "home", 2290 | "value": "jacquelinemaynard@enerforce.com" 2291 | }, 2292 | { 2293 | "type": "work", 2294 | "value": "calderonmclean@grupoli.com" 2295 | } 2296 | ] 2297 | }, 2298 | { 2299 | "type": "address", 2300 | "items": [ 2301 | { 2302 | "type": "home", 2303 | "value": "755 Knight Court, Cotopaxi, Arkansas, 4245" 2304 | }, 2305 | { 2306 | "type": "home", 2307 | "value": "793 Danforth Street, Edenburg, New Hampshire, 4857" 2308 | } 2309 | ] 2310 | } 2311 | ] 2312 | }, 2313 | { 2314 | "guid": "55caf94f-8d2e-45e9-a8e3-f51ef1de1b46", 2315 | "background": "http://lorempixel.com/700/275", 2316 | "name": "Keith Griffin", 2317 | "group": 1, 2318 | "handle": "Rosseiusmod", 2319 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/cggaurav/128.jpg", 2320 | "info": [ 2321 | { 2322 | "type": "phone", 2323 | "items": [ 2324 | { 2325 | "type": "mobile", 2326 | "value": "(824) 400-3322" 2327 | } 2328 | ] 2329 | }, 2330 | { 2331 | "type": "email", 2332 | "items": [ 2333 | { 2334 | "type": "work", 2335 | "value": "hurleylopez@zentix.com" 2336 | } 2337 | ] 2338 | }, 2339 | { 2340 | "type": "address", 2341 | "items": [ 2342 | { 2343 | "type": "work", 2344 | "value": "114 Conklin Avenue, Glasgow, Minnesota, 278" 2345 | } 2346 | ] 2347 | } 2348 | ] 2349 | }, 2350 | { 2351 | "guid": "29f9e8bd-50ba-4bb1-951e-5bb6ffa487be", 2352 | "background": "http://lorempixel.com/700/275", 2353 | "name": "Kent Harrington", 2354 | "group": 2, 2355 | "handle": "Mcleanexcepteur", 2356 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/teeragit/128.jpg", 2357 | "info": [ 2358 | { 2359 | "type": "phone", 2360 | "items": [ 2361 | { 2362 | "type": "work", 2363 | "value": "(978) 464-3095" 2364 | }, 2365 | { 2366 | "type": "home", 2367 | "value": "(895) 463-2645" 2368 | } 2369 | ] 2370 | }, 2371 | { 2372 | "type": "email", 2373 | "items": [ 2374 | { 2375 | "type": "home", 2376 | "value": "jerriobrien@utarian.com" 2377 | }, 2378 | { 2379 | "type": "work", 2380 | "value": "luzmason@inrt.com" 2381 | } 2382 | ] 2383 | }, 2384 | { 2385 | "type": "address", 2386 | "items": [ 2387 | { 2388 | "type": "home", 2389 | "value": "338 Butler Street, Hiseville, Montana, 4259" 2390 | } 2391 | ] 2392 | } 2393 | ] 2394 | }, 2395 | { 2396 | "guid": "f319f8aa-1159-4315-94fc-d4a580b06e2d", 2397 | "background": "http://lorempixel.com/700/275", 2398 | "name": "Keri Price", 2399 | "group": 1, 2400 | "handle": "Barberlaborum", 2401 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/jennyyo/128.jpg", 2402 | "info": [ 2403 | { 2404 | "type": "phone", 2405 | "items": [ 2406 | { 2407 | "type": "home", 2408 | "value": "(997) 561-2892" 2409 | }, 2410 | { 2411 | "type": "home", 2412 | "value": "(913) 512-3292" 2413 | } 2414 | ] 2415 | }, 2416 | { 2417 | "type": "email", 2418 | "items": [ 2419 | { 2420 | "type": "work", 2421 | "value": "tameranunez@slofast.com" 2422 | } 2423 | ] 2424 | }, 2425 | { 2426 | "type": "address", 2427 | "items": [ 2428 | { 2429 | "type": "home", 2430 | "value": "191 Dean Street, Windsor, Connecticut, 1783" 2431 | }, 2432 | { 2433 | "type": "work", 2434 | "value": "572 Forest Place, Kennedyville, Florida, 5263" 2435 | } 2436 | ] 2437 | } 2438 | ] 2439 | }, 2440 | { 2441 | "guid": "9014209e-f104-47bc-9b1c-e1f29e07148b", 2442 | "background": "http://lorempixel.com/700/275", 2443 | "name": "Kirby Welch", 2444 | "group": 1, 2445 | "handle": "Julialaboris", 2446 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/joaoedumedeiros/128.jpg", 2447 | "info": [ 2448 | { 2449 | "type": "phone", 2450 | "items": [ 2451 | { 2452 | "type": "work", 2453 | "value": "(874) 556-2439" 2454 | }, 2455 | { 2456 | "type": "work", 2457 | "value": "(999) 460-3599" 2458 | }, 2459 | { 2460 | "type": "home", 2461 | "value": "(963) 445-3073" 2462 | } 2463 | ] 2464 | }, 2465 | { 2466 | "type": "email", 2467 | "items": [ 2468 | { 2469 | "type": "home", 2470 | "value": "ruizflores@blanet.com" 2471 | }, 2472 | { 2473 | "type": "home", 2474 | "value": "mccoymorse@multron.com" 2475 | } 2476 | ] 2477 | }, 2478 | { 2479 | "type": "address", 2480 | "items": [ 2481 | { 2482 | "type": "work", 2483 | "value": "898 Rock Street, Knowlton, Minnesota, 8546" 2484 | } 2485 | ] 2486 | } 2487 | ] 2488 | }, 2489 | { 2490 | "guid": "1a004f3c-236e-457c-b3c3-7d74ac126e02", 2491 | "background": "http://lorempixel.com/700/275", 2492 | "name": "Lacy Suarez", 2493 | "group": 2, 2494 | "handle": "Mcleodsunt", 2495 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/derekcramer/128.jpg", 2496 | "info": [ 2497 | { 2498 | "type": "phone", 2499 | "items": [ 2500 | { 2501 | "type": "home", 2502 | "value": "(950) 583-3810" 2503 | }, 2504 | { 2505 | "type": "home", 2506 | "value": "(881) 404-3746" 2507 | }, 2508 | { 2509 | "type": "home", 2510 | "value": "(829) 420-3905" 2511 | } 2512 | ] 2513 | }, 2514 | { 2515 | "type": "email", 2516 | "items": [ 2517 | { 2518 | "type": "home", 2519 | "value": "gracielaemerson@enaut.com" 2520 | } 2521 | ] 2522 | }, 2523 | { 2524 | "type": "address", 2525 | "items": [ 2526 | { 2527 | "type": "home", 2528 | "value": "417 Poly Place, Mathews, Maine, 3218" 2529 | } 2530 | ] 2531 | } 2532 | ] 2533 | }, 2534 | { 2535 | "guid": "945d2f3f-a5c3-49dc-bf7a-00002007bdfd", 2536 | "background": "http://lorempixel.com/700/275", 2537 | "name": "Le Byers", 2538 | "group": 3, 2539 | "handle": "Gregoryin", 2540 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/megdraws/128.jpg", 2541 | "info": [ 2542 | { 2543 | "type": "phone", 2544 | "items": [ 2545 | { 2546 | "type": "home", 2547 | "value": "(958) 400-3618" 2548 | }, 2549 | { 2550 | "type": "work", 2551 | "value": "(848) 412-3924" 2552 | }, 2553 | { 2554 | "type": "mobile", 2555 | "value": "(989) 403-3282" 2556 | } 2557 | ] 2558 | }, 2559 | { 2560 | "type": "email", 2561 | "items": [ 2562 | { 2563 | "type": "work", 2564 | "value": "lynettewiggins@quonk.com" 2565 | }, 2566 | { 2567 | "type": "work", 2568 | "value": "miashort@geekfarm.com" 2569 | } 2570 | ] 2571 | }, 2572 | { 2573 | "type": "address", 2574 | "items": [ 2575 | { 2576 | "type": "work", 2577 | "value": "462 Dunne Court, Grazierville, Wyoming, 6082" 2578 | }, 2579 | { 2580 | "type": "work", 2581 | "value": "958 Lexington Avenue, Ironton, Louisiana, 7445" 2582 | } 2583 | ] 2584 | } 2585 | ] 2586 | }, 2587 | { 2588 | "guid": "e2c4237b-4425-41b7-85c2-bc3c89fc6ed1", 2589 | "background": "http://lorempixel.com/700/275", 2590 | "name": "Lila Mendoza", 2591 | "group": 2, 2592 | "handle": "Lopezdolore", 2593 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/perfectflow/128.jpg", 2594 | "info": [ 2595 | { 2596 | "type": "phone", 2597 | "items": [ 2598 | { 2599 | "type": "mobile", 2600 | "value": "(871) 498-2916" 2601 | }, 2602 | { 2603 | "type": "mobile", 2604 | "value": "(820) 432-2496" 2605 | }, 2606 | { 2607 | "type": "home", 2608 | "value": "(886) 536-2414" 2609 | } 2610 | ] 2611 | }, 2612 | { 2613 | "type": "email", 2614 | "items": [ 2615 | { 2616 | "type": "work", 2617 | "value": "waltersbartlett@photobin.com" 2618 | }, 2619 | { 2620 | "type": "home", 2621 | "value": "hawkinsmcdowell@danja.com" 2622 | } 2623 | ] 2624 | }, 2625 | { 2626 | "type": "address", 2627 | "items": [ 2628 | { 2629 | "type": "work", 2630 | "value": "678 Otsego Street, Shaft, South Carolina, 7871" 2631 | } 2632 | ] 2633 | } 2634 | ] 2635 | }, 2636 | { 2637 | "guid": "fd5377b5-2976-4eac-96bb-3970d0194b98", 2638 | "background": "http://lorempixel.com/700/275", 2639 | "name": "Lott Case", 2640 | "group": 4, 2641 | "handle": "Cantunostrud", 2642 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/marclgonzales/128.jpg", 2643 | "info": [ 2644 | { 2645 | "type": "phone", 2646 | "items": [ 2647 | { 2648 | "type": "work", 2649 | "value": "(963) 510-3531" 2650 | }, 2651 | { 2652 | "type": "work", 2653 | "value": "(833) 417-2072" 2654 | }, 2655 | { 2656 | "type": "mobile", 2657 | "value": "(868) 446-2090" 2658 | } 2659 | ] 2660 | }, 2661 | { 2662 | "type": "email", 2663 | "items": [ 2664 | { 2665 | "type": "work", 2666 | "value": "rosediaz@oatfarm.com" 2667 | }, 2668 | { 2669 | "type": "work", 2670 | "value": "wyattosborne@miraclis.com" 2671 | } 2672 | ] 2673 | }, 2674 | { 2675 | "type": "address", 2676 | "items": [ 2677 | { 2678 | "type": "home", 2679 | "value": "325 Elm Avenue, Kylertown, Texas, 3534" 2680 | } 2681 | ] 2682 | } 2683 | ] 2684 | }, 2685 | { 2686 | "guid": "85e2e251-859c-4f66-b883-cb1f18168c55", 2687 | "background": "http://lorempixel.com/700/275", 2688 | "name": "Lynda Martinez", 2689 | "group": 4, 2690 | "handle": "Eddiealiqua", 2691 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/carlosblanco_eu/128.jpg", 2692 | "info": [ 2693 | { 2694 | "type": "phone", 2695 | "items": [ 2696 | { 2697 | "type": "work", 2698 | "value": "(895) 560-3726" 2699 | }, 2700 | { 2701 | "type": "work", 2702 | "value": "(866) 540-2560" 2703 | }, 2704 | { 2705 | "type": "home", 2706 | "value": "(864) 522-2370" 2707 | } 2708 | ] 2709 | }, 2710 | { 2711 | "type": "email", 2712 | "items": [ 2713 | { 2714 | "type": "work", 2715 | "value": "agneswelch@eventix.com" 2716 | }, 2717 | { 2718 | "type": "work", 2719 | "value": "oliviacontreras@xelegyl.com" 2720 | } 2721 | ] 2722 | }, 2723 | { 2724 | "type": "address", 2725 | "items": [ 2726 | { 2727 | "type": "home", 2728 | "value": "235 Willoughby Avenue, Katonah, Colorado, 2921" 2729 | }, 2730 | { 2731 | "type": "home", 2732 | "value": "298 Bragg Court, Dellview, Oregon, 4082" 2733 | } 2734 | ] 2735 | } 2736 | ] 2737 | }, 2738 | { 2739 | "guid": "79c24f7f-e30f-45f4-a740-67786e623739", 2740 | "background": "http://lorempixel.com/700/275", 2741 | "name": "Mara Hart", 2742 | "group": 4, 2743 | "handle": "Ursulafugiat", 2744 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/maz/128.jpg", 2745 | "info": [ 2746 | { 2747 | "type": "phone", 2748 | "items": [ 2749 | { 2750 | "type": "home", 2751 | "value": "(818) 532-3865" 2752 | } 2753 | ] 2754 | }, 2755 | { 2756 | "type": "email", 2757 | "items": [ 2758 | { 2759 | "type": "home", 2760 | "value": "kelseywalker@imperium.com" 2761 | }, 2762 | { 2763 | "type": "work", 2764 | "value": "wigginsmccarty@comtour.com" 2765 | } 2766 | ] 2767 | }, 2768 | { 2769 | "type": "address", 2770 | "items": [ 2771 | { 2772 | "type": "home", 2773 | "value": "925 Cooper Street, Malott, Missouri, 5110" 2774 | } 2775 | ] 2776 | } 2777 | ] 2778 | }, 2779 | { 2780 | "guid": "302a999d-f617-497f-aeae-fda456466a76", 2781 | "background": "http://lorempixel.com/700/275", 2782 | "name": "Marquez Mendez", 2783 | "group": 4, 2784 | "handle": "Jennafugiat", 2785 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/yigitpinarbasi/128.jpg", 2786 | "info": [ 2787 | { 2788 | "type": "phone", 2789 | "items": [ 2790 | { 2791 | "type": "home", 2792 | "value": "(954) 497-3380" 2793 | }, 2794 | { 2795 | "type": "home", 2796 | "value": "(878) 557-2599" 2797 | } 2798 | ] 2799 | }, 2800 | { 2801 | "type": "email", 2802 | "items": [ 2803 | { 2804 | "type": "work", 2805 | "value": "katherinecollins@kiggle.com" 2806 | }, 2807 | { 2808 | "type": "home", 2809 | "value": "cannongraves@tingles.com" 2810 | } 2811 | ] 2812 | }, 2813 | { 2814 | "type": "address", 2815 | "items": [ 2816 | { 2817 | "type": "work", 2818 | "value": "463 Congress Street, Itmann, Vermont, 4052" 2819 | }, 2820 | { 2821 | "type": "work", 2822 | "value": "139 Empire Boulevard, Maxville, Louisiana, 6325" 2823 | } 2824 | ] 2825 | } 2826 | ] 2827 | }, 2828 | { 2829 | "guid": "c88b6731-a56f-4152-bc01-c11ae5de50e8", 2830 | "background": "http://lorempixel.com/700/275", 2831 | "name": "May Oneal", 2832 | "group": 4, 2833 | "handle": "Gretaofficia", 2834 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/tereshenkov/128.jpg", 2835 | "info": [ 2836 | { 2837 | "type": "phone", 2838 | "items": [ 2839 | { 2840 | "type": "home", 2841 | "value": "(966) 439-3809" 2842 | } 2843 | ] 2844 | }, 2845 | { 2846 | "type": "email", 2847 | "items": [ 2848 | { 2849 | "type": "work", 2850 | "value": "mortonparks@quilm.com" 2851 | }, 2852 | { 2853 | "type": "work", 2854 | "value": "maddoxgood@gazak.com" 2855 | } 2856 | ] 2857 | }, 2858 | { 2859 | "type": "address", 2860 | "items": [ 2861 | { 2862 | "type": "work", 2863 | "value": "378 Highland Avenue, Goldfield, South Carolina, 5574" 2864 | } 2865 | ] 2866 | } 2867 | ] 2868 | }, 2869 | { 2870 | "guid": "eff20815-b2b0-4d6c-9c35-7a604ade5658", 2871 | "background": "http://lorempixel.com/700/275", 2872 | "name": "Melody Gould", 2873 | "group": 3, 2874 | "handle": "Osbornincididunt", 2875 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/anjhero/128.jpg", 2876 | "info": [ 2877 | { 2878 | "type": "phone", 2879 | "items": [ 2880 | { 2881 | "type": "home", 2882 | "value": "(984) 544-3597" 2883 | } 2884 | ] 2885 | }, 2886 | { 2887 | "type": "email", 2888 | "items": [ 2889 | { 2890 | "type": "home", 2891 | "value": "bauergilbert@sonique.com" 2892 | } 2893 | ] 2894 | }, 2895 | { 2896 | "type": "address", 2897 | "items": [ 2898 | { 2899 | "type": "work", 2900 | "value": "545 Crystal Street, Caron, New Hampshire, 682" 2901 | } 2902 | ] 2903 | } 2904 | ] 2905 | }, 2906 | { 2907 | "guid": "913d09fc-bb2b-4fdf-9deb-e966d32c1bf9", 2908 | "background": "http://lorempixel.com/700/275", 2909 | "name": "Millie Moran", 2910 | "group": 4, 2911 | "handle": "Gonzalesullamco", 2912 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/goddardlewis/128.jpg", 2913 | "info": [ 2914 | { 2915 | "type": "phone", 2916 | "items": [ 2917 | { 2918 | "type": "home", 2919 | "value": "(981) 501-3993" 2920 | } 2921 | ] 2922 | }, 2923 | { 2924 | "type": "email", 2925 | "items": [ 2926 | { 2927 | "type": "work", 2928 | "value": "vaughncarr@ludak.com" 2929 | }, 2930 | { 2931 | "type": "work", 2932 | "value": "oconnorpage@quantalia.com" 2933 | } 2934 | ] 2935 | }, 2936 | { 2937 | "type": "address", 2938 | "items": [ 2939 | { 2940 | "type": "work", 2941 | "value": "619 Noel Avenue, Cassel, Louisiana, 9980" 2942 | } 2943 | ] 2944 | } 2945 | ] 2946 | }, 2947 | { 2948 | "guid": "89ec2cbd-0443-4611-8171-3b9a0d2c31dc", 2949 | "background": "http://lorempixel.com/700/275", 2950 | "name": "Mitzi Gilliam", 2951 | "group": 2, 2952 | "handle": "Abbottpariatur", 2953 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/sebashton/128.jpg", 2954 | "info": [ 2955 | { 2956 | "type": "phone", 2957 | "items": [ 2958 | { 2959 | "type": "home", 2960 | "value": "(846) 490-3277" 2961 | }, 2962 | { 2963 | "type": "home", 2964 | "value": "(965) 587-2235" 2965 | } 2966 | ] 2967 | }, 2968 | { 2969 | "type": "email", 2970 | "items": [ 2971 | { 2972 | "type": "work", 2973 | "value": "velazquezduncan@ginkogene.com" 2974 | } 2975 | ] 2976 | }, 2977 | { 2978 | "type": "address", 2979 | "items": [ 2980 | { 2981 | "type": "work", 2982 | "value": "241 Forbell Street, Kiskimere, Iowa, 728" 2983 | }, 2984 | { 2985 | "type": "home", 2986 | "value": "448 Post Court, Baden, New Jersey, 8543" 2987 | } 2988 | ] 2989 | } 2990 | ] 2991 | }, 2992 | { 2993 | "guid": "833a7328-d4a0-4bda-bdaa-fee8c2cf8658", 2994 | "background": "http://lorempixel.com/700/275", 2995 | "name": "Morin Levy", 2996 | "group": 1, 2997 | "handle": "Ochoamollit", 2998 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/josevnclch/128.jpg", 2999 | "info": [ 3000 | { 3001 | "type": "phone", 3002 | "items": [ 3003 | { 3004 | "type": "work", 3005 | "value": "(810) 520-3961" 3006 | }, 3007 | { 3008 | "type": "home", 3009 | "value": "(941) 523-3874" 3010 | }, 3011 | { 3012 | "type": "mobile", 3013 | "value": "(968) 436-2294" 3014 | } 3015 | ] 3016 | }, 3017 | { 3018 | "type": "email", 3019 | "items": [ 3020 | { 3021 | "type": "home", 3022 | "value": "malindasweeney@quailcom.com" 3023 | }, 3024 | { 3025 | "type": "work", 3026 | "value": "alexandersavage@eclipsent.com" 3027 | } 3028 | ] 3029 | }, 3030 | { 3031 | "type": "address", 3032 | "items": [ 3033 | { 3034 | "type": "work", 3035 | "value": "749 Dank Court, Retsof, Vermont, 5315" 3036 | } 3037 | ] 3038 | } 3039 | ] 3040 | }, 3041 | { 3042 | "guid": "ab0e5afc-a535-41ec-9cf4-c91c57eac961", 3043 | "background": "http://lorempixel.com/700/275", 3044 | "name": "Myrna Lindsay", 3045 | "group": 1, 3046 | "handle": "Benjaminnon", 3047 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/allagringaus/128.jpg", 3048 | "info": [ 3049 | { 3050 | "type": "phone", 3051 | "items": [ 3052 | { 3053 | "type": "mobile", 3054 | "value": "(936) 533-2719" 3055 | } 3056 | ] 3057 | }, 3058 | { 3059 | "type": "email", 3060 | "items": [ 3061 | { 3062 | "type": "work", 3063 | "value": "tommiehood@corepan.com" 3064 | } 3065 | ] 3066 | }, 3067 | { 3068 | "type": "address", 3069 | "items": [ 3070 | { 3071 | "type": "work", 3072 | "value": "489 Ridge Court, Taft, New Mexico, 5608" 3073 | }, 3074 | { 3075 | "type": "home", 3076 | "value": "540 Rugby Road, Chesterfield, Texas, 6082" 3077 | } 3078 | ] 3079 | } 3080 | ] 3081 | }, 3082 | { 3083 | "guid": "d4019fcc-1f71-4cf7-9303-95391ffba281", 3084 | "background": "http://lorempixel.com/700/275", 3085 | "name": "Nash Fernandez", 3086 | "group": 2, 3087 | "handle": "Nitaenim", 3088 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/mohanrohith/128.jpg", 3089 | "info": [ 3090 | { 3091 | "type": "phone", 3092 | "items": [ 3093 | { 3094 | "type": "mobile", 3095 | "value": "(837) 542-3154" 3096 | }, 3097 | { 3098 | "type": "work", 3099 | "value": "(952) 600-3408" 3100 | } 3101 | ] 3102 | }, 3103 | { 3104 | "type": "email", 3105 | "items": [ 3106 | { 3107 | "type": "work", 3108 | "value": "houstonguerrero@musaphics.com" 3109 | } 3110 | ] 3111 | }, 3112 | { 3113 | "type": "address", 3114 | "items": [ 3115 | { 3116 | "type": "home", 3117 | "value": "742 Bridgewater Street, Thornport, Rhode Island, 3888" 3118 | }, 3119 | { 3120 | "type": "work", 3121 | "value": "966 Quincy Street, Fidelis, Oklahoma, 7674" 3122 | } 3123 | ] 3124 | } 3125 | ] 3126 | }, 3127 | { 3128 | "guid": "c230d942-4c8a-4793-9c9a-b186304853e9", 3129 | "background": "http://lorempixel.com/700/275", 3130 | "name": "Pamela Holland", 3131 | "group": 4, 3132 | "handle": "Wrightanim", 3133 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/colirpixoil/128.jpg", 3134 | "info": [ 3135 | { 3136 | "type": "phone", 3137 | "items": [ 3138 | { 3139 | "type": "work", 3140 | "value": "(809) 563-3434" 3141 | }, 3142 | { 3143 | "type": "mobile", 3144 | "value": "(860) 588-3510" 3145 | } 3146 | ] 3147 | }, 3148 | { 3149 | "type": "email", 3150 | "items": [ 3151 | { 3152 | "type": "home", 3153 | "value": "angelicaharrell@premiant.com" 3154 | }, 3155 | { 3156 | "type": "home", 3157 | "value": "jenniferroberson@pholio.com" 3158 | } 3159 | ] 3160 | }, 3161 | { 3162 | "type": "address", 3163 | "items": [ 3164 | { 3165 | "type": "home", 3166 | "value": "569 Grimes Road, Darlington, Indiana, 815" 3167 | } 3168 | ] 3169 | } 3170 | ] 3171 | }, 3172 | { 3173 | "guid": "969272c2-3ee7-44dd-b5b2-27eaef78b9bf", 3174 | "background": "http://lorempixel.com/700/275", 3175 | "name": "Payne Madden", 3176 | "group": 3, 3177 | "handle": "Bairdut", 3178 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/buzzusborne/128.jpg", 3179 | "info": [ 3180 | { 3181 | "type": "phone", 3182 | "items": [ 3183 | { 3184 | "type": "work", 3185 | "value": "(895) 434-2764" 3186 | }, 3187 | { 3188 | "type": "work", 3189 | "value": "(880) 560-2236" 3190 | } 3191 | ] 3192 | }, 3193 | { 3194 | "type": "email", 3195 | "items": [ 3196 | { 3197 | "type": "work", 3198 | "value": "heathburks@zolarity.com" 3199 | }, 3200 | { 3201 | "type": "home", 3202 | "value": "wilderkoch@iplax.com" 3203 | } 3204 | ] 3205 | }, 3206 | { 3207 | "type": "address", 3208 | "items": [ 3209 | { 3210 | "type": "home", 3211 | "value": "591 Knapp Street, Finderne, Michigan, 6921" 3212 | } 3213 | ] 3214 | } 3215 | ] 3216 | }, 3217 | { 3218 | "guid": "2c2cbbc7-3e99-40a8-bcd9-8c4f1d46284a", 3219 | "background": "http://lorempixel.com/700/275", 3220 | "name": "Potter Wilson", 3221 | "group": 3, 3222 | "handle": "Baldwinut", 3223 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/S0ufi4n3/128.jpg", 3224 | "info": [ 3225 | { 3226 | "type": "phone", 3227 | "items": [ 3228 | { 3229 | "type": "home", 3230 | "value": "(872) 565-3963" 3231 | }, 3232 | { 3233 | "type": "mobile", 3234 | "value": "(813) 546-2926" 3235 | } 3236 | ] 3237 | }, 3238 | { 3239 | "type": "email", 3240 | "items": [ 3241 | { 3242 | "type": "work", 3243 | "value": "arlenerussell@mangelica.com" 3244 | } 3245 | ] 3246 | }, 3247 | { 3248 | "type": "address", 3249 | "items": [ 3250 | { 3251 | "type": "work", 3252 | "value": "135 Cass Place, Ferney, Florida, 6344" 3253 | } 3254 | ] 3255 | } 3256 | ] 3257 | }, 3258 | { 3259 | "guid": "4caf9874-b8f3-43ed-999d-b3b085b2bfb3", 3260 | "background": "http://lorempixel.com/700/275", 3261 | "name": "Randi Elliott", 3262 | "group": 2, 3263 | "handle": "Hazelest", 3264 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/stan/128.jpg", 3265 | "info": [ 3266 | { 3267 | "type": "phone", 3268 | "items": [ 3269 | { 3270 | "type": "home", 3271 | "value": "(806) 484-2182" 3272 | } 3273 | ] 3274 | }, 3275 | { 3276 | "type": "email", 3277 | "items": [ 3278 | { 3279 | "type": "home", 3280 | "value": "snydertodd@eplosion.com" 3281 | } 3282 | ] 3283 | }, 3284 | { 3285 | "type": "address", 3286 | "items": [ 3287 | { 3288 | "type": "work", 3289 | "value": "915 Carroll Street, Kipp, Maryland, 1662" 3290 | } 3291 | ] 3292 | } 3293 | ] 3294 | }, 3295 | { 3296 | "guid": "3ecf9c16-07c6-4559-9795-19347fe9775a", 3297 | "background": "http://lorempixel.com/700/275", 3298 | "name": "Reba Gates", 3299 | "group": 4, 3300 | "handle": "Saundravoluptate", 3301 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/sta1ex/128.jpg", 3302 | "info": [ 3303 | { 3304 | "type": "phone", 3305 | "items": [ 3306 | { 3307 | "type": "home", 3308 | "value": "(804) 597-4000" 3309 | }, 3310 | { 3311 | "type": "home", 3312 | "value": "(894) 464-2999" 3313 | }, 3314 | { 3315 | "type": "work", 3316 | "value": "(855) 412-3771" 3317 | } 3318 | ] 3319 | }, 3320 | { 3321 | "type": "email", 3322 | "items": [ 3323 | { 3324 | "type": "home", 3325 | "value": "mckayfowler@exposa.com" 3326 | }, 3327 | { 3328 | "type": "work", 3329 | "value": "garrisongomez@comcur.com" 3330 | } 3331 | ] 3332 | }, 3333 | { 3334 | "type": "address", 3335 | "items": [ 3336 | { 3337 | "type": "home", 3338 | "value": "552 Whitney Avenue, Vicksburg, Utah, 8299" 3339 | }, 3340 | { 3341 | "type": "home", 3342 | "value": "572 Debevoise Avenue, Rossmore, Tennessee, 4927" 3343 | } 3344 | ] 3345 | } 3346 | ] 3347 | }, 3348 | { 3349 | "guid": "8f428511-6bb6-4a95-ad0d-0abe9e4659e0", 3350 | "background": "http://lorempixel.com/700/275", 3351 | "name": "Reeves Mueller", 3352 | "group": 4, 3353 | "handle": "Dyersit", 3354 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/snowwrite/128.jpg", 3355 | "info": [ 3356 | { 3357 | "type": "phone", 3358 | "items": [ 3359 | { 3360 | "type": "work", 3361 | "value": "(851) 506-3197" 3362 | } 3363 | ] 3364 | }, 3365 | { 3366 | "type": "email", 3367 | "items": [ 3368 | { 3369 | "type": "work", 3370 | "value": "morsecompton@solaren.com" 3371 | }, 3372 | { 3373 | "type": "home", 3374 | "value": "whitfieldcollier@earthmark.com" 3375 | } 3376 | ] 3377 | }, 3378 | { 3379 | "type": "address", 3380 | "items": [ 3381 | { 3382 | "type": "home", 3383 | "value": "645 Commercial Street, Beason, North Dakota, 425" 3384 | }, 3385 | { 3386 | "type": "work", 3387 | "value": "780 Brown Street, Chesterfield, South Dakota, 1960" 3388 | } 3389 | ] 3390 | } 3391 | ] 3392 | }, 3393 | { 3394 | "guid": "456b878e-8f3e-4cce-85a7-3cab52d5b4fb", 3395 | "background": "http://lorempixel.com/700/275", 3396 | "name": "Reid Dyer", 3397 | "group": 2, 3398 | "handle": "Cherrysunt", 3399 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/Chakintosh/128.jpg", 3400 | "info": [ 3401 | { 3402 | "type": "phone", 3403 | "items": [ 3404 | { 3405 | "type": "mobile", 3406 | "value": "(946) 527-3689" 3407 | }, 3408 | { 3409 | "type": "mobile", 3410 | "value": "(943) 459-3699" 3411 | } 3412 | ] 3413 | }, 3414 | { 3415 | "type": "email", 3416 | "items": [ 3417 | { 3418 | "type": "work", 3419 | "value": "chapmanleonard@comtrek.com" 3420 | }, 3421 | { 3422 | "type": "home", 3423 | "value": "terraturner@liquidoc.com" 3424 | } 3425 | ] 3426 | }, 3427 | { 3428 | "type": "address", 3429 | "items": [ 3430 | { 3431 | "type": "work", 3432 | "value": "599 Knight Court, Bethany, Oklahoma, 4816" 3433 | }, 3434 | { 3435 | "type": "home", 3436 | "value": "130 Reed Street, Homeworth, Pennsylvania, 3174" 3437 | } 3438 | ] 3439 | } 3440 | ] 3441 | }, 3442 | { 3443 | "guid": "cb025ed3-7563-4861-b904-2b5b525d05cb", 3444 | "background": "http://lorempixel.com/700/275", 3445 | "name": "Rena Mckay", 3446 | "group": 0, 3447 | "handle": "Vasqueznon", 3448 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/rmlewisuk/128.jpg", 3449 | "info": [ 3450 | { 3451 | "type": "phone", 3452 | "items": [ 3453 | { 3454 | "type": "home", 3455 | "value": "(962) 451-2986" 3456 | }, 3457 | { 3458 | "type": "home", 3459 | "value": "(810) 543-3754" 3460 | }, 3461 | { 3462 | "type": "home", 3463 | "value": "(819) 515-2930" 3464 | } 3465 | ] 3466 | }, 3467 | { 3468 | "type": "email", 3469 | "items": [ 3470 | { 3471 | "type": "work", 3472 | "value": "terrafields@bezal.com" 3473 | }, 3474 | { 3475 | "type": "work", 3476 | "value": "romerorussell@uniworld.com" 3477 | } 3478 | ] 3479 | }, 3480 | { 3481 | "type": "address", 3482 | "items": [ 3483 | { 3484 | "type": "home", 3485 | "value": "233 Fenimore Street, Wolcott, Ohio, 4753" 3486 | }, 3487 | { 3488 | "type": "work", 3489 | "value": "383 Harkness Avenue, Oretta, West Virginia, 6441" 3490 | } 3491 | ] 3492 | } 3493 | ] 3494 | }, 3495 | { 3496 | "guid": "ae08f69c-8a5f-4f0b-bc64-9128c28941de", 3497 | "background": "http://lorempixel.com/700/275", 3498 | "name": "Roberts Dunlap", 3499 | "group": 1, 3500 | "handle": "Terryincididunt", 3501 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/sydlawrence/128.jpg", 3502 | "info": [ 3503 | { 3504 | "type": "phone", 3505 | "items": [ 3506 | { 3507 | "type": "work", 3508 | "value": "(823) 432-3570" 3509 | }, 3510 | { 3511 | "type": "work", 3512 | "value": "(977) 435-2378" 3513 | } 3514 | ] 3515 | }, 3516 | { 3517 | "type": "email", 3518 | "items": [ 3519 | { 3520 | "type": "home", 3521 | "value": "ballwilson@gology.com" 3522 | }, 3523 | { 3524 | "type": "home", 3525 | "value": "harringtonheath@miraclis.com" 3526 | } 3527 | ] 3528 | }, 3529 | { 3530 | "type": "address", 3531 | "items": [ 3532 | { 3533 | "type": "home", 3534 | "value": "518 Delmonico Place, Driftwood, New Jersey, 1296" 3535 | } 3536 | ] 3537 | } 3538 | ] 3539 | }, 3540 | { 3541 | "guid": "5a5e2311-94b1-446e-9b48-d1e33ef506d6", 3542 | "background": "http://lorempixel.com/700/275", 3543 | "name": "Rosario Sanford", 3544 | "group": 4, 3545 | "handle": "Sharonnon", 3546 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/jakemoore/128.jpg", 3547 | "info": [ 3548 | { 3549 | "type": "phone", 3550 | "items": [ 3551 | { 3552 | "type": "mobile", 3553 | "value": "(947) 559-3750" 3554 | }, 3555 | { 3556 | "type": "work", 3557 | "value": "(852) 421-2624" 3558 | }, 3559 | { 3560 | "type": "mobile", 3561 | "value": "(885) 537-3657" 3562 | } 3563 | ] 3564 | }, 3565 | { 3566 | "type": "email", 3567 | "items": [ 3568 | { 3569 | "type": "work", 3570 | "value": "amybradley@atomica.com" 3571 | }, 3572 | { 3573 | "type": "home", 3574 | "value": "guthriemcpherson@dognost.com" 3575 | } 3576 | ] 3577 | }, 3578 | { 3579 | "type": "address", 3580 | "items": [ 3581 | { 3582 | "type": "home", 3583 | "value": "322 Beard Street, Romeville, Arizona, 7264" 3584 | } 3585 | ] 3586 | } 3587 | ] 3588 | }, 3589 | { 3590 | "guid": "9c07fe77-61d2-49cb-8ec3-bb3dd6c1939f", 3591 | "background": "http://lorempixel.com/700/275", 3592 | "name": "Rosario Woods", 3593 | "group": 2, 3594 | "handle": "Crosbyaliqua", 3595 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/kuldarkalvik/128.jpg", 3596 | "info": [ 3597 | { 3598 | "type": "phone", 3599 | "items": [ 3600 | { 3601 | "type": "work", 3602 | "value": "(872) 462-2181" 3603 | }, 3604 | { 3605 | "type": "work", 3606 | "value": "(947) 486-3927" 3607 | } 3608 | ] 3609 | }, 3610 | { 3611 | "type": "email", 3612 | "items": [ 3613 | { 3614 | "type": "home", 3615 | "value": "foleyhendricks@zerbina.com" 3616 | }, 3617 | { 3618 | "type": "home", 3619 | "value": "barbrahowe@rameon.com" 3620 | } 3621 | ] 3622 | }, 3623 | { 3624 | "type": "address", 3625 | "items": [ 3626 | { 3627 | "type": "home", 3628 | "value": "549 Canda Avenue, Forbestown, Florida, 6200" 3629 | } 3630 | ] 3631 | } 3632 | ] 3633 | }, 3634 | { 3635 | "guid": "794332a9-090a-4e4b-b65c-c390254c4951", 3636 | "background": "http://lorempixel.com/700/275", 3637 | "name": "Rosie Hogan", 3638 | "group": 0, 3639 | "handle": "Trujillodolor", 3640 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/yigitpinarbasi/128.jpg", 3641 | "info": [ 3642 | { 3643 | "type": "phone", 3644 | "items": [ 3645 | { 3646 | "type": "work", 3647 | "value": "(980) 418-3092" 3648 | } 3649 | ] 3650 | }, 3651 | { 3652 | "type": "email", 3653 | "items": [ 3654 | { 3655 | "type": "home", 3656 | "value": "searshatfield@everest.com" 3657 | } 3658 | ] 3659 | }, 3660 | { 3661 | "type": "address", 3662 | "items": [ 3663 | { 3664 | "type": "work", 3665 | "value": "718 Hunterfly Place, Vowinckel, Nevada, 1840" 3666 | }, 3667 | { 3668 | "type": "work", 3669 | "value": "290 Verona Street, Crown, Nebraska, 7305" 3670 | } 3671 | ] 3672 | } 3673 | ] 3674 | }, 3675 | { 3676 | "guid": "325439ee-30bd-42be-a725-32e156f6db89", 3677 | "background": "http://lorempixel.com/700/275", 3678 | "name": "Sanders Mcclain", 3679 | "group": 1, 3680 | "handle": "Gutierrezest", 3681 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/kiwiupover/128.jpg", 3682 | "info": [ 3683 | { 3684 | "type": "phone", 3685 | "items": [ 3686 | { 3687 | "type": "work", 3688 | "value": "(864) 538-3496" 3689 | }, 3690 | { 3691 | "type": "home", 3692 | "value": "(872) 566-2910" 3693 | }, 3694 | { 3695 | "type": "mobile", 3696 | "value": "(828) 558-2407" 3697 | } 3698 | ] 3699 | }, 3700 | { 3701 | "type": "email", 3702 | "items": [ 3703 | { 3704 | "type": "work", 3705 | "value": "wadejohns@zidox.com" 3706 | }, 3707 | { 3708 | "type": "work", 3709 | "value": "vargasholman@moltonic.com" 3710 | } 3711 | ] 3712 | }, 3713 | { 3714 | "type": "address", 3715 | "items": [ 3716 | { 3717 | "type": "work", 3718 | "value": "125 Ashford Street, Barronett, Wisconsin, 6291" 3719 | }, 3720 | { 3721 | "type": "work", 3722 | "value": "993 Imlay Street, Gratton, Washington, 9236" 3723 | } 3724 | ] 3725 | } 3726 | ] 3727 | }, 3728 | { 3729 | "guid": "ae0329b5-ec52-4c76-89a6-6afc47e88e07", 3730 | "background": "http://lorempixel.com/700/275", 3731 | "name": "Sandra Fuller", 3732 | "group": 1, 3733 | "handle": "Livingstonsunt", 3734 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/bobbytwoshoes/128.jpg", 3735 | "info": [ 3736 | { 3737 | "type": "phone", 3738 | "items": [ 3739 | { 3740 | "type": "mobile", 3741 | "value": "(806) 517-3918" 3742 | } 3743 | ] 3744 | }, 3745 | { 3746 | "type": "email", 3747 | "items": [ 3748 | { 3749 | "type": "home", 3750 | "value": "katrinamalone@xoggle.com" 3751 | } 3752 | ] 3753 | }, 3754 | { 3755 | "type": "address", 3756 | "items": [ 3757 | { 3758 | "type": "home", 3759 | "value": "332 Madoc Avenue, Topaz, Nebraska, 2822" 3760 | }, 3761 | { 3762 | "type": "work", 3763 | "value": "685 Raleigh Place, Singer, Kansas, 3869" 3764 | } 3765 | ] 3766 | } 3767 | ] 3768 | }, 3769 | { 3770 | "guid": "28a5ccc3-3476-41ff-b78d-ce347f3811ad", 3771 | "background": "http://lorempixel.com/700/275", 3772 | "name": "Sandy Figueroa", 3773 | "group": 3, 3774 | "handle": "Latashado", 3775 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/isnifer/128.jpg", 3776 | "info": [ 3777 | { 3778 | "type": "phone", 3779 | "items": [ 3780 | { 3781 | "type": "mobile", 3782 | "value": "(951) 410-2922" 3783 | } 3784 | ] 3785 | }, 3786 | { 3787 | "type": "email", 3788 | "items": [ 3789 | { 3790 | "type": "work", 3791 | "value": "kimberleylott@nipaz.com" 3792 | }, 3793 | { 3794 | "type": "work", 3795 | "value": "whitneypena@zinca.com" 3796 | } 3797 | ] 3798 | }, 3799 | { 3800 | "type": "address", 3801 | "items": [ 3802 | { 3803 | "type": "work", 3804 | "value": "902 Ocean Parkway, Trinway, Alaska, 1440" 3805 | }, 3806 | { 3807 | "type": "work", 3808 | "value": "116 Ashland Place, Gordon, Pennsylvania, 3280" 3809 | } 3810 | ] 3811 | } 3812 | ] 3813 | }, 3814 | { 3815 | "guid": "3a319d54-9d56-4139-b880-aee5fdcd0def", 3816 | "background": "http://lorempixel.com/700/275", 3817 | "name": "Saunders Mack", 3818 | "group": 4, 3819 | "handle": "Serenaullamco", 3820 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/BenouarradeM/128.jpg", 3821 | "info": [ 3822 | { 3823 | "type": "phone", 3824 | "items": [ 3825 | { 3826 | "type": "mobile", 3827 | "value": "(861) 511-3335" 3828 | }, 3829 | { 3830 | "type": "mobile", 3831 | "value": "(987) 449-3188" 3832 | } 3833 | ] 3834 | }, 3835 | { 3836 | "type": "email", 3837 | "items": [ 3838 | { 3839 | "type": "home", 3840 | "value": "searsgarcia@beadzza.com" 3841 | }, 3842 | { 3843 | "type": "work", 3844 | "value": "shieldspeters@tripsch.com" 3845 | } 3846 | ] 3847 | }, 3848 | { 3849 | "type": "address", 3850 | "items": [ 3851 | { 3852 | "type": "work", 3853 | "value": "891 Matthews Place, Harleigh, North Dakota, 7610" 3854 | } 3855 | ] 3856 | } 3857 | ] 3858 | }, 3859 | { 3860 | "guid": "c376f627-8e48-4aa5-b1b0-de3e66635839", 3861 | "background": "http://lorempixel.com/700/275", 3862 | "name": "Stanton Shields", 3863 | "group": 0, 3864 | "handle": "Noreennon", 3865 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/poormini/128.jpg", 3866 | "info": [ 3867 | { 3868 | "type": "phone", 3869 | "items": [ 3870 | { 3871 | "type": "home", 3872 | "value": "(923) 556-2812" 3873 | } 3874 | ] 3875 | }, 3876 | { 3877 | "type": "email", 3878 | "items": [ 3879 | { 3880 | "type": "home", 3881 | "value": "rubywells@neteria.com" 3882 | } 3883 | ] 3884 | }, 3885 | { 3886 | "type": "address", 3887 | "items": [ 3888 | { 3889 | "type": "home", 3890 | "value": "222 Village Court, Rosburg, Utah, 6000" 3891 | }, 3892 | { 3893 | "type": "home", 3894 | "value": "115 Autumn Avenue, Catharine, Illinois, 4103" 3895 | } 3896 | ] 3897 | } 3898 | ] 3899 | }, 3900 | { 3901 | "guid": "172d815b-1c45-4093-a74e-2c1e5d3af853", 3902 | "background": "http://lorempixel.com/700/275", 3903 | "name": "Stefanie Winters", 3904 | "group": 4, 3905 | "handle": "Mitchellipsum", 3906 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/carlosgavina/128.jpg", 3907 | "info": [ 3908 | { 3909 | "type": "phone", 3910 | "items": [ 3911 | { 3912 | "type": "mobile", 3913 | "value": "(862) 481-3439" 3914 | }, 3915 | { 3916 | "type": "home", 3917 | "value": "(996) 545-2663" 3918 | }, 3919 | { 3920 | "type": "work", 3921 | "value": "(933) 428-2946" 3922 | } 3923 | ] 3924 | }, 3925 | { 3926 | "type": "email", 3927 | "items": [ 3928 | { 3929 | "type": "work", 3930 | "value": "nataliekelly@comfirm.com" 3931 | }, 3932 | { 3933 | "type": "home", 3934 | "value": "garrisonmorrow@geekmosis.com" 3935 | } 3936 | ] 3937 | }, 3938 | { 3939 | "type": "address", 3940 | "items": [ 3941 | { 3942 | "type": "home", 3943 | "value": "373 Gerald Court, Homeworth, South Dakota, 647" 3944 | } 3945 | ] 3946 | } 3947 | ] 3948 | }, 3949 | { 3950 | "guid": "e8dc7bec-20b6-47a5-ad8a-3ccb5827e8de", 3951 | "background": "http://lorempixel.com/700/275", 3952 | "name": "Sweet Nunez", 3953 | "group": 4, 3954 | "handle": "Thompsoncupidatat", 3955 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/chadengle/128.jpg", 3956 | "info": [ 3957 | { 3958 | "type": "phone", 3959 | "items": [ 3960 | { 3961 | "type": "home", 3962 | "value": "(985) 457-2304" 3963 | } 3964 | ] 3965 | }, 3966 | { 3967 | "type": "email", 3968 | "items": [ 3969 | { 3970 | "type": "home", 3971 | "value": "carolinestark@fleetmix.com" 3972 | } 3973 | ] 3974 | }, 3975 | { 3976 | "type": "address", 3977 | "items": [ 3978 | { 3979 | "type": "home", 3980 | "value": "165 Lefferts Place, Keyport, Ohio, 4063" 3981 | } 3982 | ] 3983 | } 3984 | ] 3985 | }, 3986 | { 3987 | "guid": "25fe30ec-a099-40de-a81c-673349cdaddb", 3988 | "background": "http://lorempixel.com/700/275", 3989 | "name": "Tamara Kirby", 3990 | "group": 0, 3991 | "handle": "Morancupidatat", 3992 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/exentrich/128.jpg", 3993 | "info": [ 3994 | { 3995 | "type": "phone", 3996 | "items": [ 3997 | { 3998 | "type": "home", 3999 | "value": "(977) 497-2377" 4000 | }, 4001 | { 4002 | "type": "mobile", 4003 | "value": "(925) 523-2473" 4004 | }, 4005 | { 4006 | "type": "home", 4007 | "value": "(927) 531-3913" 4008 | } 4009 | ] 4010 | }, 4011 | { 4012 | "type": "email", 4013 | "items": [ 4014 | { 4015 | "type": "home", 4016 | "value": "angeliamelendez@utara.com" 4017 | } 4018 | ] 4019 | }, 4020 | { 4021 | "type": "address", 4022 | "items": [ 4023 | { 4024 | "type": "work", 4025 | "value": "777 Elmwood Avenue, Broadlands, Georgia, 6426" 4026 | }, 4027 | { 4028 | "type": "home", 4029 | "value": "587 Richards Street, Elrama, New Jersey, 227" 4030 | } 4031 | ] 4032 | } 4033 | ] 4034 | }, 4035 | { 4036 | "guid": "57f629da-9d69-4826-bb54-0760c7241ee0", 4037 | "background": "http://lorempixel.com/700/275", 4038 | "name": "Taylor Greer", 4039 | "group": 3, 4040 | "handle": "Wolfexcepteur", 4041 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/xiel/128.jpg", 4042 | "info": [ 4043 | { 4044 | "type": "phone", 4045 | "items": [ 4046 | { 4047 | "type": "work", 4048 | "value": "(896) 490-3374" 4049 | }, 4050 | { 4051 | "type": "work", 4052 | "value": "(891) 535-2346" 4053 | } 4054 | ] 4055 | }, 4056 | { 4057 | "type": "email", 4058 | "items": [ 4059 | { 4060 | "type": "home", 4061 | "value": "clevelandolsen@iplax.com" 4062 | }, 4063 | { 4064 | "type": "work", 4065 | "value": "lorettamorrison@chorizon.com" 4066 | } 4067 | ] 4068 | }, 4069 | { 4070 | "type": "address", 4071 | "items": [ 4072 | { 4073 | "type": "home", 4074 | "value": "881 Hendrickson Street, Rushford, Michigan, 5668" 4075 | }, 4076 | { 4077 | "type": "work", 4078 | "value": "241 Mermaid Avenue, Bradenville, California, 7369" 4079 | } 4080 | ] 4081 | } 4082 | ] 4083 | }, 4084 | { 4085 | "guid": "c1d24753-2b51-4642-a3c9-5a389e3b35cf", 4086 | "background": "http://lorempixel.com/700/275", 4087 | "name": "Tracey Park", 4088 | "group": 0, 4089 | "handle": "Grossaliquip", 4090 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/j2deme/128.jpg", 4091 | "info": [ 4092 | { 4093 | "type": "phone", 4094 | "items": [ 4095 | { 4096 | "type": "work", 4097 | "value": "(832) 471-3661" 4098 | }, 4099 | { 4100 | "type": "work", 4101 | "value": "(960) 547-2495" 4102 | } 4103 | ] 4104 | }, 4105 | { 4106 | "type": "email", 4107 | "items": [ 4108 | { 4109 | "type": "work", 4110 | "value": "battlepotts@zolarex.com" 4111 | } 4112 | ] 4113 | }, 4114 | { 4115 | "type": "address", 4116 | "items": [ 4117 | { 4118 | "type": "home", 4119 | "value": "264 Sumner Place, Goodville, Mississippi, 5922" 4120 | }, 4121 | { 4122 | "type": "home", 4123 | "value": "183 Mill Street, Waiohinu, Wisconsin, 4228" 4124 | } 4125 | ] 4126 | } 4127 | ] 4128 | }, 4129 | { 4130 | "guid": "edd50e2d-83a5-492f-a94c-0f036d99cf85", 4131 | "background": "http://lorempixel.com/700/275", 4132 | "name": "Tricia Moran", 4133 | "group": 3, 4134 | "handle": "Hillarycillum", 4135 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/bu7921/128.jpg", 4136 | "info": [ 4137 | { 4138 | "type": "phone", 4139 | "items": [ 4140 | { 4141 | "type": "mobile", 4142 | "value": "(854) 567-3169" 4143 | }, 4144 | { 4145 | "type": "mobile", 4146 | "value": "(806) 522-2656" 4147 | } 4148 | ] 4149 | }, 4150 | { 4151 | "type": "email", 4152 | "items": [ 4153 | { 4154 | "type": "home", 4155 | "value": "shawcooley@vetron.com" 4156 | }, 4157 | { 4158 | "type": "home", 4159 | "value": "judyburton@flexigen.com" 4160 | } 4161 | ] 4162 | }, 4163 | { 4164 | "type": "address", 4165 | "items": [ 4166 | { 4167 | "type": "work", 4168 | "value": "318 Verona Street, Gracey, Massachusetts, 5852" 4169 | }, 4170 | { 4171 | "type": "home", 4172 | "value": "144 Jodie Court, Williams, West Virginia, 8426" 4173 | } 4174 | ] 4175 | } 4176 | ] 4177 | }, 4178 | { 4179 | "guid": "24369ed6-ffcb-4e0a-b720-e48237645eb7", 4180 | "background": "http://lorempixel.com/700/275", 4181 | "name": "Tyler Mclean", 4182 | "group": 4, 4183 | "handle": "Goodwinest", 4184 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/ademilter/128.jpg", 4185 | "info": [ 4186 | { 4187 | "type": "phone", 4188 | "items": [ 4189 | { 4190 | "type": "work", 4191 | "value": "(897) 436-2528" 4192 | }, 4193 | { 4194 | "type": "mobile", 4195 | "value": "(970) 502-3873" 4196 | }, 4197 | { 4198 | "type": "mobile", 4199 | "value": "(908) 561-2932" 4200 | } 4201 | ] 4202 | }, 4203 | { 4204 | "type": "email", 4205 | "items": [ 4206 | { 4207 | "type": "work", 4208 | "value": "suzanneedwards@quarex.com" 4209 | } 4210 | ] 4211 | }, 4212 | { 4213 | "type": "address", 4214 | "items": [ 4215 | { 4216 | "type": "work", 4217 | "value": "834 Bartlett Place, Celeryville, North Carolina, 6652" 4218 | } 4219 | ] 4220 | } 4221 | ] 4222 | }, 4223 | { 4224 | "guid": "0dab9c5c-2a35-49d9-a307-cad08e11af4b", 4225 | "background": "http://lorempixel.com/700/275", 4226 | "name": "Valarie Wagner", 4227 | "group": 1, 4228 | "handle": "Delgadoreprehenderit", 4229 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/raphaelnikson/128.jpg", 4230 | "info": [ 4231 | { 4232 | "type": "phone", 4233 | "items": [ 4234 | { 4235 | "type": "work", 4236 | "value": "(826) 463-3992" 4237 | }, 4238 | { 4239 | "type": "home", 4240 | "value": "(950) 500-3610" 4241 | } 4242 | ] 4243 | }, 4244 | { 4245 | "type": "email", 4246 | "items": [ 4247 | { 4248 | "type": "home", 4249 | "value": "katelynsnow@comvey.com" 4250 | }, 4251 | { 4252 | "type": "work", 4253 | "value": "alanaleon@zillanet.com" 4254 | } 4255 | ] 4256 | }, 4257 | { 4258 | "type": "address", 4259 | "items": [ 4260 | { 4261 | "type": "home", 4262 | "value": "144 Buffalo Avenue, Basye, Arizona, 271" 4263 | }, 4264 | { 4265 | "type": "home", 4266 | "value": "849 Nassau Street, Tryon, South Dakota, 6167" 4267 | } 4268 | ] 4269 | } 4270 | ] 4271 | }, 4272 | { 4273 | "guid": "9c1dedbb-3f7e-4f50-84c4-52cee4f8b941", 4274 | "background": "http://lorempixel.com/700/275", 4275 | "name": "Villarreal Holmes", 4276 | "group": 4, 4277 | "handle": "Lloydfugiat", 4278 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/praveen_vijaya/128.jpg", 4279 | "info": [ 4280 | { 4281 | "type": "phone", 4282 | "items": [ 4283 | { 4284 | "type": "home", 4285 | "value": "(862) 570-2975" 4286 | }, 4287 | { 4288 | "type": "work", 4289 | "value": "(872) 471-2159" 4290 | } 4291 | ] 4292 | }, 4293 | { 4294 | "type": "email", 4295 | "items": [ 4296 | { 4297 | "type": "work", 4298 | "value": "faithcortez@euron.com" 4299 | } 4300 | ] 4301 | }, 4302 | { 4303 | "type": "address", 4304 | "items": [ 4305 | { 4306 | "type": "work", 4307 | "value": "110 Moore Street, Yardville, Nevada, 3085" 4308 | }, 4309 | { 4310 | "type": "home", 4311 | "value": "901 Downing Street, Osmond, Utah, 9501" 4312 | } 4313 | ] 4314 | } 4315 | ] 4316 | }, 4317 | { 4318 | "guid": "34aaaf24-b05b-46dc-9048-359a22c6fecb", 4319 | "background": "http://lorempixel.com/700/275", 4320 | "name": "Vilma Wade", 4321 | "group": 0, 4322 | "handle": "Ruthconsequat", 4323 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/waghner/128.jpg", 4324 | "info": [ 4325 | { 4326 | "type": "phone", 4327 | "items": [ 4328 | { 4329 | "type": "work", 4330 | "value": "(942) 528-2248" 4331 | } 4332 | ] 4333 | }, 4334 | { 4335 | "type": "email", 4336 | "items": [ 4337 | { 4338 | "type": "home", 4339 | "value": "andrewsgill@minga.com" 4340 | }, 4341 | { 4342 | "type": "home", 4343 | "value": "moranmyers@imageflow.com" 4344 | } 4345 | ] 4346 | }, 4347 | { 4348 | "type": "address", 4349 | "items": [ 4350 | { 4351 | "type": "home", 4352 | "value": "558 Lake Street, Taycheedah, New Mexico, 7249" 4353 | }, 4354 | { 4355 | "type": "work", 4356 | "value": "818 Radde Place, Rivers, Massachusetts, 5956" 4357 | } 4358 | ] 4359 | } 4360 | ] 4361 | }, 4362 | { 4363 | "guid": "87c703ea-5b90-4484-80f3-483b811ebbd7", 4364 | "background": "http://lorempixel.com/700/275", 4365 | "name": "Virginia Dodson", 4366 | "group": 4, 4367 | "handle": "Elisavelit", 4368 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/ntfblog/128.jpg", 4369 | "info": [ 4370 | { 4371 | "type": "phone", 4372 | "items": [ 4373 | { 4374 | "type": "work", 4375 | "value": "(821) 539-3201" 4376 | }, 4377 | { 4378 | "type": "mobile", 4379 | "value": "(876) 545-3110" 4380 | } 4381 | ] 4382 | }, 4383 | { 4384 | "type": "email", 4385 | "items": [ 4386 | { 4387 | "type": "home", 4388 | "value": "olaburt@assurity.com" 4389 | } 4390 | ] 4391 | }, 4392 | { 4393 | "type": "address", 4394 | "items": [ 4395 | { 4396 | "type": "work", 4397 | "value": "636 Lacon Court, Gambrills, Mississippi, 7275" 4398 | }, 4399 | { 4400 | "type": "work", 4401 | "value": "703 Macon Street, Bodega, California, 9414" 4402 | } 4403 | ] 4404 | } 4405 | ] 4406 | }, 4407 | { 4408 | "guid": "e1dd3923-c5a2-4933-8ecc-7f2979581c64", 4409 | "background": "http://lorempixel.com/700/275", 4410 | "name": "Wendi Patel", 4411 | "group": 3, 4412 | "handle": "Terriereprehenderit", 4413 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/anthonysukow/128.jpg", 4414 | "info": [ 4415 | { 4416 | "type": "phone", 4417 | "items": [ 4418 | { 4419 | "type": "home", 4420 | "value": "(872) 456-3209" 4421 | } 4422 | ] 4423 | }, 4424 | { 4425 | "type": "email", 4426 | "items": [ 4427 | { 4428 | "type": "home", 4429 | "value": "contrerasmontgomery@koffee.com" 4430 | } 4431 | ] 4432 | }, 4433 | { 4434 | "type": "address", 4435 | "items": [ 4436 | { 4437 | "type": "home", 4438 | "value": "505 Monitor Street, Rodanthe, Connecticut, 3355" 4439 | }, 4440 | { 4441 | "type": "home", 4442 | "value": "581 Roosevelt Court, Oley, Virginia, 7675" 4443 | } 4444 | ] 4445 | } 4446 | ] 4447 | }, 4448 | { 4449 | "guid": "6b7af23d-77cf-4755-b3b2-dc36b9453971", 4450 | "background": "http://lorempixel.com/700/275", 4451 | "name": "Whitaker Flores", 4452 | "group": 1, 4453 | "handle": "Courtneyesse", 4454 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/alexivanichkin/128.jpg", 4455 | "info": [ 4456 | { 4457 | "type": "phone", 4458 | "items": [ 4459 | { 4460 | "type": "work", 4461 | "value": "(887) 587-2334" 4462 | } 4463 | ] 4464 | }, 4465 | { 4466 | "type": "email", 4467 | "items": [ 4468 | { 4469 | "type": "work", 4470 | "value": "kristaparks@insurety.com" 4471 | } 4472 | ] 4473 | }, 4474 | { 4475 | "type": "address", 4476 | "items": [ 4477 | { 4478 | "type": "work", 4479 | "value": "405 Varick Street, Craig, Indiana, 8285" 4480 | }, 4481 | { 4482 | "type": "home", 4483 | "value": "105 Pilling Street, Alamo, Idaho, 5607" 4484 | } 4485 | ] 4486 | } 4487 | ] 4488 | }, 4489 | { 4490 | "guid": "3b4c0a17-c262-4ef4-89ad-33bed5d6e44a", 4491 | "background": "http://lorempixel.com/700/275", 4492 | "name": "Wilkinson Caldwell", 4493 | "group": 2, 4494 | "handle": "Roxanneamet", 4495 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/AlbertoCococi/128.jpg", 4496 | "info": [ 4497 | { 4498 | "type": "phone", 4499 | "items": [ 4500 | { 4501 | "type": "home", 4502 | "value": "(805) 435-3399" 4503 | }, 4504 | { 4505 | "type": "mobile", 4506 | "value": "(899) 485-2919" 4507 | } 4508 | ] 4509 | }, 4510 | { 4511 | "type": "email", 4512 | "items": [ 4513 | { 4514 | "type": "work", 4515 | "value": "cheririddle@conjurica.com" 4516 | } 4517 | ] 4518 | }, 4519 | { 4520 | "type": "address", 4521 | "items": [ 4522 | { 4523 | "type": "home", 4524 | "value": "101 Grace Court, Chemung, Iowa, 1721" 4525 | }, 4526 | { 4527 | "type": "home", 4528 | "value": "323 Lorimer Street, Eagletown, Wyoming, 911" 4529 | } 4530 | ] 4531 | } 4532 | ] 4533 | }, 4534 | { 4535 | "guid": "0291bde7-bee2-4cd5-ba13-5220ff920ee1", 4536 | "background": "http://lorempixel.com/700/275", 4537 | "name": "Winifred Guthrie", 4538 | "group": 4, 4539 | "handle": "Marksin", 4540 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/antonyzotov/128.jpg", 4541 | "info": [ 4542 | { 4543 | "type": "phone", 4544 | "items": [ 4545 | { 4546 | "type": "mobile", 4547 | "value": "(998) 447-2876" 4548 | }, 4549 | { 4550 | "type": "home", 4551 | "value": "(885) 544-3003" 4552 | }, 4553 | { 4554 | "type": "mobile", 4555 | "value": "(876) 547-2303" 4556 | } 4557 | ] 4558 | }, 4559 | { 4560 | "type": "email", 4561 | "items": [ 4562 | { 4563 | "type": "work", 4564 | "value": "jennahernandez@talkola.com" 4565 | } 4566 | ] 4567 | }, 4568 | { 4569 | "type": "address", 4570 | "items": [ 4571 | { 4572 | "type": "home", 4573 | "value": "520 Keap Street, Stollings, Montana, 2389" 4574 | } 4575 | ] 4576 | } 4577 | ] 4578 | }, 4579 | { 4580 | "guid": "2d9c6bac-73d2-41fd-b9d2-03d54988fd65", 4581 | "background": "http://lorempixel.com/700/275", 4582 | "name": "Zamora Horn", 4583 | "group": 0, 4584 | "handle": "Hewittirure", 4585 | "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/ilya_pestov/128.jpg", 4586 | "info": [ 4587 | { 4588 | "type": "phone", 4589 | "items": [ 4590 | { 4591 | "type": "home", 4592 | "value": "(890) 432-2636" 4593 | }, 4594 | { 4595 | "type": "work", 4596 | "value": "(970) 551-3352" 4597 | } 4598 | ] 4599 | }, 4600 | { 4601 | "type": "email", 4602 | "items": [ 4603 | { 4604 | "type": "work", 4605 | "value": "curryjohnston@peticular.com" 4606 | } 4607 | ] 4608 | }, 4609 | { 4610 | "type": "address", 4611 | "items": [ 4612 | { 4613 | "type": "work", 4614 | "value": "773 Jefferson Street, Genoa, Missouri, 369" 4615 | }, 4616 | { 4617 | "type": "work", 4618 | "value": "519 Oxford Street, Rivers, Wisconsin, 5522" 4619 | } 4620 | ] 4621 | } 4622 | ] 4623 | } 4624 | ] --------------------------------------------------------------------------------