@spaced-out/ui-design-system 0.3.38 → 0.3.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cspell/custom-words.txt +4 -0
- package/.github/workflows/publish_to_npm.yml +32 -4
- package/CHANGELOG.md +21 -0
- package/dts-generator/.editorconfig +10 -0
- package/dts-generator/.gitattributes +4 -0
- package/dts-generator/README.md +63 -0
- package/dts-generator/convert.js +101 -0
- package/dts-generator/package.json +16 -0
- package/gulpfile.js +20 -1
- package/lib/components/Avatar/Avatar.d.ts +264 -0
- package/lib/components/Avatar/index.d.ts +1 -0
- package/lib/components/AvatarGroup/AvatarGroup.d.ts +161 -0
- package/lib/components/AvatarGroup/index.d.ts +1 -0
- package/lib/components/Badge/Badge.d.ts +138 -0
- package/lib/components/Badge/index.d.ts +1 -0
- package/lib/components/Banner/Banner.d.ts +52 -0
- package/lib/components/Banner/index.d.ts +1 -0
- package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.d.ts +50 -0
- package/lib/components/Breadcrumbs/BreadcrumbLink/index.d.ts +1 -0
- package/lib/components/Breadcrumbs/Breadcrumbs.d.ts +64 -0
- package/lib/components/Breadcrumbs/index.d.ts +2 -0
- package/lib/components/Button/Button.d.ts +288 -0
- package/lib/components/Button/index.d.ts +14 -0
- package/lib/components/ButtonDropdown/ButtonDropdown.d.ts +192 -0
- package/lib/components/ButtonDropdown/SimpleButtonDropdown.d.ts +148 -0
- package/lib/components/ButtonDropdown/index.d.ts +2 -0
- package/lib/components/ButtonTabs/ButtonTab/ButtonTab.d.ts +82 -0
- package/lib/components/ButtonTabs/ButtonTab/index.d.ts +1 -0
- package/lib/components/ButtonTabs/ButtonTabDropdown.d.ts +118 -0
- package/lib/components/ButtonTabs/ButtonTabs.d.ts +113 -0
- package/lib/components/ButtonTabs/index.d.ts +2 -0
- package/lib/components/Card/Card.d.ts +163 -0
- package/lib/components/Card/index.d.ts +1 -0
- package/lib/components/Charts/ChartTooltip/index.d.ts +10 -0
- package/lib/components/Charts/ChartWrapper/ChartWrapper.d.ts +184 -0
- package/lib/components/Charts/ChartWrapper/index.d.ts +1 -0
- package/lib/components/Charts/ColumnChart/ColumnChart.d.ts +111 -0
- package/lib/components/Charts/ColumnChart/index.d.ts +1 -0
- package/lib/components/Charts/DonutChart/DonutChart.d.ts +142 -0
- package/lib/components/Charts/DonutChart/index.d.ts +1 -0
- package/lib/components/Charts/FunnelChart/FunnelChart.d.ts +99 -0
- package/lib/components/Charts/FunnelChart/index.d.ts +1 -0
- package/lib/components/Charts/LineChart/LineChart.d.ts +97 -0
- package/lib/components/Charts/LineChart/index.d.ts +1 -0
- package/lib/components/Charts/SpiderChart/SpiderChart.d.ts +95 -0
- package/lib/components/Charts/SpiderChart/index.d.ts +1 -0
- package/lib/components/Charts/index.d.ts +7 -0
- package/lib/components/ChatBubble/ChatBubble.d.ts +203 -0
- package/lib/components/ChatBubble/index.d.ts +1 -0
- package/lib/components/Checkbox/Checkbox.d.ts +165 -0
- package/lib/components/Checkbox/CheckboxGroup.d.ts +113 -0
- package/lib/components/Checkbox/index.d.ts +2 -0
- package/lib/components/Chip/Chip.d.ts +181 -0
- package/lib/components/Chip/index.d.ts +2 -0
- package/lib/components/CircularLoader/CircularLoader.d.ts +56 -0
- package/lib/components/CircularLoader/index.d.ts +1 -0
- package/lib/components/CollapsibleCard/CollapsibleCard.d.ts +134 -0
- package/lib/components/CollapsibleCard/index.d.ts +1 -0
- package/lib/components/Combobox/Combobox.d.ts +292 -0
- package/lib/components/Combobox/helper.d.ts +205 -0
- package/lib/components/Combobox/index.d.ts +1 -0
- package/lib/components/ConditionalWrapper/ConditionalWrapper.d.ts +12 -0
- package/lib/components/ConditionalWrapper/index.d.ts +1 -0
- package/lib/components/DateRangePicker/Calendar.d.ts +119 -0
- package/lib/components/DateRangePicker/DateRangePicker.d.ts +196 -0
- package/lib/components/DateRangePicker/DateRangeWrapper.d.ts +311 -0
- package/lib/components/DateRangePicker/Day.d.ts +70 -0
- package/lib/components/DateRangePicker/index.d.ts +1 -0
- package/lib/components/Dialog/Dialog.d.ts +208 -0
- package/lib/components/Dialog/index.d.ts +1 -0
- package/lib/components/Disclaimer/Disclaimer.d.ts +32 -0
- package/lib/components/Disclaimer/index.d.ts +1 -0
- package/lib/components/Dropdown/Dropdown.d.ts +145 -0
- package/lib/components/Dropdown/SimpleDropdown.d.ts +142 -0
- package/lib/components/Dropdown/index.d.ts +2 -0
- package/lib/components/EmptyState/EmptyImages/CalendarEmptyImage.d.ts +108 -0
- package/lib/components/EmptyState/EmptyImages/ChartEmptyImage.d.ts +194 -0
- package/lib/components/EmptyState/EmptyImages/DataEmptyImage.d.ts +116 -0
- package/lib/components/EmptyState/EmptyImages/FileEmptyImage.d.ts +133 -0
- package/lib/components/EmptyState/EmptyImages/MessageEmptyImage.d.ts +64 -0
- package/lib/components/EmptyState/EmptyImages/UploadEmptyImage.d.ts +67 -0
- package/lib/components/EmptyState/EmptyImages/index.d.ts +6 -0
- package/lib/components/EmptyState/EmptyState.d.ts +82 -0
- package/lib/components/EmptyState/index.d.ts +1 -0
- package/lib/components/ErrorMessage/ErrorImages/ForbiddenImage.d.ts +85 -0
- package/lib/components/ErrorMessage/ErrorImages/NotFoundImage.d.ts +117 -0
- package/lib/components/ErrorMessage/ErrorImages/ServerErrorImage.d.ts +237 -0
- package/lib/components/ErrorMessage/ErrorImages/UnauthorizedImage.d.ts +73 -0
- package/lib/components/ErrorMessage/ErrorImages/index.d.ts +4 -0
- package/lib/components/ErrorMessage/ErrorMessage.d.ts +86 -0
- package/lib/components/ErrorMessage/index.d.ts +1 -0
- package/lib/components/FileUpload/FileBlock/FileBlock.d.ts +137 -0
- package/lib/components/FileUpload/FileBlock/index.d.ts +1 -0
- package/lib/components/FileUpload/FileUpload.d.ts +190 -0
- package/lib/components/FileUpload/index.d.ts +2 -0
- package/lib/components/FocusManager/FocusManager.d.ts +52 -0
- package/lib/components/FocusManager/index.d.ts +1 -0
- package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.d.ts +137 -0
- package/lib/components/FocusManagerWithArrowKeyNavigation/index.d.ts +1 -0
- package/lib/components/FormTitleWrapper/FormTitleWrapper.d.ts +62 -0
- package/lib/components/FormTitleWrapper/index.d.ts +1 -0
- package/lib/components/Grid/Grid.d.ts +104 -0
- package/lib/components/Grid/index.d.ts +1 -0
- package/lib/components/Icon/ClickableIcon.d.ts +101 -0
- package/lib/components/Icon/Icon.d.ts +71 -0
- package/lib/components/Icon/Icon.docs.d.ts +138 -0
- package/lib/components/Icon/SemanticIcon.d.ts +42 -0
- package/lib/components/Icon/index.d.ts +3 -0
- package/lib/components/InContextAlert/InContextAlert.d.ts +210 -0
- package/lib/components/InContextAlert/index.d.ts +1 -0
- package/lib/components/InlineDropdown/InlineDropdown.d.ts +146 -0
- package/lib/components/InlineDropdown/SimpleInlineDropdown.d.ts +145 -0
- package/lib/components/InlineDropdown/index.d.ts +2 -0
- package/lib/components/Input/Input.d.ts +327 -0
- package/lib/components/Input/index.d.ts +1 -0
- package/lib/components/KPIBox/KPIBox.d.ts +89 -0
- package/lib/components/KPIBox/index.d.ts +1 -0
- package/lib/components/LinearLoader/LinearLoader.d.ts +44 -0
- package/lib/components/LinearLoader/index.d.ts +1 -0
- package/lib/components/Link/Link.d.ts +225 -0
- package/lib/components/Link/index.d.ts +1 -0
- package/lib/components/Menu/Menu.d.ts +379 -0
- package/lib/components/Menu/MenuOptionButton.d.ts +199 -0
- package/lib/components/Menu/index.d.ts +2 -0
- package/lib/components/Modal/Modal.d.ts +354 -0
- package/lib/components/Modal/index.d.ts +14 -0
- package/lib/components/Notification/Notification.d.ts +147 -0
- package/lib/components/Notification/index.d.ts +1 -0
- package/lib/components/OptionButton/OptionButton.d.ts +150 -0
- package/lib/components/OptionButton/SimpleOptionButton.d.ts +150 -0
- package/lib/components/OptionButton/index.d.ts +2 -0
- package/lib/components/PageTitle/PageTitle.d.ts +256 -0
- package/lib/components/PageTitle/index.d.ts +1 -0
- package/lib/components/Pagination/Pagination.d.ts +144 -0
- package/lib/components/Pagination/PaginationItem.d.ts +136 -0
- package/lib/components/Pagination/index.d.ts +1 -0
- package/lib/components/Panel/Panel.d.ts +168 -0
- package/lib/components/Panel/index.d.ts +9 -0
- package/lib/components/ProgressDonut/ProgressDonut.d.ts +102 -0
- package/lib/components/ProgressDonut/index.d.ts +1 -0
- package/lib/components/PromptChip/PromptChip.d.ts +167 -0
- package/lib/components/PromptChip/index.d.ts +1 -0
- package/lib/components/PromptInput/PromptInput.d.ts +189 -0
- package/lib/components/PromptInput/index.d.ts +1 -0
- package/lib/components/RadioButton/RadioButton.d.ts +132 -0
- package/lib/components/RadioButton/RadioGroup.d.ts +88 -0
- package/lib/components/RadioButton/index.d.ts +2 -0
- package/lib/components/RadioTile/RadioTile.d.ts +109 -0
- package/lib/components/RadioTile/index.d.ts +1 -0
- package/lib/components/RangeSlider/RangeSlider.d.ts +207 -0
- package/lib/components/RangeSlider/index.d.ts +1 -0
- package/lib/components/Rating/Rating.d.ts +131 -0
- package/lib/components/Rating/index.d.ts +1 -0
- package/lib/components/ScoreBar/ScoreBar.d.ts +122 -0
- package/lib/components/ScoreBar/index.d.ts +1 -0
- package/lib/components/SearchInput/SearchInput.d.ts +79 -0
- package/lib/components/SearchInput/index.d.ts +2 -0
- package/lib/components/Separator/Separator.d.ts +51 -0
- package/lib/components/Separator/index.d.ts +1 -0
- package/lib/components/Shimmer/Shimmer.d.ts +131 -0
- package/lib/components/Shimmer/index.d.ts +1 -0
- package/lib/components/SideMenuLink/SideMenuLink.d.ts +336 -0
- package/lib/components/SideMenuLink/index.d.ts +1 -0
- package/lib/components/StatusIndicator/StatusIndicator.d.ts +60 -0
- package/lib/components/StatusIndicator/index.d.ts +1 -0
- package/lib/components/Stepper/Step/Step.d.ts +119 -0
- package/lib/components/Stepper/Step/StepContent.d.ts +35 -0
- package/lib/components/Stepper/Step/StepLabel.d.ts +35 -0
- package/lib/components/Stepper/Step/index.d.ts +3 -0
- package/lib/components/Stepper/Stepper.d.ts +60 -0
- package/lib/components/Stepper/index.d.ts +2 -0
- package/lib/components/StickyBar/StickyBar.d.ts +55 -0
- package/lib/components/StickyBar/index.d.ts +1 -0
- package/lib/components/SubMenu/SubMenu.d.ts +89 -0
- package/lib/components/SubMenu/SubMenuGroup.d.ts +156 -0
- package/lib/components/SubMenu/SubMenuItem.d.ts +161 -0
- package/lib/components/SubMenu/SubMenuLink.d.ts +81 -0
- package/lib/components/SubMenu/index.d.ts +4 -0
- package/lib/components/Table/Cell.d.ts +107 -0
- package/lib/components/Table/DefaultRow.d.ts +144 -0
- package/lib/components/Table/DefaultTableHeader.d.ts +236 -0
- package/lib/components/Table/StaticTable.d.ts +198 -0
- package/lib/components/Table/Table.d.ts +113 -0
- package/lib/components/Table/Table.docs.d.ts +532 -0
- package/lib/components/Table/TableActionBar.d.ts +48 -0
- package/lib/components/Table/TableBottomBar.d.ts +20 -0
- package/lib/components/Table/TableTopBar.d.ts +20 -0
- package/lib/components/Table/dummyTableData.d.ts +2189 -0
- package/lib/components/Table/hooks.d.ts +98 -0
- package/lib/components/Table/index.d.ts +8 -0
- package/lib/components/Tabs/Tab/Tab.d.ts +146 -0
- package/lib/components/Tabs/Tab/index.d.ts +1 -0
- package/lib/components/Tabs/TabList/TabDropdown.d.ts +100 -0
- package/lib/components/Tabs/TabList/TabList.d.ts +157 -0
- package/lib/components/Tabs/TabList/index.d.ts +1 -0
- package/lib/components/Tabs/index.d.ts +2 -0
- package/lib/components/Text/Text.d.ts +1021 -0
- package/lib/components/Text/index.d.ts +30 -0
- package/lib/components/TextTile/TextTile.d.ts +40 -0
- package/lib/components/TextTile/index.d.ts +1 -0
- package/lib/components/Textarea/Textarea.d.ts +132 -0
- package/lib/components/Textarea/index.d.ts +2 -0
- package/lib/components/Timeline/Timeline.d.ts +40 -0
- package/lib/components/Timeline/TimelineItem/TimelineItem.d.ts +121 -0
- package/lib/components/Timeline/TimelineItem/index.d.ts +1 -0
- package/lib/components/Timeline/index.d.ts +2 -0
- package/lib/components/Toast/Toast.d.ts +248 -0
- package/lib/components/Toast/ToastContainer.d.ts +140 -0
- package/lib/components/Toast/ToastManager.d.ts +58 -0
- package/lib/components/Toast/index.d.ts +10 -0
- package/lib/components/Toggle/Toggle.d.ts +111 -0
- package/lib/components/Toggle/index.d.ts +1 -0
- package/lib/components/TokenListInput/TokenListInput.d.ts +333 -0
- package/lib/components/TokenListInput/TokenValueChips.d.ts +64 -0
- package/lib/components/TokenListInput/index.d.ts +1 -0
- package/lib/components/Tooltip/Tooltip.d.ts +186 -0
- package/lib/components/Tooltip/index.d.ts +1 -0
- package/lib/components/Truncate/Truncate.d.ts +87 -0
- package/lib/components/Truncate/index.d.ts +2 -0
- package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.d.ts +95 -0
- package/lib/components/TruncatedTextWithTooltip/index.d.ts +1 -0
- package/lib/components/Typeahead/SimpleTypeahead.d.ts +141 -0
- package/lib/components/Typeahead/Typeahead.d.ts +217 -0
- package/lib/components/Typeahead/index.d.ts +2 -0
- package/lib/components/WeekdayPicker/WeekdayPicker.d.ts +242 -0
- package/lib/components/WeekdayPicker/index.d.ts +1 -0
- package/lib/components/index.d.ts +71 -0
- package/lib/hooks/index.d.ts +12 -0
- package/lib/hooks/useArbitraryOptionAddition/index.d.ts +1 -0
- package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.d.ts +124 -0
- package/lib/hooks/useCopyToClipboard/index.d.ts +1 -0
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.d.ts +27 -0
- package/lib/hooks/useFileUpload/index.d.ts +1 -0
- package/lib/hooks/useFileUpload/useFileUpload.d.ts +342 -0
- package/lib/hooks/useFilteredOptions/index.d.ts +1 -0
- package/lib/hooks/useFilteredOptions/useFilteredOptions.d.ts +87 -0
- package/lib/hooks/useInputState/index.d.ts +1 -0
- package/lib/hooks/useInputState/useInputState.d.ts +22 -0
- package/lib/hooks/useLockedBody/index.d.ts +1 -0
- package/lib/hooks/useLockedBody/useLockedBody.d.ts +46 -0
- package/lib/hooks/useModal/index.d.ts +1 -0
- package/lib/hooks/useModal/useModal.d.ts +32 -0
- package/lib/hooks/useMountTransition/index.d.ts +24 -0
- package/lib/hooks/usePagination/index.d.ts +1 -0
- package/lib/hooks/usePagination/usePagination.d.ts +140 -0
- package/lib/hooks/useToastPortal/index.d.ts +1 -0
- package/lib/hooks/useToastPortal/useToastPortal.d.ts +31 -0
- package/lib/hooks/useToggle/index.d.ts +1 -0
- package/lib/hooks/useToggle/useToggle.d.ts +11 -0
- package/lib/hooks/useWindowSize/index.d.ts +1 -0
- package/lib/hooks/useWindowSize/useWindowSize.d.ts +28 -0
- package/lib/index.d.ts +5 -0
- package/lib/styles/index.d.ts +267 -0
- package/lib/styles/variables/_border.d.ts +12 -0
- package/lib/styles/variables/_color.d.ts +104 -0
- package/lib/styles/variables/_elevation.d.ts +7 -0
- package/lib/styles/variables/_font.d.ts +30 -0
- package/lib/styles/variables/_motion.d.ts +6 -0
- package/lib/styles/variables/_opacity.d.ts +15 -0
- package/lib/styles/variables/_shadow.d.ts +24 -0
- package/lib/styles/variables/_size.d.ts +57 -0
- package/lib/styles/variables/_space.d.ts +12 -0
- package/lib/types/charts.d.ts +225 -0
- package/lib/types/common.d.ts +10 -0
- package/lib/types/date-range-picker.d.ts +17 -0
- package/lib/types/date-range-picker.js.flow +2 -3
- package/lib/types/index.d.ts +6 -0
- package/lib/types/menu.d.ts +13 -0
- package/lib/types/toast.d.ts +32 -0
- package/lib/types/typography.d.ts +17 -0
- package/lib/utils/array/are-arrays-equal.d.ts +11 -0
- package/lib/utils/array/index.d.ts +1 -0
- package/lib/utils/charts/charts.d.ts +102 -0
- package/lib/utils/charts/columnChart.d.ts +51 -0
- package/lib/utils/charts/donutChart.d.ts +116 -0
- package/lib/utils/charts/funnelChart.d.ts +94 -0
- package/lib/utils/charts/helpers.d.ts +44 -0
- package/lib/utils/charts/index.d.ts +7 -0
- package/lib/utils/charts/lineChart.d.ts +44 -0
- package/lib/utils/charts/spiderChart.d.ts +46 -0
- package/lib/utils/charts/typography.d.ts +42 -0
- package/lib/utils/classify/index.d.ts +27 -0
- package/lib/utils/click-away/click-away.d.ts +194 -0
- package/lib/utils/click-away/index.d.ts +1 -0
- package/lib/utils/date-range-picker/date-range-picker.d.ts +391 -0
- package/lib/utils/date-range-picker/index.d.ts +2 -0
- package/lib/utils/date-range-picker/timezones.d.ts +262 -0
- package/lib/utils/dom/dom.d.ts +245 -0
- package/lib/utils/dom/index.d.ts +1 -0
- package/lib/utils/helpers/helpers.d.ts +48 -0
- package/lib/utils/helpers/index.d.ts +1 -0
- package/lib/utils/index.d.ts +14 -0
- package/lib/utils/makeClassNameComponent/index.d.ts +1 -0
- package/lib/utils/makeClassNameComponent/makeClassNameComponent.d.ts +73 -0
- package/lib/utils/menu/index.d.ts +1 -0
- package/lib/utils/merge-refs/index.d.ts +1 -0
- package/lib/utils/merge-refs/merge-refs.d.ts +15 -0
- package/lib/utils/rating/index.d.ts +1 -0
- package/lib/utils/rating/rating.d.ts +31 -0
- package/lib/utils/score-bar/index.d.ts +1 -0
- package/lib/utils/score-bar/score-bar.d.ts +54 -0
- package/lib/utils/string/index.d.ts +1 -0
- package/lib/utils/string/string.d.ts +30 -0
- package/lib/utils/token-list-input/token-list-input.d.ts +32 -0
- package/lib/utils/tokens/index.d.ts +1 -0
- package/lib/utils/tokens/tokens.d.ts +230 -0
- package/package.json +1 -1
|
@@ -0,0 +1,2189 @@
|
|
|
1
|
+
export const LARGE_TABLE_DATA = [
|
|
2
|
+
{
|
|
3
|
+
id: '1',
|
|
4
|
+
name: 'Alice',
|
|
5
|
+
phone: '123-456-7890',
|
|
6
|
+
notes: 'likes candy',
|
|
7
|
+
email: 'alice@symbolics.co',
|
|
8
|
+
sign: 'taurus',
|
|
9
|
+
address: '8475 Bedford Lane Addison, IL 60101',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
id: '2',
|
|
13
|
+
name: 'Bob',
|
|
14
|
+
phone: '987-654-3210',
|
|
15
|
+
notes: 'enjoys hiking',
|
|
16
|
+
email: 'bob@example.com',
|
|
17
|
+
sign: 'virgo',
|
|
18
|
+
address: '1234 Oak Street Springfield, MO 65802',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
id: '3',
|
|
22
|
+
name: 'Charlie',
|
|
23
|
+
phone: '555-123-4567',
|
|
24
|
+
notes: 'loves photography',
|
|
25
|
+
email: 'charlie@testmail.com',
|
|
26
|
+
sign: 'libra',
|
|
27
|
+
address: '456 Pine Avenue San Diego, CA 92101',
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
id: '4',
|
|
31
|
+
name: 'David',
|
|
32
|
+
phone: '222-333-4444',
|
|
33
|
+
notes: 'avid reader',
|
|
34
|
+
email: 'david@examplemail.com',
|
|
35
|
+
sign: 'leo',
|
|
36
|
+
address: '789 Elm Street Dallas, TX 75201',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
id: '5',
|
|
40
|
+
name: 'Emma',
|
|
41
|
+
phone: '666-777-8888',
|
|
42
|
+
notes: 'animal lover',
|
|
43
|
+
email: 'emma@testmail.co',
|
|
44
|
+
sign: 'cancer',
|
|
45
|
+
address: '567 Willow Lane New York, NY 10001',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
id: '6',
|
|
49
|
+
name: 'Frank',
|
|
50
|
+
phone: '444-555-6666',
|
|
51
|
+
notes: 'technology enthusiast',
|
|
52
|
+
email: 'frank@examplemail.co',
|
|
53
|
+
sign: 'aquarius',
|
|
54
|
+
address: '234 Birch Street Seattle, WA 98101',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
id: '7',
|
|
58
|
+
name: 'Grace',
|
|
59
|
+
phone: '777-888-9999',
|
|
60
|
+
notes: 'foodie',
|
|
61
|
+
email: 'grace@testmail.com',
|
|
62
|
+
sign: 'sagittarius',
|
|
63
|
+
address: '456 Oak Lane Los Angeles, CA 90001',
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
id: '8',
|
|
67
|
+
name: 'Henry',
|
|
68
|
+
phone: '111-222-3333',
|
|
69
|
+
notes: 'gardening lover',
|
|
70
|
+
email: 'henry@example.com',
|
|
71
|
+
sign: 'capricorn',
|
|
72
|
+
address: '789 Maple Street Chicago, IL 60601',
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
id: '9',
|
|
76
|
+
name: 'Isabella',
|
|
77
|
+
phone: '888-999-0000',
|
|
78
|
+
notes: 'musician',
|
|
79
|
+
email: 'isabella@testmail.co',
|
|
80
|
+
sign: 'pisces',
|
|
81
|
+
address: '567 Cedar Lane Miami, FL 33101',
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
id: '10',
|
|
85
|
+
name: 'Jack',
|
|
86
|
+
phone: '444-555-6666',
|
|
87
|
+
notes: 'travel enthusiast',
|
|
88
|
+
email: 'jack@examplemail.com',
|
|
89
|
+
sign: 'aries',
|
|
90
|
+
address: '234 Oak Avenue San Francisco, CA 94101',
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
id: '11',
|
|
94
|
+
name: 'Kate',
|
|
95
|
+
phone: '222-333-4444',
|
|
96
|
+
notes: 'coffee lover',
|
|
97
|
+
email: 'kate@testmail.co',
|
|
98
|
+
sign: 'gemini',
|
|
99
|
+
address: '789 Birch Lane Denver, CO 80201',
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
id: '12',
|
|
103
|
+
name: 'Liam',
|
|
104
|
+
phone: '777-888-9999',
|
|
105
|
+
notes: 'sports enthusiast',
|
|
106
|
+
email: 'liam@example.com',
|
|
107
|
+
sign: 'leo',
|
|
108
|
+
address: '567 Oak Street Austin, TX 78701',
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
id: '13',
|
|
112
|
+
name: 'Mia',
|
|
113
|
+
phone: '333-444-5555',
|
|
114
|
+
notes: 'art lover',
|
|
115
|
+
email: 'mia@testmail.co',
|
|
116
|
+
sign: 'libra',
|
|
117
|
+
address: '123 Pine Lane Portland, OR 97201',
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
id: '14',
|
|
121
|
+
name: 'Noah',
|
|
122
|
+
phone: '888-999-0000',
|
|
123
|
+
notes: 'pet lover',
|
|
124
|
+
email: 'noah@examplemail.com',
|
|
125
|
+
sign: 'virgo',
|
|
126
|
+
address: '234 Cedar Street Phoenix, AZ 85001',
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
id: '15',
|
|
130
|
+
name: 'Olivia',
|
|
131
|
+
phone: '555-666-7777',
|
|
132
|
+
notes: 'bookworm',
|
|
133
|
+
email: 'olivia@testmail.co',
|
|
134
|
+
sign: 'taurus',
|
|
135
|
+
address: '567 Maple Lane Nashville, TN 37201',
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
id: '16',
|
|
139
|
+
name: 'Patrick',
|
|
140
|
+
phone: '333-444-5555',
|
|
141
|
+
notes: 'nature lover',
|
|
142
|
+
email: 'patrick@example.com',
|
|
143
|
+
sign: 'aquarius',
|
|
144
|
+
address: '789 Elm Avenue Atlanta, GA 30301',
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
id: '17',
|
|
148
|
+
name: 'Quinn',
|
|
149
|
+
phone: '666-777-8888',
|
|
150
|
+
notes: 'fitness enthusiast',
|
|
151
|
+
email: 'quinn@testmail.co',
|
|
152
|
+
sign: 'sagittarius',
|
|
153
|
+
address: '234 Oak Lane Minneapolis, MN 55401',
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
id: '18',
|
|
157
|
+
name: 'Ryan',
|
|
158
|
+
phone: '111-222-3333',
|
|
159
|
+
notes: 'movie buff',
|
|
160
|
+
email: 'ryan@examplemail.com',
|
|
161
|
+
sign: 'capricorn',
|
|
162
|
+
address: '567 Pine Street Houston, TX 77001',
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
id: '19',
|
|
166
|
+
name: 'Sophia',
|
|
167
|
+
phone: '777-888-9999',
|
|
168
|
+
notes: 'gamer',
|
|
169
|
+
email: 'sophia@testmail.co',
|
|
170
|
+
sign: 'pisces',
|
|
171
|
+
address: '789 Cedar Lane Philadelphia, PA 19019',
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
id: '20',
|
|
175
|
+
name: 'Thomas',
|
|
176
|
+
phone: '222-333-4444',
|
|
177
|
+
notes: 'cooking enthusiast',
|
|
178
|
+
email: 'thomas@example.com',
|
|
179
|
+
sign: 'aries',
|
|
180
|
+
address: '123 Birch Avenue Detroit, MI 48201',
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
id: '21',
|
|
184
|
+
name: 'Uma',
|
|
185
|
+
phone: '555-666-7777',
|
|
186
|
+
notes: 'yoga lover',
|
|
187
|
+
email: 'uma@testmail.co',
|
|
188
|
+
sign: 'gemini',
|
|
189
|
+
address: '789 Elm Street Austin, TX 78701',
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
id: '22',
|
|
193
|
+
name: 'Victor',
|
|
194
|
+
phone: '333-444-5555',
|
|
195
|
+
notes: 'skateboarding enthusiast',
|
|
196
|
+
email: 'victor@example.com',
|
|
197
|
+
sign: 'leo',
|
|
198
|
+
address: '234 Pine Lane Denver, CO 80201',
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
id: '23',
|
|
202
|
+
name: 'Wendy',
|
|
203
|
+
phone: '888-999-0000',
|
|
204
|
+
notes: 'animal rights activist',
|
|
205
|
+
email: 'wendy@testmail.co',
|
|
206
|
+
sign: 'libra',
|
|
207
|
+
address: '567 Oak Avenue San Francisco, CA 94101',
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
id: '24',
|
|
211
|
+
name: 'Xavier',
|
|
212
|
+
phone: '777-888-9999',
|
|
213
|
+
notes: 'guitar player',
|
|
214
|
+
email: 'xavier@examplemail.com',
|
|
215
|
+
sign: 'virgo',
|
|
216
|
+
address: '234 Birch Lane Seattle, WA 98101',
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
id: '25',
|
|
220
|
+
name: 'Yarn',
|
|
221
|
+
phone: '555-666-7777',
|
|
222
|
+
notes: 'hiking enthusiast',
|
|
223
|
+
email: 'yara@testmail.co',
|
|
224
|
+
sign: 'taurus',
|
|
225
|
+
address: '789 Cedar Street Portland, OR 97201',
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
id: '26',
|
|
229
|
+
name: 'Zane',
|
|
230
|
+
phone: '111-222-3333',
|
|
231
|
+
notes: 'movie critic',
|
|
232
|
+
email: 'zane@example.com',
|
|
233
|
+
sign: 'aquarius',
|
|
234
|
+
address: '123 Maple Lane Los Angeles, CA 90001',
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
id: '27',
|
|
238
|
+
name: 'Ava',
|
|
239
|
+
phone: '777-888-9999',
|
|
240
|
+
notes: 'dance enthusiast',
|
|
241
|
+
email: 'ava@testmail.co',
|
|
242
|
+
sign: 'sagittarius',
|
|
243
|
+
address: '567 Pine Avenue Chicago, IL 60601',
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
id: '28',
|
|
247
|
+
name: 'Benjamin',
|
|
248
|
+
phone: '222-333-4444',
|
|
249
|
+
notes: 'soccer player',
|
|
250
|
+
email: 'benjamin@examplemail.com',
|
|
251
|
+
sign: 'capricorn',
|
|
252
|
+
address: '789 Oak Street Miami, FL 33101',
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
id: '29',
|
|
256
|
+
name: 'Chloe',
|
|
257
|
+
phone: '888-999-0000',
|
|
258
|
+
notes: 'painter',
|
|
259
|
+
email: 'chloe@testmail.co',
|
|
260
|
+
sign: 'pisces',
|
|
261
|
+
address: '234 Elm Lane Houston, TX 77001',
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
id: '30',
|
|
265
|
+
name: 'Daniel',
|
|
266
|
+
phone: '555-666-7777',
|
|
267
|
+
notes: 'technology blogger',
|
|
268
|
+
email: 'daniel@example.com',
|
|
269
|
+
sign: 'aries',
|
|
270
|
+
address: '789 Birch Avenue Philadelphia, PA 19019',
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
id: '31',
|
|
274
|
+
name: 'Ella',
|
|
275
|
+
phone: '333-444-5555',
|
|
276
|
+
notes: 'book lover',
|
|
277
|
+
email: 'ella@testmail.co',
|
|
278
|
+
sign: 'gemini',
|
|
279
|
+
address: '123 Oak Street Detroit, MI 48201',
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
id: '32',
|
|
283
|
+
name: 'Finn',
|
|
284
|
+
phone: '777-888-9999',
|
|
285
|
+
notes: 'avid traveler',
|
|
286
|
+
email: 'finn@examplemail.com',
|
|
287
|
+
sign: 'leo',
|
|
288
|
+
address: '567 Pine Lane Austin, TX 78701',
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
id: '33',
|
|
292
|
+
name: 'Grace',
|
|
293
|
+
phone: '555-666-7777',
|
|
294
|
+
notes: 'gamer',
|
|
295
|
+
email: 'grace@testmail.co',
|
|
296
|
+
sign: 'libra',
|
|
297
|
+
address: '789 Elm Avenue Denver, CO 80201',
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
id: '34',
|
|
301
|
+
name: 'Henry',
|
|
302
|
+
phone: '888-999-0000',
|
|
303
|
+
notes: 'nature lover',
|
|
304
|
+
email: 'henry@example.com',
|
|
305
|
+
sign: 'virgo',
|
|
306
|
+
address: '234 Birch Lane San Francisco, CA 94101',
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
id: '35',
|
|
310
|
+
name: 'Isaac',
|
|
311
|
+
phone: '555-666-7777',
|
|
312
|
+
notes: 'science enthusiast',
|
|
313
|
+
email: 'isaac@testmail.co',
|
|
314
|
+
sign: 'taurus',
|
|
315
|
+
address: '789 Cedar Street Portland, OR 97201',
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
id: '36',
|
|
319
|
+
name: 'Julia',
|
|
320
|
+
phone: '333-444-5555',
|
|
321
|
+
notes: 'musician',
|
|
322
|
+
email: 'julia@examplemail.com',
|
|
323
|
+
sign: 'aquarius',
|
|
324
|
+
address: '123 Oak Lane Los Angeles, CA 90001',
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
id: '37',
|
|
328
|
+
name: 'Kevin',
|
|
329
|
+
phone: '777-888-9999',
|
|
330
|
+
notes: 'foodie',
|
|
331
|
+
email: 'kevin@testmail.co',
|
|
332
|
+
sign: 'sagittarius',
|
|
333
|
+
address: '567 Pine Avenue Chicago, IL 60601',
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
id: '38',
|
|
337
|
+
name: 'Lily',
|
|
338
|
+
phone: '222-333-4444',
|
|
339
|
+
notes: 'photographer',
|
|
340
|
+
email: 'lily@example.com',
|
|
341
|
+
sign: 'capricorn',
|
|
342
|
+
address: '789 Oak Street Miami, FL 33101',
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
id: '39',
|
|
346
|
+
name: 'Mason',
|
|
347
|
+
phone: '888-999-0000',
|
|
348
|
+
notes: 'soccer player',
|
|
349
|
+
email: 'mason@testmail.co',
|
|
350
|
+
sign: 'pisces',
|
|
351
|
+
address: '234 Elm Lane Houston, TX 77001',
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
id: '40',
|
|
355
|
+
name: 'Nora',
|
|
356
|
+
phone: '555-666-7777',
|
|
357
|
+
notes: 'animal lover',
|
|
358
|
+
email: 'nora@examplemail.com',
|
|
359
|
+
sign: 'aries',
|
|
360
|
+
address: '789 Birch Avenue Philadelphia, PA 19019',
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
id: '41',
|
|
364
|
+
name: 'Oliver',
|
|
365
|
+
phone: '333-444-5555',
|
|
366
|
+
notes: 'chess player',
|
|
367
|
+
email: 'oliver@testmail.co',
|
|
368
|
+
sign: 'gemini',
|
|
369
|
+
address: '123 Oak Lane Denver, CO 80201',
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
id: '42',
|
|
373
|
+
name: 'Penelope',
|
|
374
|
+
phone: '777-888-9999',
|
|
375
|
+
notes: 'gardening lover',
|
|
376
|
+
email: 'penelope@example.com',
|
|
377
|
+
sign: 'leo',
|
|
378
|
+
address: '567 Pine Street San Francisco, CA 94101',
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
id: '43',
|
|
382
|
+
name: 'Quentin',
|
|
383
|
+
phone: '555-666-7777',
|
|
384
|
+
notes: 'film buff',
|
|
385
|
+
email: 'quentin@testmail.co',
|
|
386
|
+
sign: 'libra',
|
|
387
|
+
address: '789 Elm Avenue Seattle, WA 98101',
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
id: '44',
|
|
391
|
+
name: 'Ruby',
|
|
392
|
+
phone: '888-999-0000',
|
|
393
|
+
notes: 'music lover',
|
|
394
|
+
email: 'ruby@examplemail.com',
|
|
395
|
+
sign: 'virgo',
|
|
396
|
+
address: '234 Birch Lane Los Angeles, CA 90001',
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
id: '45',
|
|
400
|
+
name: 'Samuel',
|
|
401
|
+
phone: '555-666-7777',
|
|
402
|
+
notes: 'fitness enthusiast',
|
|
403
|
+
email: 'samuel@testmail.co',
|
|
404
|
+
sign: 'taurus',
|
|
405
|
+
address: '789 Cedar Street Portland, OR 97201',
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
id: '46',
|
|
409
|
+
name: 'Tessa',
|
|
410
|
+
phone: '333-444-5555',
|
|
411
|
+
notes: 'book lover',
|
|
412
|
+
email: 'tessa@examplemail.com',
|
|
413
|
+
sign: 'aquarius',
|
|
414
|
+
address: '123 Oak Lane Austin, TX 78701',
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
id: '47',
|
|
418
|
+
name: 'Uriah',
|
|
419
|
+
phone: '777-888-9999',
|
|
420
|
+
notes: 'basketball player',
|
|
421
|
+
email: 'uriah@testmail.co',
|
|
422
|
+
sign: 'sagittarius',
|
|
423
|
+
address: '567 Pine Avenue Denver, CO 80201',
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
id: '48',
|
|
427
|
+
name: 'Valentino',
|
|
428
|
+
phone: '222-333-4444',
|
|
429
|
+
notes: 'art enthusiast',
|
|
430
|
+
email: 'valentina@example.com',
|
|
431
|
+
sign: 'capricorn',
|
|
432
|
+
address: '789 Oak Street San Francisco, CA 94101',
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
id: '49',
|
|
436
|
+
name: 'William',
|
|
437
|
+
phone: '888-999-0000',
|
|
438
|
+
notes: 'animal lover',
|
|
439
|
+
email: 'william@testmail.co',
|
|
440
|
+
sign: 'pisces',
|
|
441
|
+
address: '234 Elm Lane Seattle, WA 98101',
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
id: '50',
|
|
445
|
+
name: 'Xenia',
|
|
446
|
+
phone: '555-666-7777',
|
|
447
|
+
notes: 'travel enthusiast',
|
|
448
|
+
email: 'xena@examplemail.com',
|
|
449
|
+
sign: 'aries',
|
|
450
|
+
address: '789 Birch Avenue Portland, OR 97201',
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
id: '51',
|
|
454
|
+
name: 'Yanina',
|
|
455
|
+
phone: '333-444-5555',
|
|
456
|
+
notes: 'swimming enthusiast',
|
|
457
|
+
email: 'yannis@testmail.co',
|
|
458
|
+
sign: 'gemini',
|
|
459
|
+
address: '123 Oak Lane Los Angeles, CA 90001',
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
id: '52',
|
|
463
|
+
name: 'Zara',
|
|
464
|
+
phone: '777-888-9999',
|
|
465
|
+
notes: 'foodie',
|
|
466
|
+
email: 'zara@example.com',
|
|
467
|
+
sign: 'leo',
|
|
468
|
+
address: '567 Pine Street Chicago, IL 60601',
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
id: '53',
|
|
472
|
+
name: 'Aaron',
|
|
473
|
+
phone: '555-666-7777',
|
|
474
|
+
notes: 'video game developer',
|
|
475
|
+
email: 'aaron@testmail.co',
|
|
476
|
+
sign: 'libra',
|
|
477
|
+
address: '789 Elm Avenue Miami, FL 33101',
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
id: '54',
|
|
481
|
+
name: 'Bella',
|
|
482
|
+
phone: '888-999-0000',
|
|
483
|
+
notes: 'nature lover',
|
|
484
|
+
email: 'bella@examplemail.com',
|
|
485
|
+
sign: 'virgo',
|
|
486
|
+
address: '234 Birch Lane Houston, TX 77001',
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
id: '55',
|
|
490
|
+
name: 'Caleb',
|
|
491
|
+
phone: '555-666-7777',
|
|
492
|
+
notes: 'science geek',
|
|
493
|
+
email: 'caleb@testmail.co',
|
|
494
|
+
sign: 'taurus',
|
|
495
|
+
address: '789 Cedar Street Philadelphia, PA 19019',
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
id: '56',
|
|
499
|
+
name: 'Daisy',
|
|
500
|
+
phone: '333-444-5555',
|
|
501
|
+
notes: 'musician',
|
|
502
|
+
email: 'daisy@example.com',
|
|
503
|
+
sign: 'aquarius',
|
|
504
|
+
address: '123 Oak Lane Austin, TX 78701',
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
id: '57',
|
|
508
|
+
name: 'Ethan',
|
|
509
|
+
phone: '777-888-9999',
|
|
510
|
+
notes: 'soccer player',
|
|
511
|
+
email: 'ethan@testmail.co',
|
|
512
|
+
sign: 'sagittarius',
|
|
513
|
+
address: '567 Pine Avenue Denver, CO 80201',
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
id: '58',
|
|
517
|
+
name: 'Fiona',
|
|
518
|
+
phone: '222-333-4444',
|
|
519
|
+
notes: 'bookworm',
|
|
520
|
+
email: 'fiona@examplemail.com',
|
|
521
|
+
sign: 'capricorn',
|
|
522
|
+
address: '789 Oak Street San Francisco, CA 94101',
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
id: '59',
|
|
526
|
+
name: 'Gavin',
|
|
527
|
+
phone: '888-999-0000',
|
|
528
|
+
notes: 'gamer',
|
|
529
|
+
email: 'gavin@testmail.co',
|
|
530
|
+
sign: 'pisces',
|
|
531
|
+
address: '234 Elm Lane Seattle, WA 98101',
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
id: '60',
|
|
535
|
+
name: 'Hannah',
|
|
536
|
+
phone: '555-666-7777',
|
|
537
|
+
notes: 'yoga lover',
|
|
538
|
+
email: 'hannah@examplemail.com',
|
|
539
|
+
sign: 'aries',
|
|
540
|
+
address: '789 Birch Avenue Portland, OR 97201',
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
id: '61',
|
|
544
|
+
name: 'Ian',
|
|
545
|
+
phone: '333-444-5555',
|
|
546
|
+
notes: 'painter',
|
|
547
|
+
email: 'ian@testmail.co',
|
|
548
|
+
sign: 'gemini',
|
|
549
|
+
address: '123 Oak Lane Los Angeles, CA 90001',
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
id: '62',
|
|
553
|
+
name: 'Jasmine',
|
|
554
|
+
phone: '777-888-9999',
|
|
555
|
+
notes: 'photographer',
|
|
556
|
+
email: 'jasmine@example.com',
|
|
557
|
+
sign: 'leo',
|
|
558
|
+
address: '567 Pine Street Chicago, IL 60601',
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
id: '63',
|
|
562
|
+
name: 'Kevin',
|
|
563
|
+
phone: '555-666-7777',
|
|
564
|
+
notes: 'film enthusiast',
|
|
565
|
+
email: 'kevin@testmail.co',
|
|
566
|
+
sign: 'libra',
|
|
567
|
+
address: '789 Elm Avenue Miami, FL 33101',
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
id: '64',
|
|
571
|
+
name: 'Luna',
|
|
572
|
+
phone: '888-999-0000',
|
|
573
|
+
notes: 'astronomy lover',
|
|
574
|
+
email: 'luna@examplemail.com',
|
|
575
|
+
sign: 'virgo',
|
|
576
|
+
address: '234 Birch Lane Houston, TX 77001',
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
id: '65',
|
|
580
|
+
name: 'Milo',
|
|
581
|
+
phone: '555-666-7777',
|
|
582
|
+
notes: 'travel enthusiast',
|
|
583
|
+
email: 'milo@testmail.co',
|
|
584
|
+
sign: 'taurus',
|
|
585
|
+
address: '789 Cedar Street Philadelphia, PA 19019',
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
id: '66',
|
|
589
|
+
name: 'Nina',
|
|
590
|
+
phone: '333-444-5555',
|
|
591
|
+
notes: 'dancer',
|
|
592
|
+
email: 'nina@example.com',
|
|
593
|
+
sign: 'aquarius',
|
|
594
|
+
address: '123 Oak Lane Austin, TX 78701',
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
id: '67',
|
|
598
|
+
name: 'Owen',
|
|
599
|
+
phone: '777-888-9999',
|
|
600
|
+
notes: 'soccer player',
|
|
601
|
+
email: 'owen@testmail.co',
|
|
602
|
+
sign: 'sagittarius',
|
|
603
|
+
address: '567 Pine Avenue Denver, CO 80201',
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
id: '68',
|
|
607
|
+
name: 'Piper',
|
|
608
|
+
phone: '222-333-4444',
|
|
609
|
+
notes: 'gamer',
|
|
610
|
+
email: 'piper@examplemail.com',
|
|
611
|
+
sign: 'capricorn',
|
|
612
|
+
address: '789 Oak Street San Francisco, CA 94101',
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
id: '69',
|
|
616
|
+
name: 'Quincy',
|
|
617
|
+
phone: '888-999-0000',
|
|
618
|
+
notes: 'music lover',
|
|
619
|
+
email: 'quincy@testmail.co',
|
|
620
|
+
sign: 'pisces',
|
|
621
|
+
address: '234 Elm Lane Seattle, WA 98101',
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
id: '70',
|
|
625
|
+
name: 'Riley',
|
|
626
|
+
phone: '555-666-7777',
|
|
627
|
+
notes: 'athlete',
|
|
628
|
+
email: 'riley@examplemail.com',
|
|
629
|
+
sign: 'aries',
|
|
630
|
+
address: '789 Birch Avenue Portland, OR 97201',
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
id: '71',
|
|
634
|
+
name: 'Sophie',
|
|
635
|
+
phone: '333-444-5555',
|
|
636
|
+
notes: 'animal lover',
|
|
637
|
+
email: 'sophie@example.com',
|
|
638
|
+
sign: 'gemini',
|
|
639
|
+
address: '123 Oak Lane Los Angeles, CA 90001',
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
id: '72',
|
|
643
|
+
name: 'Thea',
|
|
644
|
+
phone: '777-888-9999',
|
|
645
|
+
notes: 'video game developer',
|
|
646
|
+
email: 'theo@testmail.co',
|
|
647
|
+
sign: 'leo',
|
|
648
|
+
address: '567 Pine Street Chicago, IL 60601',
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
id: '73',
|
|
652
|
+
name: 'Violet',
|
|
653
|
+
phone: '555-666-7777',
|
|
654
|
+
notes: 'nature lover',
|
|
655
|
+
email: 'violet@example.com',
|
|
656
|
+
sign: 'libra',
|
|
657
|
+
address: '789 Elm Avenue Miami, FL 33101',
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
id: '74',
|
|
661
|
+
name: 'Wyatt',
|
|
662
|
+
phone: '888-999-0000',
|
|
663
|
+
notes: 'outdoor enthusiast',
|
|
664
|
+
email: 'wyatt@examplemail.com',
|
|
665
|
+
sign: 'virgo',
|
|
666
|
+
address: '234 Birch Lane Houston, TX 77001',
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
id: '75',
|
|
670
|
+
name: 'Xavier',
|
|
671
|
+
phone: '555-666-7777',
|
|
672
|
+
notes: 'musician',
|
|
673
|
+
email: 'xavier@testmail.co',
|
|
674
|
+
sign: 'taurus',
|
|
675
|
+
address: '789 Cedar Street Philadelphia, PA 19019',
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
id: '76',
|
|
679
|
+
name: 'Cara',
|
|
680
|
+
phone: '333-444-5555',
|
|
681
|
+
notes: 'foodie',
|
|
682
|
+
email: 'yara@example.com',
|
|
683
|
+
sign: 'aquarius',
|
|
684
|
+
address: '123 Oak Lane Austin, TX 78701',
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
id: '77',
|
|
688
|
+
name: 'Zane',
|
|
689
|
+
phone: '777-888-9999',
|
|
690
|
+
notes: 'technology enthusiast',
|
|
691
|
+
email: 'zane@testmail.co',
|
|
692
|
+
sign: 'sagittarius',
|
|
693
|
+
address: '567 Pine Avenue Denver, CO 80201',
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
id: '78',
|
|
697
|
+
name: 'Abigail',
|
|
698
|
+
phone: '222-333-4444',
|
|
699
|
+
notes: 'bookworm',
|
|
700
|
+
email: 'abigail@examplemail.com',
|
|
701
|
+
sign: 'capricorn',
|
|
702
|
+
address: '789 Oak Street San Francisco, CA 94101',
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
id: '79',
|
|
706
|
+
name: 'Bentley',
|
|
707
|
+
phone: '888-999-0000',
|
|
708
|
+
notes: 'dog lover',
|
|
709
|
+
email: 'bentley@testmail.co',
|
|
710
|
+
sign: 'pisces',
|
|
711
|
+
address: '234 Elm Lane Seattle, WA 98101',
|
|
712
|
+
},
|
|
713
|
+
{
|
|
714
|
+
id: '80',
|
|
715
|
+
name: 'Charlotte',
|
|
716
|
+
phone: '555-666-7777',
|
|
717
|
+
notes: 'art enthusiast',
|
|
718
|
+
email: 'charlotte@example.com',
|
|
719
|
+
sign: 'aries',
|
|
720
|
+
address: '789 Birch Avenue Portland, OR 97201',
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
id: '81',
|
|
724
|
+
name: 'Dylan',
|
|
725
|
+
phone: '333-444-5555',
|
|
726
|
+
notes: 'music producer',
|
|
727
|
+
email: 'dylan@testmail.co',
|
|
728
|
+
sign: 'gemini',
|
|
729
|
+
address: '123 Oak Lane Los Angeles, CA 90001',
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
id: '82',
|
|
733
|
+
name: 'Eva',
|
|
734
|
+
phone: '777-888-9999',
|
|
735
|
+
notes: 'photographer',
|
|
736
|
+
email: 'eva@example.com',
|
|
737
|
+
sign: 'leo',
|
|
738
|
+
address: '567 Pine Street Chicago, IL 60601',
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
id: '83',
|
|
742
|
+
name: 'Finn',
|
|
743
|
+
phone: '555-666-7777',
|
|
744
|
+
notes: 'coffee lover',
|
|
745
|
+
email: 'finn@testmail.co',
|
|
746
|
+
sign: 'libra',
|
|
747
|
+
address: '789 Elm Avenue Miami, FL 33101',
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
id: '84',
|
|
751
|
+
name: 'Grace',
|
|
752
|
+
phone: '888-999-0000',
|
|
753
|
+
notes: 'nature lover',
|
|
754
|
+
email: 'grace@examplemail.com',
|
|
755
|
+
sign: 'virgo',
|
|
756
|
+
address: '234 Birch Lane Houston, TX 77001',
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
id: '85',
|
|
760
|
+
name: 'Henry',
|
|
761
|
+
phone: '555-666-7777',
|
|
762
|
+
notes: 'travel enthusiast',
|
|
763
|
+
email: 'henry@testmail.co',
|
|
764
|
+
sign: 'taurus',
|
|
765
|
+
address: '789 Cedar Street Philadelphia, PA 19019',
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
id: '86',
|
|
769
|
+
name: 'Isabella',
|
|
770
|
+
phone: '333-444-5555',
|
|
771
|
+
notes: 'foodie',
|
|
772
|
+
email: 'isabella@example.com',
|
|
773
|
+
sign: 'aquarius',
|
|
774
|
+
address: '123 Oak Lane Austin, TX 78701',
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
id: '87',
|
|
778
|
+
name: 'Jack',
|
|
779
|
+
phone: '777-888-9999',
|
|
780
|
+
notes: 'hiking enthusiast',
|
|
781
|
+
email: 'jack@testmail.co',
|
|
782
|
+
sign: 'sagittarius',
|
|
783
|
+
address: '567 Pine Avenue Denver, CO 80201',
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
id: '88',
|
|
787
|
+
name: 'Katherine',
|
|
788
|
+
phone: '222-333-4444',
|
|
789
|
+
notes: 'art lover',
|
|
790
|
+
email: 'katherine@examplemail.com',
|
|
791
|
+
sign: 'capricorn',
|
|
792
|
+
address: '789 Oak Street San Francisco, CA 94101',
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
id: '89',
|
|
796
|
+
name: 'Liam',
|
|
797
|
+
phone: '888-999-0000',
|
|
798
|
+
notes: 'animal lover',
|
|
799
|
+
email: 'liam@testmail.co',
|
|
800
|
+
sign: 'pisces',
|
|
801
|
+
address: '234 Elm Lane Seattle, WA 98101',
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
id: '90',
|
|
805
|
+
name: 'Mia',
|
|
806
|
+
phone: '555-666-7777',
|
|
807
|
+
notes: 'bookworm',
|
|
808
|
+
email: 'mia@example.com',
|
|
809
|
+
sign: 'aries',
|
|
810
|
+
address: '789 Birch Avenue Portland, OR 97201',
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
id: '91',
|
|
814
|
+
name: 'Noah',
|
|
815
|
+
phone: '333-444-5555',
|
|
816
|
+
notes: 'gamer',
|
|
817
|
+
email: 'noah@examplemail.com',
|
|
818
|
+
sign: 'gemini',
|
|
819
|
+
address: '123 Oak Lane Los Angeles, CA 90001',
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
id: '92',
|
|
823
|
+
name: 'Olivia',
|
|
824
|
+
phone: '777-888-9999',
|
|
825
|
+
notes: 'technology enthusiast',
|
|
826
|
+
email: 'olivia@testmail.co',
|
|
827
|
+
sign: 'leo',
|
|
828
|
+
address: '567 Pine Street Chicago, IL 60601',
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
id: '93',
|
|
832
|
+
name: 'Patrick',
|
|
833
|
+
phone: '555-666-7777',
|
|
834
|
+
notes: 'sports enthusiast',
|
|
835
|
+
email: 'patrick@example.com',
|
|
836
|
+
sign: 'libra',
|
|
837
|
+
address: '789 Elm Avenue Miami, FL 33101',
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
id: '94',
|
|
841
|
+
name: 'Quinn',
|
|
842
|
+
phone: '888-999-0000',
|
|
843
|
+
notes: 'nature lover',
|
|
844
|
+
email: 'quinn@examplemail.com',
|
|
845
|
+
sign: 'virgo',
|
|
846
|
+
address: '234 Birch Lane Houston, TX 77001',
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
id: '95',
|
|
850
|
+
name: 'Ryan',
|
|
851
|
+
phone: '555-666-7777',
|
|
852
|
+
notes: 'musician',
|
|
853
|
+
email: 'ryan@testmail.co',
|
|
854
|
+
sign: 'taurus',
|
|
855
|
+
address: '789 Cedar Street Philadelphia, PA 19019',
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
id: '96',
|
|
859
|
+
name: 'Sophia',
|
|
860
|
+
phone: '333-444-5555',
|
|
861
|
+
notes: 'foodie',
|
|
862
|
+
email: 'sophia@example.com',
|
|
863
|
+
sign: 'aquarius',
|
|
864
|
+
address: '123 Oak Lane Austin, TX 78701',
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
id: '97',
|
|
868
|
+
name: 'Thomas',
|
|
869
|
+
phone: '777-888-9999',
|
|
870
|
+
notes: 'hiking enthusiast',
|
|
871
|
+
email: 'thomas@testmail.co',
|
|
872
|
+
sign: 'sagittarius',
|
|
873
|
+
address: '567 Pine Avenue Denver, CO 80201',
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
id: '98',
|
|
877
|
+
name: 'Uma',
|
|
878
|
+
phone: '222-333-4444',
|
|
879
|
+
notes: 'art lover',
|
|
880
|
+
email: 'uma@examplemail.com',
|
|
881
|
+
sign: 'capricorn',
|
|
882
|
+
address: '789 Oak Street San Francisco, CA 94101',
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
id: '99',
|
|
886
|
+
name: 'Victor',
|
|
887
|
+
phone: '888-999-0000',
|
|
888
|
+
notes: 'animal lover',
|
|
889
|
+
email: 'victor@testmail.co',
|
|
890
|
+
sign: 'pisces',
|
|
891
|
+
address: '234 Elm Lane Seattle, WA 98101',
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
id: '100',
|
|
895
|
+
name: 'Wendy',
|
|
896
|
+
phone: '555-666-7777',
|
|
897
|
+
notes: 'bookworm',
|
|
898
|
+
email: 'wendy@example.com',
|
|
899
|
+
sign: 'aries',
|
|
900
|
+
address: '789 Birch Avenue Portland, OR 97201',
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
id: '101',
|
|
904
|
+
name: 'Bander',
|
|
905
|
+
phone: '333-444-5555',
|
|
906
|
+
notes: 'chess player',
|
|
907
|
+
email: 'xander@testmail.co',
|
|
908
|
+
sign: 'gemini',
|
|
909
|
+
address: '123 Oak Lane Los Angeles, CA 90001',
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
id: '102',
|
|
913
|
+
name: 'Jasmine',
|
|
914
|
+
phone: '777-888-9999',
|
|
915
|
+
notes: 'gardening enthusiast',
|
|
916
|
+
email: 'yasmine@example.com',
|
|
917
|
+
sign: 'leo',
|
|
918
|
+
address: '567 Pine Street Chicago, IL 60601',
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
id: '103',
|
|
922
|
+
name: 'Zara',
|
|
923
|
+
phone: '555-666-7777',
|
|
924
|
+
notes: 'film buff',
|
|
925
|
+
email: 'zara@testmail.co',
|
|
926
|
+
sign: 'libra',
|
|
927
|
+
address: '789 Elm Avenue Miami, FL 33101',
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
id: '104',
|
|
931
|
+
name: 'Alex',
|
|
932
|
+
phone: '888-999-0000',
|
|
933
|
+
notes: 'music lover',
|
|
934
|
+
email: 'alex@examplemail.com',
|
|
935
|
+
sign: 'virgo',
|
|
936
|
+
address: '234 Birch Lane Houston, TX 77001',
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
id: '105',
|
|
940
|
+
name: 'Bianca',
|
|
941
|
+
phone: '555-666-7777',
|
|
942
|
+
notes: 'travel enthusiast',
|
|
943
|
+
email: 'bianca@example.com',
|
|
944
|
+
sign: 'taurus',
|
|
945
|
+
address: '789 Cedar Street Philadelphia, PA 19019',
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
id: '106',
|
|
949
|
+
name: 'Cameron',
|
|
950
|
+
phone: '333-444-5555',
|
|
951
|
+
notes: 'book lover',
|
|
952
|
+
email: 'cameron@examplemail.com',
|
|
953
|
+
sign: 'aquarius',
|
|
954
|
+
address: '123 Oak Lane Austin, TX 78701',
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
id: '107',
|
|
958
|
+
name: 'Diana',
|
|
959
|
+
phone: '777-888-9999',
|
|
960
|
+
notes: 'basketball player',
|
|
961
|
+
email: 'diana@testmail.co',
|
|
962
|
+
sign: 'sagittarius',
|
|
963
|
+
address: '567 Pine Avenue Denver, CO 80201',
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
id: '108',
|
|
967
|
+
name: 'John',
|
|
968
|
+
phone: '555-123-4567',
|
|
969
|
+
notes: 'Software Engineer',
|
|
970
|
+
email: 'john@example.com',
|
|
971
|
+
sign: 'Aries',
|
|
972
|
+
address: '123 Oak Street, San Francisco, CA 94101',
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
id: '109',
|
|
976
|
+
name: 'Alice',
|
|
977
|
+
phone: '999-555-1212',
|
|
978
|
+
notes: 'Teacher',
|
|
979
|
+
email: 'alice@testmail.co',
|
|
980
|
+
sign: 'Leo',
|
|
981
|
+
address: '456 Elm Road, New York, NY 10001',
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
id: '110',
|
|
985
|
+
name: 'David',
|
|
986
|
+
phone: '777-333-9999',
|
|
987
|
+
notes: 'Doctor',
|
|
988
|
+
email: 'david@example.com',
|
|
989
|
+
sign: 'Scorpio',
|
|
990
|
+
address: '789 Maple Avenue, Los Angeles, CA 90001',
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
id: '111',
|
|
994
|
+
name: 'Emma',
|
|
995
|
+
phone: '888-777-5555',
|
|
996
|
+
notes: 'Graphic Designer',
|
|
997
|
+
email: 'emma@testmail.co',
|
|
998
|
+
sign: 'Gemini',
|
|
999
|
+
address: '321 Birch Street, Chicago, IL 60601',
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
id: '112',
|
|
1003
|
+
name: 'Daniel',
|
|
1004
|
+
phone: '444-666-2222',
|
|
1005
|
+
notes: 'Lawyer',
|
|
1006
|
+
email: 'daniel@example.com',
|
|
1007
|
+
sign: 'Taurus',
|
|
1008
|
+
address: '567 Pine Avenue, Denver, CO 80201',
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
id: '113',
|
|
1012
|
+
name: 'Sophie',
|
|
1013
|
+
phone: '666-999-1111',
|
|
1014
|
+
notes: 'Chef',
|
|
1015
|
+
email: 'sophie@testmail.co',
|
|
1016
|
+
sign: 'Capricorn',
|
|
1017
|
+
address: '890 Cedar Road, Miami, FL 33101',
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
id: '114',
|
|
1021
|
+
name: 'William',
|
|
1022
|
+
phone: '111-444-7777',
|
|
1023
|
+
notes: 'Architect',
|
|
1024
|
+
email: 'william@example.com',
|
|
1025
|
+
sign: 'Sagittarius',
|
|
1026
|
+
address: '123 Elm Street, Seattle, WA 98101',
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
id: '115',
|
|
1030
|
+
name: 'Olivia',
|
|
1031
|
+
phone: '222-888-9999',
|
|
1032
|
+
notes: 'Nurse',
|
|
1033
|
+
email: 'olivia@testmail.co',
|
|
1034
|
+
sign: 'Pisces',
|
|
1035
|
+
address: '456 Oak Lane, San Francisco, CA 94101',
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
id: '116',
|
|
1039
|
+
name: 'James',
|
|
1040
|
+
phone: '555-777-2222',
|
|
1041
|
+
notes: 'Police Officer',
|
|
1042
|
+
email: 'james@example.com',
|
|
1043
|
+
sign: 'Virgo',
|
|
1044
|
+
address: '789 Birch Road, New York, NY 10001',
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
id: '117',
|
|
1048
|
+
name: 'Ava',
|
|
1049
|
+
phone: '111-555-6666',
|
|
1050
|
+
notes: 'Dentist',
|
|
1051
|
+
email: 'ava@testmail.co',
|
|
1052
|
+
sign: 'Cancer',
|
|
1053
|
+
address: '890 Oak Street, Los Angeles, CA 90001',
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
id: '118',
|
|
1057
|
+
name: 'Liam',
|
|
1058
|
+
phone: '777-555-8888',
|
|
1059
|
+
notes: 'Teacher',
|
|
1060
|
+
email: 'liam@example.com',
|
|
1061
|
+
sign: 'Libra',
|
|
1062
|
+
address: '123 Cedar Road, Chicago, IL 60601',
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
id: '119',
|
|
1066
|
+
name: 'Mia',
|
|
1067
|
+
phone: '333-666-1111',
|
|
1068
|
+
notes: 'Software Developer',
|
|
1069
|
+
email: 'mia@testmail.co',
|
|
1070
|
+
sign: 'Leo',
|
|
1071
|
+
address: '456 Pine Avenue, Denver, CO 80201',
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
id: '120',
|
|
1075
|
+
name: 'Benjamin',
|
|
1076
|
+
phone: '999-777-5555',
|
|
1077
|
+
notes: 'Engineer',
|
|
1078
|
+
email: 'benjamin@example.com',
|
|
1079
|
+
sign: 'Scorpio',
|
|
1080
|
+
address: '567 Elm Lane, Miami, FL 33101',
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
id: '121',
|
|
1084
|
+
name: 'Isabella',
|
|
1085
|
+
phone: '888-111-4444',
|
|
1086
|
+
notes: 'Artist',
|
|
1087
|
+
email: 'isabella@testmail.co',
|
|
1088
|
+
sign: 'Gemini',
|
|
1089
|
+
address: '321 Cedar Avenue, Seattle, WA 98101',
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
id: '122',
|
|
1093
|
+
name: 'Eva',
|
|
1094
|
+
phone: '444-666-8888',
|
|
1095
|
+
notes: 'Accountant',
|
|
1096
|
+
email: 'eva@example.com',
|
|
1097
|
+
sign: 'Virgo',
|
|
1098
|
+
address: '567 Birch Lane, Houston, TX 77001',
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
id: '123',
|
|
1102
|
+
name: 'Oliver',
|
|
1103
|
+
phone: '333-999-7777',
|
|
1104
|
+
notes: 'Writer',
|
|
1105
|
+
email: 'oliver@testmail.co',
|
|
1106
|
+
sign: 'Cancer',
|
|
1107
|
+
address: '890 Cedar Road, Miami, FL 33101',
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
id: '124',
|
|
1111
|
+
name: 'Sophia',
|
|
1112
|
+
phone: '777-888-2222',
|
|
1113
|
+
notes: 'Dentist',
|
|
1114
|
+
email: 'sophia@example.com',
|
|
1115
|
+
sign: 'Libra',
|
|
1116
|
+
address: '123 Elm Street, Seattle, WA 98101',
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
id: '125',
|
|
1120
|
+
name: 'Liam',
|
|
1121
|
+
phone: '555-123-4567',
|
|
1122
|
+
notes: 'Software Engineer',
|
|
1123
|
+
email: 'liam@example.com',
|
|
1124
|
+
sign: 'Aries',
|
|
1125
|
+
address: '123 Oak Street, San Francisco, CA 94101',
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
id: '126',
|
|
1129
|
+
name: 'Olivia',
|
|
1130
|
+
phone: '999-555-1212',
|
|
1131
|
+
notes: 'Teacher',
|
|
1132
|
+
email: 'olivia@testmail.co',
|
|
1133
|
+
sign: 'Leo',
|
|
1134
|
+
address: '456 Elm Road, New York, NY 10001',
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
id: '127',
|
|
1138
|
+
name: 'Noah',
|
|
1139
|
+
phone: '777-333-9999',
|
|
1140
|
+
notes: 'Doctor',
|
|
1141
|
+
email: 'noah@example.com',
|
|
1142
|
+
sign: 'Scorpio',
|
|
1143
|
+
address: '789 Maple Avenue, Los Angeles, CA 90001',
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
id: '128',
|
|
1147
|
+
name: 'Sophia',
|
|
1148
|
+
phone: '888-777-5555',
|
|
1149
|
+
notes: 'Graphic Designer',
|
|
1150
|
+
email: 'sophia@testmail.co',
|
|
1151
|
+
sign: 'Gemini',
|
|
1152
|
+
address: '321 Birch Street, Chicago, IL 60601',
|
|
1153
|
+
},
|
|
1154
|
+
{
|
|
1155
|
+
id: '129',
|
|
1156
|
+
name: 'William',
|
|
1157
|
+
phone: '444-666-2222',
|
|
1158
|
+
notes: 'Lawyer',
|
|
1159
|
+
email: 'william@example.com',
|
|
1160
|
+
sign: 'Taurus',
|
|
1161
|
+
address: '567 Pine Avenue, Denver, CO 80201',
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
id: '130',
|
|
1165
|
+
name: 'Olivia',
|
|
1166
|
+
phone: '666-999-1111',
|
|
1167
|
+
notes: 'Chef',
|
|
1168
|
+
email: 'olivia@testmail.co',
|
|
1169
|
+
sign: 'Capricorn',
|
|
1170
|
+
address: '890 Cedar Road, Miami, FL 33101',
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
id: '131',
|
|
1174
|
+
name: 'James',
|
|
1175
|
+
phone: '111-444-7777',
|
|
1176
|
+
notes: 'Architect',
|
|
1177
|
+
email: 'james@example.com',
|
|
1178
|
+
sign: 'Sagittarius',
|
|
1179
|
+
address: '123 Elm Street, Seattle, WA 98101',
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
id: '132',
|
|
1183
|
+
name: 'Emma',
|
|
1184
|
+
phone: '222-888-9999',
|
|
1185
|
+
notes: 'Nurse',
|
|
1186
|
+
email: 'emma@testmail.co',
|
|
1187
|
+
sign: 'Pisces',
|
|
1188
|
+
address: '456 Oak Lane, San Francisco, CA 94101',
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
id: '133',
|
|
1192
|
+
name: 'Ava',
|
|
1193
|
+
phone: '555-777-2222',
|
|
1194
|
+
notes: 'Police Officer',
|
|
1195
|
+
email: 'ava@example.com',
|
|
1196
|
+
sign: 'Virgo',
|
|
1197
|
+
address: '789 Birch Road, New York, NY 10001',
|
|
1198
|
+
},
|
|
1199
|
+
{
|
|
1200
|
+
id: '134',
|
|
1201
|
+
name: 'Benjamin',
|
|
1202
|
+
phone: '111-555-6666',
|
|
1203
|
+
notes: 'Dentist',
|
|
1204
|
+
email: 'benjamin@example.com',
|
|
1205
|
+
sign: 'Cancer',
|
|
1206
|
+
address: '890 Oak Street, Los Angeles, CA 90001',
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
id: '135',
|
|
1210
|
+
name: 'Sophia',
|
|
1211
|
+
phone: '777-555-8888',
|
|
1212
|
+
notes: 'Teacher',
|
|
1213
|
+
email: 'sophia@example.com',
|
|
1214
|
+
sign: 'Libra',
|
|
1215
|
+
address: '123 Cedar Road, Chicago, IL 60601',
|
|
1216
|
+
},
|
|
1217
|
+
{
|
|
1218
|
+
id: '136',
|
|
1219
|
+
name: 'Mia',
|
|
1220
|
+
phone: '333-666-1111',
|
|
1221
|
+
notes: 'Software Developer',
|
|
1222
|
+
email: 'mia@testmail.co',
|
|
1223
|
+
sign: 'Leo',
|
|
1224
|
+
address: '456 Pine Avenue, Denver, CO 80201',
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
id: '137',
|
|
1228
|
+
name: 'Benjamin',
|
|
1229
|
+
phone: '999-777-5555',
|
|
1230
|
+
notes: 'Engineer',
|
|
1231
|
+
email: 'benjamin@example.com',
|
|
1232
|
+
sign: 'Scorpio',
|
|
1233
|
+
address: '567 Elm Lane, Miami, FL 33101',
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
id: '138',
|
|
1237
|
+
name: 'Isabella',
|
|
1238
|
+
phone: '888-111-4444',
|
|
1239
|
+
notes: 'Artist',
|
|
1240
|
+
email: 'isabella@testmail.co',
|
|
1241
|
+
sign: 'Gemini',
|
|
1242
|
+
address: '321 Cedar Avenue, Seattle, WA 98101',
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
id: '139',
|
|
1246
|
+
name: 'Eva',
|
|
1247
|
+
phone: '444-666-8888',
|
|
1248
|
+
notes: 'Accountant',
|
|
1249
|
+
email: 'eva@example.com',
|
|
1250
|
+
sign: 'Virgo',
|
|
1251
|
+
address: '567 Birch Lane, Houston, TX 77001',
|
|
1252
|
+
},
|
|
1253
|
+
{
|
|
1254
|
+
id: '140',
|
|
1255
|
+
name: 'Oliver',
|
|
1256
|
+
phone: '333-999-7777',
|
|
1257
|
+
notes: 'Writer',
|
|
1258
|
+
email: 'oliver@testmail.co',
|
|
1259
|
+
sign: 'Cancer',
|
|
1260
|
+
address: '890 Cedar Road, Miami, FL 33101',
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
id: '141',
|
|
1264
|
+
name: 'Sophia',
|
|
1265
|
+
phone: '777-888-2222',
|
|
1266
|
+
notes: 'Dentist',
|
|
1267
|
+
email: 'sophia@example.com',
|
|
1268
|
+
sign: 'Libra',
|
|
1269
|
+
address: '123 Elm Street, Seattle, WA 98101',
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
id: '142',
|
|
1273
|
+
name: 'Liam',
|
|
1274
|
+
phone: '555-123-4567',
|
|
1275
|
+
notes: 'Software Engineer',
|
|
1276
|
+
email: 'liam@example.com',
|
|
1277
|
+
sign: 'Aries',
|
|
1278
|
+
address: '123 Oak Street, San Francisco, CA 94101',
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
id: '143',
|
|
1282
|
+
name: 'Olivia',
|
|
1283
|
+
phone: '999-555-1212',
|
|
1284
|
+
notes: 'Teacher',
|
|
1285
|
+
email: 'olivia@testmail.co',
|
|
1286
|
+
sign: 'Leo',
|
|
1287
|
+
address: '456 Elm Road, New York, NY 10001',
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
id: '144',
|
|
1291
|
+
name: 'Noah',
|
|
1292
|
+
phone: '777-333-9999',
|
|
1293
|
+
notes: 'Doctor',
|
|
1294
|
+
email: 'noah@example.com',
|
|
1295
|
+
sign: 'Scorpio',
|
|
1296
|
+
address: '789 Maple Avenue, Los Angeles, CA 90001',
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
id: '145',
|
|
1300
|
+
name: 'Sophia',
|
|
1301
|
+
phone: '888-777-5555',
|
|
1302
|
+
notes: 'Graphic Designer',
|
|
1303
|
+
email: 'sophia@testmail.co',
|
|
1304
|
+
sign: 'Gemini',
|
|
1305
|
+
address: '321 Birch Street, Chicago, IL 60601',
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
id: '146',
|
|
1309
|
+
name: 'William',
|
|
1310
|
+
phone: '444-666-2222',
|
|
1311
|
+
notes: 'Lawyer',
|
|
1312
|
+
email: 'william@example.com',
|
|
1313
|
+
sign: 'Taurus',
|
|
1314
|
+
address: '567 Pine Avenue, Denver, CO 80201',
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
id: '147',
|
|
1318
|
+
name: 'Olivia',
|
|
1319
|
+
phone: '666-999-1111',
|
|
1320
|
+
notes: 'Chef',
|
|
1321
|
+
email: 'olivia@testmail.co',
|
|
1322
|
+
sign: 'Capricorn',
|
|
1323
|
+
address: '890 Cedar Road, Miami, FL 33101',
|
|
1324
|
+
},
|
|
1325
|
+
{
|
|
1326
|
+
id: '148',
|
|
1327
|
+
name: 'James',
|
|
1328
|
+
phone: '111-444-7777',
|
|
1329
|
+
notes: 'Architect',
|
|
1330
|
+
email: 'james@example.com',
|
|
1331
|
+
sign: 'Sagittarius',
|
|
1332
|
+
address: '123 Elm Street, Seattle, WA 98101',
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
id: '149',
|
|
1336
|
+
name: 'Emma',
|
|
1337
|
+
phone: '222-888-9999',
|
|
1338
|
+
notes: 'Nurse',
|
|
1339
|
+
email: 'emma@testmail.co',
|
|
1340
|
+
sign: 'Pisces',
|
|
1341
|
+
address: '456 Oak Lane, San Francisco, CA 94101',
|
|
1342
|
+
},
|
|
1343
|
+
{
|
|
1344
|
+
id: '150',
|
|
1345
|
+
name: 'Ava',
|
|
1346
|
+
phone: '555-777-2222',
|
|
1347
|
+
notes: 'Police Officer',
|
|
1348
|
+
email: 'ava@example.com',
|
|
1349
|
+
sign: 'Virgo',
|
|
1350
|
+
address: '789 Birch Road, New York, NY 10001',
|
|
1351
|
+
},
|
|
1352
|
+
{
|
|
1353
|
+
id: '151',
|
|
1354
|
+
name: 'Benjamin',
|
|
1355
|
+
phone: '111-555-6666',
|
|
1356
|
+
notes: 'Dentist',
|
|
1357
|
+
email: 'benjamin@example.com',
|
|
1358
|
+
sign: 'Cancer',
|
|
1359
|
+
address: '890 Oak Street, Los Angeles, CA 90001',
|
|
1360
|
+
},
|
|
1361
|
+
{
|
|
1362
|
+
id: '152',
|
|
1363
|
+
name: 'Sophia',
|
|
1364
|
+
phone: '777-555-8888',
|
|
1365
|
+
notes: 'Teacher',
|
|
1366
|
+
email: 'sophia@example.com',
|
|
1367
|
+
sign: 'Libra',
|
|
1368
|
+
address: '123 Cedar Road, Chicago, IL 60601',
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
id: '153',
|
|
1372
|
+
name: 'Mia',
|
|
1373
|
+
phone: '333-666-1111',
|
|
1374
|
+
notes: 'Software Developer',
|
|
1375
|
+
email: 'mia@testmail.co',
|
|
1376
|
+
sign: 'Leo',
|
|
1377
|
+
address: '456 Pine Avenue, Denver, CO 80201',
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
id: '154',
|
|
1381
|
+
name: 'Benjamin',
|
|
1382
|
+
phone: '999-777-5555',
|
|
1383
|
+
notes: 'Engineer',
|
|
1384
|
+
email: 'benjamin@example.com',
|
|
1385
|
+
sign: 'Scorpio',
|
|
1386
|
+
address: '567 Elm Lane, Miami, FL 33101',
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
id: '155',
|
|
1390
|
+
name: 'Isabella',
|
|
1391
|
+
phone: '888-111-4444',
|
|
1392
|
+
notes: 'Artist',
|
|
1393
|
+
email: 'isabella@testmail.co',
|
|
1394
|
+
sign: 'Gemini',
|
|
1395
|
+
address: '321 Cedar Avenue, Seattle, WA 98101',
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
id: '156',
|
|
1399
|
+
name: 'Eva',
|
|
1400
|
+
phone: '444-666-8888',
|
|
1401
|
+
notes: 'Accountant',
|
|
1402
|
+
email: 'eva@example.com',
|
|
1403
|
+
sign: 'Virgo',
|
|
1404
|
+
address: '567 Birch Lane, Houston, TX 77001',
|
|
1405
|
+
},
|
|
1406
|
+
{
|
|
1407
|
+
id: '157',
|
|
1408
|
+
name: 'Oliver',
|
|
1409
|
+
phone: '333-999-7777',
|
|
1410
|
+
notes: 'Writer',
|
|
1411
|
+
email: 'oliver@testmail.co',
|
|
1412
|
+
sign: 'Cancer',
|
|
1413
|
+
address: '890 Cedar Road, Miami, FL 33101',
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
id: '158',
|
|
1417
|
+
name: 'Sophia',
|
|
1418
|
+
phone: '777-888-2222',
|
|
1419
|
+
notes: 'Dentist',
|
|
1420
|
+
email: 'sophia@example.com',
|
|
1421
|
+
sign: 'Libra',
|
|
1422
|
+
address: '123 Elm Street, Seattle, WA 98101',
|
|
1423
|
+
},
|
|
1424
|
+
{
|
|
1425
|
+
id: '159',
|
|
1426
|
+
name: 'Liam',
|
|
1427
|
+
phone: '555-123-4567',
|
|
1428
|
+
notes: 'Software Engineer',
|
|
1429
|
+
email: 'liam@example.com',
|
|
1430
|
+
sign: 'Aries',
|
|
1431
|
+
address: '123 Oak Street, San Francisco, CA 94101',
|
|
1432
|
+
},
|
|
1433
|
+
{
|
|
1434
|
+
id: '160',
|
|
1435
|
+
name: 'Olivia',
|
|
1436
|
+
phone: '999-555-1212',
|
|
1437
|
+
notes: 'Teacher',
|
|
1438
|
+
email: 'olivia@testmail.co',
|
|
1439
|
+
sign: 'Leo',
|
|
1440
|
+
address: '456 Elm Road, New York, NY 10001',
|
|
1441
|
+
},
|
|
1442
|
+
{
|
|
1443
|
+
id: '161',
|
|
1444
|
+
name: 'Noah',
|
|
1445
|
+
phone: '777-333-9999',
|
|
1446
|
+
notes: 'Doctor',
|
|
1447
|
+
email: 'noah@example.com',
|
|
1448
|
+
sign: 'Scorpio',
|
|
1449
|
+
address: '789 Maple Avenue, Los Angeles, CA 90001',
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
id: '162',
|
|
1453
|
+
name: 'Sophia',
|
|
1454
|
+
phone: '888-777-5555',
|
|
1455
|
+
notes: 'Graphic Designer',
|
|
1456
|
+
email: 'sophia@testmail.co',
|
|
1457
|
+
sign: 'Gemini',
|
|
1458
|
+
address: '321 Birch Street, Chicago, IL 60601',
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
id: '163',
|
|
1462
|
+
name: 'William',
|
|
1463
|
+
phone: '444-666-2222',
|
|
1464
|
+
notes: 'Lawyer',
|
|
1465
|
+
email: 'william@example.com',
|
|
1466
|
+
sign: 'Taurus',
|
|
1467
|
+
address: '567 Pine Avenue, Denver, CO 80201',
|
|
1468
|
+
},
|
|
1469
|
+
{
|
|
1470
|
+
id: '164',
|
|
1471
|
+
name: 'Olivia',
|
|
1472
|
+
phone: '666-999-1111',
|
|
1473
|
+
notes: 'Chef',
|
|
1474
|
+
email: 'olivia@testmail.co',
|
|
1475
|
+
sign: 'Capricorn',
|
|
1476
|
+
address: '890 Cedar Road, Miami, FL 33101',
|
|
1477
|
+
},
|
|
1478
|
+
{
|
|
1479
|
+
id: '165',
|
|
1480
|
+
name: 'James',
|
|
1481
|
+
phone: '111-444-7777',
|
|
1482
|
+
notes: 'Architect',
|
|
1483
|
+
email: 'james@example.com',
|
|
1484
|
+
sign: 'Sagittarius',
|
|
1485
|
+
address: '123 Elm Street, Seattle, WA 98101',
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
id: '166',
|
|
1489
|
+
name: 'Emma',
|
|
1490
|
+
phone: '222-888-9999',
|
|
1491
|
+
notes: 'Nurse',
|
|
1492
|
+
email: 'emma@testmail.co',
|
|
1493
|
+
sign: 'Pisces',
|
|
1494
|
+
address: '456 Oak Lane, San Francisco, CA 94101',
|
|
1495
|
+
},
|
|
1496
|
+
{
|
|
1497
|
+
id: '167',
|
|
1498
|
+
name: 'Ava',
|
|
1499
|
+
phone: '555-777-2222',
|
|
1500
|
+
notes: 'Police Officer',
|
|
1501
|
+
email: 'ava@example.com',
|
|
1502
|
+
sign: 'Virgo',
|
|
1503
|
+
address: '789 Birch Road, New York, NY 10001',
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
id: '168',
|
|
1507
|
+
name: 'Benjamin',
|
|
1508
|
+
phone: '111-555-6666',
|
|
1509
|
+
notes: 'Dentist',
|
|
1510
|
+
email: 'benjamin@example.com',
|
|
1511
|
+
sign: 'Cancer',
|
|
1512
|
+
address: '890 Oak Street, Los Angeles, CA 90001',
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
id: '169',
|
|
1516
|
+
name: 'Sophia',
|
|
1517
|
+
phone: '777-555-8888',
|
|
1518
|
+
notes: 'Teacher',
|
|
1519
|
+
email: 'sophia@example.com',
|
|
1520
|
+
sign: 'Libra',
|
|
1521
|
+
address: '123 Cedar Road, Chicago, IL 60601',
|
|
1522
|
+
},
|
|
1523
|
+
{
|
|
1524
|
+
id: '170',
|
|
1525
|
+
name: 'Mia',
|
|
1526
|
+
phone: '333-666-1111',
|
|
1527
|
+
notes: 'Software Developer',
|
|
1528
|
+
email: 'mia@testmail.co',
|
|
1529
|
+
sign: 'Leo',
|
|
1530
|
+
address: '456 Pine Avenue, Denver, CO 80201',
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
id: '171',
|
|
1534
|
+
name: 'Benjamin',
|
|
1535
|
+
phone: '999-777-5555',
|
|
1536
|
+
notes: 'Engineer',
|
|
1537
|
+
email: 'benjamin@example.com',
|
|
1538
|
+
sign: 'Scorpio',
|
|
1539
|
+
address: '567 Elm Lane, Miami, FL 33101',
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
id: '172',
|
|
1543
|
+
name: 'Isabella',
|
|
1544
|
+
phone: '888-111-4444',
|
|
1545
|
+
notes: 'Artist',
|
|
1546
|
+
email: 'isabella@testmail.co',
|
|
1547
|
+
sign: 'Gemini',
|
|
1548
|
+
address: '321 Cedar Avenue, Seattle, WA 98101',
|
|
1549
|
+
},
|
|
1550
|
+
{
|
|
1551
|
+
id: '173',
|
|
1552
|
+
name: 'Eva',
|
|
1553
|
+
phone: '444-666-8888',
|
|
1554
|
+
notes: 'Accountant',
|
|
1555
|
+
email: 'eva@example.com',
|
|
1556
|
+
sign: 'Virgo',
|
|
1557
|
+
address: '567 Birch Lane, Houston, TX 77001',
|
|
1558
|
+
},
|
|
1559
|
+
{
|
|
1560
|
+
id: '174',
|
|
1561
|
+
name: 'Oliver',
|
|
1562
|
+
phone: '333-999-7777',
|
|
1563
|
+
notes: 'Writer',
|
|
1564
|
+
email: 'oliver@testmail.co',
|
|
1565
|
+
sign: 'Cancer',
|
|
1566
|
+
address: '890 Cedar Road, Miami, FL 33101',
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
id: '175',
|
|
1570
|
+
name: 'Sophia',
|
|
1571
|
+
phone: '777-888-2222',
|
|
1572
|
+
notes: 'Dentist',
|
|
1573
|
+
email: 'sophia@example.com',
|
|
1574
|
+
sign: 'Libra',
|
|
1575
|
+
address: '123 Elm Street, Seattle, WA 98101',
|
|
1576
|
+
},
|
|
1577
|
+
{
|
|
1578
|
+
id: '176',
|
|
1579
|
+
name: 'Liam',
|
|
1580
|
+
phone: '555-123-4567',
|
|
1581
|
+
notes: 'Software Engineer',
|
|
1582
|
+
email: 'liam@example.com',
|
|
1583
|
+
sign: 'Aries',
|
|
1584
|
+
address: '123 Oak Street, San Francisco, CA 94101',
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
id: '177',
|
|
1588
|
+
name: 'Olivia',
|
|
1589
|
+
phone: '999-555-1212',
|
|
1590
|
+
notes: 'Teacher',
|
|
1591
|
+
email: 'olivia@testmail.co',
|
|
1592
|
+
sign: 'Leo',
|
|
1593
|
+
address: '456 Elm Road, New York, NY 10001',
|
|
1594
|
+
},
|
|
1595
|
+
{
|
|
1596
|
+
id: '178',
|
|
1597
|
+
name: 'Noah',
|
|
1598
|
+
phone: '777-333-9999',
|
|
1599
|
+
notes: 'Doctor',
|
|
1600
|
+
email: 'noah@example.com',
|
|
1601
|
+
sign: 'Scorpio',
|
|
1602
|
+
address: '789 Maple Avenue, Los Angeles, CA 90001',
|
|
1603
|
+
},
|
|
1604
|
+
{
|
|
1605
|
+
id: '179',
|
|
1606
|
+
name: 'Sophia',
|
|
1607
|
+
phone: '888-777-5555',
|
|
1608
|
+
notes: 'Graphic Designer',
|
|
1609
|
+
email: 'sophia@testmail.co',
|
|
1610
|
+
sign: 'Gemini',
|
|
1611
|
+
address: '321 Birch Street, Chicago, IL 60601',
|
|
1612
|
+
},
|
|
1613
|
+
{
|
|
1614
|
+
id: '180',
|
|
1615
|
+
name: 'William',
|
|
1616
|
+
phone: '444-666-2222',
|
|
1617
|
+
notes: 'Lawyer',
|
|
1618
|
+
email: 'william@example.com',
|
|
1619
|
+
sign: 'Taurus',
|
|
1620
|
+
address: '567 Pine Avenue, Denver, CO 80201',
|
|
1621
|
+
},
|
|
1622
|
+
{
|
|
1623
|
+
id: '181',
|
|
1624
|
+
name: 'Olivia',
|
|
1625
|
+
phone: '666-999-1111',
|
|
1626
|
+
notes: 'Chef',
|
|
1627
|
+
email: 'olivia@testmail.co',
|
|
1628
|
+
sign: 'Capricorn',
|
|
1629
|
+
address: '890 Cedar Road, Miami, FL 33101',
|
|
1630
|
+
},
|
|
1631
|
+
{
|
|
1632
|
+
id: '182',
|
|
1633
|
+
name: 'James',
|
|
1634
|
+
phone: '111-444-7777',
|
|
1635
|
+
notes: 'Architect',
|
|
1636
|
+
email: 'james@example.com',
|
|
1637
|
+
sign: 'Sagittarius',
|
|
1638
|
+
address: '123 Elm Street, Seattle, WA 98101',
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
id: '183',
|
|
1642
|
+
name: 'Emma',
|
|
1643
|
+
phone: '222-888-9999',
|
|
1644
|
+
notes: 'Nurse',
|
|
1645
|
+
email: 'emma@testmail.co',
|
|
1646
|
+
sign: 'Pisces',
|
|
1647
|
+
address: '456 Oak Lane, San Francisco, CA 94101',
|
|
1648
|
+
},
|
|
1649
|
+
{
|
|
1650
|
+
id: '184',
|
|
1651
|
+
name: 'Ava',
|
|
1652
|
+
phone: '555-777-2222',
|
|
1653
|
+
notes: 'Police Officer',
|
|
1654
|
+
email: 'ava@example.com',
|
|
1655
|
+
sign: 'Virgo',
|
|
1656
|
+
address: '789 Birch Road, New York, NY 10001',
|
|
1657
|
+
},
|
|
1658
|
+
{
|
|
1659
|
+
id: '185',
|
|
1660
|
+
name: 'Benjamin',
|
|
1661
|
+
phone: '111-555-6666',
|
|
1662
|
+
notes: 'Dentist',
|
|
1663
|
+
email: 'benjamin@example.com',
|
|
1664
|
+
sign: 'Cancer',
|
|
1665
|
+
address: '890 Oak Street, Los Angeles, CA 90001',
|
|
1666
|
+
},
|
|
1667
|
+
{
|
|
1668
|
+
id: '186',
|
|
1669
|
+
name: 'Sophia',
|
|
1670
|
+
phone: '777-555-8888',
|
|
1671
|
+
notes: 'Teacher',
|
|
1672
|
+
email: 'sophia@example.com',
|
|
1673
|
+
sign: 'Libra',
|
|
1674
|
+
address: '123 Cedar Road, Chicago, IL 60601',
|
|
1675
|
+
},
|
|
1676
|
+
{
|
|
1677
|
+
id: '187',
|
|
1678
|
+
name: 'Mia',
|
|
1679
|
+
phone: '333-666-1111',
|
|
1680
|
+
notes: 'Software Developer',
|
|
1681
|
+
email: 'mia@testmail.co',
|
|
1682
|
+
sign: 'Leo',
|
|
1683
|
+
address: '456 Pine Avenue, Denver, CO 80201',
|
|
1684
|
+
},
|
|
1685
|
+
{
|
|
1686
|
+
id: '188',
|
|
1687
|
+
name: 'Benjamin',
|
|
1688
|
+
phone: '999-777-5555',
|
|
1689
|
+
notes: 'Engineer',
|
|
1690
|
+
email: 'benjamin@example.com',
|
|
1691
|
+
sign: 'Scorpio',
|
|
1692
|
+
address: '567 Elm Lane, Miami, FL 33101',
|
|
1693
|
+
},
|
|
1694
|
+
{
|
|
1695
|
+
id: '189',
|
|
1696
|
+
name: 'Isabella',
|
|
1697
|
+
phone: '888-111-4444',
|
|
1698
|
+
notes: 'Artist',
|
|
1699
|
+
email: 'isabella@testmail.co',
|
|
1700
|
+
sign: 'Gemini',
|
|
1701
|
+
address: '321 Cedar Avenue, Seattle, WA 98101',
|
|
1702
|
+
},
|
|
1703
|
+
{
|
|
1704
|
+
id: '190',
|
|
1705
|
+
name: 'Eva',
|
|
1706
|
+
phone: '444-666-8888',
|
|
1707
|
+
notes: 'Accountant',
|
|
1708
|
+
email: 'eva@example.com',
|
|
1709
|
+
sign: 'Virgo',
|
|
1710
|
+
address: '567 Birch Lane, Houston, TX 77001',
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
id: '191',
|
|
1714
|
+
name: 'Oliver',
|
|
1715
|
+
phone: '333-999-7777',
|
|
1716
|
+
notes: 'Writer',
|
|
1717
|
+
email: 'oliver@testmail.co',
|
|
1718
|
+
sign: 'Cancer',
|
|
1719
|
+
address: '890 Cedar Road, Miami, FL 33101',
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
id: '192',
|
|
1723
|
+
name: 'Sophia',
|
|
1724
|
+
phone: '777-888-2222',
|
|
1725
|
+
notes: 'Dentist',
|
|
1726
|
+
email: 'sophia@example.com',
|
|
1727
|
+
sign: 'Libra',
|
|
1728
|
+
address: '123 Elm Street, Seattle, WA 98101',
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
id: '193',
|
|
1732
|
+
name: 'Liam',
|
|
1733
|
+
phone: '555-123-4567',
|
|
1734
|
+
notes: 'Software Engineer',
|
|
1735
|
+
email: 'liam@example.com',
|
|
1736
|
+
sign: 'Aries',
|
|
1737
|
+
address: '123 Oak Street, San Francisco, CA 94101',
|
|
1738
|
+
},
|
|
1739
|
+
{
|
|
1740
|
+
id: '194',
|
|
1741
|
+
name: 'Olivia',
|
|
1742
|
+
phone: '999-555-1212',
|
|
1743
|
+
notes: 'Teacher',
|
|
1744
|
+
email: 'olivia@testmail.co',
|
|
1745
|
+
sign: 'Leo',
|
|
1746
|
+
address: '456 Elm Road, New York, NY 10001',
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
id: '195',
|
|
1750
|
+
name: 'Noah',
|
|
1751
|
+
phone: '777-333-9999',
|
|
1752
|
+
notes: 'Doctor',
|
|
1753
|
+
email: 'noah@example.com',
|
|
1754
|
+
sign: 'Scorpio',
|
|
1755
|
+
address: '789 Maple Avenue, Los Angeles, CA 90001',
|
|
1756
|
+
},
|
|
1757
|
+
{
|
|
1758
|
+
id: '196',
|
|
1759
|
+
name: 'Sophia',
|
|
1760
|
+
phone: '888-777-5555',
|
|
1761
|
+
notes: 'Graphic Designer',
|
|
1762
|
+
email: 'sophia@testmail.co',
|
|
1763
|
+
sign: 'Gemini',
|
|
1764
|
+
address: '321 Birch Street, Chicago, IL 60601',
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
id: '197',
|
|
1768
|
+
name: 'William',
|
|
1769
|
+
phone: '444-666-2222',
|
|
1770
|
+
notes: 'Lawyer',
|
|
1771
|
+
email: 'william@example.com',
|
|
1772
|
+
sign: 'Taurus',
|
|
1773
|
+
address: '567 Pine Avenue, Denver, CO 80201',
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
id: '198',
|
|
1777
|
+
name: 'Olivia',
|
|
1778
|
+
phone: '666-999-1111',
|
|
1779
|
+
notes: 'Chef',
|
|
1780
|
+
email: 'olivia@testmail.co',
|
|
1781
|
+
sign: 'Capricorn',
|
|
1782
|
+
address: '890 Cedar Road, Miami, FL 33101',
|
|
1783
|
+
},
|
|
1784
|
+
{
|
|
1785
|
+
id: '199',
|
|
1786
|
+
name: 'James',
|
|
1787
|
+
phone: '111-444-7777',
|
|
1788
|
+
notes: 'Architect',
|
|
1789
|
+
email: 'james@example.com',
|
|
1790
|
+
sign: 'Sagittarius',
|
|
1791
|
+
address: '123 Elm Street, Seattle, WA 98101',
|
|
1792
|
+
},
|
|
1793
|
+
{
|
|
1794
|
+
id: '200',
|
|
1795
|
+
name: 'Emma',
|
|
1796
|
+
phone: '222-888-9999',
|
|
1797
|
+
notes: 'Nurse',
|
|
1798
|
+
email: 'emma@testmail.co',
|
|
1799
|
+
sign: 'Pisces',
|
|
1800
|
+
address: '456 Oak Lane, San Francisco, CA 94101',
|
|
1801
|
+
},
|
|
1802
|
+
{
|
|
1803
|
+
id: '201',
|
|
1804
|
+
name: 'Ava',
|
|
1805
|
+
phone: '555-777-2222',
|
|
1806
|
+
notes: 'Police Officer',
|
|
1807
|
+
email: 'ava@example.com',
|
|
1808
|
+
sign: 'Virgo',
|
|
1809
|
+
address: '789 Birch Road, New York, NY 10001',
|
|
1810
|
+
},
|
|
1811
|
+
{
|
|
1812
|
+
id: '202',
|
|
1813
|
+
name: 'Benjamin',
|
|
1814
|
+
phone: '111-555-6666',
|
|
1815
|
+
notes: 'Dentist',
|
|
1816
|
+
email: 'benjamin@example.com',
|
|
1817
|
+
sign: 'Cancer',
|
|
1818
|
+
address: '890 Oak Street, Los Angeles, CA 90001',
|
|
1819
|
+
},
|
|
1820
|
+
{
|
|
1821
|
+
id: '203',
|
|
1822
|
+
name: 'Sophia',
|
|
1823
|
+
phone: '777-555-8888',
|
|
1824
|
+
notes: 'Teacher',
|
|
1825
|
+
email: 'sophia@example.com',
|
|
1826
|
+
sign: 'Libra',
|
|
1827
|
+
address: '123 Cedar Road, Chicago, IL 60601',
|
|
1828
|
+
},
|
|
1829
|
+
{
|
|
1830
|
+
id: '204',
|
|
1831
|
+
name: 'Mia',
|
|
1832
|
+
phone: '333-666-1111',
|
|
1833
|
+
notes: 'Software Developer',
|
|
1834
|
+
email: 'mia@testmail.co',
|
|
1835
|
+
sign: 'Leo',
|
|
1836
|
+
address: '456 Pine Avenue, Denver, CO 80201',
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
id: '205',
|
|
1840
|
+
name: 'Benjamin',
|
|
1841
|
+
phone: '999-777-5555',
|
|
1842
|
+
notes: 'Engineer',
|
|
1843
|
+
email: 'benjamin@example.com',
|
|
1844
|
+
sign: 'Scorpio',
|
|
1845
|
+
address: '567 Elm Lane, Miami, FL 33101',
|
|
1846
|
+
},
|
|
1847
|
+
{
|
|
1848
|
+
id: '206',
|
|
1849
|
+
name: 'Isabella',
|
|
1850
|
+
phone: '888-111-4444',
|
|
1851
|
+
notes: 'Artist',
|
|
1852
|
+
email: 'isabella@testmail.co',
|
|
1853
|
+
sign: 'Gemini',
|
|
1854
|
+
address: '321 Cedar Avenue, Seattle, WA 98101',
|
|
1855
|
+
},
|
|
1856
|
+
{
|
|
1857
|
+
id: '207',
|
|
1858
|
+
name: 'Eva',
|
|
1859
|
+
phone: '444-666-8888',
|
|
1860
|
+
notes: 'Accountant',
|
|
1861
|
+
email: 'eva@example.com',
|
|
1862
|
+
sign: 'Virgo',
|
|
1863
|
+
address: '567 Birch Lane, Houston, TX 77001',
|
|
1864
|
+
},
|
|
1865
|
+
{
|
|
1866
|
+
id: '208',
|
|
1867
|
+
name: 'Oliver',
|
|
1868
|
+
phone: '333-999-7777',
|
|
1869
|
+
notes: 'Writer',
|
|
1870
|
+
email: 'oliver@testmail.co',
|
|
1871
|
+
sign: 'Cancer',
|
|
1872
|
+
address: '890 Cedar Road, Miami, FL 33101',
|
|
1873
|
+
},
|
|
1874
|
+
{
|
|
1875
|
+
id: '209',
|
|
1876
|
+
name: 'Sophia',
|
|
1877
|
+
phone: '777-888-2222',
|
|
1878
|
+
notes: 'Dentist',
|
|
1879
|
+
email: 'sophia@example.com',
|
|
1880
|
+
sign: 'Libra',
|
|
1881
|
+
address: '123 Elm Street, Seattle, WA 98101',
|
|
1882
|
+
},
|
|
1883
|
+
{
|
|
1884
|
+
id: '210',
|
|
1885
|
+
name: 'Liam',
|
|
1886
|
+
phone: '555-123-4567',
|
|
1887
|
+
notes: 'Software Engineer',
|
|
1888
|
+
email: 'liam@example.com',
|
|
1889
|
+
sign: 'Aries',
|
|
1890
|
+
address: '123 Oak Street, San Francisco, CA 94101',
|
|
1891
|
+
},
|
|
1892
|
+
{
|
|
1893
|
+
id: '211',
|
|
1894
|
+
name: 'Olivia',
|
|
1895
|
+
phone: '999-555-1212',
|
|
1896
|
+
notes: 'Teacher',
|
|
1897
|
+
email: 'olivia@testmail.co',
|
|
1898
|
+
sign: 'Leo',
|
|
1899
|
+
address: '456 Elm Road, New York, NY 10001',
|
|
1900
|
+
},
|
|
1901
|
+
{
|
|
1902
|
+
id: '212',
|
|
1903
|
+
name: 'Noah',
|
|
1904
|
+
phone: '777-333-9999',
|
|
1905
|
+
notes: 'Doctor',
|
|
1906
|
+
email: 'noah@example.com',
|
|
1907
|
+
sign: 'Scorpio',
|
|
1908
|
+
address: '789 Maple Avenue, Los Angeles, CA 90001',
|
|
1909
|
+
},
|
|
1910
|
+
{
|
|
1911
|
+
id: '213',
|
|
1912
|
+
name: 'Sophia',
|
|
1913
|
+
phone: '888-777-5555',
|
|
1914
|
+
notes: 'Graphic Designer',
|
|
1915
|
+
email: 'sophia@testmail.co',
|
|
1916
|
+
sign: 'Gemini',
|
|
1917
|
+
address: '321 Birch Street, Chicago, IL 60601',
|
|
1918
|
+
},
|
|
1919
|
+
{
|
|
1920
|
+
id: '214',
|
|
1921
|
+
name: 'William',
|
|
1922
|
+
phone: '444-666-2222',
|
|
1923
|
+
notes: 'Lawyer',
|
|
1924
|
+
email: 'william@example.com',
|
|
1925
|
+
sign: 'Taurus',
|
|
1926
|
+
address: '567 Pine Avenue, Denver, CO 80201',
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
id: '215',
|
|
1930
|
+
name: 'Olivia',
|
|
1931
|
+
phone: '666-999-1111',
|
|
1932
|
+
notes: 'Chef',
|
|
1933
|
+
email: 'olivia@testmail.co',
|
|
1934
|
+
sign: 'Capricorn',
|
|
1935
|
+
address: '890 Cedar Road, Miami, FL 33101',
|
|
1936
|
+
},
|
|
1937
|
+
{
|
|
1938
|
+
id: '216',
|
|
1939
|
+
name: 'James',
|
|
1940
|
+
phone: '111-444-7777',
|
|
1941
|
+
notes: 'Architect',
|
|
1942
|
+
email: 'james@example.com',
|
|
1943
|
+
sign: 'Sagittarius',
|
|
1944
|
+
address: '123 Elm Street, Seattle, WA 98101',
|
|
1945
|
+
},
|
|
1946
|
+
{
|
|
1947
|
+
id: '217',
|
|
1948
|
+
name: 'Emma',
|
|
1949
|
+
phone: '222-888-9999',
|
|
1950
|
+
notes: 'Nurse',
|
|
1951
|
+
email: 'emma@testmail.co',
|
|
1952
|
+
sign: 'Pisces',
|
|
1953
|
+
address: '456 Oak Lane, San Francisco, CA 94101',
|
|
1954
|
+
},
|
|
1955
|
+
{
|
|
1956
|
+
id: '218',
|
|
1957
|
+
name: 'Ava',
|
|
1958
|
+
phone: '555-777-2222',
|
|
1959
|
+
notes: 'Police Officer',
|
|
1960
|
+
email: 'ava@example.com',
|
|
1961
|
+
sign: 'Virgo',
|
|
1962
|
+
address: '789 Birch Road, New York, NY 10001',
|
|
1963
|
+
},
|
|
1964
|
+
{
|
|
1965
|
+
id: '219',
|
|
1966
|
+
name: 'Benjamin',
|
|
1967
|
+
phone: '111-555-6666',
|
|
1968
|
+
notes: 'Dentist',
|
|
1969
|
+
email: 'benjamin@example.com',
|
|
1970
|
+
sign: 'Cancer',
|
|
1971
|
+
address: '890 Oak Street, Los Angeles, CA 90001',
|
|
1972
|
+
},
|
|
1973
|
+
{
|
|
1974
|
+
id: '220',
|
|
1975
|
+
name: 'Sophia',
|
|
1976
|
+
phone: '777-555-8888',
|
|
1977
|
+
notes: 'Teacher',
|
|
1978
|
+
email: 'sophia@example.com',
|
|
1979
|
+
sign: 'Libra',
|
|
1980
|
+
address: '123 Cedar Road, Chicago, IL 60601',
|
|
1981
|
+
},
|
|
1982
|
+
{
|
|
1983
|
+
id: '221',
|
|
1984
|
+
name: 'Mia',
|
|
1985
|
+
phone: '333-666-1111',
|
|
1986
|
+
notes: 'Software Developer',
|
|
1987
|
+
email: 'mia@testmail.co',
|
|
1988
|
+
sign: 'Leo',
|
|
1989
|
+
address: '456 Pine Avenue, Denver, CO 80201',
|
|
1990
|
+
},
|
|
1991
|
+
{
|
|
1992
|
+
id: '222',
|
|
1993
|
+
name: 'Benjamin',
|
|
1994
|
+
phone: '999-777-5555',
|
|
1995
|
+
notes: 'Engineer',
|
|
1996
|
+
email: 'benjamin@example.com',
|
|
1997
|
+
sign: 'Scorpio',
|
|
1998
|
+
address: '567 Elm Lane, Miami, FL 33101',
|
|
1999
|
+
},
|
|
2000
|
+
{
|
|
2001
|
+
id: '223',
|
|
2002
|
+
name: 'Isabella',
|
|
2003
|
+
phone: '888-111-4444',
|
|
2004
|
+
notes: 'Artist',
|
|
2005
|
+
email: 'isabella@testmail.co',
|
|
2006
|
+
sign: 'Gemini',
|
|
2007
|
+
address: '321 Cedar Avenue, Seattle, WA 98101',
|
|
2008
|
+
},
|
|
2009
|
+
{
|
|
2010
|
+
id: '224',
|
|
2011
|
+
name: 'Eva',
|
|
2012
|
+
phone: '444-666-8888',
|
|
2013
|
+
notes: 'Accountant',
|
|
2014
|
+
email: 'eva@example.com',
|
|
2015
|
+
sign: 'Virgo',
|
|
2016
|
+
address: '567 Birch Lane, Houston, TX 77001',
|
|
2017
|
+
},
|
|
2018
|
+
{
|
|
2019
|
+
id: '225',
|
|
2020
|
+
name: 'Oliver',
|
|
2021
|
+
phone: '333-999-7777',
|
|
2022
|
+
notes: 'Writer',
|
|
2023
|
+
email: 'oliver@testmail.co',
|
|
2024
|
+
sign: 'Cancer',
|
|
2025
|
+
address: '890 Cedar Road, Miami, FL 33101',
|
|
2026
|
+
},
|
|
2027
|
+
{
|
|
2028
|
+
id: '226',
|
|
2029
|
+
name: 'Sophia',
|
|
2030
|
+
phone: '777-888-2222',
|
|
2031
|
+
notes: 'Dentist',
|
|
2032
|
+
email: 'sophia@example.com',
|
|
2033
|
+
sign: 'Libra',
|
|
2034
|
+
address: '123 Elm Street, Seattle, WA 98101',
|
|
2035
|
+
},
|
|
2036
|
+
{
|
|
2037
|
+
id: '227',
|
|
2038
|
+
name: 'Liam',
|
|
2039
|
+
phone: '555-123-4567',
|
|
2040
|
+
notes: 'Software Engineer',
|
|
2041
|
+
email: 'liam@example.com',
|
|
2042
|
+
sign: 'Aries',
|
|
2043
|
+
address: '123 Oak Street, San Francisco, CA 94101',
|
|
2044
|
+
},
|
|
2045
|
+
{
|
|
2046
|
+
id: '228',
|
|
2047
|
+
name: 'Olivia',
|
|
2048
|
+
phone: '999-555-1212',
|
|
2049
|
+
notes: 'Teacher',
|
|
2050
|
+
email: 'olivia@testmail.co',
|
|
2051
|
+
sign: 'Leo',
|
|
2052
|
+
address: '456 Elm Road, New York, NY 10001',
|
|
2053
|
+
},
|
|
2054
|
+
{
|
|
2055
|
+
id: '229',
|
|
2056
|
+
name: 'Noah',
|
|
2057
|
+
phone: '777-333-9999',
|
|
2058
|
+
notes: 'Doctor',
|
|
2059
|
+
email: 'noah@example.com',
|
|
2060
|
+
sign: 'Scorpio',
|
|
2061
|
+
address: '789 Maple Avenue, Los Angeles, CA 90001',
|
|
2062
|
+
},
|
|
2063
|
+
{
|
|
2064
|
+
id: '230',
|
|
2065
|
+
name: 'Sophia',
|
|
2066
|
+
phone: '888-777-5555',
|
|
2067
|
+
notes: 'Graphic Designer',
|
|
2068
|
+
email: 'sophia@testmail.co',
|
|
2069
|
+
sign: 'Gemini',
|
|
2070
|
+
address: '321 Birch Street, Chicago, IL 60601',
|
|
2071
|
+
},
|
|
2072
|
+
{
|
|
2073
|
+
id: '231',
|
|
2074
|
+
name: 'William',
|
|
2075
|
+
phone: '444-666-2222',
|
|
2076
|
+
notes: 'Lawyer',
|
|
2077
|
+
email: 'william@example.com',
|
|
2078
|
+
sign: 'Taurus',
|
|
2079
|
+
address: '567 Pine Avenue, Denver, CO 80201',
|
|
2080
|
+
},
|
|
2081
|
+
{
|
|
2082
|
+
id: '232',
|
|
2083
|
+
name: 'Olivia',
|
|
2084
|
+
phone: '666-999-1111',
|
|
2085
|
+
notes: 'Chef',
|
|
2086
|
+
email: 'olivia@testmail.co',
|
|
2087
|
+
sign: 'Capricorn',
|
|
2088
|
+
address: '890 Cedar Road, Miami, FL 33101',
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
id: '233',
|
|
2092
|
+
name: 'James',
|
|
2093
|
+
phone: '111-444-7777',
|
|
2094
|
+
notes: 'Architect',
|
|
2095
|
+
email: 'james@example.com',
|
|
2096
|
+
sign: 'Sagittarius',
|
|
2097
|
+
address: '123 Elm Street, Seattle, WA 98101',
|
|
2098
|
+
},
|
|
2099
|
+
{
|
|
2100
|
+
id: '234',
|
|
2101
|
+
name: 'Emma',
|
|
2102
|
+
phone: '222-888-9999',
|
|
2103
|
+
notes: 'Nurse',
|
|
2104
|
+
email: 'emma@testmail.co',
|
|
2105
|
+
sign: 'Pisces',
|
|
2106
|
+
address: '456 Oak Lane, San Francisco, CA 94101',
|
|
2107
|
+
},
|
|
2108
|
+
{
|
|
2109
|
+
id: '235',
|
|
2110
|
+
name: 'Ava',
|
|
2111
|
+
phone: '555-777-2222',
|
|
2112
|
+
notes: 'Police Officer',
|
|
2113
|
+
email: 'ava@example.com',
|
|
2114
|
+
sign: 'Virgo',
|
|
2115
|
+
address: '789 Birch Road, New York, NY 10001',
|
|
2116
|
+
},
|
|
2117
|
+
{
|
|
2118
|
+
id: '236',
|
|
2119
|
+
name: 'Benjamin',
|
|
2120
|
+
phone: '111-555-6666',
|
|
2121
|
+
notes: 'Dentist',
|
|
2122
|
+
email: 'benjamin@example.com',
|
|
2123
|
+
sign: 'Cancer',
|
|
2124
|
+
address: '890 Oak Street, Los Angeles, CA 90001',
|
|
2125
|
+
},
|
|
2126
|
+
{
|
|
2127
|
+
id: '237',
|
|
2128
|
+
name: 'Sophia',
|
|
2129
|
+
phone: '777-555-8888',
|
|
2130
|
+
notes: 'Teacher',
|
|
2131
|
+
email: 'sophia@example.com',
|
|
2132
|
+
sign: 'Libra',
|
|
2133
|
+
address: '123 Cedar Road, Chicago, IL 60601',
|
|
2134
|
+
},
|
|
2135
|
+
{
|
|
2136
|
+
id: '238',
|
|
2137
|
+
name: 'Mia',
|
|
2138
|
+
phone: '333-666-1111',
|
|
2139
|
+
notes: 'Software Developer',
|
|
2140
|
+
email: 'mia@testmail.co',
|
|
2141
|
+
sign: 'Leo',
|
|
2142
|
+
address: '456 Pine Avenue, Denver, CO 80201',
|
|
2143
|
+
},
|
|
2144
|
+
{
|
|
2145
|
+
id: '239',
|
|
2146
|
+
name: 'Benjamin',
|
|
2147
|
+
phone: '999-777-5555',
|
|
2148
|
+
notes: 'Engineer',
|
|
2149
|
+
email: 'benjamin@example.com',
|
|
2150
|
+
sign: 'Scorpio',
|
|
2151
|
+
address: '567 Elm Lane, Miami, FL 33101',
|
|
2152
|
+
},
|
|
2153
|
+
{
|
|
2154
|
+
id: '240',
|
|
2155
|
+
name: 'Isabella',
|
|
2156
|
+
phone: '888-111-4444',
|
|
2157
|
+
notes: 'Artist',
|
|
2158
|
+
email: 'isabella@testmail.co',
|
|
2159
|
+
sign: 'Gemini',
|
|
2160
|
+
address: '321 Cedar Avenue, Seattle, WA 98101',
|
|
2161
|
+
},
|
|
2162
|
+
{
|
|
2163
|
+
id: '241',
|
|
2164
|
+
name: 'Eva',
|
|
2165
|
+
phone: '444-666-8888',
|
|
2166
|
+
notes: 'Accountant',
|
|
2167
|
+
email: 'eva@example.com',
|
|
2168
|
+
sign: 'Virgo',
|
|
2169
|
+
address: '567 Birch Lane, Houston, TX 77001',
|
|
2170
|
+
},
|
|
2171
|
+
{
|
|
2172
|
+
id: '242',
|
|
2173
|
+
name: 'Oliver',
|
|
2174
|
+
phone: '333-999-7777',
|
|
2175
|
+
notes: 'Writer',
|
|
2176
|
+
email: 'oliver@testmail.co',
|
|
2177
|
+
sign: 'Cancer',
|
|
2178
|
+
address: '890 Cedar Road, Miami, FL 33101',
|
|
2179
|
+
},
|
|
2180
|
+
{
|
|
2181
|
+
id: '243',
|
|
2182
|
+
name: 'Sophia',
|
|
2183
|
+
phone: '777-888-2222',
|
|
2184
|
+
notes: 'Dentist',
|
|
2185
|
+
email: 'sophia@example.com',
|
|
2186
|
+
sign: 'Libra',
|
|
2187
|
+
address: '123 Elm Street, Seattle, WA 98101',
|
|
2188
|
+
},
|
|
2189
|
+
];
|