dataops-testgen 2.2.0__py3-none-any.whl
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.
- dataops_testgen-2.2.0.dist-info/LICENSE +203 -0
- dataops_testgen-2.2.0.dist-info/METADATA +287 -0
- dataops_testgen-2.2.0.dist-info/NOTICE +5 -0
- dataops_testgen-2.2.0.dist-info/RECORD +270 -0
- dataops_testgen-2.2.0.dist-info/WHEEL +5 -0
- dataops_testgen-2.2.0.dist-info/entry_points.txt +2 -0
- dataops_testgen-2.2.0.dist-info/top_level.txt +1 -0
- testgen/__init__.py +0 -0
- testgen/__main__.py +770 -0
- testgen/commands/__init__.py +0 -0
- testgen/commands/queries/__init__.py +0 -0
- testgen/commands/queries/execute_cat_tests_query.py +95 -0
- testgen/commands/queries/execute_tests_query.py +160 -0
- testgen/commands/queries/generate_tests_query.py +94 -0
- testgen/commands/queries/profiling_query.py +366 -0
- testgen/commands/queries/test_parameter_validation_query.py +88 -0
- testgen/commands/run_execute_cat_tests.py +162 -0
- testgen/commands/run_execute_tests.py +168 -0
- testgen/commands/run_generate_tests.py +107 -0
- testgen/commands/run_get_entities.py +122 -0
- testgen/commands/run_launch_db_config.py +84 -0
- testgen/commands/run_observability_exporter.py +330 -0
- testgen/commands/run_profiling_bridge.py +495 -0
- testgen/commands/run_quick_start.py +168 -0
- testgen/commands/run_setup_profiling_tools.py +96 -0
- testgen/commands/run_test_definition.py +146 -0
- testgen/commands/run_test_parameter_validation.py +135 -0
- testgen/commands/run_upgrade_db_config.py +156 -0
- testgen/common/__init__.py +8 -0
- testgen/common/clean_sql.py +53 -0
- testgen/common/credentials.py +25 -0
- testgen/common/database/__init__.py +0 -0
- testgen/common/database/database_service.py +629 -0
- testgen/common/database/flavor/__init__.py +0 -0
- testgen/common/database/flavor/flavor_service.py +75 -0
- testgen/common/database/flavor/mssql_flavor_service.py +34 -0
- testgen/common/database/flavor/postgresql_flavor_service.py +5 -0
- testgen/common/database/flavor/redshift_flavor_service.py +22 -0
- testgen/common/database/flavor/snowflake_flavor_service.py +69 -0
- testgen/common/database/flavor/trino_flavor_service.py +21 -0
- testgen/common/date_service.py +68 -0
- testgen/common/display_service.py +85 -0
- testgen/common/docker_service.py +76 -0
- testgen/common/encrypt.py +55 -0
- testgen/common/get_pipeline_parms.py +57 -0
- testgen/common/logs.py +79 -0
- testgen/common/process_service.py +62 -0
- testgen/common/read_file.py +69 -0
- testgen/settings.py +440 -0
- testgen/template/dbsetup/010_create_base_schema.sql +2 -0
- testgen/template/dbsetup/020_create_standard_functions_sprocs.sql +179 -0
- testgen/template/dbsetup/030_initialize_new_schema_structure.sql +735 -0
- testgen/template/dbsetup/040_populate_new_schema_project.sql +59 -0
- testgen/template/dbsetup/050_populate_new_schema_metadata.sql +1517 -0
- testgen/template/dbsetup/060_create_standard_views.sql +248 -0
- testgen/template/dbsetup/070_create_default_users.sql +17 -0
- testgen/template/dbsetup/075_grant_role_rights.sql +43 -0
- testgen/template/dbsetup/080_set_current_revision.sql +5 -0
- testgen/template/dbupgrade/0100_incremental_upgrade.sql +5 -0
- testgen/template/dbupgrade/0101_incremental_upgrade.sql +15 -0
- testgen/template/dbupgrade/0102_incremental_upgrade.sql +4 -0
- testgen/template/dbupgrade/0103_incremental_upgrade.sql +22 -0
- testgen/template/dbupgrade/0104_incremental_upgrade.sql +44 -0
- testgen/template/dbupgrade/0105_incremental_upgrade.sql +1 -0
- testgen/template/dbupgrade/0106_incremental_upgrade.sql +5 -0
- testgen/template/dbupgrade/0107_incremental_upgrade.sql +3 -0
- testgen/template/dbupgrade_helpers/get_tg_revision.sql +2 -0
- testgen/template/exec_cat_tests/ex_cat_build_agg_table_tests.sql +116 -0
- testgen/template/exec_cat_tests/ex_cat_get_distinct_tables.sql +11 -0
- testgen/template/exec_cat_tests/ex_cat_results_parse.sql +69 -0
- testgen/template/exec_cat_tests/ex_cat_retrieve_agg_test_parms.sql +6 -0
- testgen/template/exec_cat_tests/ex_cat_test_query.sql +8 -0
- testgen/template/execution/ex_finalize_test_run_results.sql +37 -0
- testgen/template/execution/ex_get_tests_non_cat.sql +47 -0
- testgen/template/execution/ex_update_test_record_in_testrun_table.sql +27 -0
- testgen/template/execution/ex_write_test_record_to_testrun_table.sql +6 -0
- testgen/template/flavors/generic/exec_query_tests/ex_aggregate_match_no_drops_generic.sql +48 -0
- testgen/template/flavors/generic/exec_query_tests/ex_aggregate_match_num_incr_generic.sql +34 -0
- testgen/template/flavors/generic/exec_query_tests/ex_aggregate_match_percent_above_generic.sql +49 -0
- testgen/template/flavors/generic/exec_query_tests/ex_aggregate_match_percent_within_generic.sql +49 -0
- testgen/template/flavors/generic/exec_query_tests/ex_aggregate_match_same_generic.sql +49 -0
- testgen/template/flavors/generic/exec_query_tests/ex_custom_query_generic.sql +39 -0
- testgen/template/flavors/generic/exec_query_tests/ex_data_match_2way_generic.sql +58 -0
- testgen/template/flavors/generic/exec_query_tests/ex_data_match_generic.sql +44 -0
- testgen/template/flavors/generic/exec_query_tests/ex_prior_match_generic.sql +37 -0
- testgen/template/flavors/generic/exec_query_tests/ex_relative_entropy_generic.sql +53 -0
- testgen/template/flavors/generic/exec_query_tests/ex_window_match_no_drops_generic.sql +46 -0
- testgen/template/flavors/generic/exec_query_tests/ex_window_match_same_generic.sql +59 -0
- testgen/template/flavors/generic/profiling/contingency_counts.sql +3 -0
- testgen/template/flavors/generic/validate_tests/ex_get_project_column_list_generic.sql +3 -0
- testgen/template/flavors/mssql/exec_query_tests/ex_relative_entropy_mssql.sql +53 -0
- testgen/template/flavors/mssql/profiling/project_ddf_query_mssql.sql +35 -0
- testgen/template/flavors/mssql/profiling/project_profiling_query_mssql.yaml +246 -0
- testgen/template/flavors/mssql/profiling/project_secondary_profiling_query_mssql.sql +36 -0
- testgen/template/flavors/mssql/setup_profiling_tools/00_drop_existing_functions_mssql.sql +8 -0
- testgen/template/flavors/mssql/setup_profiling_tools/01_create_functions_mssql.sql +12 -0
- testgen/template/flavors/mssql/setup_profiling_tools/02_create_functions_mssql.sql +54 -0
- testgen/template/flavors/mssql/setup_profiling_tools/create_qc_schema_mssql.sql +4 -0
- testgen/template/flavors/mssql/setup_profiling_tools/grant_execute_privileges_mssql.sql +1 -0
- testgen/template/flavors/postgresql/exec_query_tests/ex_window_match_no_drops_postgresql.sql +46 -0
- testgen/template/flavors/postgresql/exec_query_tests/ex_window_match_same_postgresql.sql +59 -0
- testgen/template/flavors/postgresql/profiling/project_ddf_query_postgresql.sql +42 -0
- testgen/template/flavors/postgresql/profiling/project_profiling_query_postgresql.yaml +225 -0
- testgen/template/flavors/postgresql/profiling/project_secondary_profiling_query_postgresql.sql +28 -0
- testgen/template/flavors/postgresql/setup_profiling_tools/create_functions_postgresql.sql +157 -0
- testgen/template/flavors/postgresql/setup_profiling_tools/create_qc_schema_postgresql.sql +1 -0
- testgen/template/flavors/postgresql/setup_profiling_tools/grant_execute_privileges_postgresql.sql +2 -0
- testgen/template/flavors/redshift/profiling/project_ddf_query_redshift.sql +38 -0
- testgen/template/flavors/redshift/profiling/project_profiling_query_redshift.yaml +221 -0
- testgen/template/flavors/redshift/profiling/project_secondary_profiling_query_redshift.sql +29 -0
- testgen/template/flavors/redshift/setup_profiling_tools/create_functions_redshift.sql +115 -0
- testgen/template/flavors/redshift/setup_profiling_tools/create_qc_schema_redshift.sql +1 -0
- testgen/template/flavors/redshift/setup_profiling_tools/grant_execute_privileges_redshift.sql +2 -0
- testgen/template/flavors/snowflake/profiling/project_ddf_query_snowflake.sql +38 -0
- testgen/template/flavors/snowflake/profiling/project_profiling_query_snowflake.yaml +220 -0
- testgen/template/flavors/snowflake/profiling/project_secondary_profiling_query_snowflake.sql +29 -0
- testgen/template/flavors/snowflake/setup_profiling_tools/create_functions_snowflake.sql +69 -0
- testgen/template/flavors/snowflake/setup_profiling_tools/create_qc_schema_snowflake.sql +1 -0
- testgen/template/flavors/snowflake/setup_profiling_tools/grant_execute_privileges_snowflake.sql +6 -0
- testgen/template/flavors/trino/profiling/project_profiling_query_trino.yaml +219 -0
- testgen/template/flavors/trino/setup_profiling_tools/create_functions_trino.sql +92 -0
- testgen/template/flavors/trino/setup_profiling_tools/create_qc_schema_trino.sql +1 -0
- testgen/template/gen_funny_cat_tests/gen_test_constant.sql +104 -0
- testgen/template/gen_funny_cat_tests/gen_test_distinct_value_ct.sql +98 -0
- testgen/template/gen_funny_cat_tests/gen_test_row_ct.sql +57 -0
- testgen/template/gen_funny_cat_tests/gen_test_row_ct_pct.sql +59 -0
- testgen/template/generation/gen_delete_old_tests.sql +5 -0
- testgen/template/generation/gen_insert_test_suite.sql +5 -0
- testgen/template/generation/gen_retrieve_or_insert_test_suite.sql +58 -0
- testgen/template/generation/gen_standard_test_type_list.sql +13 -0
- testgen/template/generation/gen_standard_tests.sql +48 -0
- testgen/template/get_entities/get_connection.sql +21 -0
- testgen/template/get_entities/get_connections_list.sql +9 -0
- testgen/template/get_entities/get_latest.sql +4 -0
- testgen/template/get_entities/get_profile.sql +12 -0
- testgen/template/get_entities/get_profile_info.sql +17 -0
- testgen/template/get_entities/get_profile_list.sql +17 -0
- testgen/template/get_entities/get_profile_screen.sql +275 -0
- testgen/template/get_entities/get_project_list.sql +6 -0
- testgen/template/get_entities/get_table_group_list.sql +10 -0
- testgen/template/get_entities/get_test_generation_list.sql +18 -0
- testgen/template/get_entities/get_test_info.sql +41 -0
- testgen/template/get_entities/get_test_results_for_run_cli.sql +16 -0
- testgen/template/get_entities/get_test_run_list.sql +24 -0
- testgen/template/get_entities/get_test_suite.sql +13 -0
- testgen/template/get_entities/get_test_suite_list.sql +18 -0
- testgen/template/get_entities/list_test_types.sql +4 -0
- testgen/template/observability/get_event_data.sql +23 -0
- testgen/template/observability/get_test_results.sql +41 -0
- testgen/template/observability/update_test_results_exported_to_observability.sql +12 -0
- testgen/template/parms/parms_profiling.sql +34 -0
- testgen/template/parms/parms_test_execution.sql +13 -0
- testgen/template/parms/parms_test_gen.sql +23 -0
- testgen/template/profiling/contingency_columns.sql +7 -0
- testgen/template/profiling/datatype_suggestions.sql +56 -0
- testgen/template/profiling/functional_datatype.sql +523 -0
- testgen/template/profiling/functional_tabletype_stage.sql +48 -0
- testgen/template/profiling/functional_tabletype_update.sql +8 -0
- testgen/template/profiling/pii_flag.sql +133 -0
- testgen/template/profiling/profile_anomalies_screen_column.sql +22 -0
- testgen/template/profiling/profile_anomalies_screen_multi_column.sql +58 -0
- testgen/template/profiling/profile_anomalies_screen_table.sql +22 -0
- testgen/template/profiling/profile_anomalies_screen_table_dates.sql +30 -0
- testgen/template/profiling/profile_anomalies_screen_variants.sql +40 -0
- testgen/template/profiling/profile_anomaly_types_get.sql +3 -0
- testgen/template/profiling/project_get_table_sample_count.sql +22 -0
- testgen/template/profiling/project_profile_run_record_insert.sql +8 -0
- testgen/template/profiling/project_profile_run_record_update.sql +5 -0
- testgen/template/profiling/project_profile_run_record_update_status.sql +5 -0
- testgen/template/profiling/project_update_profile_results_to_estimates.sql +32 -0
- testgen/template/profiling/refresh_anomalies.sql +33 -0
- testgen/template/profiling/refresh_data_chars_from_profiling.sql +156 -0
- testgen/template/profiling/secondary_profiling_columns.sql +12 -0
- testgen/template/profiling/secondary_profiling_delete.sql +4 -0
- testgen/template/profiling/secondary_profiling_update.sql +18 -0
- testgen/template/quick_start/populate_target_data.sql +1077 -0
- testgen/template/quick_start/recreate_target_data_schema.sql +167 -0
- testgen/template/quick_start/update_target_data.sql +100 -0
- testgen/template/updates/create_tmp_test_definition.sql +19 -0
- testgen/template/updates/get_test_def_parms.sql +38 -0
- testgen/template/updates/populate_stg_test_definitions.sql +184 -0
- testgen/template/validate_tests/ex_disable_tests_test_definitions.sql +5 -0
- testgen/template/validate_tests/ex_flag_tests_test_definitions.sql +64 -0
- testgen/template/validate_tests/ex_get_project_column_list_generic.sql +3 -0
- testgen/template/validate_tests/ex_get_test_column_list_tg.sql +65 -0
- testgen/template/validate_tests/ex_write_test_val_errors.sql +22 -0
- testgen/ui/__init__.py +0 -0
- testgen/ui/app.py +98 -0
- testgen/ui/assets/dk_logo.svg +46 -0
- testgen/ui/assets/question_mark.png +0 -0
- testgen/ui/assets/scripts.js +68 -0
- testgen/ui/assets/style.css +140 -0
- testgen/ui/bootstrap.py +109 -0
- testgen/ui/components/__init__.py +0 -0
- testgen/ui/components/frontend/css/KFOlCnqEu92Fr1MmEU9fBBc4.woff2 +0 -0
- testgen/ui/components/frontend/css/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2 +0 -0
- testgen/ui/components/frontend/css/KFOmCnqEu92Fr1Mu4mxK.woff2 +0 -0
- testgen/ui/components/frontend/css/KFOmCnqEu92Fr1Mu7GxKOzY.woff2 +0 -0
- testgen/ui/components/frontend/css/material-symbols-rounded.css +24 -0
- testgen/ui/components/frontend/css/material-symbols-rounded.woff2 +0 -0
- testgen/ui/components/frontend/css/roboto-font-faces.css +35 -0
- testgen/ui/components/frontend/css/shared.css +36 -0
- testgen/ui/components/frontend/img/dk_logo.svg +46 -0
- testgen/ui/components/frontend/index.html +17 -0
- testgen/ui/components/frontend/js/components/breadcrumbs.js +86 -0
- testgen/ui/components/frontend/js/components/button.js +66 -0
- testgen/ui/components/frontend/js/components/location.js +62 -0
- testgen/ui/components/frontend/js/components/select.js +75 -0
- testgen/ui/components/frontend/js/components/sidebar.js +358 -0
- testgen/ui/components/frontend/js/main.js +99 -0
- testgen/ui/components/frontend/js/streamlit.js +19 -0
- testgen/ui/components/frontend/js/van.min.js +1 -0
- testgen/ui/components/utils/__init__.py +0 -0
- testgen/ui/components/utils/callbacks.py +51 -0
- testgen/ui/components/utils/component.py +13 -0
- testgen/ui/components/widgets/__init__.py +6 -0
- testgen/ui/components/widgets/breadcrumbs.py +32 -0
- testgen/ui/components/widgets/location.py +65 -0
- testgen/ui/components/widgets/modal.py +97 -0
- testgen/ui/components/widgets/sidebar.py +69 -0
- testgen/ui/navigation/__init__.py +0 -0
- testgen/ui/navigation/menu.py +42 -0
- testgen/ui/navigation/page.py +20 -0
- testgen/ui/navigation/router.py +63 -0
- testgen/ui/queries/__init__.py +0 -0
- testgen/ui/queries/authentication_queries.py +47 -0
- testgen/ui/queries/connection_queries.py +121 -0
- testgen/ui/queries/profiling_queries.py +148 -0
- testgen/ui/queries/project_queries.py +9 -0
- testgen/ui/queries/table_group_queries.py +186 -0
- testgen/ui/queries/test_definition_queries.py +270 -0
- testgen/ui/queries/test_run_queries.py +32 -0
- testgen/ui/queries/test_suite_queries.py +145 -0
- testgen/ui/scripts/__init__.py +0 -0
- testgen/ui/scripts/patch_streamlit.py +111 -0
- testgen/ui/services/__init__.py +0 -0
- testgen/ui/services/authentication_service.py +119 -0
- testgen/ui/services/connection_service.py +220 -0
- testgen/ui/services/database_service.py +282 -0
- testgen/ui/services/form_service.py +1008 -0
- testgen/ui/services/javascript_service.py +44 -0
- testgen/ui/services/query_service.py +316 -0
- testgen/ui/services/string_service.py +12 -0
- testgen/ui/services/table_group_service.py +130 -0
- testgen/ui/services/test_definition_service.py +117 -0
- testgen/ui/services/test_run_service.py +13 -0
- testgen/ui/services/test_suite_service.py +76 -0
- testgen/ui/services/toolbar_service.py +77 -0
- testgen/ui/session.py +46 -0
- testgen/ui/views/__init__.py +0 -0
- testgen/ui/views/app_log_modal.py +92 -0
- testgen/ui/views/connections.py +72 -0
- testgen/ui/views/connections_base.py +367 -0
- testgen/ui/views/login.py +40 -0
- testgen/ui/views/not_found.py +16 -0
- testgen/ui/views/overview.py +34 -0
- testgen/ui/views/profiling_anomalies.py +501 -0
- testgen/ui/views/profiling_details.py +335 -0
- testgen/ui/views/profiling_modal.py +40 -0
- testgen/ui/views/profiling_results.py +206 -0
- testgen/ui/views/profiling_summary.py +177 -0
- testgen/ui/views/project_settings.py +74 -0
- testgen/ui/views/table_groups.py +530 -0
- testgen/ui/views/test_definitions.py +1020 -0
- testgen/ui/views/test_results.py +908 -0
- testgen/ui/views/test_runs.py +195 -0
- testgen/ui/views/test_suites.py +545 -0
- testgen/utils/__init__.py +0 -0
- testgen/utils/plugins.py +17 -0
- testgen/utils/singleton.py +14 -0
|
@@ -0,0 +1,1077 @@
|
|
|
1
|
+
SET SEARCH_PATH TO {PROJECT_SCHEMA};
|
|
2
|
+
|
|
3
|
+
-- d_ebike_products
|
|
4
|
+
INSERT INTO tmp_d_ebike_products (product_id, product_name, product_description, product_type, frame_size, battery_life, max_speed, weight_capacity, color, wheel_size, gear_count, country_of_origin, price, max_discount)
|
|
5
|
+
VALUES (30022, '''Nimbus Navigator''', 'Bicycle in Silver color', 'Bicycle', 'Small', NULL, NULL, 80.00, 'Silver', 26.00, 9, 'Marshall Islands', 532.16, 5.00),
|
|
6
|
+
(30005, '''Skyward Sprinter''', 'E-bike in Gray color', 'EBIKE', 'Small', 5, 26.00, 225.00, 'Blue', 29.00, NULL, 'Guinea', 817.62, 3.00),
|
|
7
|
+
(30021, '''Tempest Twirl''', 'E-scooter in Green color', 'E-scooter', 'Small', 8, 19.00, 219.00, 'Blue', 24.00, NULL, 'Cook Islands', 932.80, 2.00),
|
|
8
|
+
(30026, '''Aero Ace''', 'Bicycle in Gray color', 'Bicycle', 'N/A', NULL, NULL, 189.00, 'Green', 26.00, 1, 'Honduras', 1889.54, 6.00),
|
|
9
|
+
(30025, '''Titan Trailblazer''', 'E-scooter in Silver color', 'E-scooter', 'Large', 12, 22.00, 93.00, 'Black', 24.00, NULL, 'Russian Federation', 1796.28, 2.00),
|
|
10
|
+
(30012, '''Wanderer''', 'E-scooter in Green color', 'E-scooter', 'N/A', 5, 14.00, 108.00, 'White', 29.00, NULL, 'Libyan Arab Jamahiriya', 1105.16, 4.00),
|
|
11
|
+
(30033, '''Meteor Motion''', 'Bicycle in Silver color', 'Bicycle', 'Small', NULL, NULL, 216.00, 'Red', 26.00, 9, 'Panama', 328.48, 5.00),
|
|
12
|
+
(30024, '''Nebula Nomad''', 'Bicycle in Green color', 'Bicycle', 'Small', NULL, NULL, 202.00, 'Blue', 24.00, 14, 'Albania', 387.16, 7.00),
|
|
13
|
+
(30035, '''Odyssey Origin''', 'Bicycle in Silver color', 'Bicycle', 'Small', NULL, NULL, 224.00, 'Black', 24.00, 19, 'Tanzania', 1975.54, 3.00),
|
|
14
|
+
(30002, '''Epic Endeavor''', 'E-bike in Silver color', 'E-bike', 'Missing', 8, 28.00, 204.00, 'Green', 29.00, NULL, 'Wallis and Futuna', 1767.03, 1.00),
|
|
15
|
+
(30019, '''Primal Pursuit''', 'E-bike in Green color', 'Ebike', 'N/A', 4, 21.00, 138.00, 'Red', 24.00, NULL, 'Gabon', 320.91, 9.00),
|
|
16
|
+
(30037, 'Phantom Flyer', 'E-bike in Blue color', 'E-bike', 'Large', 7, 14.00, 177.00, 'Gray', 26.00, NULL, 'Mongolia', 670.94, 3.00),
|
|
17
|
+
(30017, 'Whirlwind Wanderer', 'E-scooter in Red color', 'E-scooter', 'Medium', 6, 11.00, 199.00, 'Silver', 29.00, NULL, 'Aruba', 1370.31, 3.00),
|
|
18
|
+
(30014, 'Thunder Thrill', 'E-bike in Blue color', 'EBike', 'Large', 12, 14.00, 228.00, 'Yellow', 29.00, NULL, 'Mauritius', 1991.01, 1.00),
|
|
19
|
+
(30003, 'Pinnacle Pulse', 'E-scooter in Gray color', 'E-scooter', 'Small', 8, 20.00, 74.00, 'Green', 29.00, NULL, 'Antigua and Barbuda', 1743.76, 10.00),
|
|
20
|
+
(30034, 'Galaxia Glide', 'Bicycle in Green color', 'Bicycle', 'Missing', NULL, NULL, 220.00, 'Red', 29.00, 17, 'Cape Verde', 1960.42, 1.00),
|
|
21
|
+
(30018, 'Big Blue', 'Bicycle in Blue color', 'Bicycle', 'Small', NULL, NULL, 118.00, 'Red', 28.00, 4, 'Moldova', 1307.48, 8.00),
|
|
22
|
+
(30008, 'DynaDash', 'E-bike in Yellow color', 'E--Bike', 'Small', 12, 10.00, 65.00, 'White', 24.00, NULL, 'Nigeria', 356.17, 4.00),
|
|
23
|
+
(30010, 'Quantum Quest', 'E-scooter in Blue color', 'E-scooter', 'Small', 2, 27.00, 54.00, 'Gray', 28.00, NULL, 'Cocos (Keeling) Islands', 1190.00, 10.00),
|
|
24
|
+
(30013, 'Sonic Surge', 'E-scooter in Red color', 'E-scooter', 'Large', 9, 11.00, 221.00, 'Green', 29.00, NULL, 'Egypt', 1175.57, 2.00),
|
|
25
|
+
(30028, 'Cosmic Cruiser', 'Bicycle in Blue color', 'Bicycle', 'Medium', NULL, NULL, 131.00, 'Silver', 26.00, 17, 'Central African Republic', 1223.42, 2.00),
|
|
26
|
+
(30006, 'Lightning Lark', 'E-bike in Yellow color', 'E-bike', 'Small', 5, 24.00, 247.00, 'Silver', 24.00, NULL, 'Antarctica (the territory South of 60 deg S)', 645.85, 9.00),
|
|
27
|
+
(30039, 'Horizon Hustler', 'E-bike in Blue color', 'e-bike', 'Medium', 8, 30.00, 70.00, 'Yellow', 24.00, NULL, 'Myanmar', 103.13, 2.00),
|
|
28
|
+
(30032, 'Electra Glide', 'E-scooter in White color', 'E-scooter', 'Small', 12, 13.00, 170.00, 'White', 28.00, NULL, 'Gambia', 994.29, 8.00),
|
|
29
|
+
(30023, 'Stellar Streak', 'Bicycle in Silver color', 'Bicycle', 'Medium', NULL, NULL, 68.00, 'Green', 26.00, 8, 'Western Sahara', 528.54, 10.00),
|
|
30
|
+
(30007, 'Zenith Zoom', 'E-scooter in Blue color', 'E-scooter', 'Small', 4, 16.00, 234.00, 'Blue', 29.00, NULL, 'Andorra', 245.57, 5.00),
|
|
31
|
+
(30000, 'Power Pulse', 'Bicycle in Gray color', 'Bicycle', 'Medium', NULL, NULL, 89.00, 'Yellow', 29.00, 6, 'Kazakhstan', 567.19, 1.00),
|
|
32
|
+
(30011, 'Vortex Voyager', 'E-scooter in White color', 'E-scooter', 'Large', 10, 21.00, 132.00, 'Gray', 24.00, NULL, 'Tanzania', 405.41, 4.00),
|
|
33
|
+
(30027, 'Jetset Journey', 'Bicycle in Red color', 'Bicycle', 'Large', NULL, NULL, 235.00, 'Red', 24.00, 17, 'Belarus', 1293.81, 7.00),
|
|
34
|
+
(30040, 'Terra Torque', 'E-bike in Red color', 'E-bike', 'Large', 3, 24.00, 96.00, 'Silver', 26.00, NULL, 'Lebanon', 622.21, 8.00),
|
|
35
|
+
(30036, 'Polaris Prowl', 'E-scooter in Yellow color', 'E-scooter', 'Large', 6, 24.00, 71.00, 'Blue', 29.00, NULL, 'Syrian Arab Republic', 932.30, 3.00),
|
|
36
|
+
(30016, 'Raptor Ride', 'E-bike in White color', 'E-bike', 'Large', 8, 30.00, 96.00, 'Silver', 29.00, NULL, 'Benin', 180.51, 7.00),
|
|
37
|
+
(30030, 'Stratosphere Shift', 'Bicycle in White color', 'Bicycle', 'Medium', NULL, NULL, 220.00, 'Silver', 24.00, 21, 'Vietnam', 444.46, 4.00),
|
|
38
|
+
(30041, 'Velocity Vibe', 'E-bike in Yellow color', 'E-bike', 'Small', 11, 14.00, 101.00, 'Green', 24.00, NULL, 'Venezuela', 171.82, 9.00),
|
|
39
|
+
(30029, 'Ecliptic Escape', 'E-bike in Green color', 'E-bike', 'Large', 11, 15.00, 149.00, 'Blue', 24.00, NULL, 'Cuba', 1880.10, 1.00),
|
|
40
|
+
(30015, 'Turbo Trek', 'Bicycle in Red color', 'Bicycle', 'Small', NULL, NULL, 60.00, 'Blue', 28.00, 15, 'Bangladesh', 198.79, 2.00),
|
|
41
|
+
(30038, 'Infinity Ignite', 'E-bike in White color', 'E-bike', 'Small', 10, 14.00, 104.00, 'Silver', 24.00, NULL, 'Guernsey', 1680.36, 1.00),
|
|
42
|
+
(30009, 'Omega Orbit', 'Bicycle in Blue color', 'Bicycle', 'Large', NULL, NULL, 232.00, 'Black', 29.00, 15, 'Kyrgyz Republic', 695.15, 5.00),
|
|
43
|
+
(30020, 'Helix Hustle', 'Bicycle in Blue color', 'Bicycle', 'Small', NULL, NULL, 206.00, 'Blue', 24.00, 13, 'Guinea', 1813.82, 7.00),
|
|
44
|
+
(30004, 'Hypernova Hustle', 'E-scooter in Yellow color', 'E-scooter', 'Small', 1, 19.00, 129.00, 'Black', 26.00, NULL, 'Belize', 1972.62, 4.00),
|
|
45
|
+
(30031, 'Celestial Chase', 'E-bike in Blue color', 'E-bike', 'Large', 3, 18.00, 227.00, 'Blue', 26.00, NULL, 'Marshall Islands', 1725.54, 5.00),
|
|
46
|
+
(30042, 'Orange Blaster', 'Bicycle in Orange color - New', 'Bicycle', 'Medium', NULL, NULL, 234.00, 'Orange', 26.00, 19, 'India', 1693.93, 3.00),
|
|
47
|
+
(30043, 'Hero Ryder', 'Bicycle in Blue color', 'Bicycle', 'Medium', NULL, NULL, 236.00, 'Blue', 29.00, 19, 'West Indies', 1693.93, 3.00),
|
|
48
|
+
(30044, 'Swift MultiSpoke', 'Bicycle in Yellow color', 'E-bike', 'Small', NULL, NULL, 222.00, 'Yellow', 24.00, 19, 'Benin', 1693.93, 3.00),
|
|
49
|
+
(30045, 'Hummer TriGear', 'Bicycle in Green color', 'Bicycle', 'Large', NULL, NULL, 229.00, 'Green', 23.00, 19, 'Myanmar', 1693.93, 3.00);
|
|
50
|
+
|
|
51
|
+
-- d_ebike_suppliers
|
|
52
|
+
INSERT INTO tmp_d_ebike_suppliers (supplier_id, supplier_name, contact_name, contact_email, address, country, region_code, phone, last_order, key_supplier, supply_reliability) VALUES (40000, 'Brown, Torres and Evans', 'Diana Gibson', 'jonessean@example.com', '4067 Rogers Meadow, Lake Edwin, OK 00784', 'America', 'NA_US_1', '(877)716-0150', '2023-05-20', 'No', ''),
|
|
53
|
+
(40001, 'Lee LLC', 'Rachel Jones', 'michaelvalencia@example.net', '49253 Peters Key Apt. 255, Mclaughlinhaven, MH 92068', 'America','NA_US_1','870-216-7419x13533', '2022-11-24', 'No',''),
|
|
54
|
+
(40002, 'Morris, Greer and Lawrence', 'Michael Powell', 'esalazar@example.com', '1371 Darin Hollow, Amandaport, WI 43178', 'America','NA_US_1', '729.432.3550', '2022-05-09', 'No',''),
|
|
55
|
+
(40003, 'Shaw, Donovan and Ortiz', 'Patricia Alvarado', 'hjenkins@example.net', '9807 Whitehead Forks Apt. 950, South Michael, MI 55519', 'America','NA_US_1', '001-207-339-4896x8965', '2022-02-11', 'No',''),
|
|
56
|
+
(40004, 'Campbell-Chapman', 'Joshua Arnold', 'kevin56@example.org', '7266 Alexandra River Apt. 707, Madisonshire, DE 88600', 'America','NA_US_1', '263.706.5344', '2023-04-01', 'No',''),
|
|
57
|
+
(40005, 'Curtis, Simon and Copeland', 'Shannon Mitchell', 'xwilliams@example.net', '05317 Jeanne Lodge Suite 085, South Ross, DE 57314', 'America','NA_US_1', '+1-516-230-7916', '2022-09-11', 'Yes',''),
|
|
58
|
+
(40006, 'Moore, Carlson and Sheppard', 'Nicholas Richards', 'jwilliams@example.org', '7954 Rachel Brooks, Perezbury, UT 97428', 'America','NA_US_1', '589-463-6502x81060', '2022-08-30', 'No',''),
|
|
59
|
+
(40007, 'Decker, Odom and Rhodes', 'James Jones', 'wilcoxcindy@example.net', '39525 Louis Rue Suite 341, Gomezburgh, WI 89878', 'America','NA_US_2', '721.618.1974', '2023-07-13', 'No',''),
|
|
60
|
+
(40008, 'Martin-Collins', 'Michelle Simon', 'smithalan@example.net', '7800 Lisa Mission Apt. 331, New Dennisview, MS 42998', 'America','NA_US_1', '+1-397-558-6850x37652', '2022-02-25', 'No',''),
|
|
61
|
+
(40009, 'Adams Group', 'Bruce Medina', 'tiffanybolton@example.net', '928 Cheryl Oval Suite 771, West Ashleyland, MP 24110', 'America', 'NA_US_2','6419528615', '2023-08-19', 'No',''),
|
|
62
|
+
(40010, 'Richard Inc', 'Patricia Mckinney', 'jacobjohnson@example.net', '065 Debra Flats, Fernandeztown, DE 69756', 'America', 'NA_US_1','(616)701-9796', '2022-07-08', 'Yes',''),
|
|
63
|
+
(40011, 'Burgess and Sons', 'Hunter Maddox', 'leelopez@example.net', '8693 Adrian Ferry Apt. 803, Warnerbury, ND 70098', 'America','NA_US_1', '330.206.0864x47128', '2023-01-08', 'Yes',''),
|
|
64
|
+
(40012, 'Harris and Sons', 'Wendy Frey', 'brandon54@example.com', '00038 Mary Park, Lake John, MA 60012', 'America','NA_US_1', '001-963-781-8772x433', '2022-12-24', 'Yes',''),
|
|
65
|
+
(40013, 'Peterson LLC', 'Cassandra Daniels', 'douglaskendra@example.net', '5127 Moore Fort, Martinview, NJ 58564', 'America','NA_US_1', '+1-394-205-4189x27813', '2023-03-14', 'No',''),
|
|
66
|
+
(40014, 'Kramer, Bullock and Gray', 'John Marquez', 'watsonchristina@example.org', '202 Barbara Stravenue Suite 478, Cobbshire, GA 29372', 'America','NA_US_2', '(791)650-1961x1824', '2022-03-18', 'Yes',''),
|
|
67
|
+
(40015, 'Newton Inc', 'Mary Murphy', 'hawkinsbrian@example.com', 'Unit 5126 Box 6877, DPO AP 73730', 'America', 'NA_US_1', '+1-862-244-1295', '2022-02-28', 'No',''),
|
|
68
|
+
(40016, 'Torres-Wilson', 'Nicole Turner', 'davidhall@example.com', '412 James Turnpike, New William, MP 65674', 'America', 'NA_US_2', '+1-233-850-9165x231', '2022-04-19', 'No',''),
|
|
69
|
+
(40017, 'Poole Ltd', 'Priscilla Elledge', 'bharris@example.com', '574 Nicholas Rapid, South Laurenside, FM 01117', 'America', 'NA_US_1', '999-948-8675x490', '2023-01-18', 'Yes',''),
|
|
70
|
+
(40018, 'Harper Ltd', 'Russell Steven', 'rsetevens@example.com', '5331 Rexford Court, Montgomery, AL 36116', 'America', 'NA_US_1', '999-948-8675x490', '2023-02-17', 'Yes',''),
|
|
71
|
+
(40019, 'Wilson Paris Group', 'Kelsey Shillingford', 'skesley@example.com', '8642 Yule Street, Arvada, CO 80007', 'America', 'NA_US_1', '999-948-8675x490', '2023-07-10', 'No',''),
|
|
72
|
+
(40020, 'Water Tunnel Inc', 'Shawn Burgess', 'sburgess@example.com', '1693 Alice Court, Annapolis, MD 21401', 'America', 'NA_US_1', '999-324-535', '2023-07-12', 'Yes',''),
|
|
73
|
+
(40021, 'Drovers Ltd', 'Christopher Carroll', 'caroll@example.com', '915 Heath Drive, Montgomery, AL 36108', 'America', 'NA_US_1', '999-874-8675x457', '2023-07-13', 'Yes',''),
|
|
74
|
+
(40022, 'Penterka Tech Ltd', 'Hale Heptinstall.', 'haleh@example.com', '19141 Pine Ridge Circle, Anchorage, AK 99516', 'America', 'NA_US_1', '954-948-8675x490', '2023-07-15', 'No',''),
|
|
75
|
+
(40023, 'Humani and Sons', 'Colter Baldwin', 'badwinc@example.com', '4001 Anderson Road, Nashville, TN 37217', 'America', 'NA_US_2_', '999-32-4234', '2023-07-16', 'Yes',''),
|
|
76
|
+
(40024, 'Wilker Lovel Inc', 'Melani Galvan', 'mgalvan@example.com', '6095 Terry Lane, Golden, CO 80403', 'America', 'NA_US_2', '999-948-4234', '2023-07-18', 'Yes',''),
|
|
77
|
+
(40025, 'Fanerpie and Sons', 'Wrenley Bravo', 'wbravo@example.com', '4016 Doane Street, Fremont, CA 94538', 'America', 'NA_US_1', '999-948-3452', '2023-07-20', 'No',''),
|
|
78
|
+
(40026, 'Samsil Group', 'Heath Wiley', 'hwiley@example.com', '2325 Eastridge Circle, Moore, OK 73160', 'America', 'NA_US_2', '999-948-8355x190', '2023-07-23', 'Yes',''),
|
|
79
|
+
(40027, 'Toss Ltd', 'Joshua Middleton', 'joshua@example.com', '2436 Naples Avenue, Panama City, FL 32405', 'America', 'NA_US_1', '999-940-1199', '2023-07-24', 'No','');
|
|
80
|
+
|
|
81
|
+
-- d_ebike_customers
|
|
82
|
+
INSERT INTO tmp_d_ebike_customers (customer_id, first_name, last_name, address, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, sales_region, sales_territory, customer_decile, phone_number, tax_id, credit_card, last_contact) VALUES
|
|
83
|
+
(100000, 'Thomas', 'Roth', '874 Martinez Ferry Suite 618, Port Maryfurt, GU 86535', 'New York', 'New York', '10000', 'USA', 'INDIV', 35, 'MEDIUM', 'other', 'Journalist', 'widowed', 'Frequent buyer of road bikes', 'Southwest', 'TER-0021', 9, '835-512-9425x711', '049-37-0623', '2248154719416318', '2021-09-08'),
|
|
84
|
+
(100001, 'James', 'Tanner', '3862 Kevin Via, Amandafort, PW 72463', 'Los Angeles', 'California', '10001', 'USA', 'INDIV', 32, 'LOW', 'NA', 'Lawyer', 'divorced', 'Enthusiastic about road bikes', 'Midwest', 'TER-0008', 1, '252.320.9228x1520', '777-19-3556', '5266536484659280', '2020-05-24'),
|
|
85
|
+
(100002, 'Kathy', 'Ramirez', '164 Kenneth Villages Suite 057, Port Tracy, MS 40860', 'Chicago', 'Illinois', '10002', 'USA', 'AMAZON', 67, 'MEDIUM', 'male', 'Nurse', 'divorced', 'Enthusiastic about e-bikes', 'Southwest', 'TER-0015', 2, '9174646726', '289-76-6055', '2720532897707102', '2021-07-23'),
|
|
86
|
+
(100003, 'Tanya', 'Alvarez', 'PSC 9554, Box 4959, APO AA 74232', 'Houston', 'Texas', '10003', 'Canada', 'INDIV', 69, 'LOW', 'other', 'Journalist', 'married', 'Enthusiastic about mountain bikes', 'West', 'TER-0024', 4, '784.718.9358', '470-35-1392', '2699813452060039', '2022-11-01'),
|
|
87
|
+
(100004, 'Eric', 'Edwards', '4793 Gordon Shoal, Lake Brendashire, IN 21804', 'Phoenix', 'Arizona', '10004', 'Mexico', 'INDIV', 31, 'HIGH', 'other', 'Doctor', 'divorced', 'Interested in e-bikes', 'Southwest', 'TER-0005', 8, '872.789.9128x3288', '133-91-9204', '2718997051560999', '2020-04-20'),
|
|
88
|
+
(100005, 'Lee', 'Hanson', '700 Shaffer Village Suite 652, Rhodesbury, UT 04407', 'Philadelphia', 'Pennsylvania', '10005', 'Mexico', 'INDIV', 34, 'LOW', 'other', 'Doctor', 'single', 'Interested in mountain bikes', 'West', 'TER-0007', 5, '001-459-456-2103x3998', '691-33-0812', '2720759546653409', '2021-04-30'),
|
|
89
|
+
(100006, 'Brandy', 'Adams', '89958 Marco Lake, Jenniferburgh, NH 22678', 'San Antonio', 'Texas', '10006', 'Mexico', 'SHOP', 77, 'MEDIUM', 'other', 'Pilot', 'divorced', 'Interested in e-bikes', 'Southeast', 'TER-0006', 4, '8869337425', '773-77-9621', '2578759186921770', '2020-05-30'),
|
|
90
|
+
(100007, 'Amy', 'Anderson', '156 Dawson Knoll, Kelleyborough, PA 62488', 'San Diego', 'California', '10007', 'USA', 'INDIV', 32, 'MEDIUM', 'NA', 'Pilot', 'single', 'Enthusiastic about bike accessories', 'Southwest', 'TER-0005', 4, '+1-475-878-1871x13295', '279-89-3271', '2250259100465546', '2022-07-09'),
|
|
91
|
+
(100008, 'Sarah', 'Espinoza', 'PSC 2660, Box 4994, APO AP 42001', 'Dallas', 'Texas', '10008', 'USA', 'CLUB', 42, 'HIGH', 'other', 'Lawyer', 'divorced', 'Enthusiastic about bike sports', 'Midwest', 'TER-0009', 3, '+1-632-839-7976x858', '402-34-9412', '2553422620398589', '2020-11-16'),
|
|
92
|
+
(100009, 'Russell', 'Wallace', '113 Reeves Oval, Chanbury, UT 40179', 'San Jose', 'California', '10009', 'USA', 'SHOP', 73, 'HIGH', 'male', 'Pilot', 'single', 'Enthusiastic about bike accessories', 'Midwest', 'TER-0009', 2, '458.487.1408x22266', '309-13-8004', '2705924674521732', '2021-11-18'),
|
|
93
|
+
(100010, 'John', 'Jones', '63388 Samantha Junctions Suite 085, Lake Jeffrey, OH 02675', 'Austin', 'Texas', '10010', 'USA', 'INDIV', 11, 'LOW', 'female', 'Doctor', 'married', 'Prefers e-bikes', 'Northeast', 'TER-0029', 3, '7575306676', '776-76-9441', '2717479004917932', '2021-09-05'),
|
|
94
|
+
(100011, 'Robert', 'Williams', '29152 Linda Passage Suite 024, West Williamview, VA 68359', 'Jacksonville', 'Florida', '10011', 'Mexico', 'INDIV', 21, 'LOW', 'other', 'Accountant', 'married', 'Frequent buyer of bike sports', 'Midwest', 'TER-0003', 4, '9062704239', '302-32-7302', '2424264804593206', '2022-10-10'),
|
|
95
|
+
(100012, 'Kyle', 'Rodgers', '2659 Booth Common, Hudsonmouth, NC 93315', 'Fort Worth', 'Texas', '10012', 'Mexico', 'INDIV', 80, 'MEDIUM', 'NA', 'Accountant', 'widowed', 'Interested in e-bikes', 'West', 'TER-0013', 6, '+1-506-378-2618x859', '406-12-5210', '2621597411979057', '2020-02-26'),
|
|
96
|
+
(100013, 'Brittany', 'Robinson', '829 Joseph Village Suite 499, Lake Ashleymouth, VI 71609', 'Columbus', 'Ohio', '10013', 'Canada', 'INDIV', 52, 'LOW', 'female', 'Scientist', 'other', 'Looking for bike sports', 'Southwest', 'TER-0022', 6, '731-883-1401x10489', '625-03-6405', '2413155565102273', '2021-07-10'),
|
|
97
|
+
(100014, 'Janice', 'Martinez', '95897 Wesley Terrace, Craigtown, MT 41771', 'Charlotte', 'North Carolina', '10014', 'Mexico', 'INDIV', 35, 'HIGH', 'female', 'Veterinarian', 'married', 'Interested in road bikes', 'West', 'TER-0023', 3, '982.499.3626', '389-65-7800', '2716494425249436', '2021-04-03'),
|
|
98
|
+
(100015, 'Gary', 'Morrison', '46505 William Flat Suite 376, Leslieside, PW 50891', 'San Francisco', 'California', '10015', 'USA', 'AMAZON', 80, 'LOW', 'other', 'Artist', 'single', 'Interested in bike sports', 'Southwest', 'TER-0025', 2, '(747)780-9954x35169', '438-38-6371', '2344927953820698', '2021-12-06'),
|
|
99
|
+
(100016, 'Brenda', 'Chen', '64569 Walker Point, Onealville, SC 98233', 'Indianapolis', 'Indiana', '10016', 'USA', 'INDIV', 38, 'LOW', 'NA', 'Pharmacist', 'other', 'Interested in e-bikes', 'Southwest', 'TER-0017', 1, '(384)426-7447', '536-59-8033', '5204362699132459', '2021-03-28'),
|
|
100
|
+
(100017, 'Henry', 'Ryan', '99761 Teresa Walks, North Connorberg, DE 62260', 'Seattle', 'Washington', '10017', 'Canada', 'CLUB', 16, 'HIGH', 'other', 'Architect', 'widowed', 'Prefers bike sports', 'West', 'TER-0025', 9, '(618)701-3256x496', '460-30-1046', '2270346858744226', '2021-05-07'),
|
|
101
|
+
(100018, 'Charlotte', 'Williams', '571 Miller Shore Suite 681, Derekfurt, KY 63661', 'Denver', 'Colorado', '10018', 'Canada', 'AMAZON', 14, 'MEDIUM', 'female', 'Engineer', 'married', 'Looking for mountain bikes', 'Southwest', 'TER-0027', 6, '3603603898', '532-48-5963', '2500009839164888', '2023-03-29'),
|
|
102
|
+
(100019, 'Sonya', 'Scott', '94556 Chaney Camp, Butlermouth, WA 28255', 'Washington', 'DC', '10019', 'Mexico', 'INDIV', 73, 'HIGH', 'NA', 'Architect', 'married', 'Interested in bike sports', 'Midwest', 'TER-0005', 6, '634.806.8070', '752-02-9589', '5299662173903143', '2020-01-14'),
|
|
103
|
+
(100020, 'Jason', 'Obrien', 'PSC 8032, Box 1518, APO AE 12590', 'Boston', 'Massachusetts', '10020', 'Mexico', 'SHOP', 61, 'MEDIUM', 'NA', 'Journalist', 'widowed', 'Enthusiastic about e-bikes', 'Southeast', 'TER-0012', 10, '770-236-6359', '064-54-8914', '2373797858959477', '2020-06-21'),
|
|
104
|
+
(100021, 'Michelle', 'Adams', '1221 Jenkins Highway Suite 899, Josephside, OR 72778', 'El Paso', 'Texas', '10021', 'Mexico', 'SHOP', 69, 'HIGH', 'NA', 'Scientist', 'divorced', 'Interested in road bikes', 'Southeast', 'TER-0021', 10, '2755781803', '093-13-6533', '2295514398255489', '2022-10-08'),
|
|
105
|
+
(100022, 'Timothy', 'Rose', 'USCGC Johnson, FPO AE 85910', 'Nashville', 'Tennessee', '10022', 'Mexico', 'AMAZON', 12, 'HIGH', 'female', 'Software Developer', 'divorced', 'Enthusiastic about mountain bikes', 'Southeast', 'TER-0004', 9, '724-986-9247x1813', '099-60-9656', '5477644163088840', '2022-09-29'),
|
|
106
|
+
(100023, 'Nancy', 'Hernandez', '37881 Clayton Corner Apt. 096, Johnburgh, AS 95223', 'Detroit', 'Michigan', '10023', 'USA', 'CLUB', 69, 'LOW', 'male', 'Scientist', 'other', 'Prefers e-bikes', 'Northeast', 'TER-0017', 6, '532.431.0448', '064-73-4845', '2295732286725229', '2022-02-06'),
|
|
107
|
+
(100024, 'Linda', 'Rivera', '48574 Tiffany Place, Millerfurt, TN 52602', 'Oklahoma City', 'Oklahoma', '10024', 'USA', 'INDIV', 10, 'MEDIUM', 'NA', 'Scientist', 'single', 'Interested in mountain bikes', 'Midwest', 'TER-0011', 1, '(633)854-2292x6487', '254-51-6421', '5315490010174342', '2020-10-16'),
|
|
108
|
+
(100025, 'Colton', 'Weber', '054 Steven Port Apt. 671, Martinhaven, UT 18694', 'Portland', 'Oregon', '10025', 'Canada', 'AMAZON', 24, 'LOW', 'NA', 'Chef', 'single', 'Enthusiastic about e-bikes', 'West', 'TER-0004', 7, '(488)203-8390x255', '877-31-0746', '5531456514456210', '2020-02-19'),
|
|
109
|
+
(100026, 'John', 'Wright', 'PSC 9216, Box 7859, APO AA 74355', 'Las Vegas', 'Nevada', '10026', 'Mexico', 'SHOP', 27, 'LOW', 'NA', 'Veterinarian', 'married', 'Prefers road bikes', 'West', 'TER-0004', 9, '(990)364-5992x1859', '895-37-8582', '2379831836794419', '2021-04-14'),
|
|
110
|
+
(100027, 'Lori', 'Mcconnell', '7541 Cummings Ridges, Catherinestad, NM 22751', 'Memphis', 'Tennessee', '10027', 'USA', 'SHOP', 19, 'LOW', 'other', 'Architect', 'widowed', 'Prefers bike sports', 'Midwest', 'TER-0030', 10, '001-939-280-6550x59473', '721-05-8179', '5495134586308494', '2023-04-26'),
|
|
111
|
+
(100028, 'John', 'Boyd', '3260 Woods Path Suite 995, Amberstad, NY 95422', 'Louisville', 'Kentucky', '10028', 'Canada', 'CLUB', 42, 'LOW', 'female', 'Pharmacist', 'married', 'Interested in bike sports', 'Midwest', 'TER-0021', 1, '(224)398-2120x1559', '301-79-8072', '2705763026686490', '2023-06-27'),
|
|
112
|
+
(100029, 'Mark', 'Moreno', '46089 Jones Harbor, South Joshua, UT 84396', 'Baltimore', 'Maryland', '10029', 'Mexico', 'SHOP', 16, 'MEDIUM', 'NA', 'Nurse', 'other', 'Interested in road bikes', 'Southeast', 'TER-0002', 3, '(606)760-0550', '225-15-6514', '2718929636974072', '2021-12-13'),
|
|
113
|
+
(100030, 'Lynn', 'Thompson', '721 Walker Locks, South Mario, ND 27957', 'New York', 'New York', '10000', 'USA', 'INDIV', 25, 'HIGH', 'male', 'Veterinarian', 'single', 'Enthusiastic about bike sports', 'Southwest', 'TER-0012', 2, '001-623-258-4553x89882', '583-42-1608', '2259210053200670', '2021-05-26'),
|
|
114
|
+
(100031, 'Debra', 'Moore', '5857 Martinez Mountain Suite 037, Bakerton, ME 73209', 'Los Angeles', 'California', '10001', 'Mexico', 'INDIV', 27, 'MEDIUM', 'other', 'Pharmacist', 'married', 'Interested in mountain bikes', 'Southwest', 'TER-0017', 2, '493-276-4488x098', '756-12-1742', '2278069547438966', '2022-04-18'),
|
|
115
|
+
(100032, 'Mary', 'Brown', '65218 Clifford Rapid, Reedberg, PW 70689', 'Chicago', 'Illinois', '10002', 'Canada', 'AMAZON', 78, 'MEDIUM', 'female', 'Teacher', 'widowed', 'Looking for road bikes', 'Northeast', 'TER-0001', 5, '304.243.2228', '509-56-4047', '2225661825854825', '2021-07-15'),
|
|
116
|
+
(100033, 'Ross', 'Parks', '082 Gonzalez Light, New Marissa, NV 81910', 'Houston', 'Texas', '10003', 'Mexico', 'AMAZON', 72, 'LOW', 'other', 'Teacher', 'single', 'Frequent buyer of road bikes', 'Midwest', 'TER-0013', 2, '371.461.4992', '803-65-8650', '2256583601017660', '2021-03-06'),
|
|
117
|
+
(100034, 'Robert', 'Adams', '44388 Cheryl Cove, New Jonmouth, MO 40473', 'Phoenix', 'Arizona', '10004', 'USA', 'INDIV', 36, 'HIGH', 'other', 'Engineer', 'widowed', 'Prefers e-bikes', 'Southwest', 'TER-0013', 10, '(905)444-2200x90045', '264-46-6062', '5410975469993907', '2020-07-26'),
|
|
118
|
+
(100035, 'Dillon', 'Roy', '56386 Ruiz Causeway, Lake Danielleville, DE 44338', 'Philadelphia', 'Pennsylvania', '10005', 'Mexico', 'AMAZON', 44, 'MEDIUM', 'NA', 'Doctor', 'other', 'Interested in mountain bikes', 'Southwest', 'TER-0006', 10, '001-784-294-7184x142', '837-48-1070', '5207884001753257', '2022-10-17'),
|
|
119
|
+
(100036, 'Edgar', 'Brown', '44240 Stephen Squares, East Jasonland, NM 03738', 'San Antonio', 'Texas', '10006', 'Mexico', 'CLUB', 59, 'MEDIUM', 'NA', 'Scientist', 'single', 'Interested in bike sports', 'Southwest', 'TER-0004', 4, '776.953.9235x9124', '427-67-4899', '2266124994963364', '2022-06-25'),
|
|
120
|
+
(100037, 'Jason', 'Fox', '54383 Duncan Cliff, Velasquezland, SD 32902', 'San Diego', 'California', '10007', 'Canada', 'SHOP', 20, 'MEDIUM', 'male', 'Software Developer', 'divorced', 'Interested in road bikes', 'West', 'TER-0029', 3, '(409)655-2689x14150', '331-17-3527', '2245755630698918', '2020-07-09'),
|
|
121
|
+
(100038, 'Heather', 'Hernandez', '7484 Samantha Fields, Nathanielville, MP 70420', 'Dallas', 'Texas', '10008', 'Mexico', 'SHOP', 23, 'HIGH', 'other', 'Chef', 'widowed', 'Interested in road bikes', 'Southeast', 'TER-0016', 6, '001-886-560-3780x039', '430-15-1343', '5214803878962214', '2021-07-26'),
|
|
122
|
+
(100039, 'Jimmy', 'Tapia', '36903 Jeffery Avenue Suite 928, Watkinsport, WY 74751', 'San Jose', 'California', '10009', 'USA', 'INDIV', 75, 'LOW', 'male', 'Nurse', 'married', 'Looking for mountain bikes', 'Southwest', 'TER-0019', 8, '001-693-845-9016', '778-37-9797', '5347287284554528', '2020-11-01'),
|
|
123
|
+
(100040, 'Kimberly', 'Harris', '76596 Stewart Mount, South William, AL 20745', 'Austin', 'Texas', '10010', 'Mexico', 'CLUB', 43, 'MEDIUM', 'NA', 'Journalist', 'divorced', 'Interested in mountain bikes', 'Midwest', 'TER-0016', 6, '(471)268-2681x236', '653-41-0754', '2464273128538962', '2020-07-21'),
|
|
124
|
+
(100041, 'Stacey', 'Garcia', '529 Stephanie Row Apt. 112, Jeffreystad, HI 73327', 'Jacksonville', 'Florida', '10011', 'USA', 'INDIV', 49, 'LOW', 'male', 'Architect', 'single', 'Prefers road bikes', 'Midwest', 'TER-0029', 4, '001-751-788-2582x84078', '841-95-0381', '2256049482972019', '2022-07-10'),
|
|
125
|
+
(100042, 'Jennifer', 'Clayton', '64813 David Mews Apt. 408, South Mary, CA 12702', 'Fort Worth', 'Texas', '10012', 'Canada', 'INDIV', 21, 'MEDIUM', 'female', 'Engineer', 'married', 'Enthusiastic about mountain bikes', 'Southeast', 'TER-0025', 7, '(906)466-6368', '149-27-4236', '2261000926414442', '2020-11-20'),
|
|
126
|
+
(100043, 'Cynthia', 'Smith', '07600 Wheeler Expressway, Davidburgh, ID 42235', 'Columbus', 'Ohio', '10013', 'Mexico', 'INDIV', 10, 'LOW', 'female', 'Software Developer', 'widowed', 'Looking for bike sports', 'Northeast', 'TER-0015', 1, '490.416.3500', '507-63-6196', '5238554174816362', '2020-10-10'),
|
|
127
|
+
(100044, 'Kevin', 'Castro', '65584 Jones Stream, Billymouth, GA 36906', 'Charlotte', 'North Carolina', '10014', 'Mexico', 'AMAZON', 30, 'MEDIUM', 'NA', 'Veterinarian', 'widowed', 'Enthusiastic about e-bikes', 'Midwest', 'TER-0005', 8, '+1-294-931-1973', '724-02-7316', '2700179968930223', '2022-02-03'),
|
|
128
|
+
(100045, 'Craig', 'Turner', '5847 Warren Dale, Masonland, AL 61908', 'San Francisco', 'California', '10015', 'USA', 'CLUB', 77, 'LOW', 'female', 'Pharmacist', 'other', 'Enthusiastic about road bikes', 'Northeast', 'TER-0015', 2, '+1-905-721-9246', '255-13-8339', '2706996457903575', '2020-03-23'),
|
|
129
|
+
(100046, 'Marcus', 'Williams', '923 Debra Port, Cannonshire, OH 59307', 'Indianapolis', 'Indiana', '10016', 'Mexico', 'CLUB', 32, 'LOW', 'male', 'Pilot', 'single', 'Prefers mountain bikes', 'Southeast', 'TER-0011', 5, '+1-401-302-5282x1756', '433-74-3547', '5430462452064331', '2023-03-26'),
|
|
130
|
+
(100047, 'Deborah', 'Cox', '8812 Jenna Stream, Stephentown, OH 76789', 'Seattle', 'Washington', '10017', 'USA', 'CLUB', 48, 'LOW', 'NA', 'Architect', 'divorced', 'Prefers e-bikes', 'West', 'TER-0025', 1, '(939)487-9593x994', '816-84-6776', '2232719525186020', '2021-04-20'),
|
|
131
|
+
(100048, 'Brandon', 'Chavez', '930 Oliver Point, Port Melissa, AL 58436', 'Denver', 'Colorado', '10018', 'Mexico', 'SHOP', 79, 'LOW', 'other', 'Teacher', 'married', 'Frequent buyer of mountain bikes', 'West', 'TER-0017', 1, '797.911.6958x9974', '026-62-0618', '5395116868655685', '2022-05-09'),
|
|
132
|
+
(100049, 'Bethany', 'Olsen', '6271 David Heights Apt. 952, Carterview, GA 49396', 'Washington', 'DC', '10019', 'USA', 'INDIV', 60, 'LOW', 'male', 'Artist', 'widowed', 'Frequent buyer of e-bikes', 'Midwest', 'TER-0003', 4, '517.814.2998', '294-12-9588', '2268885379860304', '2020-06-23'),
|
|
133
|
+
(100050, 'Claudia', 'Hernandez', '685 Valerie Plaza Suite 545, Josephfurt, LA 69370', 'Boston', 'Massachusetts', '10020', 'USA', 'INDIV', 60, 'MEDIUM', 'NA', 'Scientist', 'single', 'Interested in mountain bikes', 'West', 'TER-0013', 1, '+1-962-586-8498x79862', '438-27-8720', '2238500597499481', '2021-07-28'),
|
|
134
|
+
(100051, 'Steve', 'Sanchez', '20694 Hill Point Suite 310, East Megan, CT 17770', 'El Paso', 'Texas', '10021', 'USA', 'INDIV', 15, 'MEDIUM', 'NA', 'Accountant', 'single', 'Enthusiastic about mountain bikes', 'Southwest', 'TER-0022', 4, '(263)459-9895x67906', '359-87-4753', '5205812800794513', '2021-11-17'),
|
|
135
|
+
(100052, 'Chris', 'Anderson', '82410 Harrison Dale, Peggyshire, CA 01163', 'Nashville', 'Tennessee', '10022', 'USA', 'SHOP', 74, 'MEDIUM', 'NA', 'Artist', 'married', 'Enthusiastic about bike sports', 'West', 'TER-0015', 8, '429-565-4638x1310', '778-94-3825', '2641238743981059', '2022-07-29'),
|
|
136
|
+
(100053, 'Amy', 'Shields', '9142 Huerta Unions, Deleonstad, WI 62306', 'Detroit', 'Michigan', '10023', 'Canada', 'CLUB', 28, 'HIGH', 'NA', 'Journalist', 'widowed', 'Interested in mountain bikes', 'Southeast', 'TER-0019', 8, '545-975-8904x18379', '769-17-1433', '2284043953087924', '2021-09-05'),
|
|
137
|
+
(100054, 'Jacqueline', 'Maxwell', '697 Richard Coves Suite 902, South Markhaven, PA 57301', 'Oklahoma City', 'Oklahoma', '10024', 'Canada', 'INDIV', 58, 'LOW', 'male', 'Nurse', 'other', 'Enthusiastic about e-bikes', 'Midwest', 'TER-0014', 1, '+1-709-673-8969x08628', '251-39-7156', '5163702783035770', '2022-10-04'),
|
|
138
|
+
(100055, 'Ann', 'Collins', '26539 Aguilar Valleys, Patrickfurt, WI 24135', 'Portland', 'Oregon', '10025', 'Mexico', 'SHOP', 64, 'LOW', 'NA', 'Artist', 'other', 'Looking for e-bikes', 'Southwest', 'TER-0002', 3, '+1-525-291-7868x14417', '321-37-7768', '2686196008256151', '2023-01-14'),
|
|
139
|
+
(100056, 'Chloe', 'Butler', '2566 Robbins Spur, North Ann, TN 42557', 'Las Vegas', 'Nevada', '10026', 'USA', 'SHOP', 80, 'LOW', 'male', 'Journalist', 'divorced', 'Enthusiastic about e-bikes', 'West', 'TER-0001', 1, '(636)896-4770x203', '588-87-1412', '2247113069907996', '2022-03-01'),
|
|
140
|
+
(100057, 'Tyler', 'Figueroa', '10288 Medina Unions, Robinsonshire, VI 57257', 'Memphis', 'Tennessee', '10027', 'Mexico', 'AMAZON', 73, 'HIGH', 'male', 'Accountant', 'single', 'Frequent buyer of bike accessories', 'Southwest', 'TER-0015', 6, '001-775-288-9222x0937', '221-90-2737', '2715063475575189', '2022-11-25'),
|
|
141
|
+
(100058, 'Tina', 'Fisher', '276 Huffman Unions Apt. 727, North Julieport, MO 18335', 'Louisville', 'Kentucky', '10028', 'Mexico', 'INDIV', 49, 'MEDIUM', 'other', 'Accountant', 'other', 'Frequent buyer of mountain bikes', 'Southeast', 'TER-0002', 10, '929-430-2228x6926', '739-82-9537', '2700154427178037', '2020-05-19'),
|
|
142
|
+
(100059, 'Amy', 'Lawson', '109 Michelle Place, Port Lisahaven, WY 39738', 'Baltimore', 'Maryland', '10029', 'Mexico', 'INDIV', 70, 'HIGH', 'male', 'Pharmacist', 'married', 'Looking for bike sports', 'Midwest', 'TER-0010', 8, '698-800-6686', '166-51-4834', '2716676044627469', '2022-08-12'),
|
|
143
|
+
(100060, 'Stephanie', 'Rivera', '48893 Melissa Run, East Kim, AL 07272', 'New York', 'New York', '10000', 'USA', 'INDIV', 29, 'HIGH', 'female', 'Journalist', 'married', 'Interested in road bikes', 'Northeast', 'TER-0018', 3, '(797)815-9139', '634-04-5189', '2249858071647299', '2022-10-02'),
|
|
144
|
+
(100061, 'Kristen', 'Jennings', '65541 Michael Greens Suite 175, Robinsonburgh, VA 93169', 'Los Angeles', 'California', '10001', 'Canada', 'SHOP', 33, 'HIGH', 'NA', 'Doctor', 'single', 'Interested in bike accessories', 'Southwest', 'TER-0015', 4, '(665)220-1009x186', '634-26-2546', '2248272944089039', '2022-12-08'),
|
|
145
|
+
(100062, 'Annette', 'Briggs', '2700 Brewer Lakes Apt. 142, Roseport, NM 21409', 'Chicago', 'Illinois', '10002', 'USA', 'SHOP', 11, 'MEDIUM', 'NA', 'Chef', 'married', 'Frequent buyer of bike accessories', 'Northeast', 'TER-0021', 1, '918.264.8047x844', '729-56-0507', '2720138635412706', '2022-09-01'),
|
|
146
|
+
(100063, 'Scott', 'Hernandez', '4055 Hannah Vista, Port Jennifer, WA 17461', 'Houston', 'Texas', '10003', 'Mexico', 'AMAZON', 53, 'HIGH', 'male', 'Accountant', 'widowed', 'Enthusiastic about bike accessories', 'Southeast', 'TER-0015', 2, '001-355-685-6198x54811', '005-80-0042', '2271117106557267', '2020-01-14'),
|
|
147
|
+
(100064, 'Thomas', 'Sloan', '794 Carrie Dam Apt. 640, Hendersonborough, IA 60239', 'Phoenix', 'Arizona', '10004', 'Canada', 'CLUB', 34, 'HIGH', 'other', 'Lawyer', 'other', 'Frequent buyer of road bikes', 'West', 'TER-0021', 3, '(428)272-7211x584', '546-24-3941', '2425496598554650', '2020-08-05'),
|
|
148
|
+
(100065, 'Michael', 'Moody', '158 Lopez Street Apt. 610, Rochafurt, PW 71310', 'Philadelphia', 'Pennsylvania', '10005', 'USA', 'AMAZON', 23, 'HIGH', 'NA', 'Doctor', 'widowed', 'Interested in e-bikes', 'Southwest', 'TER-0029', 8, '377-364-7830x5120', '317-19-2484', '5402130628295139', '2021-02-16'),
|
|
149
|
+
(100066, 'Maria', 'Brown', '584 Christian Causeway, Chanburgh, PW 08434', 'San Antonio', 'Texas', '10006', 'Mexico', 'AMAZON', 62, 'MEDIUM', 'NA', 'Nurse', 'single', 'Enthusiastic about e-bikes', 'Northeast', 'TER-0015', 3, '653-457-8023', '526-06-9976', '2238947721315515', '2021-03-13'),
|
|
150
|
+
(100067, 'David', 'Mercado', 'USNS Rodriguez, FPO AA 41663', 'San Diego', 'California', '10007', 'Mexico', 'INDIV', 15, 'HIGH', 'female', 'Accountant', 'single', 'Interested in road bikes', 'Midwest', 'TER-0007', 2, '(250)226-8987', '283-80-9872', '2415890735728312', '2021-06-05'),
|
|
151
|
+
(100068, 'Madison', 'Johnson', '96416 Jeremy Turnpike Suite 259, Brownton, NC 05345', 'Dallas', 'Texas', '10008', 'Mexico', 'AMAZON', 68, 'LOW', 'NA', 'Journalist', 'other', 'Enthusiastic about bike accessories', 'Northeast', 'TER-0014', 5, '(526)717-6897x9177', '419-19-4389', '5125130226450298', '2020-08-31'),
|
|
152
|
+
(100069, 'Maria', 'Owens', '22773 Hurst Ramp, North Sarah, OH 89170', 'San Jose', 'California', '10009', 'Mexico', 'AMAZON', 35, 'MEDIUM', 'male', 'Architect', 'single', 'Enthusiastic about road bikes', 'Midwest', 'TER-0018', 4, '328.467.4126', '147-18-2279', '2704433864052111', '2022-08-26'),
|
|
153
|
+
(100070, 'David', 'Reed', '09670 Tanya Dale Apt. 699, New Markville, PW 00637', 'Austin', 'Texas', '10010', 'USA', 'SHOP', 56, 'MEDIUM', 'female', 'Teacher', 'single', 'Interested in e-bikes', 'West', 'TER-0001', 9, '460.608.3208x050', '547-48-7192', '2289417918551882', '2022-02-25'),
|
|
154
|
+
(100071, 'Kathleen', 'Vaughan', '52553 Thomas Roads, New Benjaminfurt, AS 24221', 'Jacksonville', 'Florida', '10011', 'Canada', 'SHOP', 75, 'LOW', 'female', 'Teacher', 'widowed', 'Prefers e-bikes', 'Southeast', 'TER-0010', 1, '7192122993', '234-02-9243', '5328723404940638', '2020-12-27'),
|
|
155
|
+
(100072, 'Regina', 'Tapia', 'Unit 2884 Box 4465, DPO AP 03486', 'Fort Worth', 'Texas', '10012', 'USA', 'AMAZON', 78, 'HIGH', 'other', 'Engineer', 'divorced', 'Prefers road bikes', 'West', 'TER-0021', 10, '729-516-7063x56844', '106-71-0275', '2567713752255462', '2022-01-23'),
|
|
156
|
+
(100073, 'Michael', 'Mueller', '8601 Kristy Harbors Apt. 525, Lake Elizabethhaven, PR 06017', 'Columbus', 'Ohio', '10013', 'USA', 'INDIV', 69, 'HIGH', 'female', 'Nurse', 'single', 'Looking for e-bikes', 'West', 'TER-0017', 4, '001-643-987-7956x47306', '291-87-3843', '2259973181864036', '2020-06-16'),
|
|
157
|
+
(100074, 'Elizabeth', 'Taylor', '310 Jessica Roads Apt. 398, Wendyfort, WA 34631', 'Charlotte', 'North Carolina', '10014', 'Canada', 'SHOP', 44, 'HIGH', 'male', 'Architect', 'single', 'Prefers e-bikes', 'Southeast', 'TER-0019', 10, '652.893.8323', '093-04-8561', '5427127815579011', '2020-05-26'),
|
|
158
|
+
(100075, 'Cynthia', 'West', '18289 Lara Extensions Suite 368, Lake Rhonda, WY 79416', 'San Francisco', 'California', '10015', 'Mexico', 'CLUB', 28, 'MEDIUM', 'NA', 'Pharmacist', 'other', 'Interested in e-bikes', 'Northeast', 'TER-0024', 7, '242-311-3551x981', '662-32-7513', '2230032140135584', '2023-02-23'),
|
|
159
|
+
(100076, 'Daniel', 'Andrews', '11173 Brown Corners Apt. 728, Kaisermouth, HI 10791', 'Indianapolis', 'Indiana', '10016', 'Mexico', 'INDIV', 38, 'LOW', 'female', 'Software Developer', 'widowed', 'Enthusiastic about bike sports', 'West', 'TER-0030', 10, '829-215-0390x7415', '141-86-6216', '5267690537586260', '2022-11-18'),
|
|
160
|
+
(100077, 'Joanna', 'Cervantes', '51050 Debbie Streets, Bestport, OK 80423', 'Seattle', 'Washington', '10017', 'Mexico', 'INDIV', 30, 'HIGH', 'female', 'Lawyer', 'single', 'Looking for bike accessories', 'Northeast', 'TER-0014', 9, '(638)796-4176x43718', '827-35-5204', '2243290107418675', '2023-02-11'),
|
|
161
|
+
(100078, 'Darryl', 'Morrison', '1639 Hester Skyway, Smithburgh, MP 12438', 'Denver', 'Colorado', '10018', 'Canada', 'SHOP', 15, 'HIGH', 'male', 'Veterinarian', 'other', 'Frequent buyer of mountain bikes', 'West', 'TER-0007', 6, '(607)307-6420', '472-53-8141', '2259909180997344', '2020-10-06'),
|
|
162
|
+
(100079, 'Matthew', 'Allen', '593 Ryan Roads, Amberberg, MP 85021', 'Washington', 'DC', '10019', 'Mexico', 'INDIV', 11, 'HIGH', 'NA', 'Scientist', 'married', 'Frequent buyer of e-bikes', 'Midwest', 'TER-0018', 8, '631-450-3484', '360-30-0829', '2274052569073782', '2022-09-14'),
|
|
163
|
+
(100080, 'Javier', 'Mckay', '056 Parker Parkway, East Matthew, NH 01075', 'Boston', 'Massachusetts', '10020', 'Canada', 'AMAZON', 30, 'HIGH', 'female', 'Nurse', 'divorced', 'Enthusiastic about bike accessories', 'Southeast', 'TER-0006', 10, '929.307.3958', '207-89-1280', '2449473315084966', '2020-06-14'),
|
|
164
|
+
(100081, 'Johnathan', 'Brown', '5106 Alan Ford, Allenstad, MP 65954', 'El Paso', 'Texas', '10021', 'Mexico', 'CLUB', 11, 'MEDIUM', 'male', 'Artist', 'other', 'Interested in mountain bikes', 'Midwest', 'TER-0012', 5, '378-250-0390x7703', '192-76-6901', '2702662322168307', '2023-03-16'),
|
|
165
|
+
(100082, 'Jeffrey', 'Alvarado', '79710 Russell Trafficway Suite 894, Lake Cathyside, CA 84908', 'Nashville', 'Tennessee', '10022', 'USA', 'INDIV', 35, 'MEDIUM', 'NA', 'Lawyer', 'single', 'Frequent buyer of e-bikes', 'Northeast', 'TER-0014', 1, '660-644-7093', '652-35-9597', '2259856343575931', '2022-10-17'),
|
|
166
|
+
(100083, 'Christopher', 'Johnson', '410 Johnston Station, West Stephanie, UT 39924', 'Detroit', 'Michigan', '10023', 'Canada', 'SHOP', 23, 'LOW', 'female', 'Doctor', 'other', 'Frequent buyer of mountain bikes', 'Midwest', 'TER-0025', 5, '366.696.5415x8509', '656-61-1924', '2229691656835540', '2022-12-18'),
|
|
167
|
+
(100084, 'Matthew', 'Garcia', '78343 Bishop Extension Apt. 271, Port Jamesland, NC 66601', 'Oklahoma City', 'Oklahoma', '10024', 'USA', 'AMAZON', 49, 'MEDIUM', 'NA', 'Scientist', 'divorced', 'Enthusiastic about bike sports', 'Midwest', 'TER-0015', 4, '900.884.3811', '559-56-6391', '2229226621710591', '2021-02-12'),
|
|
168
|
+
(100085, 'Yesenia', 'Spears', '2138 Little Route Suite 422, Lake Tyler, OR 70626', 'Portland', 'Oregon', '10025', 'USA', 'CLUB', 49, 'LOW', 'NA', 'Accountant', 'other', 'Enthusiastic about bike sports', 'West', 'TER-0006', 8, '+1-497-588-2247x2112', '838-96-2296', '2293621757835744', '2022-04-05'),
|
|
169
|
+
(100086, 'Nicole', 'Phelps', '34547 Melissa Spur, Lake Christopher, AR 78229', 'Las Vegas', 'Nevada', '10026', 'USA', 'SHOP', 29, 'HIGH', 'NA', 'Teacher', 'married', 'Looking for mountain bikes', 'Midwest', 'TER-0003', 9, '001-890-973-8136', '108-08-9086', '5342169517912183', '2021-06-08'),
|
|
170
|
+
(100087, 'Michael', 'Castaneda', '8728 Jacob Brooks Suite 012, Shelbyburgh, PA 64386', 'Memphis', 'Tennessee', '10027', 'Mexico', 'AMAZON', 14, 'HIGH', 'male', 'Pilot', 'other', 'Interested in bike accessories', 'West', 'TER-0024', 8, '+1-669-844-6664x51163', '724-02-3992', '2561434279071318', '2022-01-17'),
|
|
171
|
+
(100088, 'April', 'Jones', 'PSC 3559, Box 2690, APO AE 26623', 'Louisville', 'Kentucky', '10028', 'USA', 'CLUB', 75, 'LOW', 'NA', 'Veterinarian', 'divorced', 'Interested in bike sports', 'West', 'TER-0019', 9, '322-376-7312x552', '072-79-9364', '2274708965706198', '2022-01-05'),
|
|
172
|
+
(100089, 'Robert', 'Ayala', '91693 Julie Loop Apt. 789, West Davidshire, WA 17745', 'Baltimore', 'Maryland', '10029', 'Canada', 'CLUB', 26, 'LOW', 'male', 'Architect', 'other', 'Prefers road bikes', 'West', 'TER-0020', 1, '584-367-8182x586', '862-35-1919', '5379789540363371', '2020-06-01'),
|
|
173
|
+
(100090, 'Tyler', 'Griffin', '011 Christopher Neck Apt. 689, Michaelahaven, MD 05223', 'New York', 'New York', '10000', 'Canada', 'CLUB', 68, 'MEDIUM', 'male', 'Scientist', 'single', 'Frequent buyer of bike sports', 'Southeast', 'TER-0007', 5, '001-278-830-5778x97392', '232-32-0259', '2294884876573427', '2022-05-24'),
|
|
174
|
+
(100091, 'Taylor', 'Smith', '729 Stacey Ferry Suite 207, Lake Kevin, MO 16274', 'Los Angeles', 'California', '10001', 'USA', 'CLUB', 79, 'HIGH', 'other', 'Scientist', 'widowed', 'Frequent buyer of bike sports', 'West', 'TER-0017', 2, '+1-282-474-2244x35285', '264-60-8847', '2248579164849433', '2021-08-18'),
|
|
175
|
+
(100092, 'Martin', 'Calhoun', '1840 Johnson Alley Suite 121, West Kevinland, IA 51578', 'Chicago', 'Illinois', '10002', 'USA', 'INDIV', 38, 'MEDIUM', 'male', 'Teacher', 'other', 'Frequent buyer of bike accessories', 'West', 'TER-0020', 6, '(636)303-8377x593', '175-48-6391', '2266707102433591', '2021-10-18'),
|
|
176
|
+
(100093, 'Linda', 'Estes', '869 King Ferry, Cookmouth, UT 53484', 'Houston', 'Texas', '10003', 'Mexico', 'INDIV', 77, 'HIGH', 'female', 'Pharmacist', 'married', 'Looking for bike accessories', 'Midwest', 'TER-0018', 3, '+1-223-738-9981x107', '364-56-8532', '2297375148547973', '2021-07-28'),
|
|
177
|
+
(100094, 'Sarah', 'Davis', '90391 Todd Crossroad, Vargasfurt, ID 86722', 'Phoenix', 'Arizona', '10004', 'Canada', 'CLUB', 67, 'MEDIUM', 'male', 'Journalist', 'divorced', 'Looking for bike accessories', 'Midwest', 'TER-0029', 5, '+1-241-469-9919x2967', '591-88-9890', '2709473685762097', '2020-05-10'),
|
|
178
|
+
(100095, 'Brenda', 'Williams', '04222 Wanda Curve Suite 525, Lake Carl, MS 89783', 'Philadelphia', 'Pennsylvania', '10005', 'USA', 'CLUB', 30, 'HIGH', 'female', 'Veterinarian', 'married', 'Prefers mountain bikes', 'Midwest', 'TER-0002', 9, '802.767.6605', '354-47-4248', '2375492370339667', '2020-08-11'),
|
|
179
|
+
(100096, 'Barbara', 'Wilson', '3462 Mccann Camp Apt. 536, Rosemouth, GA 29703', 'San Antonio', 'Texas', '10006', 'Canada', 'CLUB', 80, 'MEDIUM', 'other', 'Scientist', 'divorced', 'Prefers mountain bikes', 'Southwest', 'TER-0019', 6, '+1-750-944-1031', '307-02-7573', '5581678705537131', '2021-09-15'),
|
|
180
|
+
(100097, 'Janice', 'Bell', '9981 Daniel Shores Apt. 769, Christineville, VT 96697', 'San Diego', 'California', '10007', 'Canada', 'SHOP', 70, 'HIGH', 'other', 'Scientist', 'married', 'Looking for e-bikes', 'West', 'TER-0007', 2, '340-203-9430x103', '189-65-6812', '2705241418547430', '2020-12-12'),
|
|
181
|
+
(100098, 'Ann', 'James', '98442 Chandler Curve Suite 254, Lake Christopherfurt, IA 61162', 'Dallas', 'Texas', '10008', 'USA', 'CLUB', 20, 'MEDIUM', 'female', 'Veterinarian', 'single', 'Prefers bike sports', 'West', 'TER-0001', 5, '001-759-863-9914x0685', '748-07-7537', '2316681264764806', '2020-12-09'),
|
|
182
|
+
(100099, 'Thomas', 'Jordan', '083 Deleon Plaza, Tinaland, ND 37116', 'San Jose', 'California', '10009', 'Canada', 'CLUB', 65, 'HIGH', 'other', 'Artist', 'other', 'Frequent buyer of road bikes', 'West', 'TER-0011', 3, '346-350-5982x80099', '629-45-5185', '2273854012998791', '2020-01-26'),
|
|
183
|
+
(100100, 'Ronnie', 'Wright', '708 Bridges Drive, Nelsonville, FL 10731', 'Austin', 'Texas', '10010', 'USA', 'CLUB', 17, 'MEDIUM', 'female', 'Scientist', 'married', 'Frequent buyer of bike sports', 'Southwest', 'TER-0013', 8, '872.371.5002x1102', '372-37-5182', '2547742931278777', '2020-11-24'),
|
|
184
|
+
(100101, 'Krystal', 'Frazier', '7293 Nichole Mountain Apt. 507, Josephshire, ME 67183', 'Jacksonville', 'Florida', '10011', 'Canada', 'SHOP', 73, 'HIGH', 'male', 'Nurse', 'married', 'Prefers e-bikes', 'Midwest', 'TER-0022', 10, '714.693.1665', '500-37-4483', '5496166087995964', '2020-04-04'),
|
|
185
|
+
(100102, 'George', 'Larson', '02481 Kimberly Trail Apt. 282, New Amberville, MS 88428', 'Fort Worth', 'Texas', '10012', 'Canada', 'SHOP', 41, 'LOW', 'NA', 'Pilot', 'widowed', 'Prefers bike sports', 'Northeast', 'TER-0002', 9, '506.273.6704', '055-68-8438', '2563516735016941', '2021-05-10'),
|
|
186
|
+
(100103, 'Gloria', 'Edwards', '3656 Hinton Meadow, South Normashire, MO 74892', 'Columbus', 'Ohio', '10013', 'USA', 'CLUB', 12, 'MEDIUM', 'NA', 'Accountant', 'widowed', 'Looking for bike sports', 'Midwest', 'TER-0025', 10, '+1-769-221-6933x5131', '139-96-3832', '2290839006457762', '2020-02-21'),
|
|
187
|
+
(100104, 'Eric', 'Fletcher', '100 Williams Mountain Suite 904, Perryport, NM 33712', 'Charlotte', 'North Carolina', '10014', 'Mexico', 'INDIV', 25, 'HIGH', 'male', 'Journalist', 'divorced', 'Enthusiastic about bike accessories', 'Southwest', 'TER-0022', 8, '730-307-7943x5783', '441-25-3713', '5518150956922527', '2020-05-17'),
|
|
188
|
+
(100105, 'April', 'Chen', '4551 Beck Shoals Apt. 932, Port Mark, MI 65660', 'San Francisco', 'California', '10015', 'Canada', 'INDIV', 55, 'LOW', 'male', 'Artist', 'single', 'Prefers bike accessories', 'Southeast', 'TER-0018', 4, '6337055754', '601-17-3461', '2282654345814585', '2023-06-30'),
|
|
189
|
+
(100106, 'Ashley', 'Diaz', 'PSC 8941, Box 7044, APO AE 54523', 'Indianapolis', 'Indiana', '10016', 'USA', 'INDIV', 66, 'HIGH', 'female', 'Pilot', 'single', 'Interested in bike accessories', 'West', 'TER-0015', 7, '+1-736-582-4767x86623', '050-78-6143', '5416831580497092', '2023-02-18'),
|
|
190
|
+
(100107, 'Joshua', 'Smith', '6241 Lisa Ports Suite 361, Gardnerhaven, AR 34804', 'Seattle', 'Washington', '10017', 'Mexico', 'CLUB', 32, 'LOW', 'female', 'Pharmacist', 'other', 'Looking for e-bikes', 'Midwest', 'TER-0003', 7, '001-982-877-1803x64977', '479-54-0384', '2280623031774249', '2021-09-22'),
|
|
191
|
+
(100108, 'James', 'Arnold', '36114 Sabrina Mission, New Angie, SC 38905', 'Denver', 'Colorado', '10018', 'Mexico', 'INDIV', 31, 'LOW', 'female', 'Veterinarian', 'widowed', 'Looking for bike sports', 'Midwest', 'TER-0010', 4, '+1-812-363-5682x499', '489-16-9524', '2263479995784653', '2023-08-30'),
|
|
192
|
+
(100109, 'Charles', 'Perkins', '1029 Cox Pass Suite 339, Tonyaburgh, HI 62754', 'Washington', 'DC', '10019', 'USA', 'AMAZON', 24, 'MEDIUM', 'female', 'Nurse', 'other', 'Looking for road bikes', 'West', 'TER-0027', 7, '327.263.4615', '093-21-6014', '2262595611898501', '2020-12-25'),
|
|
193
|
+
(100110, 'Timothy', 'Carlson', '25172 Ortiz Spurs, Maynardshire, PW 52535', 'Boston', 'Massachusetts', '10020', 'Canada', 'CLUB', 54, 'LOW', 'male', 'Pharmacist', 'widowed', 'Looking for bike sports', 'Southwest', 'TER-0012', 5, '472-780-6954', '269-20-8273', '2720320195179780', '2022-07-30'),
|
|
194
|
+
(100111, 'Benjamin', 'Wilson', '1284 Erika Vista Suite 861, Samuelshire, RI 74080', 'El Paso', 'Texas', '10021', 'Mexico', 'AMAZON', 45, 'LOW', 'NA', 'Artist', 'married', 'Prefers e-bikes', 'West', 'TER-0029', 7, '(662)614-0399x015', '225-61-7313', '2712383443341784', '2022-12-20'),
|
|
195
|
+
(100112, 'Michele', 'Velasquez', '83018 Pacheco Springs, Lake Christian, MH 55906', 'Nashville', 'Tennessee', '10022', 'Canada', 'SHOP', 37, 'LOW', 'male', 'Nurse', 'divorced', 'Enthusiastic about mountain bikes', 'Southeast', 'TER-0022', 8, '2746691916', '778-34-6534', '2719263407381021', '2021-03-21'),
|
|
196
|
+
(100113, 'Kristen', 'Nelson', '9968 Virginia Inlet Suite 918, Brendaview, SD 81194', 'Detroit', 'Michigan', '10023', 'USA', 'SHOP', 71, 'LOW', 'other', 'Journalist', 'single', 'Looking for e-bikes', 'Northeast', 'TER-0003', 2, '7172371330', '182-68-4925', '2259707917813648', '2020-04-12'),
|
|
197
|
+
(100114, 'Sydney', 'Moran', '58498 Roberts Greens, South Johnmouth, ME 97546', 'Oklahoma City', 'Oklahoma', '10024', 'Mexico', 'AMAZON', 67, 'HIGH', 'other', 'Chef', 'married', 'Looking for e-bikes', 'Midwest', 'TER-0024', 9, '(929)681-5382x603', '241-91-5681', '2250614637049116', '2020-08-24'),
|
|
198
|
+
(100115, 'Shelia', 'Jones', '340 Herrera Spring Suite 606, Huntermouth, IL 40522', 'Portland', 'Oregon', '10025', 'Mexico', 'CLUB', 11, 'HIGH', 'NA', 'Lawyer', 'widowed', 'Looking for bike sports', 'Northeast', 'TER-0023', 8, '(767)811-8503x1806', '720-29-5903', '2226390312023004', '2020-07-19'),
|
|
199
|
+
(100116, 'Joyce', 'Cochran', '78247 Johnson Road, Markfort, MA 19539', 'Las Vegas', 'Nevada', '10026', 'Canada', 'CLUB', 47, 'LOW', 'female', 'Nurse', 'married', 'Interested in road bikes', 'Southeast', 'TER-0022', 5, '3553550121', '548-59-4102', '2460201829988404', '2020-07-07'),
|
|
200
|
+
(100117, 'Nathan', 'Patterson', '690 Kayla Meadow Apt. 873, Colemanfort, VA 30237', 'Memphis', 'Tennessee', '10027', 'Mexico', 'AMAZON', 31, 'LOW', 'female', 'Teacher', 'divorced', 'Frequent buyer of e-bikes', 'Midwest', 'TER-0019', 1, '847-205-1397', '416-92-8831', '2669593931731238', '2020-10-04'),
|
|
201
|
+
(100118, 'Kyle', 'Smith', '2680 Yates Shoals Apt. 694, North Heatherton, OK 88759', 'Louisville', 'Kentucky', '10028', 'Mexico', 'AMAZON', 70, 'HIGH', 'other', 'Chef', 'single', 'Interested in bike accessories', 'Southwest', 'TER-0029', 3, '(363)810-0530', '824-83-5835', '2266512759212573', '2023-08-20'),
|
|
202
|
+
(100119, 'Jason', 'Rodriguez', '66741 Gentry Lodge Apt. 977, Mcclureside, GU 88584', 'Baltimore', 'Maryland', '10029', 'Mexico', 'CLUB', 63, 'MEDIUM', 'female', 'Chef', 'widowed', 'Enthusiastic about bike sports', 'Southwest', 'TER-0019', 10, '8553311629', '229-44-8153', '2260575632152338', '2022-02-28'),
|
|
203
|
+
(100120, 'Stephen', 'Clay', '6484 Tiffany Ramp, Guerraport, MT 01014', 'New York', 'New York', '10000', 'USA', 'SHOP', 69, 'HIGH', 'other', 'Chef', 'widowed', 'Interested in bike sports', 'West', 'TER-0016', 1, '(674)886-4016x69298', '371-99-3919', '2245780827436534', '2022-05-01'),
|
|
204
|
+
(100121, 'Natasha', 'Kelly', '659 Devon Pines, Melendezmouth, LA 51510', 'Los Angeles', 'California', '10001', 'USA', 'INDIV', 32, 'LOW', 'other', 'Artist', 'other', 'Frequent buyer of mountain bikes', 'Northeast', 'TER-0024', 1, '391.684.3547x9736', '546-41-6031', '5480478997569005', '2023-02-19'),
|
|
205
|
+
(100122, 'Janet', 'Perkins', '204 Patel Junction, Stephensburgh, NE 36150', 'Chicago', 'Illinois', '10002', 'Canada', 'CLUB', 52, 'LOW', 'male', 'Artist', 'divorced', 'Interested in e-bikes', 'Southeast', 'TER-0008', 6, '(440)578-8020x081', '716-73-2833', '2253059869203105', '2022-04-22'),
|
|
206
|
+
(100123, 'Philip', 'Caldwell', 'USNS Scott, FPO AE 85386', 'Houston', 'Texas', '10003', 'USA', 'CLUB', 75, 'LOW', 'other', 'Pilot', 'widowed', 'Frequent buyer of e-bikes', 'Southwest', 'TER-0022', 9, '437-763-2021', '345-72-1617', '2716853981268090', '2020-11-22'),
|
|
207
|
+
(100124, 'Emily', 'Johnson', '161 Tina Vista, Michaelshire, FM 05740', 'Phoenix', 'Arizona', '10004', 'Canada', 'SHOP', 79, 'HIGH', 'male', 'Journalist', 'divorced', 'Prefers e-bikes', 'Northeast', 'TER-0029', 3, '3395862996', '108-52-9300', '2720718743667653', '2022-12-25'),
|
|
208
|
+
(100125, 'Ryan', 'Le', '55857 Villa Courts Suite 970, Christieside, CA 62962', 'Philadelphia', 'Pennsylvania', '10005', 'USA', 'CLUB', 72, 'HIGH', 'other', 'Software Developer', 'divorced', 'Enthusiastic about road bikes', 'Midwest', 'TER-0002', 6, '+1-222-491-1678x2741', '687-03-7770', '2255388796119847', '2022-08-15'),
|
|
209
|
+
(100126, 'Melissa', 'Carter', 'Unit 4508 Box 0564, DPO AP 94781', 'San Antonio', 'Texas', '10006', 'USA', 'INDIV', 35, 'MEDIUM', 'female', 'Doctor', 'divorced', 'Frequent buyer of road bikes', 'Northeast', 'TER-0004', 10, '240.312.2604x02818', '099-74-1434', '5265459308994026', '2022-02-14'),
|
|
210
|
+
(100127, 'Rita', 'Lynch', '9130 Harper Dale, Janetstad, OK 98999', 'San Diego', 'California', '10007', 'Canada', 'AMAZON', 51, 'HIGH', 'NA', 'Nurse', 'widowed', 'Interested in bike accessories', 'Southeast', 'TER-0002', 4, '(851)812-1539x30913', '894-98-1000', '2288765071217654', '2021-03-04'),
|
|
211
|
+
(100128, 'Jessica', 'Combs', '05242 Christina Views, Langmouth, RI 82712', 'Dallas', 'Texas', '10008', 'Mexico', 'SHOP', 35, 'HIGH', 'male', 'Accountant', 'married', 'Interested in e-bikes', 'Midwest', 'TER-0025', 7, '001-880-277-1236', '385-81-3163', '2606039913439800', '2022-05-10'),
|
|
212
|
+
(100129, 'Tammy', 'Butler', '25619 Teresa Mill Apt. 385, South Justinfurt, MT 43248', 'San Jose', 'California', '10009', 'USA', 'INDIV', 31, 'MEDIUM', 'other', 'Scientist', 'single', 'Looking for bike accessories', 'Northeast', 'TER-0024', 10, '001-831-316-4938x14298', '699-98-7992', '5285567678555171', '2022-09-02'),
|
|
213
|
+
(100130, 'Valerie', 'Rodriguez', '0504 Victoria Manor, Lake Travisview, AR 83255', 'Austin', 'Texas', '10010', 'Mexico', 'INDIV', 17, 'HIGH', 'NA', 'Pilot', 'single', 'Looking for road bikes', 'West', 'TER-0018', 2, '409.865.2162', '002-59-7843', '2273458186602401', '2020-01-14'),
|
|
214
|
+
(100131, 'Brandon', 'Mccullough', '6549 Cannon Unions Apt. 945, Chaseburgh, DC 50067', 'Jacksonville', 'Florida', '10011', 'Mexico', 'SHOP', 49, 'MEDIUM', 'female', 'Artist', 'single', 'Looking for e-bikes', 'Southeast', 'TER-0005', 7, '(326)298-5983x5009', '383-91-6774', '2694778804438370', '2022-11-20'),
|
|
215
|
+
(100132, 'Rebecca', 'Holland', '718 Mitchell Fords, Gonzalezbury, SC 50033', 'Fort Worth', 'Texas', '10012', 'Canada', 'AMAZON', 74, 'LOW', 'other', 'Lawyer', 'widowed', 'Frequent buyer of road bikes', 'Southwest', 'TER-0020', 9, '(353)564-4723', '534-26-9386', '2707816587940843', '2020-03-08'),
|
|
216
|
+
(100133, 'Aimee', 'Meyers', 'Unit 4628 Box 6994, DPO AA 05275', 'Columbus', 'Ohio', '10013', 'Canada', 'AMAZON', 43, 'LOW', 'NA', 'Pilot', 'widowed', 'Frequent buyer of bike accessories', 'West', 'TER-0003', 10, '(405)334-8926', '045-42-7721', '5246721333047664', '2023-05-01'),
|
|
217
|
+
(100134, 'William', 'Harrison', '609 Young Well Suite 030, North Lindafurt, LA 52932', 'Charlotte', 'North Carolina', '10014', 'USA', 'AMAZON', 73, 'LOW', 'NA', 'Software Developer', 'married', 'Prefers bike accessories', 'Midwest', 'TER-0007', 2, '353-596-4230', '890-62-5370', '5277821698189622', '2023-05-06'),
|
|
218
|
+
(100135, 'Joshua', 'Taylor', '809 Heather Brooks Suite 998, Lake Charlesbury, AR 43285', 'San Francisco', 'California', '10015', 'Mexico', 'INDIV', 57, 'MEDIUM', 'male', 'Engineer', 'single', 'Looking for bike sports', 'Southeast', 'TER-0018', 5, '(996)866-4781x45339', '239-87-7618', '2225745885344403', '2022-02-21'),
|
|
219
|
+
(100136, 'Thomas', 'Charles', 'PSC 5460, Box 3386, APO AA 45077', 'Indianapolis', 'Indiana', '10016', 'USA', 'AMAZON', 29, 'MEDIUM', 'female', 'Journalist', 'widowed', 'Enthusiastic about mountain bikes', 'Northeast', 'TER-0026', 1, '(843)733-7771', '113-57-0557', '5439070336815132', '2020-11-21'),
|
|
220
|
+
(100137, 'Sonya', 'Mcdonald', 'Unit 6456 Box 6495, DPO AP 21848', 'Seattle', 'Washington', '10017', 'Mexico', 'AMAZON', 70, 'HIGH', 'male', 'Pilot', 'widowed', 'Enthusiastic about mountain bikes', 'Northeast', 'TER-0005', 2, '001-543-838-9044', '856-55-3462', '2493396894636010', '2023-04-21'),
|
|
221
|
+
(100138, 'Ronald', 'Farley', 'PSC 5529, Box 2184, APO AP 01534', 'Denver', 'Colorado', '10018', 'Mexico', 'CLUB', 26, 'MEDIUM', 'other', 'Chef', 'divorced', 'Interested in mountain bikes', 'Southwest', 'TER-0003', 9, '761-497-0888x68271', '707-07-0759', '2222000194608376', '2022-05-30'),
|
|
222
|
+
(100139, 'Mary', 'Anderson', '3036 Salazar Bypass, Christopherton, FM 14098', 'Washington', 'DC', '10019', 'Mexico', 'CLUB', 53, 'LOW', 'male', 'Journalist', 'married', 'Interested in e-bikes', 'West', 'TER-0023', 8, '001-792-352-9345', '804-97-1187', '2553249297712390', '2021-11-22'),
|
|
223
|
+
(100140, 'James', 'Herrera', '759 Mckinney Loop, Laurashire, CT 07541', 'Boston', 'Massachusetts', '10020', 'USA', 'SHOP', 13, 'MEDIUM', 'other', 'Veterinarian', 'divorced', 'Interested in bike sports', 'West', 'TER-0028', 7, '+1-921-264-9576x225', '523-94-6591', '2702452100781087', '2022-03-07'),
|
|
224
|
+
(100141, 'Jordan', 'Robles', '9193 Foster Highway, Barrerafurt, MH 35017', 'El Paso', 'Texas', '10021', 'Canada', 'AMAZON', 24, 'LOW', 'male', 'Pilot', 'divorced', 'Enthusiastic about road bikes', 'Northeast', 'TER-0005', 8, '001-244-240-6529x0793', '622-68-2407', '2542453737849077', '2022-05-07'),
|
|
225
|
+
(100142, 'Jose', 'Cooper', '52791 Ward Key, Michaelview, NY 42902', 'Nashville', 'Tennessee', '10022', 'Canada', 'AMAZON', 35, 'HIGH', 'male', 'Lawyer', 'other', 'Prefers road bikes', 'Southeast', 'TER-0015', 2, '792-235-9929', '734-13-2406', '2716867606493123', '2020-06-05'),
|
|
226
|
+
(100143, 'Diana', 'Hayden', '943 David Underpass Suite 379, Riosstad, LA 27477', 'Detroit', 'Michigan', '10023', 'Mexico', 'AMAZON', 56, 'HIGH', 'other', 'Engineer', 'married', 'Looking for e-bikes', 'Midwest', 'TER-0010', 5, '747.806.1994', '447-37-9782', '2700973225154308', '2021-12-09'),
|
|
227
|
+
(100144, 'Sarah', 'Blair', '217 Michael Circles, Williamsshire, SD 73593', 'Oklahoma City', 'Oklahoma', '10024', 'Mexico', 'SHOP', 66, 'MEDIUM', 'female', 'Artist', 'divorced', 'Looking for bike accessories', 'Midwest', 'TER-0011', 5, '911-222-9746', '272-32-1408', '5306413723078544', '2021-12-25'),
|
|
228
|
+
(100145, 'Patricia', 'Hess', '9409 Fred Views Apt. 347, New Jameschester, MA 32987', 'Portland', 'Oregon', '10025', 'USA', 'INDIV', 54, 'MEDIUM', 'other', 'Teacher', 'widowed', 'Frequent buyer of e-bikes', 'West', 'TER-0029', 10, '246-391-0809x492', '380-81-9644', '5443835686361604', '2022-09-08'),
|
|
229
|
+
(100146, 'Jeffery', 'Garcia', '3304 Kim Neck Apt. 319, New Michaeltown, NJ 21082', 'Las Vegas', 'Nevada', '10026', 'Mexico', 'SHOP', 61, 'MEDIUM', 'other', 'Veterinarian', 'divorced', 'Prefers road bikes', 'Southeast', 'TER-0007', 5, '(982)885-8227', '841-38-3285', '2720538252476902', '2020-04-18'),
|
|
230
|
+
(100147, 'Katherine', 'Galloway', 'PSC 3722, Box 6917, APO AA 20326', 'Memphis', 'Tennessee', '10027', 'USA', 'CLUB', 24, 'MEDIUM', 'other', 'Accountant', 'widowed', 'Enthusiastic about mountain bikes', 'Midwest', 'TER-0018', 3, '(311)753-5955x5762', '366-55-1080', '5135469899072718', '2021-08-29'),
|
|
231
|
+
(100148, 'Oscar', 'Bates', 'PSC 9060, Box 3914, APO AP 80791', 'Louisville', 'Kentucky', '10028', 'USA', 'AMAZON', 65, 'MEDIUM', 'female', 'Pilot', 'divorced', 'Prefers bike accessories', 'Northeast', 'TER-0003', 9, '(882)572-3149x1864', '566-06-6123', '2573836101113694', '2023-04-19'),
|
|
232
|
+
(100149, 'Lorraine', 'Jones', 'Unit 6616 Box 4236, DPO AP 13176', 'Baltimore', 'Maryland', '10029', 'Canada', 'INDIV', 17, 'HIGH', 'male', 'Chef', 'other', 'Interested in road bikes', 'Northeast', 'TER-0025', 10, '(801)212-6593x84351', '249-23-2612', '5270830727024442', '2021-05-20'),
|
|
233
|
+
(100150, 'Jeanette', 'Wood', '825 Tiffany Burg, East Andre, AK 95774', 'New York', 'New York', '10000', 'Mexico', 'CLUB', 34, 'LOW', 'female', 'Pharmacist', 'widowed', 'Frequent buyer of bike accessories', 'Northeast', 'TER-0016', 5, '961.414.9070x557', '358-15-3087', '2239185922705882', '2020-07-11'),
|
|
234
|
+
(100151, 'Alex', 'Hicks', '0576 Michael Estates Suite 317, New Jamiemouth, IN 57205', 'Los Angeles', 'California', '10001', 'Mexico', 'CLUB', 23, 'LOW', 'NA', 'Teacher', 'other', 'Looking for e-bikes', 'Northeast', 'TER-0022', 4, '+1-692-883-2307', '821-55-3058', '2296111109196943', '2022-11-18'),
|
|
235
|
+
(100152, 'Elizabeth', 'Murphy', '91142 Mills Fort Suite 420, Smithtown, MO 34430', 'Chicago', 'Illinois', '10002', 'Canada', 'CLUB', 73, 'MEDIUM', 'female', 'Architect', 'married', 'Looking for bike accessories', 'Northeast', 'TER-0030', 8, '+1-912-978-1347x989', '436-65-2370', '2719004041265257', '2022-02-07'),
|
|
236
|
+
(100153, 'Christopher', 'Villanueva', 'USCGC Johnson, FPO AA 30052', 'Houston', 'Texas', '10003', 'Canada', 'AMAZON', 49, 'MEDIUM', 'male', 'Scientist', 'other', 'Frequent buyer of road bikes', 'West', 'TER-0017', 2, '738.858.7346x90107', '519-41-6425', '2286424773088326', '2021-05-24'),
|
|
237
|
+
(100154, 'Susan', 'Duffy', '56245 Brown Court, Lake Brandybury, VT 30070', 'Phoenix', 'Arizona', '10004', 'Mexico', 'CLUB', 23, 'LOW', 'female', 'Pharmacist', 'single', 'Interested in bike sports', 'Northeast', 'TER-0009', 9, '950.365.9410', '250-56-3200', '5272304611468220', '2021-02-28'),
|
|
238
|
+
(100155, 'Bruce', 'Smith', '6988 Diamond Burg, East Colinmouth, IN 32389', 'Philadelphia', 'Pennsylvania', '10005', 'Mexico', 'AMAZON', 36, 'MEDIUM', 'male', 'Doctor', 'married', 'Interested in bike sports', 'West', 'TER-0027', 9, '289-234-4094', '165-01-0955', '5148384406460485', '2020-03-27'),
|
|
239
|
+
(100156, 'Maxwell', 'Holmes', '61258 Gates Lake Apt. 426, Blairville, CO 77559', 'San Antonio', 'Texas', '10006', 'Mexico', 'SHOP', 59, 'MEDIUM', 'NA', 'Accountant', 'widowed', 'Looking for mountain bikes', 'Northeast', 'TER-0013', 10, '001-202-749-0956', '066-71-2992', '2706872139078823', '2022-06-12'),
|
|
240
|
+
(100157, 'Rebecca', 'Roman', '2227 Boyd Isle, Port Kimberly, MH 88969', 'San Diego', 'California', '10007', 'Canada', 'AMAZON', 21, 'HIGH', 'male', 'Lawyer', 'other', 'Prefers mountain bikes', 'Northeast', 'TER-0007', 4, '+1-269-758-4464', '134-91-0696', '5233837533196674', '2020-07-20'),
|
|
241
|
+
(100158, 'John', 'Sanchez', '26145 Beck Avenue Apt. 583, Millerland, MT 39200', 'Dallas', 'Texas', '10008', 'Canada', 'INDIV', 36, 'MEDIUM', 'NA', 'Pilot', 'single', 'Enthusiastic about e-bikes', 'Northeast', 'TER-0009', 2, '+1-306-260-1090x332', '245-40-6743', '2250160587952867', '2023-05-20'),
|
|
242
|
+
(100159, 'Julie', 'Luna', '745 Rodney Drive, North Daniel, CA 93499', 'San Jose', 'California', '10009', 'Mexico', 'CLUB', 15, 'LOW', 'male', 'Scientist', 'widowed', 'Enthusiastic about bike accessories', 'Southeast', 'TER-0017', 2, '(872)661-3827x318', '301-92-5759', '2551353242300889', '2021-05-27'),
|
|
243
|
+
(100160, 'Justin', 'Vang', '432 Amy Green, South Markhaven, ID 75550', 'Austin', 'Texas', '10010', 'Canada', 'SHOP', 62, 'LOW', 'other', 'Chef', 'married', 'Interested in road bikes', 'Southeast', 'TER-0030', 7, '001-469-315-8054', '353-97-2874', '2223448218803326', '2023-01-29'),
|
|
244
|
+
(100161, 'Nicole', 'Ruiz', '501 Frederick Burgs, Brownview, CA 53741', 'Jacksonville', 'Florida', '10011', 'Canada', 'AMAZON', 59, 'MEDIUM', 'NA', 'Pharmacist', 'divorced', 'Prefers e-bikes', 'Northeast', 'TER-0025', 1, '001-270-925-1806', '113-38-5794', '2720370427054186', '2020-11-13'),
|
|
245
|
+
(100162, 'Jason', 'Decker', 'PSC 0909, Box 0081, APO AP 13368', 'Fort Worth', 'Texas', '10012', 'Mexico', 'INDIV', 46, 'MEDIUM', 'male', 'Chef', 'married', 'Interested in bike accessories', 'Midwest', 'TER-0025', 6, '881.287.1861x106', '219-95-6383', '2661347027144261', '2021-01-24'),
|
|
246
|
+
(100163, 'Carl', 'Mitchell', '453 Cunningham Mountains, Duranbury, NM 98492', 'Columbus', 'Ohio', '10013', 'Mexico', 'SHOP', 46, 'LOW', 'other', 'Artist', 'divorced', 'Frequent buyer of mountain bikes', 'Midwest', 'TER-0020', 7, '228-868-2865', '378-03-3498', '2720443123771278', '2020-07-07'),
|
|
247
|
+
(100164, 'Robert', 'Espinoza', '858 Christina Lane Suite 534, East Charles, MH 77265', 'Charlotte', 'North Carolina', '10014', 'Canada', 'INDIV', 38, 'LOW', 'NA', 'Journalist', 'single', 'Interested in bike sports', 'Midwest', 'TER-0024', 7, '980-428-1928x1896', '308-79-1671', '2290885409028080', '2020-08-04'),
|
|
248
|
+
(100165, 'Kelly', 'Elliott', '17169 Silva Junction Suite 813, West David, VI 64858', 'San Francisco', 'California', '10015', 'Mexico', 'CLUB', 31, 'MEDIUM', 'NA', 'Pharmacist', 'divorced', 'Prefers mountain bikes', 'Northeast', 'TER-0003', 10, '001-520-525-9288x5101', '026-70-2563', '2228195392348058', '2020-07-25'),
|
|
249
|
+
(100166, 'Brittany', 'Kline', '3760 Collier Row Apt. 284, Port John, NE 18847', 'Indianapolis', 'Indiana', '10016', 'Mexico', 'INDIV', 13, 'MEDIUM', 'NA', 'Artist', 'other', 'Prefers bike accessories', 'Southwest', 'TER-0017', 10, '(294)434-5830', '749-93-4326', '2444633752279115', '2023-08-24'),
|
|
250
|
+
(100167, 'Adriana', 'Leon', 'Unit 0269 Box 8192, DPO AP 32014', 'Seattle', 'Washington', '10017', 'Mexico', 'SHOP', 45, 'MEDIUM', 'female', 'Architect', 'other', 'Interested in e-bikes', 'Northeast', 'TER-0012', 4, '+1-760-538-2857x05242', '179-38-9532', '5532637922801886', '2023-07-26'),
|
|
251
|
+
(100168, 'Anna', 'Hernandez', 'Unit 7473 Box 9215, DPO AP 13415', 'Denver', 'Colorado', '10018', 'Canada', 'SHOP', 65, 'LOW', 'NA', 'Scientist', 'married', 'Frequent buyer of bike sports', 'West', 'TER-0019', 1, '435-717-4580x591', '532-82-5491', '2273153592041902', '2021-03-16'),
|
|
252
|
+
(100169, 'Linda', 'Macias', '8206 Scott Island Apt. 047, Kellyshire, ID 68208', 'Washington', 'DC', '10019', 'Canada', 'AMAZON', 49, 'MEDIUM', 'male', 'Teacher', 'married', 'Looking for bike sports', 'Southwest', 'TER-0026', 7, '+1-967-370-6507x50077', '205-14-9966', '5413717648390796', '2020-10-16'),
|
|
253
|
+
(100170, 'Max', 'Rodgers', '03647 Ashley Cove Apt. 831, Benjaminberg, OK 83808', 'Boston', 'Massachusetts', '10020', 'Canada', 'INDIV', 58, 'MEDIUM', 'male', 'Artist', 'single', 'Interested in e-bikes', 'Midwest', 'TER-0027', 4, '+1-910-878-7498x801', '264-26-9359', '2298185483737496', '2020-07-22'),
|
|
254
|
+
(100171, 'Paul', 'Miller', '50583 Michael Passage Apt. 424, Buckshire, GA 35071', 'El Paso', 'Texas', '10021', 'Canada', 'INDIV', 25, 'LOW', 'other', 'Scientist', 'other', 'Enthusiastic about bike sports', 'Southeast', 'TER-0025', 5, '+1-261-744-6702x192', '477-72-6945', '2277297603686373', '2022-03-13'),
|
|
255
|
+
(100172, 'Jamie', 'Hines', '122 Danny Spur Apt. 443, Lake Christopherland, NV 30101', 'Nashville', 'Tennessee', '10022', 'Mexico', 'CLUB', 66, 'MEDIUM', 'NA', 'Journalist', 'divorced', 'Looking for road bikes', 'Southwest', 'TER-0027', 10, '+1-981-616-0813x6552', '003-76-9079', '5452044577440407', '2021-06-12'),
|
|
256
|
+
(100173, 'Alexis', 'Martinez', '686 Duncan Prairie Suite 565, Danielfort, AZ 49726', 'Detroit', 'Michigan', '10023', 'Mexico', 'INDIV', 47, 'HIGH', 'male', 'Pilot', 'single', 'Interested in e-bikes', 'Southeast', 'TER-0011', 1, '001-881-974-3124x52627', '103-06-2351', '2287555548845349', '2021-01-09'),
|
|
257
|
+
(100174, 'Eugene', 'Brown', '4334 Lopez Row Apt. 757, Kimborough, NE 01336', 'Oklahoma City', 'Oklahoma', '10024', 'USA', 'CLUB', 76, 'MEDIUM', 'other', 'Pilot', 'other', 'Looking for bike sports', 'West', 'TER-0005', 10, '(993)706-3003', '283-99-2763', '2258830192855257', '2020-08-30'),
|
|
258
|
+
(100175, 'David', 'Washington', '931 Cynthia Lakes, Port Angelamouth, CA 83500', 'Portland', 'Oregon', '10025', 'Mexico', 'AMAZON', 30, 'LOW', 'female', 'Software Developer', 'single', 'Prefers mountain bikes', 'Midwest', 'TER-0018', 3, '001-430-323-7592', '670-83-9356', '2258179143230404', '2021-11-06'),
|
|
259
|
+
(100176, 'Christopher', 'Scott', '0452 Jennifer Causeway Suite 547, West Darrenchester, PA 16272', 'Las Vegas', 'Nevada', '10026', 'Mexico', 'INDIV', 46, 'HIGH', 'female', 'Nurse', 'single', 'Looking for e-bikes', 'Southeast', 'TER-0016', 9, '(914)474-5181', '095-85-1140', '2246454944430452', '2022-12-26'),
|
|
260
|
+
(100177, 'Daniel', 'Vance', '34946 Flynn Club, Port Levifort, CT 84076', 'Memphis', 'Tennessee', '10027', 'Mexico', 'INDIV', 76, 'MEDIUM', 'female', 'Veterinarian', 'other', 'Enthusiastic about bike sports', 'Northeast', 'TER-0018', 6, '001-688-934-5851x71420', '563-10-5314', '2247001310045361', '2021-12-12'),
|
|
261
|
+
(100178, 'Margaret', 'Strickland', '95750 Elizabeth Ridge Apt. 647, Danielchester, MT 54266', 'Louisville', 'Kentucky', '10028', 'Mexico', 'INDIV', 15, 'LOW', 'other', 'Accountant', 'married', 'Interested in bike accessories', 'Northeast', 'TER-0028', 8, '(280)553-4594x55836', '850-15-2680', '2298454128448707', '2020-10-17'),
|
|
262
|
+
(100179, 'Brandon', 'Palmer', '438 Martin Estate, Martinland, TN 64931', 'Baltimore', 'Maryland', '10029', 'Mexico', 'AMAZON', 28, 'HIGH', 'other', 'Software Developer', 'married', 'Looking for bike sports', 'Midwest', 'TER-0028', 5, '(257)982-0895x609', '840-13-4351', '2234340346458221', '2020-07-26'),
|
|
263
|
+
(100180, 'Cindy', 'Peters', '4092 Phillips Courts, Martinhaven, SD 84191', 'New York', 'New York', '10000', 'Canada', 'INDIV', 58, 'LOW', 'male', 'Engineer', 'widowed', 'Prefers bike accessories', 'Midwest', 'TER-0023', 4, '(252)803-1660x982', '419-20-3235', '2290575213803790', '2020-04-06'),
|
|
264
|
+
(100181, 'Philip', 'Nixon', '061 Michael Vista, Sabrinaland, RI 45303', 'Los Angeles', 'California', '10001', 'Canada', 'CLUB', 44, 'HIGH', 'NA', 'Chef', 'divorced', 'Looking for bike sports', 'Southeast', 'TER-0028', 6, '+1-693-753-4330x82315', '140-88-3139', '2720137831584730', '2023-07-17'),
|
|
265
|
+
(100182, 'Tiffany', 'Hubbard', '51473 Mark Trail Apt. 925, Lake Kelliborough, DC 40527', 'Chicago', 'Illinois', '10002', 'Canada', 'AMAZON', 31, 'LOW', 'female', 'Doctor', 'married', 'Interested in bike sports', 'Southwest', 'TER-0004', 4, '+1-566-311-6987x2730', '215-12-6622', '2630496812664377', '2022-01-23'),
|
|
266
|
+
(100183, 'April', 'Hayes', '97643 Benjamin Hill Apt. 146, Bryanmouth, VI 28504', 'Houston', 'Texas', '10003', 'Canada', 'INDIV', 23, 'MEDIUM', 'male', 'Accountant', 'other', 'Looking for mountain bikes', 'Southeast', 'TER-0022', 6, '607.382.7242x75924', '520-68-1473', '5516159167267830', '2021-10-15'),
|
|
267
|
+
(100184, 'Douglas', 'Sanchez', '307 James Burg Suite 207, New Jean, CA 88273', 'Phoenix', 'Arizona', '10004', 'Canada', 'CLUB', 35, 'MEDIUM', 'female', 'Pilot', 'widowed', 'Interested in road bikes', 'Southwest', 'TER-0014', 9, '332-544-5952', '228-40-0310', '2464572522298358', '2022-08-25'),
|
|
268
|
+
(100185, 'Benjamin', 'Kennedy', '58749 Bethany Ferry, North Steven, AS 84483', 'Philadelphia', 'Pennsylvania', '10005', 'USA', 'INDIV', 38, 'MEDIUM', 'male', 'Scientist', 'widowed', 'Interested in road bikes', 'Southwest', 'TER-0020', 7, '(631)532-2911x708', '751-85-1527', '2720805513917358', '2021-02-20'),
|
|
269
|
+
(100186, 'Tami', 'Bautista', '5380 Rita Lights Suite 190, Simpsonbury, KS 23765', 'San Antonio', 'Texas', '10006', 'USA', 'INDIV', 50, 'LOW', 'NA', 'Accountant', 'single', 'Enthusiastic about mountain bikes', 'Southeast', 'TER-0006', 2, '945.721.6835x34758', '635-85-9871', '2257273306353045', '2022-07-24'),
|
|
270
|
+
(100187, 'Lori', 'Sharp', '898 Kelly Bypass, Gabriellafort, WY 97319', 'San Diego', 'California', '10007', 'USA', 'AMAZON', 64, 'HIGH', 'female', 'Architect', 'single', 'Interested in e-bikes', 'Northeast', 'TER-0009', 1, '001-959-491-9663', '722-32-6526', '2720061387025114', '2020-11-14'),
|
|
271
|
+
(100188, 'Stephanie', 'Thompson', '78842 Rodriguez Roads, Lake Richardmouth, CT 40674', 'Dallas', 'Texas', '10008', 'Canada', 'SHOP', 47, 'HIGH', 'NA', 'Pharmacist', 'single', 'Interested in road bikes', 'West', 'TER-0025', 7, '5272115082', '729-36-2780', '2233449732333186', '2023-09-10'),
|
|
272
|
+
(100189, 'Shane', 'Anderson', 'USNS Franco, FPO AA 66307', 'San Jose', 'California', '10009', 'Canada', 'AMAZON', 27, 'LOW', 'other', 'Veterinarian', 'widowed', 'Enthusiastic about bike sports', 'West', 'TER-0029', 4, '(268)942-8772x0816', '840-48-5763', '2254904198222269', '2022-12-05'),
|
|
273
|
+
(100190, 'Melissa', 'Bennett', '31053 Rebecca Rapid, Carrieberg, CO 07837', 'Austin', 'Texas', '10010', 'Canada', 'CLUB', 48, 'LOW', 'female', 'Artist', 'widowed', 'Looking for e-bikes', 'Southwest', 'TER-0029', 1, '(506)323-1437', '255-82-8327', '2278230596474530', '2020-05-15'),
|
|
274
|
+
(100191, 'David', 'Pierce', 'PSC 8622, Box 3172, APO AA 20424', 'Jacksonville', 'Florida', '10011', 'Mexico', 'CLUB', 11, 'MEDIUM', 'male', 'Artist', 'widowed', 'Looking for e-bikes', 'Midwest', 'TER-0023', 4, '+1-717-214-4693', '799-71-2547', '5245703844392137', '2023-03-12'),
|
|
275
|
+
(100192, 'Duane', 'Flores', '58355 Bush Drive Suite 114, Port Ann, FL 32525', 'Fort Worth', 'Texas', '10012', 'USA', 'SHOP', 51, 'LOW', 'male', 'Veterinarian', 'married', 'Frequent buyer of bike sports', 'Midwest', 'TER-0016', 6, '3859092184', '284-20-6343', '2720336446499637', '2020-06-17'),
|
|
276
|
+
(100193, 'Jeffrey', 'Wilson', '061 Tiffany Wells Suite 030, Peggybury, WV 85161', 'Columbus', 'Ohio', '10013', 'USA', 'CLUB', 48, 'LOW', 'male', 'Software Developer', 'married', 'Interested in road bikes', 'Midwest', 'TER-0001', 4, '001-846-414-7445', '279-45-8285', '2720617692726355', '2021-07-14'),
|
|
277
|
+
(100194, 'Katherine', 'Joyce', '747 Jones Orchard, South Paulastad, VI 47548', 'Charlotte', 'North Carolina', '10014', 'Canada', 'SHOP', 75, 'LOW', 'female', 'Doctor', 'other', 'Interested in e-bikes', 'Southwest', 'TER-0001', 6, '001-439-882-5205x65149', '324-33-4264', '2222270911417159', '2023-02-27'),
|
|
278
|
+
(100195, 'Daniel', 'Johnson', '30518 Smith Path Suite 151, South Josephhaven, MI 22358', 'San Francisco', 'California', '10015', 'USA', 'AMAZON', 72, 'HIGH', 'female', 'Lawyer', 'widowed', 'Looking for bike accessories', 'West', 'TER-0019', 6, '+1-545-987-7518', '163-62-4878', '2285312238529409', '2022-12-27'),
|
|
279
|
+
(100196, 'Mary', 'Pearson', 'USNV Underwood, FPO AA 24600', 'Indianapolis', 'Indiana', '10016', 'USA', 'INDIV', 22, 'LOW', 'NA', 'Pilot', 'divorced', 'Interested in road bikes', 'Northeast', 'TER-0019', 7, '883.879.1068x57758', '795-07-4253', '2369808676280735', '2023-08-22'),
|
|
280
|
+
(100197, 'Krystal', 'Kane', '391 Kristin Plains, Randymouth, MP 27698', 'Seattle', 'Washington', '10017', 'USA', 'SHOP', 59, 'HIGH', 'other', 'Nurse', 'divorced', 'Interested in bike accessories', 'Southeast', 'TER-0019', 6, '001-386-603-0734x04653', '032-24-5533', '5401970894507902', '2022-06-03'),
|
|
281
|
+
(100198, 'Emily', 'Bender', 'PSC 7061, Box 4792, APO AA 83226', 'Denver', 'Colorado', '10018', 'Mexico', 'AMAZON', 78, 'HIGH', 'other', 'Veterinarian', 'married', 'Interested in bike sports', 'West', 'TER-0001', 10, '569-732-4592x80318', '207-67-2400', '2720521714726551', '2020-04-05'),
|
|
282
|
+
(100199, 'James', 'Crane', '0791 Cook Plains, East Theresafort, MN 97330', 'Washington', 'DC', '10019', 'USA', 'AMAZON', 54, 'LOW', 'male', 'Artist', 'divorced', 'Enthusiastic about mountain bikes', 'West', 'TER-0006', 7, '+1-556-428-1764x03099', '141-73-3683', '2503499244763803', '2023-03-23'),
|
|
283
|
+
(100200, 'Stephen', 'Morrow', 'USS Morales, FPO AE 49541', 'Boston', 'Massachusetts', '10020', 'Canada', 'CLUB', 71, 'MEDIUM', 'NA', 'Architect', 'divorced', 'Frequent buyer of bike sports', 'Southeast', 'TER-0025', 8, '(678)860-1517', '489-25-4552', '2714126575323122', '2020-09-24'),
|
|
284
|
+
(100201, 'Christine', 'Cross', '788 Sarah Springs, North Antoniomouth, NH 94881', 'El Paso', 'Texas', '10021', 'USA', 'SHOP', 53, 'HIGH', 'other', 'Architect', 'divorced', 'Frequent buyer of mountain bikes', 'Midwest', 'TER-0028', 1, '(676)382-8277x00080', '153-75-0216', '5455536328685799', '2023-04-13'),
|
|
285
|
+
(100202, 'Henry', 'Nichols', '435 Chandler Drive, West Devin, NY 52433', 'Nashville', 'Tennessee', '10022', 'USA', 'SHOP', 20, 'HIGH', 'other', 'Lawyer', 'widowed', 'Prefers bike sports', 'Southwest', 'TER-0028', 2, '899.754.3529', '462-41-9659', '2711647980127058', '2023-03-05'),
|
|
286
|
+
(100203, 'Heather', 'Silva', '7167 James Inlet, New Jamestown, WA 95802', 'Detroit', 'Michigan', '10023', 'USA', 'INDIV', 71, 'MEDIUM', 'other', 'Nurse', 'widowed', 'Looking for mountain bikes', 'Northeast', 'TER-0030', 4, '(366)939-2722x2963', '353-51-7692', '2503447939523818', '2022-05-30'),
|
|
287
|
+
(100204, 'Matthew', 'Mendoza', '574 Benjamin Ferry Apt. 368, Lake Joshua, ND 51661', 'Oklahoma City', 'Oklahoma', '10024', 'Canada', 'SHOP', 11, 'MEDIUM', 'female', 'Chef', 'single', 'Looking for bike sports', 'Southwest', 'TER-0027', 7, '001-950-555-4262x28352', '374-73-4539', '2285903792283431', '2022-06-10'),
|
|
288
|
+
(100205, 'Jay', 'Jacobs', '99358 Levi Stravenue Suite 421, South Crystal, FL 43944', 'Portland', 'Oregon', '10025', 'Mexico', 'INDIV', 49, 'MEDIUM', 'female', 'Teacher', 'married', 'Enthusiastic about bike sports', 'Northeast', 'TER-0008', 6, '(933)429-9714x5929', '290-97-7010', '2360966246153599', '2022-02-05'),
|
|
289
|
+
(100206, 'Marc', 'Turner', '005 Thompson Rue, Lake Joshuaport, MP 83626', 'Las Vegas', 'Nevada', '10026', 'Mexico', 'SHOP', 40, 'MEDIUM', 'male', 'Doctor', 'other', 'Interested in bike sports', 'Midwest', 'TER-0005', 9, '+1-484-433-8844', '519-61-7351', '2299424141030526', '2023-01-19'),
|
|
290
|
+
(100207, 'Gregory', 'Lee', '266 Kennedy Flats Suite 232, North Chelseamouth, GU 75896', 'Memphis', 'Tennessee', '10027', 'Canada', 'INDIV', 30, 'HIGH', 'female', 'Doctor', 'single', 'Looking for mountain bikes', 'Midwest', 'TER-0011', 7, '9036648080', '692-47-0626', '2593236509806666', '2020-01-19'),
|
|
291
|
+
(100208, 'Nicole', 'Jennings', '038 Oliver Plaza Apt. 248, East Michael, WY 77763', 'Louisville', 'Kentucky', '10028', 'Mexico', 'CLUB', 16, 'MEDIUM', 'male', 'Architect', 'divorced', 'Prefers bike accessories', 'Northeast', 'TER-0022', 1, '(496)760-9542', '339-48-7163', '5571239527958377', '2023-05-18'),
|
|
292
|
+
(100209, 'Kristen', 'Harper', '80275 William Burg Apt. 882, Whitakerfort, FM 35879', 'Baltimore', 'Maryland', '10029', 'Canada', 'INDIV', 21, 'MEDIUM', 'male', 'Pharmacist', 'single', 'Enthusiastic about road bikes', 'Midwest', 'TER-0012', 2, '682.604.3622', '578-43-5294', '2720614166967953', '2021-03-10'),
|
|
293
|
+
(100210, 'Samantha', 'Cochran', '2177 Claudia Landing, East Emilystad, TX 67397', 'New York', 'New York', '10000', 'USA', 'CLUB', 51, 'MEDIUM', 'female', 'Engineer', 'single', 'Enthusiastic about mountain bikes', 'Midwest', 'TER-0016', 8, '(995)462-5712x351', '326-10-8031', '2586948138463094', '2023-08-25'),
|
|
294
|
+
(100211, 'James', 'Brown', '11903 Linda Walks, Millerstad, VI 01256', 'Los Angeles', 'California', '10001', 'Canada', 'SHOP', 11, 'HIGH', 'other', 'Nurse', 'widowed', 'Interested in bike accessories', 'Midwest', 'TER-0022', 9, '951.715.9280x531', '192-91-3862', '5469649050393575', '2020-12-21'),
|
|
295
|
+
(100212, 'Megan', 'Valencia', '728 Erica Pines Suite 792, Scottburgh, IN 09385', 'Chicago', 'Illinois', '10002', 'USA', 'AMAZON', 77, 'MEDIUM', 'NA', 'Pilot', 'other', 'Frequent buyer of road bikes', 'Midwest', 'TER-0028', 8, '402.414.6207x7217', '891-68-3158', '5352703962410009', '2023-04-08'),
|
|
296
|
+
(100213, 'Bridget', 'Walls', '672 Ashley Trail Apt. 461, Nelsonville, SC 31633', 'Houston', 'Texas', '10003', 'Canada', 'SHOP', 52, 'HIGH', 'NA', 'Teacher', 'other', 'Enthusiastic about bike sports', 'West', 'TER-0017', 8, '+1-393-503-9530', '452-14-3908', '2267225621109898', '2023-09-04'),
|
|
297
|
+
(100214, 'Melissa', 'Mathews', '7506 Smith Lodge Suite 152, Terrytown, RI 48304', 'Phoenix', 'Arizona', '10004', 'Mexico', 'INDIV', 16, 'HIGH', 'other', 'Software Developer', 'married', 'Prefers bike accessories', 'West', 'TER-0024', 8, '001-610-668-6701x37406', '239-64-9722', '2275127406042841', '2022-08-24'),
|
|
298
|
+
(100215, 'Michael', 'Malone', '775 Giles Ridge, Port David, MI 42488', 'Philadelphia', 'Pennsylvania', '10005', 'Mexico', 'AMAZON', 29, 'HIGH', 'male', 'Chef', 'widowed', 'Frequent buyer of road bikes', 'Southwest', 'TER-0004', 10, '567.691.2296', '165-42-9555', '2222564500608560', '2022-07-02'),
|
|
299
|
+
(100216, 'Calvin', 'Maddox', '4889 Miller Port, Johnbury, PR 95100', 'San Antonio', 'Texas', '10006', 'Canada', 'INDIV', 40, 'HIGH', 'male', 'Accountant', 'widowed', 'Prefers road bikes', 'Midwest', 'TER-0007', 6, '865-230-8131', '506-75-7686', '2239596209262712', '2020-04-02'),
|
|
300
|
+
(100217, 'Matthew', 'Ellis', '8270 Torres Shores, Hughesport, WI 15468', 'San Diego', 'California', '10007', 'Canada', 'INDIV', 56, 'HIGH', 'female', 'Software Developer', 'single', 'Enthusiastic about mountain bikes', 'Southwest', 'TER-0014', 10, '(549)609-3858x4757', '575-50-5001', '2401954156520610', '2021-07-26'),
|
|
301
|
+
(100218, 'Gregory', 'Bryant', '1234 Gerald Tunnel, North Stephen, WI 58791', 'Dallas', 'Texas', '10008', 'USA', 'INDIV', 64, 'MEDIUM', 'other', 'Accountant', 'other', 'Interested in e-bikes', 'Southeast', 'TER-0029', 4, '001-448-356-6299', '248-85-7096', '2508841217116342', '2020-06-21'),
|
|
302
|
+
(100219, 'Allen', 'White', '8289 Perez Stravenue Apt. 803, North Alyssa, MS 06135', 'San Jose', 'California', '10009', 'Canada', 'SHOP', 20, 'LOW', 'male', 'Veterinarian', 'married', 'Looking for bike sports', 'Midwest', 'TER-0011', 1, '(634)215-4853x679', '090-22-4831', '2228394952853843', '2022-12-29'),
|
|
303
|
+
(100220, 'Thomas', 'Jackson', '21966 Melissa Estate, New Nichole, AR 38221', 'Austin', 'Texas', '10010', 'Canada', 'AMAZON', 16, 'LOW', 'other', 'Doctor', 'single', 'Frequent buyer of road bikes', 'Midwest', 'TER-0010', 3, '+1-323-926-4177x5769', '835-56-8225', '2242643439378408', '2021-08-24'),
|
|
304
|
+
(100221, 'Christina', 'Murillo', '87189 Adams Keys Suite 430, West Alexandraton, PR 33728', 'Jacksonville', 'Florida', '10011', 'USA', 'INDIV', 52, 'HIGH', 'other', 'Teacher', 'divorced', 'Interested in road bikes', 'Southwest', 'TER-0007', 9, '821.964.5519', '054-55-6619', '5159352867806443', '2021-12-10'),
|
|
305
|
+
(100222, 'Tracy', 'Price', '383 Jason Rue Apt. 599, Lake Kimberlyland, CT 80009', 'Fort Worth', 'Texas', '10012', 'Mexico', 'SHOP', 45, 'HIGH', 'NA', 'Teacher', 'single', 'Enthusiastic about e-bikes', 'West', 'TER-0020', 10, '001-348-648-6869x617', '192-52-0549', '2705950985372481', '2021-09-29'),
|
|
306
|
+
(100223, 'Larry', 'Hanson', '24505 Johnson Row, Masonberg, OH 67196', 'Columbus', 'Ohio', '10013', 'Mexico', 'AMAZON', 72, 'HIGH', 'female', 'Pharmacist', 'divorced', 'Enthusiastic about bike accessories', 'Northeast', 'TER-0020', 8, '723.781.4213x849', '701-01-6450', '5423895740589107', '2020-05-10'),
|
|
307
|
+
(100224, 'Sandy', 'Perez', '5300 Colleen Valleys Apt. 117, East Jenniferside, NE 07311', 'Charlotte', 'North Carolina', '10014', 'Canada', 'SHOP', 65, 'MEDIUM', 'NA', 'Veterinarian', 'other', 'Interested in bike accessories', 'Southwest', 'TER-0003', 10, '452-355-6622x4668', '530-41-1521', '2243480746071726', '2023-02-06'),
|
|
308
|
+
(100225, 'Robert', 'Baker', '3321 Joseph Well Suite 892, Alexaborough, PR 92874', 'San Francisco', 'California', '10015', 'USA', 'INDIV', 47, 'MEDIUM', 'female', 'Software Developer', 'married', 'Interested in road bikes', 'Southeast', 'TER-0004', 8, '(973)200-6510', '433-32-3226', '2299789656345885', '2021-04-13'),
|
|
309
|
+
(100226, 'Monica', 'Moody', '89174 Thompson Creek Suite 289, Port Christinebury, UT 08805', 'Indianapolis', 'Indiana', '10016', 'Canada', 'AMAZON', 60, 'MEDIUM', 'female', 'Accountant', 'divorced', 'Prefers road bikes', 'Southeast', 'TER-0021', 10, '633.297.2413x39552', '618-59-4911', '2262186681709685', '2022-02-02'),
|
|
310
|
+
(100227, 'Kathleen', 'Cook', '39023 Kristin Cape, New Amanda, AL 72575', 'Seattle', 'Washington', '10017', 'Canada', 'CLUB', 64, 'LOW', 'female', 'Pharmacist', 'divorced', 'Enthusiastic about bike accessories', 'Southeast', 'TER-0022', 6, '459.872.3951', '203-61-3579', '5538780184199773', '2022-04-06'),
|
|
311
|
+
(100228, 'Robert', 'Padilla', '7966 Anthony Club, East Brian, FL 40634', 'Denver', 'Colorado', '10018', 'Mexico', 'INDIV', 41, 'LOW', 'NA', 'Pilot', 'married', 'Interested in bike sports', 'Northeast', 'TER-0030', 1, '(262)483-2881x31923', '302-02-2975', '2242422174443804', '2021-10-20'),
|
|
312
|
+
(100229, 'Sara', 'Newton', 'Unit 3813 Box 2640, DPO AE 58006', 'Washington', 'DC', '10019', 'Mexico', 'SHOP', 16, 'LOW', 'NA', 'Accountant', 'single', 'Looking for e-bikes', 'Midwest', 'TER-0019', 9, '340-436-2815', '768-98-0814', '2294124279006752', '2021-10-23'),
|
|
313
|
+
(100230, 'Edward', 'Smith', '186 Owens Mountain Apt. 390, East Brettfort, MO 48982', 'Boston', 'Massachusetts', '10020', 'Canada', 'CLUB', 49, 'LOW', 'other', 'Veterinarian', 'other', 'Prefers bike accessories', 'West', 'TER-0029', 6, '+1-849-799-8575x20904', '235-93-4989', '2273334720174290', '2021-08-01'),
|
|
314
|
+
(100231, 'Thomas', 'Hunt', '32347 Williams Isle, North Andrew, WA 56636', 'El Paso', 'Texas', '10021', 'USA', 'SHOP', 43, 'MEDIUM', 'other', 'Scientist', 'other', 'Looking for road bikes', 'Southwest', 'TER-0023', 2, '+1-766-817-5129x89087', '898-65-5942', '5463875186010124', '2023-08-10'),
|
|
315
|
+
(100232, 'Jamie', 'Coleman', '849 Jacob Road Apt. 528, Lake Oliviaview, NC 93200', 'Nashville', 'Tennessee', '10022', 'Canada', 'AMAZON', 43, 'HIGH', 'female', 'Accountant', 'widowed', 'Enthusiastic about mountain bikes', 'Northeast', 'TER-0010', 5, '441.529.1823x849', '690-56-7961', '2230949986263552', '2020-04-27'),
|
|
316
|
+
(100233, 'Dustin', 'Villanueva', '01228 Eric Dale, Timothyhaven, IA 96209', 'Detroit', 'Michigan', '10023', 'Canada', 'SHOP', 75, 'LOW', 'other', 'Teacher', 'married', 'Frequent buyer of road bikes', 'Southwest', 'TER-0026', 5, '001-456-669-1707x080', '782-52-7906', '2709551689408849', '2022-04-11'),
|
|
317
|
+
(100234, 'Stephanie', 'Brock', '377 Christopher Ports Apt. 976, New Joe, KY 16583', 'Oklahoma City', 'Oklahoma', '10024', 'USA', 'CLUB', 73, 'LOW', 'NA', 'Software Developer', 'married', 'Prefers bike accessories', 'West', 'TER-0008', 10, '001-364-703-5871x88874', '631-21-7733', '5222055141099981', '2021-07-20'),
|
|
318
|
+
(100235, 'Jenny', 'Johnson', 'USCGC Guerrero, FPO AP 08024', 'Portland', 'Oregon', '10025', 'Mexico', 'INDIV', 31, 'LOW', 'other', 'Engineer', 'widowed', 'Enthusiastic about road bikes', 'Southwest', 'TER-0018', 10, '630-916-8336x72826', '258-87-1149', '5514494635533816', '2020-02-18'),
|
|
319
|
+
(100236, 'Alyssa', 'Bentley', '6818 Edwards Curve Suite 960, East Mackenziestad, CA 03472', 'Las Vegas', 'Nevada', '10026', 'USA', 'INDIV', 60, 'MEDIUM', 'NA', 'Pharmacist', 'married', 'Prefers bike accessories', 'Midwest', 'TER-0022', 5, '001-267-413-4182x0812', '636-05-1930', '2288181835249001', '2022-04-21'),
|
|
320
|
+
(100237, 'Larry', 'Cruz', '356 Rodriguez Grove, Melissaside, MS 24341', 'Memphis', 'Tennessee', '10027', 'USA', 'SHOP', 22, 'MEDIUM', 'female', 'Lawyer', 'single', 'Looking for bike accessories', 'Midwest', 'TER-0018', 8, '+1-843-305-2358x848', '615-14-3131', '2691574599742016', '2023-06-22'),
|
|
321
|
+
(100238, 'Bridget', 'Palmer', '60751 Andrea Bridge Apt. 174, Valdezville, AK 84595', 'Louisville', 'Kentucky', '10028', 'USA', 'CLUB', 62, 'MEDIUM', 'NA', 'Architect', 'divorced', 'Frequent buyer of road bikes', 'Midwest', 'TER-0017', 5, '579.295.1016', '538-45-6367', '2272069254229711', '2023-04-19'),
|
|
322
|
+
(100239, 'William', 'Turner', '57991 Katherine Oval Apt. 884, Whitechester, MH 96038', 'Baltimore', 'Maryland', '10029', 'Mexico', 'SHOP', 57, 'HIGH', 'female', 'Accountant', 'widowed', 'Enthusiastic about bike sports', 'Midwest', 'TER-0011', 1, '603.223.5131', '200-19-2485', '2299945071124954', '2021-12-14'),
|
|
323
|
+
(100240, 'Terri', 'Potter', '54987 Norman Cape, Ryanmouth, HI 09491', 'New York', 'New York', '10000', 'Mexico', 'INDIV', 40, 'MEDIUM', 'male', 'Architect', 'divorced', 'Prefers bike accessories', 'Midwest', 'TER-0002', 2, '748.667.6036', '888-74-0967', '5544218908612708', '2020-03-14'),
|
|
324
|
+
(100241, 'David', 'Bell', '4263 Adam Court, Port Lauraport, KS 75153', 'Los Angeles', 'California', '10001', 'Canada', 'CLUB', 10, 'HIGH', 'female', 'Pilot', 'married', 'Enthusiastic about bike sports', 'Northeast', 'TER-0020', 1, '8312755811', '112-06-1238', '5440198594390204', '2021-04-11'),
|
|
325
|
+
(100242, 'Amanda', 'Macdonald', '71309 Vargas Run, Kevinbury, GA 65011', 'Chicago', 'Illinois', '10002', 'Canada', 'SHOP', 67, 'HIGH', 'other', 'Accountant', 'divorced', 'Interested in bike sports', 'Northeast', 'TER-0028', 6, '470-419-2171', '724-21-7558', '2240702743902279', '2020-09-27'),
|
|
326
|
+
(100243, 'Lisa', 'Ramos', '8622 Smith Greens Apt. 703, Dunnchester, LA 40178', 'Houston', 'Texas', '10003', 'USA', 'CLUB', 80, 'HIGH', 'male', 'Lawyer', 'other', 'Interested in road bikes', 'Midwest', 'TER-0015', 7, '809-322-8185x64820', '033-71-7164', '2701685532555154', '2023-04-15'),
|
|
327
|
+
(100244, 'Jimmy', 'Boone', '8257 Burke Key, Gutierrezville, NH 79353', 'Phoenix', 'Arizona', '10004', 'Mexico', 'SHOP', 30, 'MEDIUM', 'male', 'Pharmacist', 'divorced', 'Interested in mountain bikes', 'Southeast', 'TER-0023', 6, '(913)513-5130x55432', '346-77-4016', '2391334173659448', '2021-12-25'),
|
|
328
|
+
(100245, 'Katrina', 'James', '53247 Chaney Creek, West Rachelbury, IN 17893', 'Philadelphia', 'Pennsylvania', '10005', 'Canada', 'CLUB', 58, 'MEDIUM', 'other', 'Lawyer', 'widowed', 'Prefers bike sports', 'Southeast', 'TER-0006', 3, '(909)409-2119x54518', '668-86-1064', '2273459797181447', '2023-04-29'),
|
|
329
|
+
(100246, 'Alice', 'Jacobs', 'Unit 0270 Box 6827, DPO AP 72599', 'San Antonio', 'Texas', '10006', 'Mexico', 'AMAZON', 72, 'HIGH', 'female', 'Scientist', 'other', 'Enthusiastic about e-bikes', 'Midwest', 'TER-0004', 5, '5867803186', '497-36-9637', '2334184389541074', '2021-05-24'),
|
|
330
|
+
(100247, 'Jerry', 'Phillips', 'Unit 8763 Box 9292, DPO AA 19300', 'San Diego', 'California', '10007', 'Mexico', 'CLUB', 35, 'MEDIUM', 'female', 'Architect', 'married', 'Frequent buyer of bike sports', 'Northeast', 'TER-0022', 7, '3008697685', '862-24-5559', '2290521261794028', '2021-09-01'),
|
|
331
|
+
(100248, 'James', 'Powell', '668 Madeline Parkway Suite 900, Lake Elizabeth, NE 66850', 'Dallas', 'Texas', '10008', 'USA', 'SHOP', 29, 'HIGH', 'NA', 'Journalist', 'single', 'Frequent buyer of road bikes', 'Northeast', 'TER-0008', 5, '2104066092', '271-71-0035', '2277990401431394', '2023-07-10'),
|
|
332
|
+
(100249, 'Amy', 'Jones', 'Unit 5323 Box 4991, DPO AA 14844', 'San Jose', 'California', '10009', 'Mexico', 'CLUB', 13, 'MEDIUM', 'male', 'Engineer', 'widowed', 'Enthusiastic about e-bikes', 'Northeast', 'TER-0019', 5, '(211)719-9344x324', '243-37-6690', '2282677868030289', '2020-07-30'),
|
|
333
|
+
(100250, 'Andrew', 'Ware', '0120 Chad Stream, West Janet, GA 70552', 'Austin', 'Texas', '10010', 'USA', 'INDIV', 62, 'HIGH', 'NA', 'Chef', 'married', 'Frequent buyer of road bikes', 'West', 'TER-0018', 1, '(414)731-8038x428', '410-92-5540', '2223424209988087', '2020-02-20'),
|
|
334
|
+
(100251, 'Timothy', 'Ingram', 'USCGC French, FPO AP 94583', 'Jacksonville', 'Florida', '10011', 'Mexico', 'SHOP', 63, 'HIGH', 'other', 'Artist', 'married', 'Looking for bike accessories', 'Midwest', 'TER-0020', 6, '001-383-771-2144x1555', '024-61-4057', '2716478007075764', '2022-12-01'),
|
|
335
|
+
(100252, 'Matthew', 'Mata', '431 Walsh Grove Suite 234, Johnsonbury, IN 45919', 'Fort Worth', 'Texas', '10012', 'USA', 'AMAZON', 41, 'LOW', 'NA', 'Architect', 'other', 'Looking for road bikes', 'Northeast', 'TER-0003', 7, '661-302-0552x879', '585-29-2807', '2280894311929387', '2020-05-08'),
|
|
336
|
+
(100253, 'Kimberly', 'Martinez', '64397 Mcdaniel Prairie, Carolside, MD 49152', 'Columbus', 'Ohio', '10013', 'Canada', 'INDIV', 70, 'LOW', 'male', 'Teacher', 'widowed', 'Interested in mountain bikes', 'West', 'TER-0015', 10, '381.430.7567', '683-15-4880', '2654583946843778', '2023-04-15'),
|
|
337
|
+
(100254, 'Lisa', 'Gonzalez', '152 Valentine Passage Apt. 325, North Christy, GU 76471', 'Charlotte', 'North Carolina', '10014', 'USA', 'SHOP', 18, 'HIGH', 'NA', 'Pilot', 'divorced', 'Interested in road bikes', 'Northeast', 'TER-0013', 7, '001-930-534-4359x04839', '558-01-2338', '2259793360430239', '2022-04-11'),
|
|
338
|
+
(100255, 'Robin', 'Todd', '303 Maria Vista, New Amyville, OK 78739', 'San Francisco', 'California', '10015', 'USA', 'CLUB', 28, 'LOW', 'male', 'Pharmacist', 'other', 'Interested in mountain bikes', 'Northeast', 'TER-0001', 10, '(952)926-4933', '825-44-8166', '2283964901057068', '2023-08-01'),
|
|
339
|
+
(100256, 'Kathy', 'Wyatt', '6414 Williams Isle, Jenningsland, ID 47191', 'Indianapolis', 'Indiana', '10016', 'USA', 'AMAZON', 23, 'LOW', 'other', 'Lawyer', 'single', 'Looking for mountain bikes', 'Northeast', 'TER-0009', 9, '(418)502-5316x235', '414-75-4121', '2336173202025892', '2021-10-25'),
|
|
340
|
+
(100257, 'Jose', 'Mccarthy', '215 Wilkinson Estate Apt. 504, North Josephberg, GU 38897', 'Seattle', 'Washington', '10017', 'Canada', 'SHOP', 20, 'LOW', 'female', 'Pharmacist', 'widowed', 'Interested in bike accessories', 'Southwest', 'TER-0008', 6, '3403879060', '564-32-4221', '2513460175959339', '2021-02-22'),
|
|
341
|
+
(100258, 'Katherine', 'Thomas', '820 Daniel Corner Apt. 674, Port Jonathan, KS 49527', 'Denver', 'Colorado', '10018', 'Mexico', 'INDIV', 28, 'LOW', 'female', 'Journalist', 'widowed', 'Looking for bike sports', 'Northeast', 'TER-0015', 1, '7646585305', '451-10-3290', '5226902334379348', '2022-02-28'),
|
|
342
|
+
(100259, 'Alicia', 'Paul', '0419 Lee Estate, South Angela, MI 56827', 'Washington', 'DC', '10019', 'Mexico', 'INDIV', 43, 'LOW', 'female', 'Pharmacist', 'other', 'Enthusiastic about mountain bikes', 'Southeast', 'TER-0029', 6, '570.282.1964x0118', '437-20-4470', '5469735974597068', '2023-08-03'),
|
|
343
|
+
(100260, 'Melissa', 'Alexander', '61437 Price Ville Apt. 331, Samanthaburgh, OR 98704', 'Boston', 'Massachusetts', '10020', 'USA', 'CLUB', 32, 'MEDIUM', 'NA', 'Teacher', 'widowed', 'Frequent buyer of bike accessories', 'Southwest', 'TER-0023', 1, '964.713.1245x18936', '425-05-4008', '5431371534189959', '2021-07-20'),
|
|
344
|
+
(100261, 'Eric', 'Mclaughlin', '5391 King Island Apt. 099, Port Brittanymouth, NJ 76041', 'El Paso', 'Texas', '10021', 'USA', 'CLUB', 77, 'LOW', 'male', 'Chef', 'single', 'Looking for bike accessories', 'Southeast', 'TER-0028', 6, '(555)963-5220', '237-23-4237', '2292252562548487', '2022-01-31'),
|
|
345
|
+
(100262, 'Sarah', 'Harris', '854 Donna Skyway, Victorstad, MT 99693', 'Nashville', 'Tennessee', '10022', 'Mexico', 'SHOP', 43, 'HIGH', 'other', 'Pilot', 'other', 'Prefers road bikes', 'Midwest', 'TER-0012', 1, '001-740-741-1552x497', '290-31-4339', '2233236493117779', '2021-12-16'),
|
|
346
|
+
(100263, 'Sean', 'Taylor', '478 Collins Center Apt. 795, Samanthaport, WV 87572', 'Detroit', 'Michigan', '10023', 'Mexico', 'CLUB', 22, 'HIGH', 'other', 'Journalist', 'single', 'Prefers mountain bikes', 'Northeast', 'TER-0008', 6, '753-655-0870x9671', '355-36-7016', '2468758289879805', '2022-08-10'),
|
|
347
|
+
(100264, 'Michele', 'Powell', '0767 Nelson Dam Suite 815, North Clifford, IA 85564', 'Oklahoma City', 'Oklahoma', '10024', 'Mexico', 'CLUB', 23, 'MEDIUM', 'NA', 'Doctor', 'single', 'Enthusiastic about road bikes', 'Midwest', 'TER-0027', 7, '484-593-2358x9471', '789-89-4093', '2624366016704493', '2020-01-12'),
|
|
348
|
+
(100265, 'John', 'Morrison', '09536 Alan Port Suite 026, Malloryland, FM 63000', 'Portland', 'Oregon', '10025', 'Mexico', 'AMAZON', 15, 'HIGH', 'male', 'Chef', 'married', 'Looking for bike sports', 'West', 'TER-0023', 5, '+1-697-574-3662x767', '788-04-6918', '5225355681051948', '2022-03-12'),
|
|
349
|
+
(100266, 'Michelle', 'Dunn', '355 Zachary Mill, Lake Erinfort, CO 82464', 'Las Vegas', 'Nevada', '10026', 'Mexico', 'CLUB', 37, 'HIGH', 'NA', 'Pharmacist', 'married', 'Looking for bike sports', 'Southwest', 'TER-0018', 10, '216.277.1247x3129', '746-66-1617', '2435698540736206', '2021-02-15'),
|
|
350
|
+
(100267, 'Amy', 'Pearson', '348 Angela Stream Suite 384, Lake Tamara, IN 08611', 'Memphis', 'Tennessee', '10027', 'Mexico', 'SHOP', 66, 'LOW', 'female', 'Lawyer', 'married', 'Enthusiastic about mountain bikes', 'Southwest', 'TER-0025', 10, '(922)554-9718', '203-85-7715', '2712672858062871', '2021-03-26'),
|
|
351
|
+
(100268, 'Courtney', 'Hopkins', '93779 Cruz Mountain, North Kimberly, VT 72587', 'Louisville', 'Kentucky', '10028', 'Canada', 'SHOP', 65, 'MEDIUM', 'other', 'Lawyer', 'married', 'Prefers e-bikes', 'Southeast', 'TER-0010', 7, '001-630-235-6498x0320', '547-37-5431', '2654631826735455', '2022-10-14'),
|
|
352
|
+
(100269, 'Angela', 'Morton', '321 Christine Freeway, Cohenshire, PR 66609', 'Baltimore', 'Maryland', '10029', 'Canada', 'CLUB', 74, 'MEDIUM', 'NA', 'Pilot', 'divorced', 'Looking for bike accessories', 'Southeast', 'TER-0006', 7, '459-355-4697', '022-71-3345', '2257758684756033', '2021-08-01'),
|
|
353
|
+
(100270, 'Kathleen', 'Barber', '515 Aaron Village, Matthewchester, CT 77036', 'New York', 'New York', '10000', 'USA', 'AMAZON', 28, 'HIGH', 'NA', 'Pharmacist', 'other', 'Looking for bike sports', 'Southeast', 'TER-0030', 1, '897-497-3442x632', '433-82-6003', '2714733211147912', '2020-11-24'),
|
|
354
|
+
(100271, 'Benjamin', 'Clark', '0784 James Brooks, North Natalie, ME 72815', 'Los Angeles', 'California', '10001', 'USA', 'INDIV', 58, 'LOW', 'NA', 'Journalist', 'other', 'Interested in mountain bikes', 'Northeast', 'TER-0015', 8, '+1-295-843-9044x69363', '865-76-5202', '5228652583034932', '2021-05-22'),
|
|
355
|
+
(100272, 'Alexa', 'Thomas', '71501 John Circles Suite 350, West Emilyside, KY 84942', 'Chicago', 'Illinois', '10002', 'USA', 'AMAZON', 49, 'HIGH', 'female', 'Scientist', 'married', 'Looking for road bikes', 'Northeast', 'TER-0030', 1, '566.883.5443x503', '341-66-4776', '2720322558131788', '2020-01-24'),
|
|
356
|
+
(100273, 'Heather', 'Gibson', '849 Davis Corner, Port Jackfurt, RI 48571', 'Houston', 'Texas', '10003', 'Canada', 'SHOP', 60, 'HIGH', 'male', 'Accountant', 'single', 'Interested in e-bikes', 'West', 'TER-0006', 1, '200-474-2476x9382', '434-65-0077', '2251260400551976', '2020-05-25'),
|
|
357
|
+
(100274, 'Shannon', 'Small', '5252 John Station Apt. 457, Newmanhaven, PR 14266', 'Phoenix', 'Arizona', '10004', 'USA', 'SHOP', 66, 'MEDIUM', 'male', 'Engineer', 'divorced', 'Frequent buyer of bike accessories', 'Southeast', 'TER-0016', 6, '7269757356', '330-01-2156', '2706421856891354', '2023-01-28'),
|
|
358
|
+
(100275, 'Jamie', 'Johnson', '083 Rice Camp, Vaughnstad, MS 68169', 'Philadelphia', 'Pennsylvania', '10005', 'Mexico', 'AMAZON', 48, 'LOW', 'NA', 'Artist', 'married', 'Enthusiastic about mountain bikes', 'Midwest', 'TER-0012', 7, '(513)838-3564x66333', '703-30-6299', '2699708349977504', '2020-10-03'),
|
|
359
|
+
(100276, 'Patricia', 'Nelson', '338 Turner Extensions, South Hannah, VA 61570', 'San Antonio', 'Texas', '10006', 'Mexico', 'INDIV', 62, 'MEDIUM', 'male', 'Software Developer', 'married', 'Prefers bike accessories', 'Northeast', 'TER-0026', 2, '964-549-9776x303', '318-22-9866', '2260098975628178', '2023-07-06'),
|
|
360
|
+
(100277, 'Nicole', 'Hernandez', '9426 Michael Mills Apt. 244, West Pamela, NC 74905', 'San Diego', 'California', '10007', 'USA', 'INDIV', 49, 'HIGH', 'NA', 'Doctor', 'divorced', 'Prefers bike accessories', 'Southeast', 'TER-0005', 3, '871-504-7703x218', '891-25-2558', '2273844673099484', '2022-01-02'),
|
|
361
|
+
(100278, 'Monica', 'Brooks', 'USNS Fisher, FPO AE 56540', 'Dallas', 'Texas', '10008', 'Canada', 'SHOP', 11, 'LOW', 'NA', 'Accountant', 'widowed', 'Frequent buyer of bike sports', 'Southeast', 'TER-0017', 10, '001-859-851-2492', '308-73-9853', '5373615842130034', '2022-07-30'),
|
|
362
|
+
(100279, 'Gregory', 'Small', '803 Freeman Mount, North Anthonymouth, OH 84937', 'San Jose', 'California', '10009', 'Canada', 'AMAZON', 79, 'HIGH', 'NA', 'Engineer', 'widowed', 'Interested in mountain bikes', 'Southwest', 'TER-0020', 3, '+1-217-492-9706x893', '607-16-0791', '2266922331723171', '2021-12-02'),
|
|
363
|
+
(100280, 'Travis', 'Sloan', '70034 Wong Union, North Glenda, PA 46308', 'Austin', 'Texas', '10010', 'Canada', 'SHOP', 49, 'LOW', 'female', 'Pilot', 'married', 'Prefers road bikes', 'Southwest', 'TER-0026', 3, '+1-739-727-3147x594', '040-50-7345', '5132856631529968', '2021-11-08'),
|
|
364
|
+
(100281, 'Jennifer', 'Coleman', '01826 Jeffery Park Suite 151, Nicoleton, NC 73813', 'Jacksonville', 'Florida', '10011', 'Canada', 'INDIV', 32, 'MEDIUM', 'female', 'Pilot', 'married', 'Enthusiastic about road bikes', 'Southwest', 'TER-0010', 6, '386-845-3238', '447-64-2954', '2239749397329773', '2022-04-09'),
|
|
365
|
+
(100282, 'Andrea', 'Hill', '48627 Mathew Course, West Christinahaven, PR 02330', 'Fort Worth', 'Texas', '10012', 'USA', 'SHOP', 50, 'HIGH', 'other', 'Pilot', 'widowed', 'Frequent buyer of bike sports', 'West', 'TER-0018', 10, '9792211050', '653-87-9774', '2223533579621043', '2020-09-17'),
|
|
366
|
+
(100283, 'Joshua', 'Mcfarland', '1245 Levi Valley, East Curtishaven, MN 61426', 'Columbus', 'Ohio', '10013', 'USA', 'INDIV', 63, 'LOW', 'female', 'Journalist', 'divorced', 'Frequent buyer of bike accessories', 'Southwest', 'TER-0005', 6, '+1-426-501-5328x968', '367-34-3081', '2700214271246718', '2022-07-18'),
|
|
367
|
+
(100284, 'Alex', 'Gardner', '9476 Knapp Road Apt. 475, New Joshuafort, NJ 87922', 'Charlotte', 'North Carolina', '10014', 'Canada', 'CLUB', 74, 'HIGH', 'male', 'Teacher', 'widowed', 'Interested in mountain bikes', 'Southwest', 'TER-0016', 3, '344-618-2562', '012-09-5241', '2263717604438405', '2021-11-25'),
|
|
368
|
+
(100285, 'Erin', 'Ramirez', '92547 Taylor Street, New Sabrinatown, OK 50403', 'San Francisco', 'California', '10015', 'Canada', 'AMAZON', 79, 'HIGH', 'male', 'Pilot', 'widowed', 'Enthusiastic about bike accessories', 'Midwest', 'TER-0022', 3, '(893)388-7469x40685', '609-91-0238', '2230862768536980', '2020-12-12'),
|
|
369
|
+
(100286, 'Richard', 'Perkins', '89777 Hamilton Springs Suite 360, South Erica, OH 31102', 'Indianapolis', 'Indiana', '10016', 'USA', 'SHOP', 38, 'HIGH', 'female', 'Artist', 'divorced', 'Prefers mountain bikes', 'Southeast', 'TER-0008', 7, '481-769-9054x02540', '426-55-8091', '5192130474578236', '2023-07-17'),
|
|
370
|
+
(100287, 'James', 'Gutierrez', '8077 Baldwin Island, New Michael, RI 37524', 'Seattle', 'Washington', '10017', 'Canada', 'INDIV', 23, 'HIGH', 'female', 'Doctor', 'other', 'Enthusiastic about bike sports', 'Midwest', 'TER-0002', 7, '5444121887', '521-04-5164', '5402776346722794', '2022-09-04'),
|
|
371
|
+
(100288, 'Rebecca', 'Buchanan', 'PSC 7478, Box 6656, APO AP 14666', 'Denver', 'Colorado', '10018', 'Mexico', 'AMAZON', 22, 'HIGH', 'female', 'Engineer', 'widowed', 'Enthusiastic about bike sports', 'Southeast', 'TER-0017', 1, '(860)241-7764', '842-48-3488', '2254195808299512', '2023-08-13'),
|
|
372
|
+
(100289, 'Michele', 'Lloyd', '002 Douglas Path, Chapmanfurt, PR 12489', 'Washington', 'DC', '10019', 'USA', 'INDIV', 47, 'HIGH', 'other', 'Engineer', 'single', 'Enthusiastic about e-bikes', 'Southeast', 'TER-0030', 3, '001-281-601-7559', '356-71-2741', '2251608920958701', '2022-06-28'),
|
|
373
|
+
(100290, 'Russell', 'Williams', 'USS Wilson, FPO AP 36381', 'Boston', 'Massachusetts', '10020', 'Mexico', 'SHOP', 22, 'HIGH', 'other', 'Scientist', 'married', 'Looking for mountain bikes', 'West', 'TER-0001', 4, '769.493.7972x667', '470-51-0304', '2276895737295978', '2022-09-29'),
|
|
374
|
+
(100291, 'Richard', 'Bass', '6398 Timothy Bridge, Heatherside, VA 96084', 'El Paso', 'Texas', '10021', 'Canada', 'AMAZON', 80, 'HIGH', 'male', 'Scientist', 'married', 'Enthusiastic about e-bikes', 'Southwest', 'TER-0023', 1, '906-629-7570x394', '018-26-9755', '5108267072961829', '2022-04-11'),
|
|
375
|
+
(100292, 'Gail', 'Mcdonald', '76554 Anthony Course Suite 966, New Kenneth, RI 58806', 'Nashville', 'Tennessee', '10022', 'Mexico', 'AMAZON', 71, 'LOW', 'female', 'Pharmacist', 'divorced', 'Enthusiastic about bike sports', 'West', 'TER-0027', 4, '733-535-4528', '367-83-6888', '5141616353418256', '2023-05-08'),
|
|
376
|
+
(100293, 'John', 'Williams', '139 George Island, Ericbury, AL 07796', 'Detroit', 'Michigan', '10023', 'Canada', 'SHOP', 11, 'MEDIUM', 'NA', 'Scientist', 'other', 'Frequent buyer of bike sports', 'Southwest', 'TER-0021', 1, '878-613-8564', '523-20-2439', '2260263129983198', '2021-08-30'),
|
|
377
|
+
(100294, 'Kelly', 'Carlson', '37109 Davis Stream Suite 199, Sandratown, IL 26232', 'Oklahoma City', 'Oklahoma', '10024', 'Canada', 'INDIV', 39, 'HIGH', 'male', 'Teacher', 'divorced', 'Frequent buyer of road bikes', 'Midwest', 'TER-0017', 8, '+1-766-268-1160x590', '473-41-2773', '2720110741271383', '2021-03-20'),
|
|
378
|
+
(100295, 'Mark', 'Hamilton', 'Unit 7455 Box 3891, DPO AP 42926', 'Portland', 'Oregon', '10025', 'Canada', 'INDIV', 32, 'LOW', 'female', 'Engineer', 'other', 'Interested in bike sports', 'Northeast', 'TER-0003', 6, '2664195815', '677-78-6576', '2704004107912443', '2023-02-28'),
|
|
379
|
+
(100296, 'Annette', 'Lewis', '1953 Anthony Overpass, New Ronaldborough, NH 69655', 'Las Vegas', 'Nevada', '10026', 'Canada', 'INDIV', 32, 'MEDIUM', 'other', 'Journalist', 'divorced', 'Prefers bike sports', 'Midwest', 'TER-0009', 7, '804.560.3043', '857-60-7565', '2245925831360267', '2020-04-01'),
|
|
380
|
+
(100297, 'Cynthia', 'Lloyd', '58646 Brent Gardens Suite 377, Amberton, AK 48785', 'Memphis', 'Tennessee', '10027', 'Canada', 'CLUB', 55, 'LOW', 'NA', 'Chef', 'married', 'Prefers road bikes', 'Midwest', 'TER-0021', 10, '981-627-9718x9696', '660-66-3860', '2264893170037001', '2020-07-07'),
|
|
381
|
+
(100298, 'Pamela', 'Brewer', '755 Amanda Streets Suite 610, West Cherylmouth, TN 17841', 'Louisville', 'Kentucky', '10028', 'USA', 'INDIV', 11, 'LOW', 'male', 'Artist', 'single', 'Looking for e-bikes', 'Southwest', 'TER-0007', 6, '001-749-906-5147x6479', '861-59-4500', '5518322304673413', '2023-03-05'),
|
|
382
|
+
(100299, 'Sandra', 'Coleman', '2819 Castro Ports Suite 379, Gilesland, NJ 83678', 'Baltimore', 'Maryland', '10029', 'Mexico', 'AMAZON', 26, 'LOW', 'female', 'Pilot', 'other', 'Enthusiastic about road bikes', 'West', 'TER-0008', 4, '(223)822-3694x3519', '406-51-8744', '2230560392894250', '2020-11-20'),
|
|
383
|
+
(100300, 'Michelle', 'Schwartz', 'PSC 8674, Box 0058, APO AA 28528', 'New York', 'New York', '10000', 'Canada', 'AMAZON', 24, 'MEDIUM', 'other', 'Artist', 'other', 'Enthusiastic about bike accessories', 'Midwest', 'TER-0008', 4, '001-382-877-7625', '362-84-4691', '2231410470457027', '2021-10-26'),
|
|
384
|
+
(100301, 'Edward', 'Chen', '618 Bailey Club, East Jennytown, DC 36169', 'Los Angeles', 'California', '10001', 'Mexico', 'SHOP', 36, 'LOW', 'NA', 'Doctor', 'other', 'Enthusiastic about bike accessories', 'Southwest', 'TER-0010', 3, '+1-234-727-1280', '886-22-0526', '5494704975606418', '2022-10-15'),
|
|
385
|
+
(100302, 'Noah', 'White', '79815 Robert Forks, East David, NE 22169', 'Chicago', 'Illinois', '10002', 'USA', 'SHOP', 57, 'LOW', 'female', 'Software Developer', 'widowed', 'Enthusiastic about road bikes', 'Southwest', 'TER-0020', 10, '001-933-924-2376x5817', '371-93-7578', '2239071276427739', '2023-01-05'),
|
|
386
|
+
(100303, 'Kristin', 'Carlson', '9293 Paul Station, East Jack, WI 00557', 'Houston', 'Texas', '10003', 'USA', 'CLUB', 52, 'MEDIUM', 'other', 'Lawyer', 'other', 'Enthusiastic about bike sports', 'West', 'TER-0003', 9, '902-628-1290', '041-88-3647', '2235092106617814', '2020-09-26'),
|
|
387
|
+
(100304, 'Michelle', 'Robinson', '98538 Ortiz Trail Suite 945, Ginamouth, NY 37778', 'Phoenix', 'Arizona', '10004', 'Canada', 'SHOP', 59, 'MEDIUM', 'male', 'Pharmacist', 'married', 'Looking for mountain bikes', 'Northeast', 'TER-0019', 1, '801.530.2232x72613', '248-38-6465', '2311373692117782', '2020-10-17'),
|
|
388
|
+
(100305, 'Claudia', 'Mcintyre', 'USNS Pace, FPO AP 15442', 'Philadelphia', 'Pennsylvania', '10005', 'Mexico', 'AMAZON', 37, 'MEDIUM', 'male', 'Accountant', 'widowed', 'Interested in e-bikes', 'West', 'TER-0008', 1, '+1-899-740-7156', '528-20-1725', '2254151141082461', '2022-10-30'),
|
|
389
|
+
(100306, 'Adam', 'Pearson', '07128 Emily Junctions Suite 387, Milesfort, PW 35255', 'San Antonio', 'Texas', '10006', 'Mexico', 'CLUB', 66, 'HIGH', 'male', 'Journalist', 'married', 'Interested in bike sports', 'Southeast', 'TER-0019', 4, '+1-773-431-8977', '835-10-1677', '2438147874969824', '2022-06-13'),
|
|
390
|
+
(100307, 'Samantha', 'Sherman', '28665 Miller Mountains Apt. 302, East Haley, MO 34863', 'San Diego', 'California', '10007', 'USA', 'INDIV', 31, 'MEDIUM', 'male', 'Software Developer', 'widowed', 'Enthusiastic about mountain bikes', 'West', 'TER-0003', 10, '001-781-461-5031', '829-10-3427', '2272898144214966', '2021-11-05'),
|
|
391
|
+
(100308, 'Dawn', 'Wright', '527 King Green, Port Angel, NH 07113', 'Dallas', 'Texas', '10008', 'USA', 'CLUB', 35, 'MEDIUM', 'male', 'Teacher', 'other', 'Frequent buyer of e-bikes', 'Midwest', 'TER-0016', 6, '+1-538-395-2415x6289', '585-11-9007', '2566766020532055', '2021-11-21'),
|
|
392
|
+
(100309, 'Christie', 'Brewer', 'PSC 3277, Box 8984, APO AP 02712', 'San Jose', 'California', '10009', 'Canada', 'SHOP', 64, 'LOW', 'female', 'Software Developer', 'widowed', 'Looking for mountain bikes', 'Northeast', 'TER-0030', 9, '001-451-638-0115x0598', '777-13-1662', '5544511395625369', '2023-07-23'),
|
|
393
|
+
(100310, 'Ashley', 'Garcia', '349 Salas Rue Apt. 649, Port Judithtown, MA 21125', 'Austin', 'Texas', '10010', 'Mexico', 'AMAZON', 11, 'HIGH', 'other', 'Teacher', 'divorced', 'Enthusiastic about e-bikes', 'Southwest', 'TER-0009', 9, '367-280-9511', '656-16-6893', '2268315096984773', '2022-01-06'),
|
|
394
|
+
(100311, 'Shannon', 'Cummings', '9803 Jessica Lakes, South Kaylaland, AZ 84337', 'Jacksonville', 'Florida', '10011', 'Canada', 'INDIV', 78, 'LOW', 'female', 'Journalist', 'married', 'Frequent buyer of bike accessories', 'West', 'TER-0022', 1, '705-933-6591x776', '833-32-3580', '2707351524531729', '2021-08-08'),
|
|
395
|
+
(100312, 'Teresa', 'Roberts', '71435 Ryan Island, Melanieport, FL 24716', 'Fort Worth', 'Texas', '10012', 'Canada', 'CLUB', 67, 'MEDIUM', 'female', 'Lawyer', 'widowed', 'Prefers bike accessories', 'Southwest', 'TER-0005', 8, '(788)533-9376', '494-26-1339', '5448891761435909', '2022-08-10'),
|
|
396
|
+
(100313, 'David', 'Henderson', 'Unit 1500 Box 3692, DPO AE 68414', 'Columbus', 'Ohio', '10013', 'Mexico', 'CLUB', 57, 'LOW', 'female', 'Teacher', 'widowed', 'Enthusiastic about bike accessories', 'West', 'TER-0024', 2, '001-235-699-6538x433', '780-93-3679', '2245349550076014', '2022-04-18'),
|
|
397
|
+
(100314, 'Paige', 'Garrison', '656 Vega Lights Suite 613, Andersonberg, OR 09785', 'Charlotte', 'North Carolina', '10014', 'Canada', 'AMAZON', 46, 'MEDIUM', 'female', 'Scientist', 'married', 'Interested in mountain bikes', 'Southeast', 'TER-0028', 8, '515-964-6083x768', '147-95-9623', '2699533825600341', '2022-09-29'),
|
|
398
|
+
(100315, 'Lucas', 'Rodriguez', '01784 Richard Stream, Lake Michael, IA 16311', 'San Francisco', 'California', '10015', 'Mexico', 'INDIV', 65, 'HIGH', 'female', 'Pharmacist', 'single', 'Looking for bike sports', 'West', 'TER-0008', 1, '824-381-1459', '207-67-3747', '5436987366010149', '2020-06-16'),
|
|
399
|
+
(100316, 'Samuel', 'Villanueva', '071 Lucero Avenue, New Leslie, SC 34980', 'Indianapolis', 'Indiana', '10016', 'USA', 'SHOP', 63, 'HIGH', 'female', 'Software Developer', 'single', 'Looking for road bikes', 'Southwest', 'TER-0026', 8, '3873441318', '628-93-0311', '5347888603060061', '2022-08-14'),
|
|
400
|
+
(100317, 'John', 'Bailey', '0041 Donna Mission Apt. 030, Pamelaport, NJ 18668', 'Seattle', 'Washington', '10017', 'USA', 'INDIV', 46, 'MEDIUM', 'other', 'Lawyer', 'other', 'Prefers bike accessories', 'Southeast', 'TER-0026', 8, '(803)805-0409x05190', '822-71-9847', '2703126977553808', '2020-11-23'),
|
|
401
|
+
(100318, 'Victor', 'Hodge', '44927 Sherman Avenue, Brooketon, GU 99368', 'Denver', 'Colorado', '10018', 'USA', 'CLUB', 37, 'LOW', 'male', 'Chef', 'other', 'Looking for road bikes', 'Southeast', 'TER-0020', 7, '9385446453', '302-47-6969', '2580600774692157', '2022-08-08'),
|
|
402
|
+
(100319, 'Joshua', 'Daniel', '77416 Kim Mountains, Bentonstad, SC 80119', 'Washington', 'DC', '10019', 'Canada', 'AMAZON', 48, 'LOW', 'male', 'Architect', 'widowed', 'Looking for mountain bikes', 'Northeast', 'TER-0008', 1, '(710)456-8950', '879-97-6448', '2712790863946571', '2022-08-17'),
|
|
403
|
+
(100320, 'Melissa', 'Howard', '7095 Cummings Estate Apt. 191, Davidstad, FM 16847', 'Boston', 'Massachusetts', '10020', 'Mexico', 'INDIV', 15, 'HIGH', 'female', 'Software Developer', 'other', 'Enthusiastic about e-bikes', 'Northeast', 'TER-0024', 2, '4819640598', '795-22-9733', '5587436467284549', '2020-11-06'),
|
|
404
|
+
(100321, 'Stephanie', 'Wagner', '3054 Jonathan Heights Apt. 777, Hoffmanland, IN 37004', 'El Paso', 'Texas', '10021', 'Canada', 'SHOP', 52, 'HIGH', 'other', 'Doctor', 'widowed', 'Enthusiastic about e-bikes', 'Midwest', 'TER-0002', 6, '(947)862-1442x189', '301-39-5672', '2282461579599738', '2023-08-17'),
|
|
405
|
+
(100322, 'Sarah', 'Miller', '303 Joshua Views, New Connieborough, VI 21022', 'Nashville', 'Tennessee', '10022', 'USA', 'INDIV', 16, 'LOW', 'NA', 'Pharmacist', 'single', 'Enthusiastic about bike sports', 'Midwest', 'TER-0007', 3, '698.259.1953', '389-08-9125', '2270938740722483', '2020-03-25'),
|
|
406
|
+
(100323, 'Nathan', 'Bridges', '58641 William Bypass, New Jonathanborough, NV 94542', 'Detroit', 'Michigan', '10023', 'USA', 'SHOP', 70, 'LOW', 'NA', 'Accountant', 'widowed', 'Enthusiastic about bike accessories', 'Midwest', 'TER-0026', 10, '695-773-2019x604', '279-66-3970', '2494861512917869', '2023-01-02'),
|
|
407
|
+
(100324, 'Greg', 'Johnson', '08669 Walker Mountain, Reyesville, HI 58233', 'Oklahoma City', 'Oklahoma', '10024', 'Canada', 'INDIV', 20, 'LOW', 'NA', 'Architect', 'divorced', 'Prefers bike sports', 'West', 'TER-0007', 3, '001-657-477-7626', '061-22-1482', '2720919897038655', '2020-07-01'),
|
|
408
|
+
(100325, 'Lindsay', 'Rodriguez', '7134 Jordan Rapids, Roberttown, VT 29608', 'Portland', 'Oregon', '10025', 'Canada', 'AMAZON', 15, 'MEDIUM', 'male', 'Artist', 'divorced', 'Looking for bike accessories', 'Northeast', 'TER-0016', 10, '763.607.9769', '544-34-1204', '2261918877959190', '2021-08-31'),
|
|
409
|
+
(100326, 'Katie', 'Jackson', 'Unit 5249 Box 1460, DPO AE 11115', 'Las Vegas', 'Nevada', '10026', 'Mexico', 'CLUB', 64, 'MEDIUM', 'female', 'Teacher', 'married', 'Prefers road bikes', 'Midwest', 'TER-0021', 10, '+1-935-821-9916x511', '001-79-7792', '2320289653589950', '2022-12-12'),
|
|
410
|
+
(100327, 'Robin', 'Franklin', '692 Christopher Underpass Suite 500, South Peter, MI 62109', 'Memphis', 'Tennessee', '10027', 'Mexico', 'INDIV', 43, 'MEDIUM', 'other', 'Nurse', 'divorced', 'Interested in mountain bikes', 'Midwest', 'TER-0015', 9, '+1-341-794-4228x9009', '667-52-8564', '2226892537559886', '2022-10-06'),
|
|
411
|
+
(100328, 'Diane', 'Torres', '9350 Price Shoals Suite 794, Port Christopher, LA 86667', 'Louisville', 'Kentucky', '10028', 'USA', 'SHOP', 32, 'HIGH', 'female', 'Doctor', 'divorced', 'Enthusiastic about road bikes', 'Southeast', 'TER-0018', 4, '(582)448-1225', '840-42-2613', '2329355131807909', '2022-10-03'),
|
|
412
|
+
(100329, 'Amy', 'Sanders', '7329 Stephens Bridge Apt. 625, Theresaport, RI 75450', 'Baltimore', 'Maryland', '10029', 'USA', 'AMAZON', 35, 'HIGH', 'male', 'Doctor', 'other', 'Prefers bike sports', 'Southwest', 'TER-0004', 4, '750.780.1158x5811', '749-96-6178', '2266313769886310', '2021-11-19'),
|
|
413
|
+
(100330, 'Connie', 'Maldonado', 'Unit 8897 Box 2223, DPO AP 57052', 'New York', 'New York', '10000', 'USA', 'CLUB', 27, 'MEDIUM', 'NA', 'Engineer', 'single', 'Frequent buyer of mountain bikes', 'Midwest', 'TER-0016', 1, '870-810-3716x653', '515-20-5543', '2305411086371439', '2021-11-01'),
|
|
414
|
+
(100331, 'Michael', 'Gonzalez', 'USS Turner, FPO AE 31079', 'Los Angeles', 'California', '10001', 'Mexico', 'CLUB', 27, 'MEDIUM', 'female', 'Architect', 'divorced', 'Interested in road bikes', 'Northeast', 'TER-0010', 2, '454-254-8339x2493', '227-17-5465', '2708404810880943', '2022-06-18'),
|
|
415
|
+
(100332, 'Earl', 'Hall', '2974 Jeremy Forks, North Jamesfort, WY 84903', 'Chicago', 'Illinois', '10002', 'Mexico', 'INDIV', 39, 'LOW', 'NA', 'Software Developer', 'divorced', 'Interested in bike sports', 'Southwest', 'TER-0023', 4, '001-709-486-9221', '545-54-1499', '2294895275263386', '2022-06-28'),
|
|
416
|
+
(100333, 'Joseph', 'Brandt', '0251 Garcia Landing Suite 689, South Jessicastad, VT 33396', 'Houston', 'Texas', '10003', 'USA', 'CLUB', 10, 'HIGH', 'female', 'Pharmacist', 'other', 'Prefers road bikes', 'Midwest', 'TER-0013', 8, '001-212-491-0392', '456-67-6042', '5326197313729824', '2022-06-27'),
|
|
417
|
+
(100334, 'Alisha', 'Little', '680 Leach Squares, East Stephanie, IL 47030', 'Phoenix', 'Arizona', '10004', 'USA', 'SHOP', 53, 'MEDIUM', 'NA', 'Veterinarian', 'other', 'Looking for bike accessories', 'Southeast', 'TER-0014', 10, '001-261-909-2900x56165', '869-21-7676', '2294970678885794', '2022-09-02'),
|
|
418
|
+
(100335, 'Matthew', 'Santiago', '47251 Kevin Dale, Lake Scott, NM 94581', 'Philadelphia', 'Pennsylvania', '10005', 'Mexico', 'INDIV', 73, 'HIGH', 'female', 'Chef', 'widowed', 'Looking for bike sports', 'Midwest', 'TER-0021', 5, '574.231.5310', '489-30-2220', '2282807468973543', '2022-09-03'),
|
|
419
|
+
(100336, 'Jeffrey', 'Welch', '441 Riddle Manors, New Monicaview, LA 70055', 'San Antonio', 'Texas', '10006', 'USA', 'SHOP', 38, 'LOW', 'NA', 'Architect', 'married', 'Enthusiastic about bike accessories', 'Southeast', 'TER-0014', 7, '605.642.4416x02078', '062-74-2401', '5134055706411446', '2022-01-11'),
|
|
420
|
+
(100337, 'Stephanie', 'Wilson', '17418 Wright Oval, West Nicholas, PR 90418', 'San Diego', 'California', '10007', 'Mexico', 'INDIV', 38, 'MEDIUM', 'male', 'Teacher', 'other', 'Interested in e-bikes', 'Southeast', 'TER-0026', 8, '928.208.7126', '355-85-2692', '2708872344787489', '2020-08-12'),
|
|
421
|
+
(100338, 'Veronica', 'Ball', '2331 Morris Rest, Port Rachel, AZ 83427', 'Dallas', 'Texas', '10008', 'Canada', 'AMAZON', 76, 'HIGH', 'other', 'Chef', 'single', 'Frequent buyer of bike sports', 'Southeast', 'TER-0025', 4, '001-225-465-6694x82064', '786-98-7709', '2704092956002333', '2021-04-17'),
|
|
422
|
+
(100339, 'Christina', 'Holt', '5882 Lopez Estates, North Jonathan, NY 19739', 'San Jose', 'California', '10009', 'USA', 'CLUB', 73, 'HIGH', 'male', 'Accountant', 'divorced', 'Enthusiastic about mountain bikes', 'Midwest', 'TER-0030', 5, '+1-555-740-4707x9587', '100-77-5709', '2230050894233447', '2023-05-29'),
|
|
423
|
+
(100340, 'Matthew', 'Alvarado', '25715 Timothy Plaza Apt. 545, Alexmouth, FM 26373', 'Austin', 'Texas', '10010', 'Canada', 'INDIV', 16, 'MEDIUM', 'male', 'Journalist', 'widowed', 'Enthusiastic about bike accessories', 'Midwest', 'TER-0026', 3, '+1-953-838-3893x70977', '790-47-3723', '2283165674595959', '2020-03-11'),
|
|
424
|
+
(100341, 'Vernon', 'Brooks', '862 Taylor Brook, East Anthonyview, VI 60819', 'Jacksonville', 'Florida', '10011', 'Mexico', 'CLUB', 61, 'HIGH', 'male', 'Doctor', 'married', 'Looking for bike sports', 'West', 'TER-0024', 4, '925-830-6775x98938', '849-72-9776', '2709433739685728', '2021-11-01'),
|
|
425
|
+
(100342, 'Devon', 'Thomas', 'Unit 1934 Box 9496, DPO AE 52653', 'Fort Worth', 'Texas', '10012', 'Mexico', 'SHOP', 79, 'MEDIUM', 'NA', 'Doctor', 'divorced', 'Interested in bike accessories', 'Southwest', 'TER-0002', 6, '6183086559', '303-18-9107', '5448476548739987', '2022-10-16'),
|
|
426
|
+
(100343, 'David', 'Carter', '2087 Ashley Villages, Doughertymouth, PW 18344', 'Columbus', 'Ohio', '10013', 'USA', 'CLUB', 47, 'HIGH', 'NA', 'Veterinarian', 'divorced', 'Interested in mountain bikes', 'Midwest', 'TER-0009', 5, '001-789-664-3138x9361', '510-91-0487', '5279226204135259', '2022-06-09'),
|
|
427
|
+
(100344, 'Rebekah', 'Pineda', 'USCGC Kerr, FPO AE 03618', 'Charlotte', 'North Carolina', '10014', 'USA', 'CLUB', 33, 'MEDIUM', 'other', 'Scientist', 'divorced', 'Looking for road bikes', 'Northeast', 'TER-0016', 7, '522.400.9288x419', '473-01-0777', '2425498228296751', '2022-03-13'),
|
|
428
|
+
(100345, 'Mark', 'Thomas', '253 Kimberly Village, North Timothyport, ND 85413', 'San Francisco', 'California', '10015', 'USA', 'SHOP', 26, 'MEDIUM', 'male', 'Scientist', 'other', 'Interested in mountain bikes', 'Southwest', 'TER-0021', 7, '(766)218-4033', '170-08-7201', '2266309298018805', '2020-09-22'),
|
|
429
|
+
(100346, 'John', 'Fisher', '54951 Courtney Via, Roberthaven, MS 54428', 'Indianapolis', 'Indiana', '10016', 'USA', 'AMAZON', 20, 'MEDIUM', 'male', 'Chef', 'single', 'Interested in mountain bikes', 'Southeast', 'TER-0014', 7, '+1-405-624-2174', '011-86-2086', '5186569818808759', '2020-10-01'),
|
|
430
|
+
(100347, 'Tommy', 'Kline', '63693 Michele Circle, Morristown, IN 81336', 'Seattle', 'Washington', '10017', 'Canada', 'AMAZON', 50, 'MEDIUM', 'NA', 'Software Developer', 'married', 'Prefers bike sports', 'Northeast', 'TER-0004', 8, '+1-203-488-6012x2338', '327-27-8349', '2449650831782187', '2021-05-19'),
|
|
431
|
+
(100348, 'Kaitlin', 'Clark', '14851 Hansen Crossroad, West Todd, AL 72017', 'Denver', 'Colorado', '10018', 'Canada', 'CLUB', 25, 'LOW', 'male', 'Software Developer', 'single', 'Interested in mountain bikes', 'Northeast', 'TER-0007', 6, '4336518936', '547-12-1563', '2296905004485032', '2020-05-16'),
|
|
432
|
+
(100349, 'Pamela', 'Jones', '55708 Daniels Via Apt. 249, Lake Sallymouth, ID 85219', 'Washington', 'DC', '10019', 'Mexico', 'INDIV', 33, 'HIGH', 'male', 'Pharmacist', 'other', 'Looking for e-bikes', 'Northeast', 'TER-0017', 3, '(408)662-5701', '753-20-7014', '2245045440832422', '2021-07-27'),
|
|
433
|
+
(100350, 'Cameron', 'Armstrong', '30738 Linda Groves, Froststad, UT 71586', 'Boston', 'Massachusetts', '10020', 'USA', 'INDIV', 35, 'LOW', 'NA', 'Journalist', 'married', 'Interested in e-bikes', 'Midwest', 'TER-0021', 8, '286.534.8097', '731-33-6510', '2280511139441375', '2021-07-10'),
|
|
434
|
+
(100351, 'Paula', 'Smith', '497 Huffman Green, Lake Daniel, OR 01655', 'El Paso', 'Texas', '10021', 'Canada', 'SHOP', 72, 'HIGH', 'other', 'Accountant', 'married', 'Looking for mountain bikes', 'Northeast', 'TER-0029', 3, '(826)907-2356x8830', '180-95-8166', '5549366012693869', '2020-07-18'),
|
|
435
|
+
(100352, 'Heidi', 'Marks', '3396 Brown Route Suite 698, New Joseph, PA 76822', 'Nashville', 'Tennessee', '10022', 'Canada', 'CLUB', 71, 'MEDIUM', 'other', 'Teacher', 'single', 'Interested in bike sports', 'Southwest', 'TER-0009', 1, '(808)260-7456x371', '164-91-0031', '2621133034515829', '2023-04-05'),
|
|
436
|
+
(100353, 'Pamela', 'Scott', '325 Bradford Club Suite 274, New Sierra, NV 70548', 'Detroit', 'Michigan', '10023', 'Mexico', 'INDIV', 46, 'LOW', 'NA', 'Engineer', 'widowed', 'Frequent buyer of e-bikes', 'Southeast', 'TER-0030', 9, '367-680-9817x17795', '191-03-1896', '2701125194789205', '2020-11-17'),
|
|
437
|
+
(100354, 'Stacey', 'Morrison', '8167 Alvarez Road, South Colinport, WY 35906', 'Oklahoma City', 'Oklahoma', '10024', 'USA', 'INDIV', 74, 'LOW', 'other', 'Teacher', 'widowed', 'Interested in bike sports', 'Southeast', 'TER-0004', 8, '001-376-210-7149x5301', '368-97-1096', '5501759251445445', '2022-05-22'),
|
|
438
|
+
(100355, 'Edwin', 'Nelson', '20219 Lee Roads Suite 203, Kellyton, MI 05481', 'Portland', 'Oregon', '10025', 'USA', 'CLUB', 46, 'HIGH', 'NA', 'Chef', 'married', 'Prefers mountain bikes', 'West', 'TER-0021', 6, '357.903.5584x9889', '041-77-9633', '2289425717544594', '2022-06-10'),
|
|
439
|
+
(100356, 'Valerie', 'Peterson', 'USCGC Hernandez, FPO AE 17392', 'Las Vegas', 'Nevada', '10026', 'Mexico', 'SHOP', 59, 'HIGH', 'male', 'Veterinarian', 'married', 'Looking for mountain bikes', 'Midwest', 'TER-0029', 3, '001-477-212-1162x9764', '298-67-3106', '2720317391598755', '2022-03-15'),
|
|
440
|
+
(100357, 'Andrea', 'Chaney', '11167 Kelley Crossroad, Lake Normanview, PR 20189', 'Memphis', 'Tennessee', '10027', 'Canada', 'CLUB', 63, 'LOW', 'NA', 'Architect', 'divorced', 'Enthusiastic about bike accessories', 'Southeast', 'TER-0003', 1, '277-494-3404x44066', '257-34-1187', '2224710686373838', '2021-07-22'),
|
|
441
|
+
(100358, 'John', 'Flowers', '90789 Dennis Ferry, New Kaylastad, MT 30106', 'Louisville', 'Kentucky', '10028', 'USA', 'INDIV', 80, 'MEDIUM', 'male', 'Pilot', 'widowed', 'Interested in bike accessories', 'Northeast', 'TER-0029', 1, '431.448.9812x01053', '170-23-3675', '2281542323770633', '2020-08-05'),
|
|
442
|
+
(100359, 'Penny', 'Johnson', '946 Espinoza Via, South Matthewberg, OR 13423', 'Baltimore', 'Maryland', '10029', 'Mexico', 'CLUB', 38, 'LOW', 'other', 'Nurse', 'other', 'Looking for bike accessories', 'West', 'TER-0002', 10, '5726873690', '516-30-2710', '2241968747836230', '2022-01-31'),
|
|
443
|
+
(100360, 'Jason', 'Yang', '079 Henry Valley Apt. 430, South Scott, TX 16137', 'New York', 'New York', '10000', 'Canada', 'SHOP', 14, 'MEDIUM', 'female', 'Veterinarian', 'divorced', 'Interested in e-bikes', 'West', 'TER-0003', 10, '981-770-5209', '274-20-9137', '5372448448717066', '2023-08-25'),
|
|
444
|
+
(100361, 'Amanda', 'Bryant', '329 Buckley Forest Apt. 772, West Jamesburgh, MD 11460', 'Los Angeles', 'California', '10001', 'USA', 'SHOP', 62, 'LOW', 'male', 'Chef', 'widowed', 'Interested in mountain bikes', 'West', 'TER-0023', 8, '+1-756-745-7719x19770', '657-04-7514', '2523202052559974', '2021-09-08'),
|
|
445
|
+
(100362, 'Eddie', 'Webb', '71678 Cunningham Way, Smithville, MH 20301', 'Chicago', 'Illinois', '10002', 'Mexico', 'INDIV', 61, 'MEDIUM', 'female', 'Doctor', 'divorced', 'Interested in e-bikes', 'Midwest', 'TER-0008', 6, '273.655.4846x04834', '361-50-7839', '2646020928528649', '2020-11-24'),
|
|
446
|
+
(100363, 'Victoria', 'Walsh', '1091 Joseph Lakes, North Ericborough, SC 72586', 'Houston', 'Texas', '10003', 'Mexico', 'INDIV', 19, 'MEDIUM', 'female', 'Architect', 'single', 'Frequent buyer of bike accessories', 'Southeast', 'TER-0004', 3, '(740)870-6032x009', '807-21-4319', '2226069691709637', '2022-04-16'),
|
|
447
|
+
(100364, 'Shelby', 'Jefferson', '2656 Gray Shore, Port Aaron, MP 01941', 'Phoenix', 'Arizona', '10004', 'USA', 'SHOP', 43, 'HIGH', 'female', 'Engineer', 'divorced', 'Enthusiastic about road bikes', 'Midwest', 'TER-0013', 3, '(595)802-4935', '111-96-1258', '2229574557405649', '2021-02-20'),
|
|
448
|
+
(100365, 'Elizabeth', 'Vega', '6544 Sweeney Viaduct Suite 028, Kellychester, KY 90751', 'Philadelphia', 'Pennsylvania', '10005', 'Mexico', 'SHOP', 52, 'LOW', 'other', 'Architect', 'single', 'Prefers mountain bikes', 'Southeast', 'TER-0029', 1, '001-567-886-9754x268', '179-75-0498', '5333400466444444', '2023-04-20'),
|
|
449
|
+
(100366, 'Lindsey', 'Matthews', '25527 William Fields Apt. 989, West Daniel, WI 17726', 'San Antonio', 'Texas', '10006', 'USA', 'INDIV', 23, 'MEDIUM', 'female', 'Artist', 'other', 'Interested in bike sports', 'West', 'TER-0006', 8, '857.694.2751', '062-28-5326', '2318023076565105', '2021-08-21'),
|
|
450
|
+
(100367, 'Joel', 'Caldwell', '105 Kenneth Corners, New Tricia, OH 83118', 'San Diego', 'California', '10007', 'USA', 'CLUB', 58, 'LOW', 'NA', 'Engineer', 'married', 'Looking for bike accessories', 'Southwest', 'TER-0021', 4, '204.526.5631x296', '250-27-4975', '2518564892643640', '2020-05-28'),
|
|
451
|
+
(100368, 'Sarah', 'Ward', '605 Matthew Ramp, Lake Toddfort, NH 74195', 'Dallas', 'Texas', '10008', 'Canada', 'CLUB', 63, 'MEDIUM', 'other', 'Nurse', 'married', 'Enthusiastic about bike sports', 'Southeast', 'TER-0026', 8, '486.222.3890', '708-59-9757', '5109133810766145', '2021-05-25'),
|
|
452
|
+
(100369, 'Daniel', 'Nicholson', '180 Tammy Wells, South Tylerborough, GU 92195', 'San Jose', 'California', '10009', 'USA', 'SHOP', 14, 'LOW', 'NA', 'Chef', 'married', 'Interested in road bikes', 'Southeast', 'TER-0005', 2, '(508)238-6454', '016-22-0258', '2235322538977613', '2023-07-09'),
|
|
453
|
+
(100370, 'Lynn', 'Huerta', '83254 Luke Mews Suite 328, Peterbury, VI 72325', 'Austin', 'Texas', '10010', 'Mexico', 'SHOP', 55, 'MEDIUM', 'other', 'Software Developer', 'other', 'Looking for road bikes', 'Southwest', 'TER-0016', 5, '001-670-913-5607', '748-78-9713', '2260609190932607', '2022-06-20'),
|
|
454
|
+
(100371, 'Barbara', 'Frost', '5366 Gonzales Circle, North Brittany, NY 33487', 'Jacksonville', 'Florida', '10011', 'Mexico', 'SHOP', 16, 'LOW', 'female', 'Engineer', 'widowed', 'Looking for bike sports', 'Northeast', 'TER-0003', 8, '001-513-580-7266x00814', '451-38-5663', '2246835823721732', '2020-02-12'),
|
|
455
|
+
(100372, 'Riley', 'Schwartz', '8932 Ellis Creek, Sarahborough, HI 79843', 'Fort Worth', 'Texas', '10012', 'USA', 'SHOP', 21, 'LOW', 'female', 'Scientist', 'married', 'Prefers road bikes', 'Southwest', 'TER-0016', 9, '399-801-1684x15141', '740-43-1394', '2702535404888416', '2022-07-21'),
|
|
456
|
+
(100373, 'Pam', 'Wade', '9837 Young Turnpike Suite 887, West Joseph, MT 23211', 'Columbus', 'Ohio', '10013', 'Canada', 'CLUB', 14, 'HIGH', 'NA', 'Pilot', 'widowed', 'Prefers bike sports', 'Midwest', 'TER-0005', 9, '937-201-3548', '669-95-4091', '2225334145978845', '2022-08-10'),
|
|
457
|
+
(100374, 'Manuel', 'Banks', '4925 Gonzales Brooks, Hernandeztown, AR 38257', 'Charlotte', 'North Carolina', '10014', 'Mexico', 'SHOP', 55, 'MEDIUM', 'other', 'Engineer', 'married', 'Interested in mountain bikes', 'Southeast', 'TER-0001', 3, '001-752-790-7044x657', '433-01-2254', '2252379707623764', '2020-07-07'),
|
|
458
|
+
(100375, 'Connor', 'Ruiz', '23971 Williams Lodge Suite 034, Lake Feliciabury, ME 30578', 'San Francisco', 'California', '10015', 'Mexico', 'AMAZON', 66, 'MEDIUM', 'other', 'Software Developer', 'other', 'Looking for mountain bikes', 'Southwest', 'TER-0002', 6, '(890)483-3026x74948', '848-15-7330', '2678869618166511', '2023-04-27'),
|
|
459
|
+
(100376, 'Travis', 'Aguilar', '99637 Tony Oval, Lake April, MD 51161', 'Indianapolis', 'Indiana', '10016', 'USA', 'INDIV', 56, 'HIGH', 'female', 'Teacher', 'other', 'Looking for e-bikes', 'Southeast', 'TER-0020', 1, '354-815-8539x6304', '861-17-0691', '2271077731768988', '2022-06-05'),
|
|
460
|
+
(100377, 'Adam', 'Hartman', '4615 Cindy Row Suite 623, Hernandezmouth, MT 58011', 'Seattle', 'Washington', '10017', 'Canada', 'AMAZON', 14, 'MEDIUM', 'female', 'Lawyer', 'other', 'Looking for mountain bikes', 'Southwest', 'TER-0017', 7, '(612)970-3414x425', '762-23-1857', '2624966183758048', '2022-03-17'),
|
|
461
|
+
(100378, 'Zachary', 'Boyd', '2163 Sandra Tunnel, Lake Emily, GU 94529', 'Denver', 'Colorado', '10018', 'Mexico', 'AMAZON', 47, 'LOW', 'other', 'Nurse', 'other', 'Looking for bike sports', 'West', 'TER-0030', 3, '454-468-9531x862', '104-57-7962', '2581277086279970', '2021-12-11'),
|
|
462
|
+
(100379, 'Russell', 'Brennan', '512 Fernandez Hills, West John, VA 92214', 'Washington', 'DC', '10019', 'USA', 'INDIV', 80, 'HIGH', 'other', 'Architect', 'other', 'Prefers bike sports', 'Northeast', 'TER-0012', 7, '001-749-866-0215x6919', '551-67-4172', '2273113272300119', '2021-09-04'),
|
|
463
|
+
(100380, 'Elizabeth', 'Cummings', '15458 Berger Circles Suite 686, Danielland, LA 62534', 'Boston', 'Massachusetts', '10020', 'Canada', 'CLUB', 69, 'LOW', 'NA', 'Scientist', 'other', 'Enthusiastic about mountain bikes', 'Southeast', 'TER-0014', 6, '848.914.5119', '623-42-9688', '5265675410469884', '2020-10-11'),
|
|
464
|
+
(100381, 'Teresa', 'Robinson', 'USCGC French, FPO AP 06152', 'El Paso', 'Texas', '10021', 'USA', 'AMAZON', 31, 'MEDIUM', 'other', 'Accountant', 'divorced', 'Prefers e-bikes', 'Midwest', 'TER-0029', 6, '+1-360-522-9829', '819-64-2742', '5140045090223202', '2020-03-20'),
|
|
465
|
+
(100382, 'Leonard', 'Monroe', '3026 Matthew Wall, Huntton, MA 54536', 'Nashville', 'Tennessee', '10022', 'Canada', 'SHOP', 25, 'LOW', 'other', 'Doctor', 'widowed', 'Enthusiastic about road bikes', 'Southwest', 'TER-0010', 9, '7709530244', '098-76-1361', '2284020976730433', '2023-07-29'),
|
|
466
|
+
(100383, 'Michael', 'Rivera', '3997 Vincent Fall, Jimmyburgh, LA 19787', 'Detroit', 'Michigan', '10023', 'USA', 'SHOP', 59, 'MEDIUM', 'female', 'Doctor', 'single', 'Interested in bike sports', 'Southwest', 'TER-0026', 2, '457-625-1204x27022', '162-68-9793', '2431034277981423', '2020-05-09'),
|
|
467
|
+
(100384, 'Richard', 'Reed', '63601 Thomas Loop Suite 392, Keithshire, PW 06065', 'Oklahoma City', 'Oklahoma', '10024', 'Canada', 'INDIV', 16, 'LOW', 'NA', 'Chef', 'other', 'Looking for mountain bikes', 'Midwest', 'TER-0007', 1, '001-269-846-9900x31139', '446-10-0439', '2296794478730887', '2020-02-04'),
|
|
468
|
+
(100385, 'Christopher', 'Yates', '5218 Ellison Fords, Jordanbury, MO 58048', 'Portland', 'Oregon', '10025', 'Mexico', 'SHOP', 61, 'LOW', 'male', 'Veterinarian', 'single', 'Looking for e-bikes', 'Northeast', 'TER-0007', 4, '586.385.6712x574', '217-85-2506', '2617241188331079', '2020-08-10'),
|
|
469
|
+
(100386, 'Michael', 'Sellers', 'PSC 0096, Box 5731, APO AE 04912', 'Las Vegas', 'Nevada', '10026', 'Mexico', 'CLUB', 11, 'LOW', 'male', 'Veterinarian', 'single', 'Interested in bike sports', 'Northeast', 'TER-0009', 9, '433.596.4883', '405-20-7877', '2704144026648890', '2023-08-15'),
|
|
470
|
+
(100387, 'David', 'Raymond', '25612 Mariah Forks, Ortizland, NE 71145', 'Memphis', 'Tennessee', '10027', 'USA', 'INDIV', 17, 'HIGH', 'NA', 'Accountant', 'other', 'Interested in mountain bikes', 'West', 'TER-0019', 4, '877-462-4546x521', '475-33-1596', '2250247882252091', '2020-03-15'),
|
|
471
|
+
(100388, 'Andres', 'Keller', '86128 Jean Walk Suite 685, Gibbsside, MI 08984', 'Louisville', 'Kentucky', '10028', 'USA', 'SHOP', 80, 'MEDIUM', 'male', 'Veterinarian', 'married', 'Frequent buyer of bike accessories', 'West', 'TER-0022', 4, '001-758-225-9154x03077', '456-14-3553', '2646789519439826', '2022-06-21'),
|
|
472
|
+
(100389, 'Crystal', 'Torres', '7913 Daniel Wells Suite 886, North Matthew, PA 36491', 'Baltimore', 'Maryland', '10029', 'Mexico', 'SHOP', 16, 'MEDIUM', 'NA', 'Chef', 'divorced', 'Enthusiastic about e-bikes', 'Southwest', 'TER-0008', 5, '610.866.1119x565', '109-47-8302', '2496113797682802', '2020-02-13'),
|
|
473
|
+
(100390, 'Christina', 'Webb', '949 Neal Pine Apt. 126, Pittmanport, IN 56294', 'New York', 'New York', '10000', 'USA', 'INDIV', 63, 'LOW', 'female', 'Lawyer', 'widowed', 'Prefers road bikes', 'Northeast', 'TER-0022', 4, '(687)210-9454', '663-29-0926', '2248153009700688', '2023-03-25'),
|
|
474
|
+
(100391, 'Zachary', 'Fitzpatrick', '2185 Rodriguez Forest Apt. 389, West Melissa, MD 49847', 'Los Angeles', 'California', '10001', 'Canada', 'AMAZON', 70, 'MEDIUM', 'other', 'Chef', 'single', 'Looking for bike sports', 'West', 'TER-0025', 6, '+1-238-326-8498x174', '303-74-3327', '2290528759771442', '2020-03-18'),
|
|
475
|
+
(100392, 'William', 'Martinez', '35217 Thomas Plaza, South Thomasside, ND 68201', 'Chicago', 'Illinois', '10002', 'USA', 'AMAZON', 28, 'HIGH', 'male', 'Pharmacist', 'other', 'Looking for mountain bikes', 'Midwest', 'TER-0024', 3, '4288400877', '279-52-8385', '2242817854648772', '2022-04-30'),
|
|
476
|
+
(100393, 'Frances', 'Johnson', 'PSC 4200, Box 6676, APO AE 25713', 'Houston', 'Texas', '10003', 'Canada', 'CLUB', 24, 'MEDIUM', 'NA', 'Architect', 'widowed', 'Prefers mountain bikes', 'Southwest', 'TER-0005', 4, '699-444-5201x6960', '392-49-8194', '2501474607709083', '2023-07-11'),
|
|
477
|
+
(100394, 'Carol', 'Morgan', '82786 Mcneil Green Suite 655, Johnport, MA 77333', 'Phoenix', 'Arizona', '10004', 'Mexico', 'CLUB', 68, 'LOW', 'male', 'Teacher', 'married', 'Prefers e-bikes', 'West', 'TER-0014', 10, '+1-451-251-9994', '091-88-9736', '5473868050765939', '2020-11-24'),
|
|
478
|
+
(100395, 'Leah', 'Stewart', '65213 Kim Ranch Apt. 428, East Mikayla, ND 51734', 'Philadelphia', 'Pennsylvania', '10005', 'Canada', 'AMAZON', 80, 'MEDIUM', 'male', 'Nurse', 'other', 'Enthusiastic about mountain bikes', 'Northeast', 'TER-0027', 2, '449.931.5226', '126-09-4259', '2299943551328286', '2022-05-04'),
|
|
479
|
+
(100396, 'Anna', 'Anderson', '3413 Billy Stream Apt. 433, Andersonberg, CO 37744', 'San Antonio', 'Texas', '10006', 'Mexico', 'CLUB', 45, 'HIGH', 'male', 'Journalist', 'other', 'Enthusiastic about mountain bikes', 'Northeast', 'TER-0018', 6, '960.319.0791x7475', '149-13-4905', '2257463725510230', '2023-05-04'),
|
|
480
|
+
(100397, 'Lisa', 'Gonzalez', '185 Molina Manors Suite 620, East Oscarhaven, CA 99828', 'San Diego', 'California', '10007', 'USA', 'CLUB', 67, 'MEDIUM', 'female', 'Engineer', 'single', 'Prefers road bikes', 'Midwest', 'TER-0025', 5, '(912)562-6756x878', '614-41-2265', '2710711340592004', '2022-11-22'),
|
|
481
|
+
(100398, 'Mathew', 'Dickerson', '87107 John Manors Suite 630, Phillipborough, MT 26025', 'Dallas', 'Texas', '10008', 'Canada', 'SHOP', 33, 'HIGH', 'female', 'Pilot', 'single', 'Frequent buyer of mountain bikes', 'Southeast', 'TER-0021', 6, '001-726-840-5363x7227', '546-26-5177', '2463998790941059', '2023-08-22'),
|
|
482
|
+
(100399, 'Jeffery', 'Mathews', 'PSC 5261, Box 2756, APO AE 09396', 'San Jose', 'California', '10009', 'Mexico', 'INDIV', 30, 'LOW', 'male', 'Journalist', 'single', 'Interested in bike sports', 'Southeast', 'TER-0007', 3, '001-917-216-5329x6861', '195-20-6370', '2229490840260016', '2020-11-04'),
|
|
483
|
+
(100400, 'Jeffrey', 'Delgado', 'USS Griffin, FPO AE 04160', 'Austin', 'Texas', '10010', 'Mexico', 'AMAZON', 57, 'HIGH', 'NA', 'Software Developer', 'widowed', 'Enthusiastic about e-bikes', 'West', 'TER-0010', 3, '376-535-1871x4088', '354-17-2173', '2486133881220097', '2023-06-02'),
|
|
484
|
+
(100401, 'Timothy', 'Smith', '22599 Donald Landing Apt. 504, Chambersmouth, AK 88850', 'Jacksonville', 'Florida', '10011', 'USA', 'CLUB', 35, 'HIGH', 'male', 'Software Developer', 'divorced', 'Frequent buyer of bike sports', 'Northeast', 'TER-0019', 5, '001-283-969-7840', '442-30-8808', '2222638724162453', '2023-02-01'),
|
|
485
|
+
(100402, 'Maria', 'Hudson', '12906 Roger Flat, Michaeltown, WV 92044', 'Fort Worth', 'Texas', '10012', 'Mexico', 'INDIV', 34, 'LOW', 'NA', 'Software Developer', 'single', 'Prefers bike accessories', 'Southwest', 'TER-0008', 6, '292.694.8962x04564', '464-70-4926', '2720817579832967', '2020-11-29'),
|
|
486
|
+
(100403, 'David', 'Lucas', '86595 Martin Islands, North Brycetown, NE 04036', 'Columbus', 'Ohio', '10013', 'Mexico', 'AMAZON', 65, 'MEDIUM', 'female', 'Pilot', 'divorced', 'Looking for road bikes', 'Northeast', 'TER-0001', 1, '555.730.7703x1213', '786-67-2917', '2234840483946706', '2023-09-06'),
|
|
487
|
+
(100404, 'Andrew', 'Bates', '0611 Freeman Underpass, West Jorge, WV 74515', 'Charlotte', 'North Carolina', '10014', 'Mexico', 'AMAZON', 64, 'MEDIUM', 'female', 'Artist', 'divorced', 'Prefers e-bikes', 'West', 'TER-0023', 2, '958.484.8290', '012-91-3499', '2226533715691998', '2020-09-22'),
|
|
488
|
+
(100405, 'Nicholas', 'Lutz', '7653 Davis Drives Suite 726, South Laura, ID 82332', 'San Francisco', 'California', '10015', 'USA', 'SHOP', 45, 'HIGH', 'female', 'Engineer', 'divorced', 'Interested in bike accessories', 'Southeast', 'TER-0005', 5, '(889)242-5842x851', '065-02-9290', '5334051220044258', '2022-05-07'),
|
|
489
|
+
(100406, 'Tracy', 'Horn', '1325 Pena Island, Port Jeremy, ME 11828', 'Indianapolis', 'Indiana', '10016', 'USA', 'INDIV', 77, 'MEDIUM', 'other', 'Nurse', 'divorced', 'Enthusiastic about road bikes', 'Southwest', 'TER-0004', 9, '595.720.1027x414', '042-68-8965', '2289151110854543', '2021-02-26'),
|
|
490
|
+
(100407, 'Eric', 'Martin', '5950 Tammy Trafficway, Port Michelle, MO 23143', 'Seattle', 'Washington', '10017', 'Canada', 'AMAZON', 72, 'HIGH', 'male', 'Chef', 'married', 'Prefers road bikes', 'Southwest', 'TER-0025', 8, '245-328-0056x70444', '618-86-4134', '2280705278435590', '2020-12-10'),
|
|
491
|
+
(100408, 'Nancy', 'Roberts', '429 Mcmahon Mountains, Hillport, MA 42778', 'Denver', 'Colorado', '10018', 'USA', 'SHOP', 76, 'MEDIUM', 'female', 'Engineer', 'other', 'Prefers bike accessories', 'Midwest', 'TER-0023', 5, '632-667-5481', '138-05-1444', '5217535434019157', '2020-07-15'),
|
|
492
|
+
(100409, 'Thomas', 'Rogers', '78732 Austin Square Suite 011, Alanbury, NJ 23007', 'Washington', 'DC', '10019', 'Canada', 'AMAZON', 67, 'HIGH', 'male', 'Scientist', 'other', 'Interested in e-bikes', 'Southwest', 'TER-0026', 5, '001-645-280-3407x7230', '772-87-3075', '5557435984497978', '2022-05-29'),
|
|
493
|
+
(100410, 'Janet', 'Mckinney', '279 Randolph Island Suite 912, Smithbury, RI 09834', 'Boston', 'Massachusetts', '10020', 'USA', 'SHOP', 62, 'HIGH', 'NA', 'Software Developer', 'married', 'Interested in e-bikes', 'West', 'TER-0001', 8, '(485)332-2526', '373-42-0952', '2234134918445421', '2021-01-28'),
|
|
494
|
+
(100411, 'Mitchell', 'Vega', '0749 Laura Shore Apt. 973, West Kelseyport, SC 14947', 'El Paso', 'Texas', '10021', 'USA', 'INDIV', 39, 'LOW', 'female', 'Nurse', 'divorced', 'Looking for road bikes', 'Southeast', 'TER-0029', 9, '(432)226-8717', '614-39-5546', '2711966787895638', '2021-10-22'),
|
|
495
|
+
(100412, 'Donna', 'Olson', '00505 Dana Mills, Peterstad, MN 89014', 'Nashville', 'Tennessee', '10022', 'Canada', 'INDIV', 45, 'LOW', 'female', 'Accountant', 'other', 'Enthusiastic about mountain bikes', 'Midwest', 'TER-0030', 3, '(928)893-5897', '223-35-0571', '2719687708724135', '2023-01-06'),
|
|
496
|
+
(100413, 'Eric', 'Smith', '13129 Christina Fork Suite 436, North Amandaburgh, OK 04609', 'Detroit', 'Michigan', '10023', 'Canada', 'AMAZON', 77, 'LOW', 'other', 'Pilot', 'single', 'Prefers road bikes', 'Southeast', 'TER-0018', 5, '373.556.4612x5722', '525-13-2950', '5194475178364823', '2022-02-28'),
|
|
497
|
+
(100414, 'John', 'James', 'PSC 8420, Box 3603, APO AE 84925', 'Oklahoma City', 'Oklahoma', '10024', 'USA', 'CLUB', 24, 'MEDIUM', 'NA', 'Doctor', 'single', 'Interested in e-bikes', 'Southeast', 'TER-0020', 4, '+1-519-292-9617', '898-62-6478', '2296327265091146', '2021-02-18'),
|
|
498
|
+
(100415, 'Linda', 'Burton', '629 Gonzales Estate Apt. 577, Moraburgh, MD 16230', 'Portland', 'Oregon', '10025', 'Mexico', 'CLUB', 39, 'MEDIUM', 'NA', 'Journalist', 'widowed', 'Looking for mountain bikes', 'Midwest', 'TER-0029', 9, '001-764-428-1681', '870-19-3620', '2232922474542512', '2023-07-05'),
|
|
499
|
+
(100416, 'Jesse', 'Key', '2594 Brett Unions Suite 672, North Jacob, PA 83709', 'Las Vegas', 'Nevada', '10026', 'USA', 'CLUB', 52, 'LOW', 'male', 'Accountant', 'married', 'Looking for mountain bikes', 'West', 'TER-0015', 6, '001-467-757-1026x82754', '069-23-3862', '2547960417040574', '2020-10-07'),
|
|
500
|
+
(100417, 'Matthew', 'Whitney', '9018 Ellis Station, Angelafurt, NM 31031', 'Memphis', 'Tennessee', '10027', 'Canada', 'CLUB', 34, 'MEDIUM', 'NA', 'Veterinarian', 'other', 'Frequent buyer of bike sports', 'West', 'TER-0015', 7, '+1-891-641-3766', '109-57-0736', '2289212010073798', '2022-03-04'),
|
|
501
|
+
(100418, 'Micheal', 'Obrien', '25892 Hensley Streets Apt. 874, Lake Kimberly, OK 60852', 'Louisville', 'Kentucky', '10028', 'Mexico', 'SHOP', 66, 'HIGH', 'other', 'Pilot', 'married', 'Prefers road bikes', 'Midwest', 'TER-0004', 3, '(446)207-1047', '368-46-2326', '2549266892872699', '2021-10-23'),
|
|
502
|
+
(100419, 'Jennifer', 'Cantu', '3181 Bowen Ville, South Heather, ME 28683', 'Baltimore', 'Maryland', '10029', 'Canada', 'AMAZON', 18, 'HIGH', 'other', 'Pilot', 'other', 'Looking for e-bikes', 'Southwest', 'TER-0025', 8, '868.348.8183', '540-06-1202', '2436127253488457', '2021-08-04'),
|
|
503
|
+
(100420, 'Brian', 'Price', '9967 Allen Forges Apt. 541, Allenberg, OH 83929', 'New York', 'New York', '10000', 'Mexico', 'AMAZON', 31, 'HIGH', 'NA', 'Accountant', 'single', 'Frequent buyer of bike sports', 'Northeast', 'TER-0020', 2, '+1-336-328-7918x704', '039-15-3599', '2706804463215655', '2021-09-19'),
|
|
504
|
+
(100421, 'Lindsey', 'Baker', '664 Laura Cliff Suite 508, West Christopherfort, IL 81988', 'Los Angeles', 'California', '10001', 'Mexico', 'INDIV', 21, 'LOW', 'other', 'Engineer', 'single', 'Prefers e-bikes', 'Midwest', 'TER-0017', 3, '619-412-7710x9821', '442-80-2582', '2295326876905653', '2020-02-11'),
|
|
505
|
+
(100422, 'Susan', 'Cox', '970 Miller Tunnel, Reynoldschester, NY 65886', 'Chicago', 'Illinois', '10002', 'Canada', 'AMAZON', 22, 'LOW', 'female', 'Engineer', 'divorced', 'Prefers bike sports', 'Northeast', 'TER-0006', 3, '739-342-8353', '620-59-2652', '2281795563605634', '2021-03-17'),
|
|
506
|
+
(100423, 'Richard', 'Brown', '853 Rhonda Squares Suite 880, Langmouth, MD 65507', 'Houston', 'Texas', '10003', 'Mexico', 'CLUB', 14, 'HIGH', 'male', 'Journalist', 'divorced', 'Enthusiastic about bike accessories', 'Southeast', 'TER-0029', 8, '+1-566-278-1871x9315', '041-57-0959', '2239989551365615', '2020-06-27'),
|
|
507
|
+
(100424, 'Mary', 'Rodriguez', 'USCGC Young, FPO AP 08833', 'Phoenix', 'Arizona', '10004', 'USA', 'INDIV', 22, 'MEDIUM', 'NA', 'Artist', 'divorced', 'Interested in e-bikes', 'Northeast', 'TER-0010', 3, '+1-841-208-7298x77978', '628-62-6409', '2708226485159430', '2021-07-08'),
|
|
508
|
+
(100425, 'Brooke', 'Malone', 'PSC 3069, Box 4066, APO AP 68970', 'Philadelphia', 'Pennsylvania', '10005', 'USA', 'AMAZON', 45, 'LOW', 'male', 'Software Developer', 'married', 'Interested in road bikes', 'West', 'TER-0011', 9, '201-630-4869x6629', '370-91-5859', '2268142810568876', '2023-02-09'),
|
|
509
|
+
(100426, 'Jennifer', 'Hicks', '46999 Michael Garden Suite 137, South Dominiquebury, CA 16166', 'San Antonio', 'Texas', '10006', 'Mexico', 'AMAZON', 53, 'HIGH', 'female', 'Journalist', 'divorced', 'Prefers bike sports', 'West', 'TER-0012', 9, '272-334-7015x40112', '344-11-1621', '2266640150453155', '2021-05-23'),
|
|
510
|
+
(100427, 'Marie', 'Rogers', '69581 Alvarado Keys, West Jordanfort, NJ 14490', 'San Diego', 'California', '10007', 'USA', 'AMAZON', 47, 'LOW', 'other', 'Journalist', 'single', 'Enthusiastic about e-bikes', 'Northeast', 'TER-0007', 4, '001-746-915-2324x04369', '549-66-6465', '2235991541053024', '2022-01-07'),
|
|
511
|
+
(100428, 'Terri', 'Moon', '929 Thomas Lodge, New Laura, PA 51154', 'Dallas', 'Texas', '10008', 'USA', 'AMAZON', 42, 'MEDIUM', 'female', 'Lawyer', 'single', 'Looking for bike accessories', 'Northeast', 'TER-0022', 3, '+1-808-224-5649x8521', '657-46-4626', '5139730299529763', '2020-12-31'),
|
|
512
|
+
(100429, 'Katrina', 'Potter', '337 Wright Garden Apt. 752, Lake Brendanton, OR 72653', 'San Jose', 'California', '10009', 'USA', 'INDIV', 36, 'MEDIUM', 'male', 'Journalist', 'divorced', 'Prefers bike sports', 'West', 'TER-0011', 10, '783-844-7666', '421-61-0994', '5296046624658063', '2023-02-27'),
|
|
513
|
+
(100430, 'Michelle', 'Daniel', '655 Justin Skyway, Amberberg, NC 77242', 'Austin', 'Texas', '10010', 'USA', 'CLUB', 24, 'HIGH', 'NA', 'Chef', 'married', 'Frequent buyer of bike sports', 'Southeast', 'TER-0005', 3, '001-372-455-0471', '679-45-5751', '2264865718761797', '2022-05-15'),
|
|
514
|
+
(100431, 'Sarah', 'Stevens', '455 Chambers Valley, Stoutburgh, MD 91200', 'Jacksonville', 'Florida', '10011', 'Mexico', 'CLUB', 47, 'HIGH', 'male', 'Journalist', 'single', 'Enthusiastic about road bikes', 'Northeast', 'TER-0021', 9, '953.844.4175x64572', '063-65-3620', '2298701238176051', '2021-03-20'),
|
|
515
|
+
(100432, 'Anna', 'Randall', '4937 Scott Island, Gregoryville, TN 46149', 'Fort Worth', 'Texas', '10012', 'USA', 'AMAZON', 68, 'MEDIUM', 'female', 'Doctor', 'married', 'Frequent buyer of e-bikes', 'Northeast', 'TER-0020', 1, '311.882.1644x4962', '746-96-1969', '2296860946920275', '2021-10-12'),
|
|
516
|
+
(100433, 'Jason', 'Stewart', '78429 Jeanette Lake, Gayfort, CO 28895', 'Columbus', 'Ohio', '10013', 'Mexico', 'INDIV', 71, 'LOW', 'male', 'Teacher', 'married', 'Interested in bike accessories', 'Northeast', 'TER-0026', 6, '600-620-9521', '062-66-0206', '2261040050270475', '2022-09-28'),
|
|
517
|
+
(100434, 'Dawn', 'Byrd', 'USNS Wade, FPO AP 48280', 'Charlotte', 'North Carolina', '10014', 'USA', 'INDIV', 29, 'MEDIUM', 'male', 'Pharmacist', 'married', 'Enthusiastic about mountain bikes', 'West', 'TER-0011', 3, '574-299-6794x214', '872-31-0098', '2292128671214189', '2022-08-23'),
|
|
518
|
+
(100435, 'Tamara', 'Jones', '990 Thomas Bridge, Nelsonberg, NH 32171', 'San Francisco', 'California', '10015', 'USA', 'INDIV', 42, 'HIGH', 'NA', 'Pilot', 'other', 'Interested in bike sports', 'Northeast', 'TER-0022', 7, '713-671-4813x93368', '795-13-4612', '2273099340324191', '2020-11-02'),
|
|
519
|
+
(100436, 'Adam', 'Page', '58617 Stefanie Lock, Longbury, OH 89714', 'Indianapolis', 'Indiana', '10016', 'Mexico', 'CLUB', 20, 'HIGH', 'NA', 'Teacher', 'married', 'Interested in bike sports', 'Midwest', 'TER-0025', 8, '939-487-3211', '607-18-2684', '2230705649884246', '2023-04-27'),
|
|
520
|
+
(100437, 'Katherine', 'Huynh', '3925 Christian Tunnel, Glendahaven, FL 99108', 'Seattle', 'Washington', '10017', 'Mexico', 'AMAZON', 26, 'LOW', 'other', 'Journalist', 'other', 'Prefers bike accessories', 'Northeast', 'TER-0003', 3, '848-893-4166x9892', '432-20-4862', '2279478573904958', '2021-08-01'),
|
|
521
|
+
(100438, 'Jo', 'Cooper', '751 Douglas Street Apt. 525, Pamelaberg, WV 77375', 'Denver', 'Colorado', '10018', 'USA', 'AMAZON', 56, 'MEDIUM', 'female', 'Pilot', 'other', 'Interested in bike sports', 'Northeast', 'TER-0029', 7, '(872)656-7823x867', '708-72-0363', '2501854267786531', '2020-05-13'),
|
|
522
|
+
(100439, 'Karen', 'Shepherd', '5509 Timothy Rapid Suite 195, Roystad, ME 28957', 'Washington', 'DC', '10019', 'Mexico', 'AMAZON', 75, 'LOW', 'NA', 'Chef', 'single', 'Looking for bike accessories', 'Midwest', 'TER-0028', 7, '(239)267-1447x1890', '115-37-7032', '2335045092628681', '2023-05-26'),
|
|
523
|
+
(100440, 'Shelly', 'Medina', 'Unit 8428 Box 8436, DPO AA 29873', 'Boston', 'Massachusetts', '10020', 'Canada', 'INDIV', 12, 'LOW', 'NA', 'Doctor', 'married', 'Interested in mountain bikes', 'Northeast', 'TER-0024', 1, '383.640.5593x475', '397-99-2845', '2304679073225815', '2020-09-30'),
|
|
524
|
+
(100441, 'Ivan', 'Flynn', '19383 Luis Drives, Nielsenchester, GA 05527', 'El Paso', 'Texas', '10021', 'USA', 'SHOP', 27, 'MEDIUM', 'NA', 'Lawyer', 'widowed', 'Enthusiastic about e-bikes', 'Southeast', 'TER-0008', 5, '6532518972', '169-79-7981', '2227267887775383', '2022-08-13'),
|
|
525
|
+
(100442, 'John', 'Alexander', '15090 Sarah Pine, New Michaelborough, MH 67629', 'Nashville', 'Tennessee', '10022', 'Mexico', 'INDIV', 20, 'MEDIUM', 'NA', 'Engineer', 'married', 'Looking for e-bikes', 'West', 'TER-0004', 2, '(620)815-3998', '596-07-1653', '2708171320062722', '2023-04-12'),
|
|
526
|
+
(100443, 'Justin', 'Parsons', '3128 Mitchell Ways Apt. 281, North Elizabeth, AS 65060', 'Detroit', 'Michigan', '10023', 'USA', 'SHOP', 23, 'HIGH', 'NA', 'Scientist', 'single', 'Enthusiastic about mountain bikes', 'Midwest', 'TER-0010', 7, '769.214.1999x23652', '184-32-6646', '2517249167484455', '2023-04-13'),
|
|
527
|
+
(100444, 'Oscar', 'Smith', '088 Brenda Creek Apt. 905, North Monicaville, WV 77500', 'Oklahoma City', 'Oklahoma', '10024', 'Canada', 'CLUB', 35, 'LOW', 'other', 'Scientist', 'divorced', 'Looking for e-bikes', 'Northeast', 'TER-0007', 10, '(391)396-7871x7829', '480-31-2832', '2400189712218745', '2023-07-31'),
|
|
528
|
+
(100445, 'Sarah', 'Montgomery', 'USS Young, FPO AA 88833', 'Portland', 'Oregon', '10025', 'USA', 'INDIV', 34, 'MEDIUM', 'other', 'Artist', 'other', 'Looking for mountain bikes', 'Midwest', 'TER-0019', 9, '+1-401-865-5736x302', '066-67-3915', '5462019694617705', '2020-07-26'),
|
|
529
|
+
(100446, 'Leah', 'Watkins', '081 Garza Hollow, Mikemouth, MD 60548', 'Las Vegas', 'Nevada', '10026', 'USA', 'CLUB', 13, 'MEDIUM', 'female', 'Software Developer', 'divorced', 'Looking for road bikes', 'Midwest', 'TER-0013', 7, '9316640660', '845-91-2773', '5336808484782123', '2020-07-02'),
|
|
530
|
+
(100447, 'Eric', 'Jones', '2998 Williams Street, Troyshire, TN 55692', 'Memphis', 'Tennessee', '10027', 'Mexico', 'AMAZON', 79, 'MEDIUM', 'male', 'Scientist', 'widowed', 'Enthusiastic about e-bikes', 'Midwest', 'TER-0006', 4, '+1-968-839-7241x92839', '881-84-1834', '2240793982975597', '2022-04-01'),
|
|
531
|
+
(100448, 'Sabrina', 'Webster', '8664 Joseph Neck, Kimberlyton, SC 89570', 'Louisville', 'Kentucky', '10028', 'Mexico', 'INDIV', 76, 'HIGH', 'other', 'Pharmacist', 'divorced', 'Looking for bike sports', 'Southwest', 'TER-0009', 10, '(937)591-3554x281', '215-11-7987', '5274631515216273', '2021-12-14'),
|
|
532
|
+
(100449, 'Karen', 'Sweeney', '2770 Reid Flat, New Robert, WA 10287', 'Baltimore', 'Maryland', '10029', 'Mexico', 'INDIV', 16, 'MEDIUM', 'male', 'Accountant', 'divorced', 'Interested in bike sports', 'Midwest', 'TER-0019', 10, '(511)696-3499', '511-01-1608', '2261558037643225', '2020-09-10'),
|
|
533
|
+
(100450, 'Kristi', 'Tucker', '2946 Lutz Squares Apt. 648, Ronaldchester, CO 13577', 'New York', 'New York', '10000', 'Canada', 'SHOP', 79, 'LOW', 'other', 'Pharmacist', 'married', 'Prefers bike accessories', 'Northeast', 'TER-0014', 7, '329.365.6482x55703', '288-28-6925', '5348940520838530', '2021-05-25'),
|
|
534
|
+
(100451, 'Olivia', 'Tucker', '7200 Wells Burgs Suite 504, South Spencer, MD 65096', 'Los Angeles', 'California', '10001', 'Canada', 'AMAZON', 79, 'MEDIUM', 'other', 'Architect', 'widowed', 'Interested in bike accessories', 'Southeast', 'TER-0014', 4, '695.213.7729', '051-97-1670', '5191611469217832', '2021-08-19'),
|
|
535
|
+
(100452, 'Mark', 'Sampson', 'USCGC Webb, FPO AE 67871', 'Chicago', 'Illinois', '10002', 'USA', 'SHOP', 33, 'HIGH', 'male', 'Accountant', 'widowed', 'Prefers road bikes', 'Midwest', 'TER-0017', 2, '450.238.5830x919', '818-17-6722', '2295977279747157', '2020-07-08'),
|
|
536
|
+
(100453, 'Benjamin', 'Prince', '4506 Wright Prairie Apt. 055, Lake Edwardburgh, MA 94638', 'Houston', 'Texas', '10003', 'USA', 'SHOP', 58, 'HIGH', 'male', 'Doctor', 'married', 'Enthusiastic about bike sports', 'Northeast', 'TER-0004', 10, '(622)566-6194x354', '041-77-2652', '2273335472904685', '2021-12-15'),
|
|
537
|
+
(100454, 'Shawn', 'Walker', '6791 Jennifer Shore Suite 392, Aaronborough, VA 80651', 'Phoenix', 'Arizona', '10004', 'Canada', 'CLUB', 49, 'HIGH', 'other', 'Doctor', 'widowed', 'Frequent buyer of mountain bikes', 'Midwest', 'TER-0009', 7, '+1-499-619-5651x0083', '620-84-8502', '2328680635843659', '2020-01-30'),
|
|
538
|
+
(100455, 'Lindsay', 'Cameron', '839 Arroyo Glen Suite 175, South Williamhaven, UT 91529', 'Philadelphia', 'Pennsylvania', '10005', 'Canada', 'CLUB', 52, 'LOW', 'male', 'Teacher', 'other', 'Prefers e-bikes', 'Northeast', 'TER-0014', 7, '7702641741', '450-83-6817', '2282680903701781', '2020-06-25'),
|
|
539
|
+
(100456, 'Christopher', 'Sawyer', '119 Fuller Parkway Suite 484, East Caitlinberg, LA 13534', 'San Antonio', 'Texas', '10006', 'Mexico', 'INDIV', 23, 'HIGH', 'male', 'Architect', 'single', 'Frequent buyer of bike accessories', 'Southwest', 'TER-0024', 7, '864-999-0218', '287-96-0527', '2579211271496895', '2021-03-09'),
|
|
540
|
+
(100457, 'Jonathan', 'Hart', '5419 Walter Islands Suite 438, Lake Michaelberg, ME 85674', 'San Diego', 'California', '10007', 'Mexico', 'INDIV', 80, 'MEDIUM', 'female', 'Pharmacist', 'widowed', 'Looking for bike accessories', 'Southeast', 'TER-0021', 3, '001-897-374-9526x0148', '005-23-1875', '2251299989608989', '2020-02-12'),
|
|
541
|
+
(100458, 'Felicia', 'Gilbert', '81803 Riggs Parkways Suite 061, Jasonville, HI 89790', 'Dallas', 'Texas', '10008', 'USA', 'INDIV', 33, 'MEDIUM', 'female', 'Architect', 'single', 'Interested in bike accessories', 'Northeast', 'TER-0004', 2, '433-411-5166x77905', '278-67-6108', '2543756703756376', '2023-04-18'),
|
|
542
|
+
(100459, 'Eric', 'Walsh', '16529 Richard Mount Apt. 694, Zimmermanhaven, MP 63240', 'San Jose', 'California', '10009', 'Canada', 'SHOP', 12, 'LOW', 'male', 'Veterinarian', 'other', 'Interested in e-bikes', 'Southeast', 'TER-0017', 9, '001-585-404-7502', '428-38-9512', '2282048325891954', '2020-07-10'),
|
|
543
|
+
(100460, 'Paul', 'Rodriguez', '418 Delgado Road, Lake Ashleymouth, DC 19772', 'Austin', 'Texas', '10010', 'USA', 'AMAZON', 34, 'HIGH', 'female', 'Nurse', 'married', 'Frequent buyer of e-bikes', 'Northeast', 'TER-0009', 4, '(309)281-0698', '538-65-9774', '2236541519355494', '2020-10-28'),
|
|
544
|
+
(100461, 'Jessica', 'Lee', '713 Ivan Dam Apt. 240, Codyton, ND 36828', 'Jacksonville', 'Florida', '10011', 'Canada', 'CLUB', 51, 'HIGH', 'female', 'Scientist', 'married', 'Enthusiastic about mountain bikes', 'West', 'TER-0006', 9, '832-466-6442x46078', '896-74-7105', '2277831616216206', '2022-09-01'),
|
|
545
|
+
(100462, 'Timothy', 'Kelly', 'Unit 0699 Box 3245, DPO AP 48858', 'Fort Worth', 'Texas', '10012', 'USA', 'CLUB', 68, 'HIGH', 'female', 'Engineer', 'widowed', 'Frequent buyer of e-bikes', 'Southwest', 'TER-0013', 6, '(620)659-8129', '383-53-9075', '5171278660729819', '2022-09-25'),
|
|
546
|
+
(100463, 'Jonathan', 'Hart', '593 Shawn Flat, Kimberlyview, NM 98357', 'Columbus', 'Ohio', '10013', 'USA', 'SHOP', 60, 'HIGH', 'NA', 'Journalist', 'other', 'Looking for e-bikes', 'Southwest', 'TER-0022', 7, '595.632.8435', '664-61-6556', '2467452390369499', '2022-11-11'),
|
|
547
|
+
(100464, 'Peter', 'Nelson', '50156 Mark Forks Suite 320, Johnshire, GU 40266', 'Charlotte', 'North Carolina', '10014', 'USA', 'INDIV', 25, 'HIGH', 'male', 'Architect', 'other', 'Looking for bike accessories', 'Southwest', 'TER-0003', 5, '001-429-779-4818', '221-16-1424', '2239632860164564', '2020-04-27'),
|
|
548
|
+
(100465, 'Paul', 'Johnson', '466 Kathryn Flat, Sarahfort, MO 21105', 'San Francisco', 'California', '10015', 'Mexico', 'CLUB', 61, 'HIGH', 'male', 'Pilot', 'married', 'Frequent buyer of mountain bikes', 'Southwest', 'TER-0004', 10, '+1-344-482-8961', '038-40-1566', '2560198820540433', '2021-04-06'),
|
|
549
|
+
(100466, 'Lori', 'Fox', '06571 Thomas Shoals Suite 079, Port Leah, NY 21164', 'Indianapolis', 'Indiana', '10016', 'USA', 'AMAZON', 46, 'MEDIUM', 'male', 'Teacher', 'other', 'Enthusiastic about road bikes', 'Midwest', 'TER-0008', 5, '+1-534-285-9318x556', '326-01-3833', '5497080903652403', '2021-03-13'),
|
|
550
|
+
(100467, 'Abigail', 'Bruce', '373 Wilkinson Tunnel Apt. 287, East Stephanie, NM 46213', 'Seattle', 'Washington', '10017', 'Mexico', 'CLUB', 53, 'HIGH', 'male', 'Teacher', 'other', 'Looking for road bikes', 'Midwest', 'TER-0008', 10, '607.475.9705x53073', '861-87-3365', '2223297307453760', '2021-07-27'),
|
|
551
|
+
(100468, 'Michael', 'Day', '71342 William Haven, Lake Francis, CT 20459', 'Denver', 'Colorado', '10018', 'Mexico', 'AMAZON', 77, 'LOW', 'female', 'Journalist', 'single', 'Enthusiastic about bike sports', 'Southwest', 'TER-0002', 5, '+1-795-251-5816x8769', '306-03-6338', '5350095889857939', '2021-06-19'),
|
|
552
|
+
(100469, 'Catherine', 'James', '883 Barker Vista, Alvarezchester, NV 96560', 'Washington', 'DC', '10019', 'Mexico', 'AMAZON', 71, 'HIGH', 'NA', 'Pharmacist', 'widowed', 'Frequent buyer of e-bikes', 'Southeast', 'TER-0001', 2, '+1-611-335-0596x2256', '185-38-4849', '2720893188982113', '2023-03-08'),
|
|
553
|
+
(100470, 'Karen', 'Sanchez', '2018 Jacob Roads, Lake Stacystad, AS 05428', 'Boston', 'Massachusetts', '10020', 'Canada', 'AMAZON', 57, 'MEDIUM', 'NA', 'Veterinarian', 'divorced', 'Looking for road bikes', 'West', 'TER-0001', 10, '239-472-9980', '129-86-6997', '2650004552119100', '2023-07-03'),
|
|
554
|
+
(100471, 'Dana', 'Dunn', '3251 Crystal Street Apt. 205, South Theresaland, TX 77833', 'El Paso', 'Texas', '10021', 'USA', 'AMAZON', 17, 'HIGH', 'NA', 'Software Developer', 'other', 'Interested in e-bikes', 'Southeast', 'TER-0004', 8, '001-734-942-6229', '224-82-1837', '2345639058078085', '2022-11-02'),
|
|
555
|
+
(100472, 'Alan', 'Perry', '75778 Harper Walk, Wandaburgh, WA 19084', 'Nashville', 'Tennessee', '10022', 'USA', 'AMAZON', 24, 'LOW', 'NA', 'Pilot', 'widowed', 'Frequent buyer of e-bikes', 'Southwest', 'TER-0007', 4, '862.240.8936x25420', '785-02-5610', '2445875979434903', '2023-08-13'),
|
|
556
|
+
(100473, 'Amber', 'Weiss', '72602 Lopez Run Apt. 167, Perezhaven, WY 79867', 'Detroit', 'Michigan', '10023', 'USA', 'SHOP', 38, 'LOW', 'other', 'Chef', 'widowed', 'Enthusiastic about bike accessories', 'Southeast', 'TER-0028', 3, '+1-440-595-8941x68804', '547-36-6888', '2709685881555849', '2022-07-05'),
|
|
557
|
+
(100474, 'Amy', 'Obrien', '98052 James Manors, Barberland, MO 85765', 'Oklahoma City', 'Oklahoma', '10024', 'Mexico', 'INDIV', 33, 'MEDIUM', 'NA', 'Doctor', 'divorced', 'Prefers road bikes', 'Southeast', 'TER-0016', 2, '588.692.4069', '086-69-5544', '5573257621761180', '2020-04-10'),
|
|
558
|
+
(100475, 'Dustin', 'Hudson', '10866 Laurie Oval Suite 366, Debbieville, MT 56397', 'Portland', 'Oregon', '10025', 'Mexico', 'INDIV', 58, 'LOW', 'other', 'Journalist', 'other', 'Prefers e-bikes', 'Southeast', 'TER-0029', 2, '001-858-985-9616x9064', '580-90-8651', '2236523722792085', '2022-02-24'),
|
|
559
|
+
(100476, 'Alexandria', 'Conner', '92820 Derek Club Suite 044, New Joseview, UT 08946', 'Las Vegas', 'Nevada', '10026', 'Canada', 'CLUB', 46, 'MEDIUM', 'male', 'Veterinarian', 'married', 'Looking for bike accessories', 'Northeast', 'TER-0005', 2, '960-959-2629x640', '498-26-6346', '2343874480885599', '2022-06-14'),
|
|
560
|
+
(100477, 'Kelly', 'Fischer', '9611 Clark Brook Suite 460, Brownburgh, VI 22410', 'Memphis', 'Tennessee', '10027', 'Mexico', 'CLUB', 25, 'LOW', 'female', 'Software Developer', 'other', 'Prefers bike accessories', 'Northeast', 'TER-0002', 8, '(897)307-1078x31332', '513-14-4404', '2294404270025070', '2021-10-08'),
|
|
561
|
+
(100478, 'Christian', 'Horton', '95792 Bruce Bypass Suite 273, Younghaven, AK 86435', 'Louisville', 'Kentucky', '10028', 'Mexico', 'AMAZON', 80, 'LOW', 'other', 'Lawyer', 'widowed', 'Frequent buyer of mountain bikes', 'West', 'TER-0016', 6, '(723)214-8990x8032', '836-12-1333', '5265272662287360', '2020-08-10'),
|
|
562
|
+
(100479, 'Tammy', 'Clark', 'Unit 4241 Box 7070, DPO AA 97787', 'Baltimore', 'Maryland', '10029', 'Mexico', 'AMAZON', 80, 'MEDIUM', 'NA', 'Pharmacist', 'married', 'Frequent buyer of bike sports', 'West', 'TER-0013', 3, '(671)467-3475x7343', '738-91-6815', '2720076142197594', '2020-01-04'),
|
|
563
|
+
(100480, 'Albert', 'Williams', '5857 Carroll Rue Apt. 243, Port Wendystad, IA 41571', 'New York', 'New York', '10000', 'Canada', 'CLUB', 34, 'MEDIUM', 'male', 'Teacher', 'widowed', 'Interested in e-bikes', 'Southwest', 'TER-0021', 7, '(796)497-4223', '697-81-0184', '2618002054934969', '2023-07-22'),
|
|
564
|
+
(100481, 'Lauren', 'Wilson', 'PSC 1307, Box 3038, APO AP 19754', 'Los Angeles', 'California', '10001', 'Mexico', 'AMAZON', 77, 'LOW', 'female', 'Chef', 'other', 'Enthusiastic about bike accessories', 'Midwest', 'TER-0029', 8, '625-710-2736x26642', '671-63-8035', '2265203276048291', '2021-09-03'),
|
|
565
|
+
(100482, 'Kevin', 'Moreno', '87988 Evans Stravenue Suite 671, Evanfurt, WI 94902', 'Chicago', 'Illinois', '10002', 'Canada', 'CLUB', 29, 'MEDIUM', 'male', 'Doctor', 'other', 'Interested in bike sports', 'Northeast', 'TER-0012', 9, '382.788.9035x419', '013-35-8670', '5323938607631009', '2020-05-31'),
|
|
566
|
+
(100483, 'Stuart', 'Crawford', '958 Lynch Keys Apt. 651, North Arthur, RI 84967', 'Houston', 'Texas', '10003', 'Mexico', 'AMAZON', 80, 'HIGH', 'other', 'Scientist', 'divorced', 'Enthusiastic about road bikes', 'West', 'TER-0023', 6, '(987)893-7499x980', '163-20-4219', '5547850323693884', '2023-01-10'),
|
|
567
|
+
(100484, 'Darlene', 'Rivera', '14208 Christine Key Apt. 398, North Destinychester, PW 25217', 'Phoenix', 'Arizona', '10004', 'Canada', 'AMAZON', 40, 'LOW', 'female', 'Journalist', 'other', 'Enthusiastic about bike accessories', 'Southeast', 'TER-0021', 1, '683.957.8954', '524-03-8963', '2323689420009348', '2020-05-29'),
|
|
568
|
+
(100485, 'Brittany', 'Cantu', '6163 Obrien Highway Suite 811, Hallmouth, NJ 49970', 'Philadelphia', 'Pennsylvania', '10005', 'Mexico', 'INDIV', 32, 'HIGH', 'female', 'Architect', 'widowed', 'Prefers bike sports', 'Southwest', 'TER-0026', 5, '247.933.5208x884', '250-16-5964', '2238256047163942', '2022-06-12'),
|
|
569
|
+
(100486, 'Perry', 'Richards', '2326 Lonnie Walk Suite 100, Shieldsstad, TN 54564', 'San Antonio', 'Texas', '10006', 'Canada', 'INDIV', 64, 'LOW', 'other', 'Veterinarian', 'single', 'Looking for road bikes', 'Northeast', 'TER-0006', 7, '662.934.1234', '161-70-2370', '2292816090655434', '2020-01-12'),
|
|
570
|
+
(100487, 'John', 'Woodard', '284 Renee Square Suite 519, South Lisashire, GA 21588', 'San Diego', 'California', '10007', 'Mexico', 'INDIV', 13, 'MEDIUM', 'male', 'Software Developer', 'divorced', 'Looking for road bikes', 'Southwest', 'TER-0001', 5, '001-314-535-7563x482', '260-87-2922', '2465478498929167', '2023-07-24'),
|
|
571
|
+
(100488, 'April', 'Briggs', '0694 Brooks Summit, Charlesborough, TN 89180', 'Dallas', 'Texas', '10008', 'Mexico', 'SHOP', 74, 'MEDIUM', 'NA', 'Lawyer', 'married', 'Interested in bike sports', 'West', 'TER-0024', 4, '252-244-4929', '072-36-1900', '5267869946501561', '2020-02-06'),
|
|
572
|
+
(100489, 'Michael', 'Williams', '857 Ramos Landing Apt. 563, Ambershire, UT 93636', 'San Jose', 'California', '10009', 'USA', 'SHOP', 13, 'HIGH', 'male', 'Veterinarian', 'married', 'Frequent buyer of bike accessories', 'West', 'TER-0025', 9, '+1-873-767-0165x301', '350-76-9955', '2555669833371013', '2022-01-06'),
|
|
573
|
+
(100490, 'Christopher', 'Mckay', '6554 Kathleen Plains Suite 083, New Cory, IN 00776', 'Austin', 'Texas', '10010', 'Canada', 'AMAZON', 78, 'HIGH', 'male', 'Journalist', 'married', 'Prefers e-bikes', 'West', 'TER-0012', 7, '001-221-417-1436x5231', '807-37-1224', '2703956217901130', '2020-01-06'),
|
|
574
|
+
(100491, 'Jeffery', 'Williamson', '4333 Porter Rue, New Victor, VA 13240', 'Jacksonville', 'Florida', '10011', 'USA', 'INDIV', 56, 'LOW', 'NA', 'Pilot', 'married', 'Enthusiastic about bike accessories', 'Northeast', 'TER-0006', 2, '(777)642-6344', '856-54-4142', '2479829949574115', '2022-02-25'),
|
|
575
|
+
(100492, 'Christina', 'Fitzgerald', '2183 Hines Circles Apt. 006, New Maryfort, ND 07347', 'Fort Worth', 'Texas', '10012', 'Mexico', 'INDIV', 27, 'HIGH', 'NA', 'Engineer', 'widowed', 'Looking for mountain bikes', 'Midwest', 'TER-0030', 6, '545-996-7551x4728', '039-45-4675', '2720419229897563', '2020-10-05'),
|
|
576
|
+
(100493, 'Shannon', 'Little', '17794 Todd Way Suite 626, South Crystal, AZ 62361', 'Columbus', 'Ohio', '10013', 'USA', 'INDIV', 17, 'MEDIUM', 'female', 'Scientist', 'married', 'Enthusiastic about mountain bikes', 'Southeast', 'TER-0005', 2, '667-874-7250x33446', '179-69-0144', '2235935143594091', '2022-03-15'),
|
|
577
|
+
(100494, 'John', 'Rodriguez', '4363 Price Shoals, Nicolemouth, PR 20701', 'Charlotte', 'North Carolina', '10014', 'Canada', 'CLUB', 35, 'HIGH', 'other', 'Software Developer', 'other', 'Enthusiastic about bike accessories', 'Northeast', 'TER-0027', 3, '974-823-3605', '190-67-7214', '2528331382587796', '2023-05-22'),
|
|
578
|
+
(100495, 'Richard', 'Fields', '4196 Rebecca Hill Suite 188, South Robert, PW 81500', 'San Francisco', 'California', '10015', 'Mexico', 'AMAZON', 18, 'HIGH', 'male', 'Architect', 'other', 'Frequent buyer of road bikes', 'West', 'TER-0006', 5, '001-244-959-9759x8452', '222-56-9063', '2526460873319039', '2023-01-13'),
|
|
579
|
+
(100496, 'Joshua', 'Cook', '4767 Angela Common, Cherylport, KY 58440', 'Indianapolis', 'Indiana', '10016', 'Mexico', 'CLUB', 67, 'LOW', 'female', 'Lawyer', 'single', 'Prefers road bikes', 'Midwest', 'TER-0012', 10, '+1-267-276-6540x25041', '056-14-1231', '5112595357803199', '2023-03-21'),
|
|
580
|
+
(100497, 'Vanessa', 'Hanson', '2838 Michael Pike Suite 642, Port Josephville, VI 89458', 'Seattle', 'Washington', '10017', 'USA', 'SHOP', 11, 'HIGH', 'female', 'Pilot', 'married', 'Prefers road bikes', 'Southwest', 'TER-0007', 4, '+1-755-304-3817', '028-60-1723', '2285792905572255', '2020-09-29'),
|
|
581
|
+
(100498, 'Michael', 'Butler', '7900 Guerrero Underpass, Chavezview, WV 87967', 'Denver', 'Colorado', '10018', 'Mexico', 'SHOP', 18, 'MEDIUM', 'other', 'Doctor', 'divorced', 'Enthusiastic about bike sports', 'West', 'TER-0015', 9, '3714338310', '365-77-8798', '2230814011335645', '2022-05-06'),
|
|
582
|
+
(100499, 'Allison', 'Taylor', '5122 Laura Trace Apt. 754, Marquezfurt, VT 66387', 'Washington', 'DC', '10019', 'USA', 'CLUB', 79, 'HIGH', 'female', 'Artist', 'other', 'Interested in bike sports', 'West', 'TER-0029', 5, '805.312.6809', '468-58-6405', '2274582598718239', '2020-10-03'),
|
|
583
|
+
(100500, 'Robert', 'Wilson', '10531 Jennifer Inlet Suite 656, Laurashire, NE 23274', 'Boston', 'Massachusetts', '10020', 'USA', 'INDIV', 37, 'LOW', 'male', 'Lawyer', 'divorced', 'Enthusiastic about bike accessories', 'Northeast', 'TER-0001', 6, '756-845-9956x927', '489-94-8876', '2296564460150836', '2021-05-30'),
|
|
584
|
+
(100501, 'Andrew', 'Tyler', '5331 Rexford Court, Montgomery, AL 36116', 'El Paso', 'Texas', '10021', 'USA', 'CLUB', 23, 'LOW', 'male', 'Veterinarian', 'widowed', 'Frequent buyer of e-bikes', 'Southeast', 'TER-0023', 9, '+1-378-118-5546', '633-49-4234', '2292762304449794', '2022-04-15'),
|
|
585
|
+
(100502, 'Samantha', 'Fields', '8642 Yule Street, Arvada, CO 80007', 'Nashville', 'Tennessee', '10022', 'USA', 'INDIV', 39, 'LOW', 'male', 'Lawyer', 'other', 'Prefers road bikes', 'Southwest', 'TER-0023', 10, '+1-378-998-4046', '635-39-6546', '2292762304449794', '2021-04-19'),
|
|
586
|
+
(100503, 'Ria', 'Khanna', '1693 Alice Court, Annapolis, MD 21401', 'Detroit', 'Michigan', '10023', 'Mexico', 'SHOP', 56, 'MEDIUM', 'other', 'Accountant', 'widowed', 'Enthusiastic about bike sports', 'West', 'TER-0023', 6, '+1-304-456-4798x94630', '637-45-5345', '2292762304449794', '2023-09-10'),
|
|
587
|
+
(100504, 'Marshal', 'Straut', '4001 Anderson Road, Nashvillem, TN 37217', 'Oklahoma City', 'Oklahoma', '10024', 'Mexico', 'CLUB', 32, 'HIGH', 'other', 'Nurse', 'married', 'Enthusiastic about bike accessories', 'Southeast', 'TER-0023', 9, '+1-111-298-5556', '6394-4-5345', '2292762304449794', '2023-08-19');
|
|
588
|
+
|
|
589
|
+
--
|
|
590
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100505, 'Portland', 'Oregon', '10025', 'Mexico', 'CLUB', 16, 'HIGH', 'male', 'Lawyer', 'widowed', 'Frequent buyer of bike sports', 9);
|
|
591
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100506, 'Las Vegas', 'Nevada', '10026', 'USA', 'INDIV', 43, 'HIGH', 'other', 'Chef', 'widowed', 'Enthusiastic about e-bikes', 2);
|
|
592
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100507, 'Memphis', 'Tennessee', '10027', 'Canada', 'SHOP', 15, 'MEDIUM', 'NA', 'Software Developer', 'divorced', 'Looking for bike sports', 10);
|
|
593
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100508, 'Louisville', 'Kentucky', '10028', 'Canada', 'INDIV', 20, 'HIGH', 'other', 'Chef', 'widowed', 'Prefers road bikes', 8);
|
|
594
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100509, 'Baltimore', 'Maryland', '10029', 'Mexico', 'INDIV', 11, 'HIGH', 'female', 'Scientist', 'widowed', 'Enthusiastic about mountain bikes', 8);
|
|
595
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100510, 'New York', 'New York', '10000', 'USA', 'INDIV', 48, 'MEDIUM', 'female', 'Artist', 'divorced', 'Prefers bike sports', 4);
|
|
596
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100511, 'Los Angeles', 'California', '10001', 'USA', 'AMAZON', 37, 'LOW', 'other', 'Pharmacist', 'other', 'Interested in mountain bikes', 4);
|
|
597
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100512, 'Chicago', 'Illinois', '10002', 'Canada', 'SHOP', 50, 'HIGH', 'female', 'Pilot', 'single', 'Prefers bike accessories', 4);
|
|
598
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100513, 'Houston', 'Texas', '10003', 'USA', 'CLUB', 29, 'HIGH', 'female', 'Chef', 'divorced', 'Looking for road bikes', 8);
|
|
599
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100514, 'Phoenix', 'Arizona', '10004', 'Canada', 'CLUB', 51, 'HIGH', 'female', 'Engineer', 'divorced', 'Interested in e-bikes', 5);
|
|
600
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100515, 'Philadelphia', 'Pennsylvania', '10005', 'Canada', 'AMAZON', 46, 'LOW', 'male', 'Accountant', 'divorced', 'Frequent buyer of bike accessories', 8);
|
|
601
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100516, 'San Antonio', 'Texas', '10006', 'USA', 'INDIV', 23, 'LOW', 'other', 'Veterinarian', 'married', 'Prefers e-bikes', 3);
|
|
602
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100517, 'San Diego', 'California', '10007', 'Mexico', 'INDIV', 59, 'HIGH', 'female', 'Lawyer', 'widowed', 'Interested in road bikes', 10);
|
|
603
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100518, 'Dallas', 'Texas', '10008', 'USA', 'CLUB', 34, 'HIGH', 'NA', 'Architect', 'other', 'Enthusiastic about mountain bikes', 4);
|
|
604
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100519, 'San Jose', 'California', '10009', 'Mexico', 'SHOP', 61, 'HIGH', 'NA', 'Teacher', 'single', 'Frequent buyer of e-bikes', 10);
|
|
605
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100520, 'Austin', 'Texas', '10010', 'Canada', 'AMAZON', 71, 'LOW', 'female', 'Journalist', 'married', 'Enthusiastic about mountain bikes', 7);
|
|
606
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100521, 'Jacksonville', 'Florida', '10011', 'Mexico', 'AMAZON', 12, 'LOW', 'male', 'Chef', 'married', 'Prefers road bikes', 1);
|
|
607
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100522, 'Fort Worth', 'Texas', '10012', 'Canada', 'INDIV', 39, 'HIGH', 'other', 'Veterinarian', 'other', 'Frequent buyer of bike sports', 2);
|
|
608
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100523, 'Columbus', 'Ohio', '10013', 'Mexico', 'INDIV', 47, 'MEDIUM', 'male', 'Engineer', 'widowed', 'Looking for e-bikes', 4);
|
|
609
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100524, 'Charlotte', 'North Carolina', '10014', 'Canada', 'SHOP', 55, 'HIGH', 'NA', 'Engineer', 'single', 'Frequent buyer of mountain bikes', 9);
|
|
610
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100525, 'San Francisco', 'California', '10015', 'Mexico', 'INDIV', 23, 'MEDIUM', 'female', 'Accountant', 'widowed', 'Looking for mountain bikes', 8);
|
|
611
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100526, 'Indianapolis', 'Indiana', '10016', 'Mexico', 'AMAZON', 33, 'HIGH', 'other', 'Accountant', 'married', 'Prefers mountain bikes', 6);
|
|
612
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100527, 'Seattle', 'Washington', '10017', 'Canada', 'AMAZON', 24, 'LOW', 'female', 'Pharmacist', 'single', 'Interested in mountain bikes', 2);
|
|
613
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100528, 'Denver', 'Colorado', '10018', 'Canada', 'SHOP', 16, 'HIGH', 'NA', 'Pilot', 'divorced', 'Prefers road bikes', 7);
|
|
614
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100529, 'Washington', 'DC', '10019', 'Canada', 'AMAZON', 16, 'HIGH', 'female', 'Lawyer', 'other', 'Prefers mountain bikes', 1);
|
|
615
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100530, 'Boston', 'Massachusetts', '10020', 'Mexico', 'AMAZON', 75, 'LOW', 'female', 'Chef', 'married', 'Prefers mountain bikes', 7);
|
|
616
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100531, 'El Paso', 'Texas', '10021', 'USA', 'INDIV', 12, 'HIGH', 'male', 'Pharmacist', 'divorced', 'Looking for road bikes', 7);
|
|
617
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100532, 'Nashville', 'Tennessee', '10022', 'Canada', 'CLUB', 39, 'HIGH', 'male', 'Architect', 'divorced', 'Interested in bike accessories', 2);
|
|
618
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100533, 'Detroit', 'Michigan', '10023', 'Canada', 'CLUB', 80, 'HIGH', 'male', 'Software Developer', 'widowed', 'Looking for road bikes', 5);
|
|
619
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100534, 'Oklahoma City', 'Oklahoma', '10024', 'Canada', 'CLUB', 52, 'HIGH', 'female', 'Accountant', 'widowed', 'Enthusiastic about e-bikes', 10);
|
|
620
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100535, 'Portland', 'Oregon', '10025', 'USA', 'SHOP', 54, 'HIGH', 'other', 'Teacher', 'widowed', 'Enthusiastic about e-bikes', 6);
|
|
621
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100536, 'Las Vegas', 'Nevada', '10026', 'Mexico', 'SHOP', 80, 'HIGH', 'female', 'Journalist', 'single', 'Enthusiastic about road bikes', 9);
|
|
622
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100537, 'Memphis', 'Tennessee', '10027', 'Mexico', 'AMAZON', 72, 'HIGH', 'male', 'Pharmacist', 'single', 'Interested in road bikes', 4);
|
|
623
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100538, 'Louisville', 'Kentucky', '10028', 'Canada', 'SHOP', 27, 'MEDIUM', 'NA', 'Engineer', 'widowed', 'Enthusiastic about bike accessories', 2);
|
|
624
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100539, 'Baltimore', 'Maryland', '10029', 'USA', 'INDIV', 44, 'LOW', 'female', 'Pharmacist', 'divorced', 'Prefers mountain bikes', 6);
|
|
625
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100540, 'New York', 'New York', '10000', 'Mexico', 'CLUB', 35, 'LOW', 'other', 'Accountant', 'single', 'Frequent buyer of bike sports', 8);
|
|
626
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100541, 'Los Angeles', 'California', '10001', 'Canada', 'SHOP', 44, 'MEDIUM', 'female', 'Journalist', 'single', 'Looking for e-bikes', 5);
|
|
627
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100542, 'Chicago', 'Illinois', '10002', 'Canada', 'INDIV', 66, 'MEDIUM', 'NA', 'Architect', 'other', 'Frequent buyer of road bikes', 3);
|
|
628
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100543, 'Houston', 'Texas', '10003', 'USA', 'AMAZON', 43, 'MEDIUM', 'male', 'Artist', 'divorced', 'Looking for bike sports', 6);
|
|
629
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100544, 'Phoenix', 'Arizona', '10004', 'Mexico', 'INDIV', 33, 'LOW', 'other', 'Pilot', 'divorced', 'Frequent buyer of e-bikes', 3);
|
|
630
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100545, 'Philadelphia', 'Pennsylvania', '10005', 'Mexico', 'SHOP', 40, 'MEDIUM', 'NA', 'Architect', 'other', 'Enthusiastic about road bikes', 7);
|
|
631
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100546, 'San Antonio', 'Texas', '10006', 'USA', 'AMAZON', 66, 'MEDIUM', 'NA', 'Software Developer', 'single', 'Frequent buyer of e-bikes', 2);
|
|
632
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100547, 'San Diego', 'California', '10007', 'USA', 'CLUB', 24, 'LOW', 'NA', 'Journalist', 'widowed', 'Looking for bike sports', 5);
|
|
633
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100548, 'Dallas', 'Texas', '10008', 'Mexico', 'CLUB', 14, 'LOW', 'other', 'Artist', 'married', 'Looking for mountain bikes', 5);
|
|
634
|
+
-- INSERT INTO tmp_d_ebike_customers_sup (customer_id, city, state, postal_code, country, customer_type, avg_age, income_level, gender, occupation, marital_status, customer_note, customer_decile) VALUES (100549, 'San Jose', 'California', '10009', 'Canada', 'CLUB', 48, 'MEDIUM', 'female', 'Chef', 'married', 'Looking for bike sports', 6);
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
-- f_ebike_sales
|
|
638
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
639
|
+
(1,'2022-02-16',100358,40008,30034,3,1960.42,5881.26,19.60,5861.66,'2023-08-01','1900-01-01',NULL),
|
|
640
|
+
(2,'2023-05-03',100292,40007,30040,1,622.21,622.21,24.89,597.32,'2024-09-07','2023-10-30',NULL),
|
|
641
|
+
(3,'2022-10-16',100223,40005,30033,2,328.48,656.96,6.57,650.39,'2022-12-23',NULL,NULL),
|
|
642
|
+
(4,'2023-01-09',100402,40015,30005,4,817.62,3270.48,16.35,3254.13,'2023-01-20','1899-01-12',NULL),
|
|
643
|
+
(5,'2023-04-16',100381,40007,30005,3,817.62,2452.86,24.53,2428.33,'2025-04-01','2023-08-25',NULL),
|
|
644
|
+
(6,'2022-08-21',100308,40003,30017,5,1370.31,6851.55,41.11,6810.44,'2023-06-01','2022-09-15',NULL),
|
|
645
|
+
(8,'2022-10-26',100485,40011,30011,3,405.41,1216.23,16.22,1200.01,'2024-01-11','2023-09-09',NULL),
|
|
646
|
+
(9,'2023-01-27',100373,40017,30012,3,1105.16,3315.48,44.21,3271.27,'2024-07-24','2023-09-27',NULL),
|
|
647
|
+
(11,'2022-01-29',100288,40006,30012,5,1105.16,5525.80,0.00,5525.80,'2022-02-23','1900-01-01',NULL),
|
|
648
|
+
(12,'2023-04-22',100224,40014,30014,1,1991.01,1991.01,0.00,1991.01,'2025-04-12','2023-10-23',NULL);
|
|
649
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
650
|
+
(13,'2023-04-30',100008,40010,30007,2,245.57,491.14,12.28,478.86,'2024-12-29','2023-12-20',NULL),
|
|
651
|
+
(14,'2022-03-11',100068,40005,30032,1,994.29,994.29,29.83,964.46,'2023-07-08','2023-01-30',NULL),
|
|
652
|
+
(15,'2022-11-30',100404,40007,30009,3,695.15,2085.45,13.90,2071.55,'2023-10-31',NULL,NULL),
|
|
653
|
+
(16,'2022-04-15',100343,40003,30040,1,622.21,622.21,0.00,622.21,'2022-06-03','2023-03-09',NULL),
|
|
654
|
+
(18,'2022-07-30',100267,40010,30024,2,387.16,774.32,19.36,754.96,'2022-10-29',NULL,NULL),
|
|
655
|
+
(19,'2022-06-04',100327,40003,30022,4,532.16,2128.64,26.61,2102.03,'2024-04-13',NULL,NULL),
|
|
656
|
+
(20,'2022-10-14',100309,40001,30022,1,532.16,532.16,0.00,532.16,'2023-09-18',NULL,NULL),
|
|
657
|
+
(21,'2022-07-29',100175,40005,30028,4,1223.42,4893.68,12.23,4881.45,'2023-08-25',NULL,NULL),
|
|
658
|
+
(22,'2022-03-30',100357,40007,30012,5,1105.16,5525.80,44.21,5481.59,'2022-05-26','2023-01-06',NULL),
|
|
659
|
+
(23,'2022-10-12',100448,40017,30034,4,1960.42,7841.68,0.00,7841.68,'2022-12-20',NULL,NULL);
|
|
660
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
661
|
+
(24,'2022-02-10',100249,40004,30029,1,1880.10,1880.10,18.80,1861.30,'2023-04-20','2022-12-28',NULL),
|
|
662
|
+
(26,'2022-05-30',100098,40011,30026,1,1889.54,1889.54,56.69,1832.85,'2023-07-07',NULL,NULL),
|
|
663
|
+
(27,'2022-02-04',100174,40003,30020,1,1813.82,1813.82,90.69,1723.13,'2023-10-15',NULL,NULL),
|
|
664
|
+
(28,'2022-11-18',100070,40001,30034,4,1960.42,7841.68,0.00,7841.68,'2024-01-19',NULL,NULL),
|
|
665
|
+
(29,'2023-04-15',100160,40015,30038,2,1680.36,3360.72,16.80,3343.92,'2024-05-18','2023-05-08',NULL),
|
|
666
|
+
(30,'2023-02-06',100117,40002,30030,1,444.46,444.46,13.33,431.13,'2023-03-10',NULL,NULL),
|
|
667
|
+
(31,'2022-02-17',100154,40004,30030,4,444.46,1777.84,13.33,1764.51,'2023-02-03',NULL,NULL),
|
|
668
|
+
(32,'2022-01-27',100475,40013,30020,1,1813.82,1813.82,90.69,1723.13,'2022-06-05',NULL,NULL),
|
|
669
|
+
(33,'2022-11-08',100378,40001,30005,2,817.62,1635.24,24.53,1610.71,'2024-08-04','2023-10-04',NULL),
|
|
670
|
+
(34,'2023-03-30',100490,40001,30033,1,328.48,328.48,6.57,321.91,'2023-05-03',NULL,NULL);
|
|
671
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
672
|
+
(36,'2023-04-10',100374,40011,30027,4,1293.81,5175.24,38.81,5136.43,'2024-09-12',NULL,NULL),
|
|
673
|
+
(37,'2022-04-18',100237,40004,30020,3,1813.82,5441.46,0.00,5441.46,'2024-03-11',NULL,NULL),
|
|
674
|
+
(38,'2022-10-14',100253,40010,30011,4,405.41,1621.64,8.11,1613.53,'2024-03-19','2023-06-15',NULL),
|
|
675
|
+
(39,'2022-06-16',100119,40015,30028,4,1223.42,4893.68,0.00,4893.68,'2023-03-30',NULL,NULL),
|
|
676
|
+
(40,'2022-06-29',100094,40007,30018,5,1307.48,6537.40,26.15,6511.25,'2024-01-30',NULL,NULL),
|
|
677
|
+
(41,'2023-01-18',100430,40014,30041,3,171.82,515.46,3.44,512.02,'2023-02-11','2023-06-01',NULL),
|
|
678
|
+
(42,'2023-03-04',100226,40001,30000,5,567.19,2835.95,5.67,2830.28,'2024-10-03',NULL,NULL),
|
|
679
|
+
(43,'2022-12-22',100249,40004,30006,5,645.85,3229.25,25.83,3203.42,'2023-02-21','2023-08-11',NULL),
|
|
680
|
+
(44,'2022-07-21',100177,40000,30041,1,171.82,171.82,3.44,168.38,'2022-12-29','2022-08-31',NULL),
|
|
681
|
+
(45,'2023-01-20',100024,40006,30026,1,1889.54,1889.54,37.79,1851.75,'2023-07-13',NULL,NULL);
|
|
682
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
683
|
+
(46,'2022-12-31',100142,40010,30022,3,532.16,1596.48,26.61,1569.87,'2023-08-19',NULL,NULL),
|
|
684
|
+
(47,'2022-05-07',100165,40017,30008,1,356.17,356.17,3.56,352.61,'2022-08-27','2022-08-30',NULL),
|
|
685
|
+
(49,'2022-11-24',100336,40004,30034,1,1960.42,1960.42,0.00,1960.42,'2024-03-16',NULL,NULL),
|
|
686
|
+
(50,'2023-02-04',100259,40005,30005,1,817.62,817.62,24.53,793.09,'2023-04-18','2023-03-04',NULL),
|
|
687
|
+
(51,'2022-02-11',100135,40000,30015,2,198.79,397.58,0.00,397.58,'2023-05-12',NULL,NULL),
|
|
688
|
+
(52,'2022-12-18',100339,40015,30011,1,405.41,405.41,8.11,397.30,'2024-08-29','2023-11-19',NULL),
|
|
689
|
+
(53,'2022-04-18',100150,40014,30022,1,532.16,532.16,0.00,532.16,'2023-02-01',NULL,NULL),
|
|
690
|
+
(54,'2022-04-13',100294,40005,30036,1,932.30,932.30,18.65,913.65,'2023-03-22','2022-09-19',NULL),
|
|
691
|
+
(55,'2022-06-17',100129,40008,30024,1,387.16,387.16,23.23,363.93,'2023-02-03',NULL,NULL),
|
|
692
|
+
(56,'2023-02-16',100300,40007,30023,3,528.54,1585.62,10.57,1575.05,'2023-08-15',NULL,NULL);
|
|
693
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
694
|
+
(57,'2023-05-02',100172,40011,30013,3,1175.57,3526.71,11.76,3514.95,'2023-05-23','2023-06-19',NULL),
|
|
695
|
+
(58,'2023-01-24',100234,40010,30008,1,356.17,356.17,10.69,345.48,'2024-05-14','2023-02-26',NULL),
|
|
696
|
+
(59,'2023-01-23',100258,40014,30007,4,245.57,982.28,12.28,970.00,'2024-04-08','2023-07-05',NULL),
|
|
697
|
+
(60,'2022-02-07',100367,40010,30027,3,1293.81,3881.43,51.75,3829.68,'2022-07-29',NULL,NULL),
|
|
698
|
+
(61,'2022-03-21',100272,40015,30008,4,356.17,1424.68,3.56,1421.12,'2023-12-03','2022-07-14',NULL),
|
|
699
|
+
(63,'2023-03-10',100353,40012,30040,5,622.21,3111.05,49.78,3061.27,'2024-09-13','2023-07-26',NULL),
|
|
700
|
+
(64,'2022-07-02',100115,40015,30021,2,932.80,1865.60,0.00,1865.60,'2023-02-09','2023-04-22',NULL),
|
|
701
|
+
(66,'2022-05-12',100322,40015,30026,5,1889.54,9447.70,113.37,9334.33,'2023-10-21',NULL,NULL),
|
|
702
|
+
(67,'2022-06-08',100489,40007,30035,5,1975.54,9877.70,59.27,9818.43,'2022-10-05',NULL,NULL),
|
|
703
|
+
(68,'2023-01-22',100168,40012,30012,1,1105.16,1105.16,44.21,1060.95,'2023-12-22','2023-10-29',NULL);
|
|
704
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
705
|
+
(70,'2022-08-12',100188,40007,30027,5,1293.81,6469.05,64.69,6404.36,'2023-06-28',NULL,NULL),
|
|
706
|
+
(71,'2022-05-23',100109,40005,30019,3,320.91,962.73,22.46,940.27,'2022-07-20','2022-10-31',NULL),
|
|
707
|
+
(72,'2022-02-02',100326,40007,30018,2,1307.48,2614.96,104.60,2510.36,'2023-07-29',NULL,NULL),
|
|
708
|
+
(73,'2023-01-19',100012,40008,30015,3,198.79,596.37,3.98,592.39,'2024-03-23',NULL,NULL),
|
|
709
|
+
(75,'2022-03-19',100154,40011,30026,3,1889.54,5668.62,56.69,5611.93,'2023-05-30',NULL,NULL),
|
|
710
|
+
(79,'2022-07-29',100307,40013,30028,3,1223.42,3670.26,12.23,3658.03,'2022-08-10',NULL,NULL),
|
|
711
|
+
(80,'2022-02-21',100403,40008,30027,4,1293.81,5175.24,64.69,5110.55,'2023-05-28',NULL,NULL),
|
|
712
|
+
(81,'2023-03-29',100218,40002,30011,3,405.41,1216.23,12.16,1204.07,'2025-01-21','2023-12-23',NULL),
|
|
713
|
+
(82,'2022-04-18',100180,40010,30003,5,1743.76,8718.80,104.63,8614.17,'2022-10-06','2023-01-30',NULL),
|
|
714
|
+
(83,'2022-12-19',100161,40005,30021,5,932.80,4664.00,9.33,4654.67,'2023-03-12','2023-11-21',NULL);
|
|
715
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
716
|
+
(84,'2022-04-03',100430,40003,30041,2,171.82,343.64,12.03,331.61,'2023-03-19','2023-03-22',NULL),
|
|
717
|
+
(85,'2022-11-08',100016,40014,30010,4,1190.00,4760.00,59.50,4700.50,'2023-11-06','2023-06-27',NULL),
|
|
718
|
+
(86,'2022-06-28',100456,40006,30027,3,1293.81,3881.43,64.69,3816.74,'2023-06-26',NULL,NULL),
|
|
719
|
+
(88,'2022-05-16',100055,40000,30020,3,1813.82,5441.46,108.83,5332.63,'2024-01-02',NULL,NULL),
|
|
720
|
+
(89,'2022-04-05',100394,40004,30003,1,1743.76,1743.76,104.63,1639.13,'2023-07-29','2022-10-01',NULL),
|
|
721
|
+
(90,'2022-11-13',100340,40011,30019,5,320.91,1604.55,0.00,1604.55,'2023-02-10','2023-04-07',NULL),
|
|
722
|
+
(92,'2022-12-11',100399,40005,30040,4,622.21,2488.84,18.67,2470.17,'2023-02-18','2022-12-12',NULL),
|
|
723
|
+
(93,'2022-08-31',100031,40009,30017,3,1370.31,4110.93,0.00,4110.93,'2023-12-16','2023-06-04',NULL),
|
|
724
|
+
(95,'2022-04-10',100208,40011,30041,4,171.82,687.28,15.46,671.82,'2023-11-12','2022-11-02',NULL),
|
|
725
|
+
(96,'2022-09-30',100129,40010,30009,3,695.15,2085.45,0.00,2085.45,'2024-04-28',NULL,NULL);
|
|
726
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
727
|
+
(97,'2023-02-20',100186,40017,30004,4,1972.62,7890.48,0.00,7890.48,'2025-01-25','2024-01-04',NULL),
|
|
728
|
+
(98,'2022-03-24',100495,40009,30013,4,1175.57,4702.28,11.76,4690.52,'2022-12-05','2022-10-03',NULL),
|
|
729
|
+
(99,'2022-12-19',100462,40008,30028,4,1223.42,4893.68,24.47,4869.21,'2023-10-18',NULL,NULL),
|
|
730
|
+
(100,'2022-06-14',100322,40005,30031,4,1725.54,6902.16,69.02,6833.14,'2023-01-09','2022-09-03',NULL),
|
|
731
|
+
(101,'2023-05-30',100006,40005,30032,3,994.29,2982.87,0.00,2982.87,'2024-08-02','2023-12-27',NULL),
|
|
732
|
+
(102,'2022-09-22',100425,40015,30027,5,1293.81,6469.05,12.94,6456.11,'2022-12-04',NULL,NULL),
|
|
733
|
+
(103,'2023-01-18',100398,40007,30027,3,1293.81,3881.43,51.75,3829.68,'2023-02-23',NULL,NULL),
|
|
734
|
+
(104,'2022-09-17',100129,40011,30022,3,532.16,1596.48,10.64,1585.84,'2024-09-07',NULL,NULL),
|
|
735
|
+
(105,'2022-04-07',100414,40004,30001,2,1693.93,3387.86,16.94,3370.92,'2023-04-08',NULL,NULL),
|
|
736
|
+
(106,'2022-02-07',100495,40003,30031,2,1725.54,3451.08,0.00,3451.08,'2022-07-04','2022-08-16',NULL);
|
|
737
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
738
|
+
(107,'2022-07-23',100408,40017,30031,3,1725.54,5176.62,86.28,5090.34,'2024-07-09','2022-09-04',NULL),
|
|
739
|
+
(109,'2022-06-22',100442,40003,30039,2,103.13,206.26,1.03,205.23,'2023-02-04','2022-09-28',NULL),
|
|
740
|
+
(110,'2022-07-15',100125,40002,30007,2,245.57,491.14,12.28,478.86,'2023-01-25','2022-11-12',NULL),
|
|
741
|
+
(111,'2023-01-31',100163,40009,30011,3,405.41,1216.23,12.16,1204.07,'2024-08-29','2023-02-07',NULL),
|
|
742
|
+
(112,'2023-03-05',100393,40008,30032,3,994.29,2982.87,59.66,2923.21,'2023-05-05','2024-01-27',NULL),
|
|
743
|
+
(113,'2023-01-12',100099,40001,30011,4,405.41,1621.64,4.05,1617.59,'2024-03-29','2023-05-16',NULL),
|
|
744
|
+
(115,'2022-07-24',100037,40007,30031,3,1725.54,5176.62,86.28,5090.34,'2024-03-08','2022-09-22',NULL),
|
|
745
|
+
(116,'2023-02-07',100228,40003,30022,1,532.16,532.16,0.00,532.16,'2024-01-30',NULL,NULL),
|
|
746
|
+
(117,'2022-05-05',100465,40016,30029,2,1880.10,3760.20,0.00,3760.20,'2022-07-11','2022-05-27',NULL),
|
|
747
|
+
(118,'2023-03-09',100163,40006,30041,4,171.82,687.28,5.15,682.13,'2024-09-25','2023-09-29',NULL);
|
|
748
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
749
|
+
(7,'2023-06-26',100368,40009,30030,2,444.46,888.92,13.33,875.59,'2023-11-26',NULL,NULL),
|
|
750
|
+
(35,'2023-06-08',100199,40009,30026,4,1889.54,7558.16,75.58,7482.58,'2024-11-13',NULL,NULL),
|
|
751
|
+
(69,'2023-06-14',100322,40014,30019,3,320.91,962.73,9.63,953.10,'2024-01-10','2023-11-03',NULL),
|
|
752
|
+
(76,'2023-06-18',100172,40002,30005,3,817.62,2452.86,8.18,2444.68,'2024-11-18','2024-02-02',NULL),
|
|
753
|
+
(77,'2023-06-08',100144,40012,30039,1,103.13,103.13,1.03,102.10,'2024-04-26','2024-04-25',NULL),
|
|
754
|
+
(127,'2023-06-10',100388,40004,30035,3,1975.54,5926.62,19.76,5906.86,'2024-02-03',NULL,NULL),
|
|
755
|
+
(128,'2023-06-09',100433,40008,30001,4,1693.93,6775.72,33.88,6741.84,'2024-05-24',NULL,NULL),
|
|
756
|
+
(141,'2023-06-15',100202,40012,30009,4,695.15,2780.60,27.81,2752.79,'2023-10-09',NULL,NULL),
|
|
757
|
+
(143,'2023-06-16',100009,40000,30041,1,171.82,171.82,10.31,161.51,'2024-07-07','2024-04-12',NULL),
|
|
758
|
+
(149,'2023-06-08',100127,40001,30003,3,1743.76,5231.28,34.88,5196.40,'2024-07-03','2023-10-22',NULL);
|
|
759
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
760
|
+
(172,'2023-06-07',100080,40001,30022,4,532.16,2128.64,26.61,2102.03,'2025-01-09',NULL,NULL),
|
|
761
|
+
(233,'2023-06-12',100483,40016,30016,2,180.51,361.02,7.22,353.80,'2024-03-15','2024-04-19',NULL),
|
|
762
|
+
(240,'2023-06-23',100454,40007,30018,5,1307.48,6537.40,0.00,6537.40,'2024-01-20',NULL,NULL),
|
|
763
|
+
(242,'2023-06-23',100184,40012,30024,5,387.16,1935.80,3.87,1931.93,'2023-11-22',NULL,NULL),
|
|
764
|
+
(251,'2023-06-17',100353,40000,30041,5,171.82,859.10,15.46,843.64,'2023-07-05','2023-11-08',NULL),
|
|
765
|
+
(254,'2023-06-11',100336,40011,30041,5,171.82,859.10,13.75,845.35,'2025-03-13','2024-05-09',NULL),
|
|
766
|
+
(275,'2023-06-01',100335,40017,30020,1,1813.82,1813.82,126.97,1686.85,'2023-11-24',NULL,NULL),
|
|
767
|
+
(290,'2023-06-21',100230,40008,30003,4,1743.76,6975.04,0.00,6975.04,'2024-07-29','2024-04-29',NULL),
|
|
768
|
+
(299,'2023-06-27',100039,40014,30020,1,1813.82,1813.82,90.69,1723.13,'2023-10-05',NULL,NULL),
|
|
769
|
+
(318,'2023-06-03',100218,40002,30014,3,1991.01,5973.03,0.00,5973.03,'2025-02-23','2023-11-21',NULL);
|
|
770
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
771
|
+
(322,'2023-06-05',100361,40013,30023,2,528.54,1057.08,52.85,1004.23,'2024-07-20',NULL,NULL),
|
|
772
|
+
(343,'2023-06-27',100476,40006,30037,4,670.94,2683.76,13.42,2670.34,'2024-11-16','2024-02-05',NULL),
|
|
773
|
+
(354,'2023-06-12',100416,40016,30018,5,1307.48,6537.40,78.45,6458.95,'2024-07-20',NULL,NULL),
|
|
774
|
+
(362,'2023-06-12',100053,40008,30017,2,1370.31,2740.62,41.11,2699.51,'2024-02-21','2023-11-28',NULL),
|
|
775
|
+
(390,'2023-06-29',100295,40000,30014,3,1991.01,5973.03,19.91,5953.12,'2025-04-27','2024-01-26',NULL),
|
|
776
|
+
(405,'2023-06-04',100495,40006,30003,2,1743.76,3487.52,174.38,3313.14,'2024-08-20','2023-10-26',NULL),
|
|
777
|
+
(436,'2023-06-06',100317,40006,30040,3,622.21,1866.63,0.00,1866.63,'2023-06-13','2023-07-24',NULL),
|
|
778
|
+
(449,'2023-06-29',100496,40007,30029,4,1880.10,7520.40,0.00,7520.40,'2024-09-08','2024-02-19',NULL),
|
|
779
|
+
(454,'2023-06-18',100490,40014,30035,5,1975.54,9877.70,59.27,9818.43,'2024-03-10',NULL,NULL),
|
|
780
|
+
(494,'2023-06-22',100416,40007,30012,5,1105.16,5525.80,44.21,5481.59,'2024-11-23','2024-04-07',NULL);
|
|
781
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
782
|
+
(503,'2023-06-19',100060,40007,30014,2,1991.01,3982.02,0.00,3982.02,'2024-10-19','2023-11-29',NULL),
|
|
783
|
+
(547,'2023-06-10',100066,40004,30030,3,444.46,1333.38,8.89,1324.49,'2024-08-09',NULL,NULL),
|
|
784
|
+
(562,'2023-06-16',100125,40013,30028,4,1223.42,4893.68,24.47,4869.21,'2025-02-22',NULL,NULL),
|
|
785
|
+
(594,'2023-06-30',100138,40015,30009,5,695.15,3475.75,20.85,3454.90,'2025-01-28',NULL,NULL),
|
|
786
|
+
(606,'2023-06-10',100268,40015,30011,3,405.41,1216.23,8.11,1208.12,'2023-11-25','2024-03-12',NULL),
|
|
787
|
+
(622,'2023-06-01',100212,40000,30036,NULL,932.30,932.30,27.97,904.33,'2024-01-16','2023-01-01',NULL),
|
|
788
|
+
(656,'2023-06-09',100039,40013,30002,3,1767.03,5301.09,0.00,5301.09,'2024-05-09','2023-10-15',NULL),
|
|
789
|
+
(674,'2023-06-18',100406,40004,30024,1,387.16,387.16,27.10,360.06,'2023-10-11',NULL,NULL),
|
|
790
|
+
(682,'2023-06-04',100066,40006,30008,5,356.17,1780.85,7.12,1773.73,'2023-11-13','2023-08-14',NULL),
|
|
791
|
+
(693,'2023-06-21',100309,40012,30014,4,1991.01,7964.04,19.91,7944.13,'2023-11-08','2024-01-23',NULL);
|
|
792
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
793
|
+
(743,'2023-06-17',100309,40017,30022,3,532.16,1596.48,21.29,1575.19,'2024-02-15',NULL,NULL),
|
|
794
|
+
(754,'2023-06-29',100154,40002,30037,2,670.94,1341.88,20.13,1321.75,'2024-10-11','2024-03-23',NULL),
|
|
795
|
+
(801,'2023-06-17',100045,40016,30038,3,1680.36,5041.08,0.00,5041.08,'2025-03-25','2024-06-14',NULL),
|
|
796
|
+
(809,'2023-06-18',100384,40015,30015,1,198.79,198.79,1.99,196.80,'2024-07-10',NULL,NULL),
|
|
797
|
+
(848,'2023-06-02',100060,40011,30038,3,1680.36,5041.08,16.80,5024.28,'2023-12-11','2023-07-17',NULL),
|
|
798
|
+
(876,'2023-06-26',100464,40011,30020,4,1813.82,7255.28,90.69,7164.59,'2025-05-26',NULL,NULL),
|
|
799
|
+
(905,'2023-06-11',100369,40003,30007,3,245.57,736.71,4.91,731.80,'2024-04-08','2023-12-30',NULL),
|
|
800
|
+
(911,'2023-06-01',100039,40002,30011,5,405.41,2027.05,4.05,2023.00,'2024-09-25','2023-07-09',NULL),
|
|
801
|
+
(928,'2023-06-02',100090,40007,30020,1,1813.82,1813.82,90.69,1723.13,'2023-10-12',NULL,NULL),
|
|
802
|
+
(954,'2023-06-05',100477,40001,30008,2,356.17,712.34,0.00,712.34,'2025-04-13','2023-07-24',NULL);
|
|
803
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
804
|
+
(986,'2023-06-27',100192,40012,30020,4,1813.82,7255.28,36.28,7219.00,'2023-11-19',NULL,NULL),
|
|
805
|
+
(1023,'2023-06-24',100389,40016,30004,3,1972.62,5917.86,0.00,5917.86,'2024-08-12','2023-06-27',NULL),
|
|
806
|
+
(1056,'2023-06-05',100312,40000,30011,5,405.41,2027.05,4.05,2023.00,'2024-02-18','2023-08-31',NULL),
|
|
807
|
+
(1061,'2023-06-16',100322,40005,30009,5,695.15,3475.75,6.95,3468.80,'2024-08-29',NULL,NULL),
|
|
808
|
+
(1079,'2023-06-02',100288,40013,30041,1,171.82,171.82,0.00,171.82,'2025-02-04','2023-08-03',NULL),
|
|
809
|
+
(1085,'2023-06-26',100112,40013,30008,5,356.17,1780.85,14.25,1766.60,'2024-01-15','2024-02-20',NULL),
|
|
810
|
+
(1122,'2023-06-11',100450,40016,30036,5,932.30,4661.50,18.65,4642.85,'2024-04-27','2024-02-21',NULL),
|
|
811
|
+
(1131,'2023-06-30',100024,40002,30006,5,645.85,3229.25,38.75,3190.50,'2025-06-26','2023-11-02',NULL),
|
|
812
|
+
(1147,'2023-06-25',100382,40000,30036,2,932.30,1864.60,27.97,1836.63,'2024-02-12','2023-08-17',NULL),
|
|
813
|
+
(1153,'2023-06-08',100209,40014,30013,4,1175.57,4702.28,0.00,4702.28,'2024-07-22','2023-08-08',NULL);
|
|
814
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
815
|
+
(1159,'2023-06-12',100450,40010,30036,5,932.30,4661.50,27.97,4633.53,'2024-02-07','2023-11-07',NULL),
|
|
816
|
+
(1171,'2023-06-05',100474,40008,30017,3,1370.31,4110.93,0.00,4110.93,'2025-04-19','2023-08-14',NULL),
|
|
817
|
+
(1197,'2023-06-21',100451,40011,30016,4,180.51,722.04,7.22,714.82,'2025-03-14','2023-09-16',NULL),
|
|
818
|
+
(1239,'2023-06-19',100036,40016,30005,3,817.62,2452.86,0.00,2452.86,'2023-11-29','2024-05-27',NULL),
|
|
819
|
+
(1289,'2023-06-03',100447,40007,30014,1,1991.01,1991.01,19.91,1971.10,'2024-07-10','2024-04-25',NULL),
|
|
820
|
+
(1295,'2023-06-12',100348,40002,30013,1,1175.57,1175.57,23.51,1152.06,'2025-03-21','2023-11-30',NULL),
|
|
821
|
+
(1299,'2023-06-12',100004,40013,30027,3,1293.81,3881.43,64.69,3816.74,'2024-10-17',NULL,NULL),
|
|
822
|
+
(1301,'2023-06-29',100286,40004,30006,5,645.85,3229.25,12.92,3216.33,'2023-11-01','2024-01-10',NULL),
|
|
823
|
+
(1322,'2023-06-16',100363,40012,30036,4,932.30,3729.20,9.32,3719.88,'2024-12-05','2024-02-12',NULL),
|
|
824
|
+
(1415,'2023-06-03',100258,40004,30032,4,994.29,3977.16,19.89,3957.27,'2024-11-26','2023-09-24',NULL);
|
|
825
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
826
|
+
(1425,'2023-06-03',100212,40017,30030,2,444.46,888.92,13.33,875.59,'2024-12-24',NULL,NULL),
|
|
827
|
+
(1454,'2023-06-05',100202,40005,30027,5,1293.81,6469.05,77.63,6391.42,'2024-12-22',NULL,NULL),
|
|
828
|
+
(1468,'2023-06-14',100155,40017,30021,5,932.80,4664.00,18.66,4645.34,'2023-10-13','2023-11-16',NULL),
|
|
829
|
+
(1477,'2023-06-27',100076,40005,30035,3,1975.54,5926.62,39.51,5887.11,'2024-10-26',NULL,NULL),
|
|
830
|
+
(1517,'2023-06-06',100205,40009,30024,1,387.16,387.16,0.00,387.16,'2025-06-04',NULL,NULL),
|
|
831
|
+
(1520,'2023-06-28',100322,40003,30032,4,994.29,3977.16,49.71,3927.45,'2023-11-13','2023-10-17',NULL),
|
|
832
|
+
(1522,'2023-06-01',100397,40006,30007,1,245.57,245.57,2.46,243.11,'2024-12-02','2023-06-06',NULL),
|
|
833
|
+
(1601,'2023-06-12',100189,40016,30004,1,1972.62,1972.62,39.45,1933.17,'2025-02-15','2024-06-10',NULL),
|
|
834
|
+
(1617,'2023-06-24',100347,40009,30027,4,1293.81,5175.24,90.57,5084.67,'2024-02-21',NULL,NULL),
|
|
835
|
+
(1652,'2023-06-27',100434,40002,30003,5,1743.76,8718.80,122.06,8596.74,'2025-06-10','2023-09-22',NULL);
|
|
836
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
837
|
+
(1669,'2023-06-15',100099,40010,30005,4,817.62,3270.48,8.18,3262.30,'2025-04-04','2023-08-26',NULL),
|
|
838
|
+
(1695,'2023-06-12',100086,40010,30040,2,622.21,1244.42,18.67,1225.75,'2025-02-14','2024-03-18',NULL),
|
|
839
|
+
(1707,'2023-06-10',100079,40006,30024,1,387.16,387.16,11.61,375.55,'2024-05-24',NULL,NULL),
|
|
840
|
+
(1718,'2023-06-24',100089,40013,30008,3,356.17,1068.51,10.69,1057.82,'2024-04-26','2023-07-11',NULL),
|
|
841
|
+
(1721,'2023-06-22',100414,40015,30023,1,528.54,528.54,0.00,528.54,'2025-05-09',NULL,NULL),
|
|
842
|
+
(1782,'2023-06-23',100076,40015,30036,1,932.30,932.30,0.00,932.30,'2023-08-28','2023-07-22',NULL),
|
|
843
|
+
(1795,'2023-06-28',100483,40017,30034,1,1960.42,1960.42,0.00,1960.42,'2023-12-07',NULL,NULL),
|
|
844
|
+
(1813,'2023-06-15',100461,40010,30038,5,1680.36,8401.80,16.80,8385.00,'2025-02-06','2023-08-16',NULL),
|
|
845
|
+
(1884,'2023-06-14',100119,40015,30012,1,1105.16,1105.16,22.10,1083.06,'2024-08-17','2024-01-10',NULL),
|
|
846
|
+
(1891,'2023-06-04',100183,40002,30041,1,171.82,171.82,6.87,164.95,'2024-12-26','2023-11-18',NULL);
|
|
847
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
848
|
+
(1930,'2023-06-04',100457,40017,30030,1,444.46,444.46,17.78,426.68,'2024-07-14',NULL,NULL),
|
|
849
|
+
(1955,'2023-06-25',100189,40008,30018,3,1307.48,3922.44,52.30,3870.14,'2025-02-05',NULL,NULL),
|
|
850
|
+
(1964,'2023-06-20',100296,40014,30006,2,645.85,1291.70,58.13,1233.57,'2024-09-27','2024-06-07',NULL),
|
|
851
|
+
(1981,'2023-06-20',100313,40000,30007,4,245.57,982.28,12.28,970.00,'2024-03-11','2023-12-17',NULL),
|
|
852
|
+
(1990,'2023-06-19',100116,40012,30024,5,387.16,1935.80,23.23,1912.57,'2025-05-01',NULL,NULL),
|
|
853
|
+
(2018,'2023-06-15',100180,40001,30022,2,532.16,1064.32,26.61,1037.71,'2024-03-31',NULL,NULL),
|
|
854
|
+
(2110,'2023-06-20',100179,40014,30030,2,444.46,888.92,0.00,888.92,'2024-09-21',NULL,NULL),
|
|
855
|
+
(2115,'2023-06-01',100468,40011,30017,2,1370.31,2740.62,13.70,2726.92,'2024-12-12','2024-01-22',NULL),
|
|
856
|
+
(2144,'2023-06-23',100231,40008,30036,4,932.30,3729.20,0.00,3729.20,'2023-11-13','2023-08-05',NULL),
|
|
857
|
+
(2165,'2023-06-03',100399,40014,30011,2,405.41,810.82,16.22,794.60,'2024-01-16','2023-10-31',NULL);
|
|
858
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
859
|
+
(25,'2023-07-18',100389,40002,30011,5,405.41,2027.05,12.16,2014.89,'2025-02-02','2024-04-13',NULL),
|
|
860
|
+
(62,'2023-07-21',100281,40007,30040,5,622.21,3111.05,18.67,3092.38,'2024-02-03','2023-08-25',NULL),
|
|
861
|
+
(74,'2023-07-22',100205,40004,30006,1,645.85,645.85,25.83,620.02,'2025-01-05','2023-10-15',NULL),
|
|
862
|
+
(87,'2023-07-20',100182,40012,30031,4,1725.54,6902.16,86.28,6815.88,'2025-05-23','2024-05-10',NULL),
|
|
863
|
+
(94,'2023-07-30',100488,40006,30035,5,1975.54,9877.70,59.27,9818.43,'2024-12-02',NULL,NULL),
|
|
864
|
+
(108,'2023-07-23',100411,40006,30038,4,1680.36,6721.44,16.80,6704.64,'2024-04-19','2024-05-02',NULL),
|
|
865
|
+
(129,'2023-07-27',100311,40013,30034,1,1960.42,1960.42,19.60,1940.82,'2025-03-21',NULL,NULL),
|
|
866
|
+
(130,'2023-07-22',100305,40014,30039,5,103.13,515.65,2.06,513.59,'2024-06-03','2024-04-18',NULL),
|
|
867
|
+
(162,'2023-07-05',100016,40003,30011,2,405.41,810.82,4.05,806.77,'2024-12-15','2023-08-12',NULL),
|
|
868
|
+
(173,'2023-07-01',100478,40012,30040,3,622.21,1866.63,37.33,1829.30,'2025-05-16','2023-08-11',NULL);
|
|
869
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
870
|
+
(196,'2023-07-22',100313,40015,30024,3,387.16,1161.48,19.36,1142.12,'2025-01-10',NULL,NULL),
|
|
871
|
+
(228,'2023-07-15',100286,40002,30005,3,817.62,2452.86,0.00,2452.86,'2024-04-04','2023-11-15',NULL),
|
|
872
|
+
(291,'2023-07-19',100137,40013,30040,3,622.21,1866.63,24.89,1841.74,'2024-10-06','2023-10-17',NULL),
|
|
873
|
+
(303,'2023-07-05',100091,40013,30008,4,356.17,1424.68,7.12,1417.56,'2023-09-27','2023-10-02',NULL),
|
|
874
|
+
(315,'2023-07-31',100356,40007,30012,4,1105.16,4420.64,22.10,4398.54,'2024-10-10','2024-07-09',NULL),
|
|
875
|
+
(321,'2023-07-08',100254,40012,30022,1,532.16,532.16,21.29,510.87,'2024-12-02',NULL,NULL),
|
|
876
|
+
(324,'2023-07-10',100009,40014,30019,3,320.91,962.73,9.63,953.10,'2025-04-29','2023-12-02',NULL),
|
|
877
|
+
(337,'2023-07-18',100366,40012,30030,2,444.46,888.92,4.44,884.48,'2023-07-30',NULL,NULL),
|
|
878
|
+
(359,'2023-07-21',100073,40011,30000,3,567.19,1701.57,0.00,1701.57,'2025-01-31',NULL,NULL),
|
|
879
|
+
(394,'2023-07-22',100202,40016,30024,2,387.16,774.32,15.49,758.83,'2024-12-08',NULL,NULL);
|
|
880
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
881
|
+
(400,'2023-07-31',100039,40017,30000,3,567.19,1701.57,5.67,1695.90,'2023-10-04',NULL,NULL),
|
|
882
|
+
(409,'2023-07-19',100009,40005,30032,2,994.29,1988.58,9.94,1978.64,'2024-05-26','2023-10-20',NULL),
|
|
883
|
+
(412,'2023-07-15',100130,40003,30022,3,532.16,1596.48,5.32,1591.16,'2024-10-20',NULL,NULL),
|
|
884
|
+
(423,'2023-07-17',100487,40002,30012,5,1105.16,5525.80,44.21,5481.59,'2024-12-23','2024-06-22',NULL),
|
|
885
|
+
(427,'2023-07-04',100157,40002,30017,3,1370.31,4110.93,27.41,4083.52,'2023-08-20','2024-04-14',NULL),
|
|
886
|
+
(447,'2023-07-29',100191,40012,30000,5,567.19,2835.95,0.00,2835.95,'2024-06-20',NULL,NULL),
|
|
887
|
+
(510,'2023-07-18',100360,40012,30021,1,932.80,932.80,9.33,923.47,'2024-02-25','2023-10-26',NULL),
|
|
888
|
+
(520,'2023-07-25',100207,40011,30036,1,932.30,932.30,18.65,913.65,'2025-01-15','2024-07-08',NULL),
|
|
889
|
+
(522,'2023-07-21',100475,40004,30020,4,1813.82,7255.28,72.55,7182.73,'2024-12-08',NULL,NULL),
|
|
890
|
+
(523,'2023-07-28',100251,40002,30030,5,444.46,2222.30,0.00,2222.30,'2024-06-24',NULL,NULL);
|
|
891
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
892
|
+
(551,'2023-07-17',100151,40014,30022,2,532.16,1064.32,10.64,1053.68,'2023-10-13',NULL,NULL),
|
|
893
|
+
(566,'2023-07-26',100471,40007,30010,2,1190.00,2380.00,11.90,2368.10,'2023-12-11','2023-08-23',NULL),
|
|
894
|
+
(580,'2023-07-29',100265,40003,30017,3,1370.31,4110.93,41.11,4069.82,'2025-01-06','2024-01-31',NULL),
|
|
895
|
+
(583,'2023-07-29',100330,40009,30029,4,1880.10,7520.40,18.80,7501.60,'2024-10-31','2023-12-30',NULL),
|
|
896
|
+
(591,'2023-07-06',100155,40000,30003,1,1743.76,1743.76,156.94,1586.82,'2024-04-05','2023-07-07',NULL),
|
|
897
|
+
(612,'2023-07-14',100253,40016,30030,1,444.46,444.46,8.89,435.57,'2024-10-06',NULL,NULL),
|
|
898
|
+
(613,'2023-07-29',100281,40005,30015,4,198.79,795.16,0.00,795.16,'2024-06-28',NULL,NULL),
|
|
899
|
+
(619,'2023-07-21',100201,40015,30011,3,405.41,1216.23,16.22,1200.01,'2024-02-02','2024-04-05',NULL),
|
|
900
|
+
(623,'2023-07-12',100302,40008,30004,1,1972.62,1972.62,39.45,1933.17,'2024-08-15','2023-12-14',NULL),
|
|
901
|
+
(649,'2023-07-11',100467,40007,30010,4,1190.00,4760.00,71.40,4688.60,'2024-01-10','2023-10-09',NULL);
|
|
902
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
903
|
+
(653,'2023-07-13',100295,40009,30038,1,1680.36,1680.36,16.80,1663.56,'2024-05-07','2024-04-17',NULL),
|
|
904
|
+
(660,'2023-07-04',100416,40002,30002,1,1767.03,1767.03,17.67,1749.36,'2024-05-02','2023-10-01',NULL),
|
|
905
|
+
(717,'2023-07-14',100420,40002,30035,1,1975.54,1975.54,39.51,1936.03,'2024-10-05',NULL,NULL),
|
|
906
|
+
(721,'2023-07-21',100476,40000,30014,1,1991.01,1991.01,19.91,1971.10,'2024-10-27','2024-01-06',NULL),
|
|
907
|
+
(728,'2023-07-03',100335,40010,30038,3,1680.36,5041.08,0.00,5041.08,'2024-06-09','2024-03-08',NULL),
|
|
908
|
+
(745,'2023-07-08',100227,40010,30015,1,198.79,198.79,1.99,196.80,'2024-03-19',NULL,NULL),
|
|
909
|
+
(773,'2023-07-18',100408,40001,30003,2,1743.76,3487.52,87.19,3400.33,'2024-12-13','2023-11-19',NULL),
|
|
910
|
+
(804,'2023-07-17',100170,40005,30007,5,245.57,1227.85,4.91,1222.94,'2024-03-27','2024-07-07',NULL),
|
|
911
|
+
(814,'2023-07-31',100470,40007,30032,4,994.29,3977.16,59.66,3917.50,'2025-07-11','2023-08-04',NULL),
|
|
912
|
+
(816,'2023-07-02',100010,40017,30037,4,670.94,2683.76,0.00,2683.76,'2024-10-18','2023-07-20',NULL);
|
|
913
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
914
|
+
(835,'2023-07-11',100374,40001,30031,1,1725.54,1725.54,17.26,1708.28,'2024-06-24','2024-05-18',NULL),
|
|
915
|
+
(886,'2023-07-19',100347,40003,30032,4,994.29,3977.16,0.00,3977.16,'2023-09-04','2024-07-03',NULL),
|
|
916
|
+
(910,'2023-07-22',100037,40002,30023,1,528.54,528.54,42.28,486.26,'2025-05-10',NULL,NULL),
|
|
917
|
+
(920,'2023-07-10',100331,40015,30021,2,932.80,1865.60,18.66,1846.94,'2024-01-03','2023-12-30',NULL),
|
|
918
|
+
(958,'2023-07-08',100312,40006,30015,3,198.79,596.37,1.99,594.38,'2024-01-23',NULL,NULL),
|
|
919
|
+
(959,'2023-07-25',100216,40017,30039,4,103.13,412.52,0.00,412.52,'2024-11-25','2023-08-13',NULL),
|
|
920
|
+
(977,'2023-07-26',100348,40005,30013,5,1175.57,5877.85,11.76,5866.09,'2025-01-28','2023-09-24',NULL),
|
|
921
|
+
(989,'2023-07-14',100063,40000,30006,3,645.85,1937.55,45.21,1892.34,'2024-01-22','2024-03-02',NULL),
|
|
922
|
+
(1043,'2023-07-20',100067,40000,30013,4,1175.57,4702.28,11.76,4690.52,'2024-02-01','2024-07-05',NULL),
|
|
923
|
+
(1075,'2023-07-23',100440,40009,30028,4,1223.42,4893.68,24.47,4869.21,'2023-10-11',NULL,NULL);
|
|
924
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
925
|
+
(1090,'2023-07-22',100140,40001,30018,5,1307.48,6537.40,65.37,6472.03,'2024-09-23',NULL,NULL),
|
|
926
|
+
(1099,'2023-07-06',100500,40006,30028,4,1223.42,4893.68,12.23,4881.45,'2025-01-11',NULL,NULL),
|
|
927
|
+
(1100,'2023-07-15',100402,40015,30019,5,320.91,1604.55,19.25,1585.30,'2023-08-27','2024-03-05',NULL),
|
|
928
|
+
(1168,'2023-07-01',100355,40000,30027,5,1293.81,6469.05,64.69,6404.36,'2024-03-17',NULL,NULL),
|
|
929
|
+
(1178,'2023-07-01',100094,40016,30028,2,1223.42,2446.84,0.00,2446.84,'2025-03-05',NULL,NULL),
|
|
930
|
+
(1186,'2023-07-16',100165,40008,30002,1,1767.03,1767.03,0.00,1767.03,'2024-09-13','2024-01-23',NULL),
|
|
931
|
+
(1195,'2023-07-02',100363,40017,30038,5,1680.36,8401.80,16.80,8385.00,'2024-07-03','2024-02-08',NULL),
|
|
932
|
+
(1224,'2023-07-17',100478,40015,30029,4,1880.10,7520.40,0.00,7520.40,'2023-12-30','2024-06-07',NULL),
|
|
933
|
+
(1232,'2023-07-30',100475,40000,30005,2,817.62,1635.24,0.00,1635.24,'2023-12-21','2023-09-01',NULL),
|
|
934
|
+
(1274,'2023-07-15',100010,40002,30017,2,1370.31,2740.62,27.41,2713.21,'2023-12-07','2024-03-14',NULL);
|
|
935
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
936
|
+
(1284,'2023-07-12',100327,40012,30015,1,198.79,198.79,1.99,196.80,'2024-01-15',NULL,NULL),
|
|
937
|
+
(1286,'2023-07-06',100280,40010,30026,4,1889.54,7558.16,18.90,7539.26,'2024-03-07',NULL,NULL),
|
|
938
|
+
(1287,'2023-07-20',100121,40003,30031,5,1725.54,8627.70,69.02,8558.68,'2023-10-10','2023-11-27',NULL),
|
|
939
|
+
(1291,'2023-07-29',100432,40006,30028,5,1223.42,6117.10,12.23,6104.87,'2024-02-22',NULL,NULL),
|
|
940
|
+
(1303,'2023-07-15',100389,40011,30035,2,1975.54,3951.08,59.27,3891.81,'2025-03-14',NULL,NULL),
|
|
941
|
+
(1317,'2023-07-02',100249,40003,30029,1,1880.10,1880.10,0.00,1880.10,'2023-08-23','2024-02-22',NULL),
|
|
942
|
+
(1320,'2023-07-02',100327,40008,30030,2,444.46,888.92,0.00,888.92,'2024-07-13',NULL,NULL),
|
|
943
|
+
(1367,'2023-07-12',100155,40014,30003,3,1743.76,5231.28,69.75,5161.53,'2023-11-13','2023-09-10',NULL),
|
|
944
|
+
(1392,'2023-07-03',100180,40013,30029,1,1880.10,1880.10,0.00,1880.10,'2023-09-13','2023-12-29',NULL),
|
|
945
|
+
(1394,'2023-07-11',100374,40014,30007,4,245.57,982.28,2.46,979.82,'2024-05-12','2024-05-11',NULL);
|
|
946
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
947
|
+
(1455,'2023-07-10',100232,40016,30039,4,103.13,412.52,2.06,410.46,'2025-04-14','2024-07-05',NULL),
|
|
948
|
+
(1467,'2023-07-07',100066,40003,30022,3,532.16,1596.48,21.29,1575.19,'2023-09-28',NULL,NULL),
|
|
949
|
+
(1475,'2023-07-05',100387,40007,30014,5,1991.01,9955.05,0.00,9955.05,'2024-12-23','2023-09-09',NULL),
|
|
950
|
+
(1476,'2023-07-03',100076,40016,30033,1,328.48,328.48,13.14,315.34,'2024-08-24',NULL,NULL),
|
|
951
|
+
(1507,'2023-07-27',100206,40006,30028,3,1223.42,3670.26,24.47,3645.79,'2024-06-01',NULL,NULL),
|
|
952
|
+
(1542,'2023-07-08',100394,40008,30028,5,1223.42,6117.10,0.00,6117.10,'2024-01-28',NULL,NULL),
|
|
953
|
+
(1577,'2023-07-14',100191,40013,30027,4,1293.81,5175.24,12.94,5162.30,'2024-12-01',NULL,NULL),
|
|
954
|
+
(1581,'2023-07-03',100446,40014,30031,1,1725.54,1725.54,51.77,1673.77,'2024-11-24','2023-10-06',NULL),
|
|
955
|
+
(1606,'2023-07-17',100050,40002,30040,3,622.21,1866.63,24.89,1841.74,'2024-01-03','2023-08-04',NULL),
|
|
956
|
+
(1615,'2023-07-28',100139,40011,30022,3,532.16,1596.48,0.00,1596.48,'2025-01-28',NULL,NULL);
|
|
957
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
958
|
+
(1621,'2023-07-19',100328,40003,30013,4,1175.57,4702.28,23.51,4678.77,'2025-04-11','2024-01-20',NULL),
|
|
959
|
+
(1658,'2023-07-27',100453,40002,30014,1,1991.01,1991.01,0.00,1991.01,'2025-06-10','2023-11-10',NULL),
|
|
960
|
+
(1663,'2023-07-19',100454,40009,30019,1,320.91,320.91,0.00,320.91,'2024-08-22','2024-07-13',NULL),
|
|
961
|
+
(1667,'2023-07-12',100071,40009,30000,5,567.19,2835.95,0.00,2835.95,'2024-07-18',NULL,NULL),
|
|
962
|
+
(1694,'2023-07-05',100471,40010,30031,2,1725.54,3451.08,34.51,3416.57,'2023-11-20','2023-07-29',NULL),
|
|
963
|
+
(1697,'2023-07-27',100413,40012,30023,3,528.54,1585.62,47.57,1538.05,'2025-01-29',NULL,NULL),
|
|
964
|
+
(1700,'2023-07-03',100007,40002,30015,2,198.79,397.58,0.00,397.58,'2024-07-22',NULL,NULL),
|
|
965
|
+
(1736,'2023-07-04',100177,40001,30029,2,1880.10,3760.20,0.00,3760.20,'2025-05-27','2024-03-04',NULL),
|
|
966
|
+
(1764,'2023-07-20',100191,40013,30011,4,405.41,1621.64,12.16,1609.48,'2023-07-30','2023-10-24',NULL),
|
|
967
|
+
(1769,'2023-07-13',100163,40001,30032,1,994.29,994.29,69.60,924.69,'2025-04-15','2023-10-30',NULL);
|
|
968
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
969
|
+
(10,'2023-08-20',100330,40008,30012,3,1105.16,3315.48,22.10,3293.38,'2025-06-15','2024-02-26',NULL),
|
|
970
|
+
(65,'2023-08-01',100476,40010,30033,5,328.48,1642.40,6.57,1635.83,'2023-10-24',NULL,NULL),
|
|
971
|
+
(91,'2023-08-25',100129,40000,30025,2,1796.28,3592.56,17.96,3574.60,'2024-10-02','2023-11-05',NULL),
|
|
972
|
+
(114,'2023-08-10',100357,40000,30034,2,1960.42,3920.84,19.60,3901.24,'2025-06-15',NULL,NULL),
|
|
973
|
+
(119,'2023-08-25',100206,40006,30015,2,198.79,397.58,1.99,395.59,'2025-05-27',NULL,NULL),
|
|
974
|
+
(126,'2023-08-23',100398,40009,30040,3,622.21,1866.63,31.11,1835.52,'2023-12-12','2024-04-13',NULL),
|
|
975
|
+
(200,'2023-08-02',100441,40016,30030,3,444.46,1333.38,0.00,1333.38,'2023-08-27',NULL,NULL),
|
|
976
|
+
(236,'2023-08-22',100487,40008,30009,4,695.15,2780.60,27.81,2752.79,'2025-08-17',NULL,NULL),
|
|
977
|
+
(246,'2023-08-11',100214,40015,30030,1,444.46,444.46,13.33,431.13,'2024-12-29',NULL,NULL),
|
|
978
|
+
(270,'2023-08-16',100387,40006,30004,3,1972.62,5917.86,19.73,5898.13,'2024-03-24','2024-04-23',NULL);
|
|
979
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
980
|
+
(283,'2023-08-28',100468,40004,30023,2,528.54,1057.08,26.43,1030.65,'2023-10-11',NULL,NULL),
|
|
981
|
+
(307,'2023-08-14',100160,40013,30019,5,320.91,1604.55,0.00,1604.55,'2023-12-07','2024-06-27',NULL),
|
|
982
|
+
(308,'2023-08-03',100286,40016,30018,4,1307.48,5229.92,26.15,5203.77,'2025-03-09',NULL,NULL),
|
|
983
|
+
(374,'2023-08-12',100125,40013,30039,5,103.13,515.65,0.00,515.65,'2023-09-17','2023-10-07',NULL),
|
|
984
|
+
(377,'2023-08-28',100328,40016,30000,2,567.19,1134.38,0.00,1134.38,'2025-01-28',NULL,NULL),
|
|
985
|
+
(383,'2023-08-25',100087,40016,30034,4,1960.42,7841.68,19.60,7822.08,'2024-02-14',NULL,NULL),
|
|
986
|
+
(402,'2023-08-07',100282,40013,30036,2,932.30,1864.60,0.00,1864.60,'2024-10-29','2024-01-14',NULL),
|
|
987
|
+
(418,'2023-08-28',100218,40001,30030,5,444.46,2222.30,4.44,2217.86,'2025-05-31',NULL,NULL),
|
|
988
|
+
(429,'2023-08-26',100136,40001,30013,4,1175.57,4702.28,0.00,4702.28,'2025-08-11','2024-01-16',NULL),
|
|
989
|
+
(437,'2023-08-22',100448,40001,30038,5,1680.36,8401.80,0.00,8401.80,'2024-12-12','2023-12-22',NULL);
|
|
990
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
991
|
+
(463,'2023-08-05',100080,40004,30013,2,1175.57,2351.14,23.51,2327.63,'2024-04-05','2023-12-09',NULL),
|
|
992
|
+
(512,'2023-08-21',100419,40009,30029,5,1880.10,9400.50,18.80,9381.70,'2024-12-05','2023-10-25',NULL),
|
|
993
|
+
(513,'2023-08-06',100146,40003,30012,3,1105.16,3315.48,0.00,3315.48,'2024-05-31','2024-01-05',NULL),
|
|
994
|
+
(518,'2023-08-27',100400,40008,30022,2,532.16,1064.32,10.64,1053.68,'2024-11-13',NULL,NULL),
|
|
995
|
+
(543,'2023-08-17',100359,40010,30034,1,1960.42,1960.42,19.60,1940.82,'2024-04-12',NULL,NULL),
|
|
996
|
+
(546,'2023-08-03',100247,40002,30023,4,528.54,2114.16,26.43,2087.73,'2024-09-23',NULL,NULL),
|
|
997
|
+
(558,'2023-08-29',100228,40011,30038,5,1680.36,8401.80,0.00,8401.80,'2024-08-19','2024-06-25',NULL),
|
|
998
|
+
(565,'2023-08-30',100090,40017,30032,3,994.29,2982.87,79.54,2903.33,'2023-09-12','2024-03-01',NULL),
|
|
999
|
+
(569,'2023-08-28',100132,40001,30013,3,1175.57,3526.71,0.00,3526.71,'2024-05-01','2024-04-13',NULL),
|
|
1000
|
+
(576,'2023-08-27',100113,40015,30019,4,320.91,1283.64,3.21,1280.43,'2024-05-01','2023-09-06',NULL);
|
|
1001
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
1002
|
+
(598,'2023-08-19',100402,40011,30018,2,1307.48,2614.96,0.00,2614.96,'2024-03-17',NULL,NULL),
|
|
1003
|
+
(600,'2023-08-21',100381,40006,30039,2,103.13,206.26,1.03,205.23,'2025-01-01','2023-11-28',NULL),
|
|
1004
|
+
(625,'2023-08-26',100176,40000,30032,3,994.29,2982.87,39.77,2943.10,'2025-04-30','2023-09-01',NULL),
|
|
1005
|
+
(637,'2023-08-01',100183,40004,30015,2,198.79,397.58,3.98,393.60,'2024-10-25',NULL,NULL),
|
|
1006
|
+
(659,'2023-08-24',100313,40014,30031,5,1725.54,8627.70,34.51,8593.19,'2025-05-09','2024-02-14',NULL),
|
|
1007
|
+
(689,'2023-08-23',100200,40013,30026,2,1889.54,3779.08,56.69,3722.39,'2025-06-02',NULL,NULL),
|
|
1008
|
+
(819,'2023-08-12',100431,40017,30021,5,932.80,4664.00,18.66,4645.34,'2024-08-10','2023-10-02',NULL),
|
|
1009
|
+
(822,'2023-08-13',100464,40010,30021,5,932.80,4664.00,18.66,4645.34,'2025-02-08','2024-02-24',NULL),
|
|
1010
|
+
(824,'2023-08-26',100072,40014,30038,5,1680.36,8401.80,16.80,8385.00,'2023-08-27','2024-01-09',NULL),
|
|
1011
|
+
(831,'2023-08-07',100174,40016,30014,2,1991.01,3982.02,19.91,3962.11,'2024-11-22','2023-12-03',NULL);
|
|
1012
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
1013
|
+
(845,'2023-08-23',100259,40013,30003,2,1743.76,3487.52,104.63,3382.89,'2024-07-29','2023-10-27',NULL),
|
|
1014
|
+
(847,'2023-08-20',100445,40014,30004,3,1972.62,5917.86,78.90,5838.96,'2024-10-25','2023-10-28',NULL),
|
|
1015
|
+
(870,'2023-08-20',100254,40011,30008,3,356.17,1068.51,0.00,1068.51,'2023-12-14','2023-09-10',NULL),
|
|
1016
|
+
(874,'2023-08-03',100107,40011,30030,1,444.46,444.46,8.89,435.57,'2024-07-22',NULL,NULL),
|
|
1017
|
+
(902,'2023-08-09',100467,40017,30040,4,622.21,2488.84,18.67,2470.17,'2023-12-11','2024-07-11',NULL),
|
|
1018
|
+
(904,'2023-08-13',100216,40006,30024,2,387.16,774.32,0.00,774.32,'2024-04-10',NULL,NULL),
|
|
1019
|
+
(941,'2023-08-21',100352,40011,30007,4,245.57,982.28,4.91,977.37,'2024-04-15','2024-05-24',NULL),
|
|
1020
|
+
(956,'2023-08-08',100393,40003,30038,5,1680.36,8401.80,16.80,8385.00,'2024-06-29','2024-07-14',NULL),
|
|
1021
|
+
(973,'2023-08-24',100401,40010,30026,4,1889.54,7558.16,75.58,7482.58,'2023-10-24',NULL,NULL),
|
|
1022
|
+
(984,'2023-08-11',100085,40013,30033,1,328.48,328.48,16.42,312.06,'2024-03-08',NULL,NULL);
|
|
1023
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
1024
|
+
(1007,'2023-08-30',100001,40007,30027,2,1293.81,2587.62,64.69,2522.93,'2025-06-10',NULL,NULL),
|
|
1025
|
+
(1070,'2023-08-19',100343,40002,30025,1,1796.28,1796.28,0.00,1796.28,'2024-03-05','2023-12-13',NULL),
|
|
1026
|
+
(1072,'2023-08-14',100305,40017,30031,2,1725.54,3451.08,86.28,3364.80,'2024-02-29','2024-02-04',NULL),
|
|
1027
|
+
(1093,'2023-08-06',100256,40013,30018,4,1307.48,5229.92,104.60,5125.32,'2024-10-04',NULL,NULL),
|
|
1028
|
+
(1116,'2023-08-21',100392,40001,30037,1,670.94,670.94,6.71,664.23,'2025-04-14','2024-04-11',NULL),
|
|
1029
|
+
(1148,'2023-08-28',100020,40007,30035,3,1975.54,5926.62,39.51,5887.11,'2024-05-22',NULL,NULL),
|
|
1030
|
+
(1199,'2023-08-12',100446,40010,30037,2,670.94,1341.88,13.42,1328.46,'2025-04-10','2024-06-27',NULL),
|
|
1031
|
+
(1211,'2023-08-02',100176,40004,30035,4,1975.54,7902.16,59.27,7842.89,'2024-05-20',NULL,NULL),
|
|
1032
|
+
(1255,'2023-08-20',100067,40004,30009,2,695.15,1390.30,20.85,1369.45,'2024-04-26',NULL,NULL),
|
|
1033
|
+
(1285,'2023-08-02',100032,40011,30003,4,1743.76,6975.04,104.63,6870.41,'2024-04-13','2024-03-06',NULL);
|
|
1034
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
1035
|
+
(1406,'2023-08-08',100416,40013,30034,2,1960.42,3920.84,0.00,3920.84,'2025-03-04',NULL,NULL),
|
|
1036
|
+
(1409,'2023-08-22',100018,40005,30012,1,1105.16,1105.16,22.10,1083.06,'2025-07-29','2024-04-10',NULL),
|
|
1037
|
+
(1414,'2023-08-24',100236,40005,30041,4,171.82,687.28,10.31,676.97,'2024-09-16','2024-01-09',NULL),
|
|
1038
|
+
(1441,'2023-08-27',100073,40006,30001,3,1693.93,5081.79,33.88,5047.91,'2024-04-21',NULL,NULL),
|
|
1039
|
+
(1494,'2023-08-26',100243,40007,30021,2,932.80,1865.60,18.66,1846.94,'2024-10-06','2023-12-11',NULL),
|
|
1040
|
+
(1531,'2023-08-19',100060,40010,30026,4,1889.54,7558.16,94.48,7463.68,'2024-09-20',NULL,NULL),
|
|
1041
|
+
(1647,'2023-08-17',100095,40006,30013,2,1175.57,2351.14,11.76,2339.38,'2024-06-10','2023-12-21',NULL),
|
|
1042
|
+
(1693,'2023-08-16',100143,40015,30036,5,932.30,4661.50,0.00,4661.50,'2024-12-18','2024-02-16',NULL),
|
|
1043
|
+
(1728,'2023-08-17',100363,40008,30030,1,444.46,444.46,8.89,435.57,'2024-06-06',NULL,NULL),
|
|
1044
|
+
(1738,'2023-08-30',100100,40009,30012,1,1105.16,1105.16,33.15,1072.01,'2025-06-09','2023-09-04',NULL);
|
|
1045
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
1046
|
+
(1740,'2023-08-11',100043,40014,30003,5,1743.76,8718.80,122.06,8596.74,'2024-03-16','2023-11-12',NULL),
|
|
1047
|
+
(1758,'2023-08-21',100450,40017,30018,1,1307.48,1307.48,91.52,1215.96,'2023-12-05',NULL,NULL),
|
|
1048
|
+
(1761,'2023-08-06',100384,40003,30041,1,171.82,171.82,3.44,168.38,'2025-03-24','2023-08-30',NULL),
|
|
1049
|
+
(1775,'2023-08-08',100294,40014,30041,4,171.82,687.28,0.00,687.28,'2023-12-23','2024-06-04',NULL),
|
|
1050
|
+
(1830,'2023-08-02',100234,40004,30021,4,932.80,3731.20,18.66,3712.54,'2025-05-14','2024-04-25',NULL),
|
|
1051
|
+
(1872,'2023-08-09',100483,40008,30030,3,444.46,1333.38,17.78,1315.60,'2024-05-31',NULL,NULL),
|
|
1052
|
+
(1900,'2023-08-30',100397,40008,30001,5,1693.93,8469.65,50.82,8418.83,'2024-11-16',NULL,NULL),
|
|
1053
|
+
(1913,'2023-08-06',100265,40012,30030,4,444.46,1777.84,8.89,1768.95,'2025-04-16',NULL,NULL),
|
|
1054
|
+
(1933,'2023-08-19',100495,40015,30031,1,1725.54,1725.54,51.77,1673.77,'2023-11-06','2024-04-04',NULL),
|
|
1055
|
+
(1967,'2023-08-15',100123,40015,30027,5,1293.81,6469.05,12.94,6456.11,'2024-03-26',NULL,NULL);
|
|
1056
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
1057
|
+
(1991,'2023-08-04',100358,40000,30016,4,180.51,722.04,1.81,720.23,'2023-08-26','2024-03-16',NULL),
|
|
1058
|
+
(2003,'2023-08-18',100094,40005,30034,5,1960.42,9802.10,0.00,9802.10,'2024-04-23',NULL,NULL),
|
|
1059
|
+
(2021,'2023-08-22',100208,40013,30021,5,932.80,4664.00,9.33,4654.67,'2024-12-13','2023-11-09',NULL),
|
|
1060
|
+
(2073,'2023-08-18',100166,40003,30005,3,817.62,2452.86,0.00,2452.86,'2023-10-17','2024-04-15',NULL),
|
|
1061
|
+
(2078,'2023-08-29',100180,40007,30037,4,670.94,2683.76,20.13,2663.63,'2025-06-15','2024-08-10',NULL),
|
|
1062
|
+
(2085,'2023-08-24',100403,40001,30031,4,1725.54,6902.16,0.00,6902.16,'2024-03-15','2024-01-05',NULL),
|
|
1063
|
+
(2098,'2023-08-26',100260,40004,30038,5,1680.36,8401.80,16.80,8385.00,'2025-01-01','2024-05-03',NULL),
|
|
1064
|
+
(2119,'2023-08-14',100281,40012,30002,1,1767.03,1767.03,0.00,1767.03,'2023-12-17','2024-01-17',NULL),
|
|
1065
|
+
(2150,'2023-08-23',100488,40016,30021,1,932.80,932.80,18.66,914.14,'2024-10-13','2023-10-30',NULL),
|
|
1066
|
+
(2151,'2023-08-27',100092,40003,30032,5,994.29,4971.45,0.00,4971.45,'2024-03-01','2023-11-20',NULL);
|
|
1067
|
+
INSERT INTO tmp_ebike_sales (sale_id,sale_date,customer_id,supplier_id,product_id,quantity_sold,sale_price,total_amount,discount_amount,adjusted_total_amount,warranty_end_date,next_maintenance_date,return_reason) VALUES
|
|
1068
|
+
(2152,'2023-08-29',100040,40006,30010,2,1190.00,2380.00,0.00,2380.00,'2024-08-12','2024-02-09',NULL),
|
|
1069
|
+
(2154,'2023-08-21',100199,40003,30025,2,1796.28,3592.56,0.00,3592.56,'2025-03-15','2024-07-11',NULL),
|
|
1070
|
+
(2169,'2023-08-08',100055,40006,30039,5,103.13,515.65,0.00,515.65,'2025-01-16','2024-02-03',NULL),
|
|
1071
|
+
(2188,'2023-08-14',100271,40013,30024,3,387.16,1161.48,19.36,1142.12,'2025-07-17',NULL,NULL),
|
|
1072
|
+
(2189,'2023-08-09',100078,40014,30035,4,1975.54,7902.16,19.76,7882.40,'2025-04-22',NULL,NULL),
|
|
1073
|
+
(2199,'2023-08-14',100208,40001,30006,1,645.85,645.85,32.29,613.56,'2024-07-17','2023-08-24',NULL),
|
|
1074
|
+
(2203,'2023-08-15',100453,40012,30037,3,670.94,2012.82,20.13,1992.69,'2024-12-16','2024-01-31',NULL),
|
|
1075
|
+
(2208,'2023-08-29',100164,40001,30016,3,180.51,541.53,10.83,530.70,'2025-05-16','2024-07-18',NULL),
|
|
1076
|
+
(2233,'2023-08-06',100138,40000,30007,4,245.57,982.28,0.00,982.28,'2023-10-21','2024-06-21',NULL),
|
|
1077
|
+
(2253,'2023-08-18',100423,40011,30034,4,1960.42,7841.68,0.00,7841.68,'2024-04-18',NULL,NULL);
|