-
Notifications
You must be signed in to change notification settings - Fork 1
/
seed.sql
1715 lines (1697 loc) · 524 KB
/
seed.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
DROP TABLE IF EXISTS Tag_task;
DROP TABLE IF EXISTS Category_task;
DROP TABLE IF EXISTS Category;
DROP TABLE IF EXISTS Tag;
DROP TABLE IF EXISTS Bid;
DROP TABLE IF EXISTS Task;
DROP TABLE IF EXISTS User;
DROP TABLE IF EXISTS Months;
CREATE TABLE User (
username varchar(100),
first_name varchar(100),
last_name varchar(100),
password_hash varchar(1000) NOT NULL,
contact varchar(100),
email varchar(100),
created_at DATETIME NOT NULL,
updated_at DATETIME,
user_type ENUM('Admin', 'User'),
PRIMARY KEY (username)
);
CREATE TABLE Task (
title varchar(100),
description varchar(1000),
created_at DATETIME NOT NULL,
updated_at DATETIME,
start_at DATETIME NOT NULL,
end_at DATETIME,
min_bid numeric,
max_bid numeric,
creator_username varchar(100),
assignee_username varchar(100),
creator_rating numeric,
assignee_rating numeric,
completed_at DATETIME,
remarks varchar(1000),
CONSTRAINT min_bid CHECK(min_bid < max_bid),
CONSTRAINT end_at CHECK(start_at < end_at),
PRIMARY KEY (creator_username, title),
FOREIGN KEY (creator_username) REFERENCES User(username) ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (assignee_username) REFERENCES User(username) ON DELETE CASCADE ON UPDATE CASCADE
);
CREATE TABLE Category (
name varchar(100),
created_at DATETIME NOT NULL,
updated_at DATETIME,
PRIMARY KEY (name)
);
CREATE TABLE Category_task (
category_name varchar(100) REFERENCES Category(name) ON DELETE CASCADE ON UPDATE CASCADE,
task_title varchar(100) REFERENCES Task(title) ON DELETE CASCADE,
task_creator_username varchar(100) REFERENCES Task(creator_username) ON DELETE CASCADE ON UPDATE CASCADE,
created_at DATETIME NOT NULL,
updated_at DATETIME,
PRIMARY KEY (category_name, task_title, task_creator_username)
);
CREATE TABLE Bid (
task_title varchar(100) REFERENCES Task(title) ON DELETE CASCADE ON UPDATE CASCADE,
task_creator_username varchar(100) REFERENCES Task(creator_username) ON DELETE CASCADE ON UPDATE CASCADE,
bidder_username varchar(100) REFERENCES User(username) ON DELETE CASCADE ON UPDATE CASCADE,
details varchar(200),
amount numeric NOT NULL,
created_at DATETIME NOT NULL,
updated_at DATETIME,
PRIMARY KEY (task_title, task_creator_username, bidder_username)
);
CREATE TABLE Tag (
name varchar(100),
created_at DATETIME NOT NULL,
updated_at DATETIME,
PRIMARY KEY (name)
);
CREATE TABLE Tag_task (
tag_name varchar(100) REFERENCES Tag(name) ON DELETE CASCADE ON UPDATE CASCADE,
task_creator_username varchar(100) REFERENCES Task(creator_username) ON DELETE CASCADE ON UPDATE CASCADE,
task_title varchar(100) REFERENCES Task(title) ON DELETE CASCADE ON UPDATE CASCADE,
created_at DATETIME NOT NULL,
updated_at DATETIME,
PRIMARY KEY (tag_name, task_title, task_creator_username)
);
CREATE TABLE Months(
value varchar(3),
name varchar(100) PRIMARY KEY
);
insert into Months values ('1','January');
insert into Months values ('2','February');
insert into Months values ('3','March');
insert into Months values ('4','April');
insert into Months values ('5','May');
insert into Months values ('6','June');
insert into Months values ('7','July');
insert into Months values ('8','August');
insert into Months values ('9','September');
insert into Months values ('10','October');
insert into Months values ('11','November');
insert into Months values ('12','December');
INSERT INTO User (username, first_name, last_name, password_hash, contact, email, created_at, updated_at, user_type) VALUES ('rylatkinson5547', 'Rylie', 'Atkinson', '$2y$10$/4oRrwEAJ1kKsszjFA4ITeQ6ZjRyL8oSx3scdwhTECf5YDVc6m/sy', '98038781', 'Ryl.ATKINSO1315@dispostable.com', '2010-02-12', null, 'User');
INSERT INTO User (username, first_name, last_name, password_hash, contact, email, created_at, updated_at, user_type) VALUES ('keafranc1388', 'Keaton', 'Franco', '$2y$10$/4oRrwEAJ1kKsszjFA4ITeQ6ZjRyL8oSx3scdwhTECf5YDVc6m/sy', '95182761', 'Kea.FRA1698@reallymymail.com', '2010-02-04', null, 'User');
INSERT INTO User (username, first_name, last_name, password_hash, contact, email, created_at, updated_at, user_type) VALUES ('jamajense5492', 'Jamar', 'Jensen', '$2y$10$/4oRrwEAJ1kKsszjFA4ITeQ6ZjRyL8oSx3scdwhTECf5YDVc6m/sy', '93949770', 'Jamar.JEN6088@mailinator.com', '2010-01-17', null, 'User');
INSERT INTO User (username, first_name, last_name, password_hash, contact, email, created_at, updated_at, user_type) VALUES ('mivincent4274', 'Milan', 'Vincent', '$2y$10$/4oRrwEAJ1kKsszjFA4ITeQ6ZjRyL8oSx3scdwhTECf5YDVc6m/sy', '94862727', 'Milan.VINCENT4820@yopmail.com', '2010-01-31', null, 'User');
INSERT INTO User (username, first_name, last_name, password_hash, contact, email, created_at, updated_at, user_type) VALUES ('khloevillar8727', 'Khloe', 'Villarreal', '$2y$10$/4oRrwEAJ1kKsszjFA4ITeQ6ZjRyL8oSx3scdwhTECf5YDVc6m/sy', '96054531', 'Khlo.VILLAR8952@dispostable.com', '2010-02-02', null, 'User');
INSERT INTO User (username, first_name, last_name, password_hash, contact, email, created_at, updated_at, user_type) VALUES ('yamilro1115', 'Yamileth', 'Roy', '$2y$10$/4oRrwEAJ1kKsszjFA4ITeQ6ZjRyL8oSx3scdwhTECf5YDVc6m/sy', '92260059', 'Yamile.ROY5940@reallymymail.com', '2010-02-20', null, 'User');
INSERT INTO User (username, first_name, last_name, password_hash, contact, email, created_at, updated_at, user_type) VALUES ('alyviasteph8157', 'Alyvia', 'Stephens', '$2y$10$/4oRrwEAJ1kKsszjFA4ITeQ6ZjRyL8oSx3scdwhTECf5YDVc6m/sy', '99888025', 'Alyv.STEPHENS7845@monumentmail.com', '2010-01-21', null, 'User');
INSERT INTO User (username, first_name, last_name, password_hash, contact, email, created_at, updated_at, user_type) VALUES ('allenbisho4523', 'Allen', 'Bishop', '$2y$10$/4oRrwEAJ1kKsszjFA4ITeQ6ZjRyL8oSx3scdwhTECf5YDVc6m/sy', '97836769', 'Allen.BISH8097@yopmail.com', '2010-01-13', null, 'User');
INSERT INTO User (username, first_name, last_name, password_hash, contact, email, created_at, updated_at, user_type) VALUES ('pikachu', 'Pi', 'Kachu', '$2y$10$/4oRrwEAJ1kKsszjFA4ITeQ6ZjRyL8oSx3scdwhTECf5YDVc6m/sy', '98038781', 'pikachu@gmail.com', '2010-02-12', null, 'Admin');
INSERT INTO User (username, first_name, last_name, password_hash, contact, email, created_at, updated_at, user_type) VALUES ('pusheen', 'Pusheen', 'Franco', '$2y$10$/4oRrwEAJ1kKsszjFA4ITeQ6ZjRyL8oSx3scdwhTECf5YDVc6m/sy', '95182761', 'pusheen@gmail.com', '2010-02-04', null, 'Admin');
INSERT INTO User (username, first_name, last_name, password_hash, contact, email, created_at, updated_at, user_type) VALUES ('derek', 'Derek', 'Nam', '$2y$10$/4oRrwEAJ1kKsszjFA4ITeQ6ZjRyL8oSx3scdwhTECf5YDVc6m/sy', '93949770', 'derek@gmail.com', '2010-01-17', null, 'Admin');
INSERT INTO User (username, first_name, last_name, password_hash, contact, email, created_at, updated_at, user_type) VALUES ('nat', 'Nat', 'Koh', '$2y$10$/4oRrwEAJ1kKsszjFA4ITeQ6ZjRyL8oSx3scdwhTECf5YDVc6m/sy', '94862727', 'nat@gmail.com', '2010-01-31', null, 'Admin');
INSERT INTO User (username, first_name, last_name, password_hash, contact, email, created_at, updated_at, user_type) VALUES ('xiao', 'Xiao','', '$2y$10$/4oRrwEAJ1kKsszjFA4ITeQ6ZjRyL8oSx3scdwhTECf5YDVc6m/sy', '96054531', 'xiao@gmail.com', '2010-02-02', null, 'Admin');
INSERT INTO User (username, first_name, last_name, password_hash, contact, email, created_at, updated_at, user_type) VALUES ('wei', 'Wei','', '$2y$10$/4oRrwEAJ1kKsszjFA4ITeQ6ZjRyL8oSx3scdwhTECf5YDVc6m/sy', '92260059', 'wei@gmail.com', '2010-02-20', null, 'Admin');
INSERT INTO User (username, first_name, last_name, password_hash, contact, email, created_at, updated_at, user_type) VALUES ('tuong', 'NTV', '', '$2y$10$/4oRrwEAJ1kKsszjFA4ITeQ6ZjRyL8oSx3scdwhTECf5YDVc6m/sy', '99888025', 'tuong@gmail.com', '2010-01-21', null, 'Admin');
INSERT INTO User (username, first_name, last_name, password_hash, contact, email, created_at, updated_at, user_type) VALUES ('van', 'Tuong', 'Van', '$2y$10$/4oRrwEAJ1kKsszjFA4ITeQ6ZjRyL8oSx3scdwhTECf5YDVc6m/sy', '97836769', 'van@gmail.com', '2010-01-13', null, 'Admin');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('berneice95', 'Breanne', 'Lubowitz', '$2y$10$fjPgGzAyK0FAJW0ZnEiYs.LhyUe0IVlOsnN.GtxK9Ncc56yuz2FSa', '99241657', 'nia.trantow@gmail.com', '2007-12-05 11:41:32', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('felicita.prohaska', 'Michel', 'Rosenbaum', '$2y$10$NrGJwGcohxNBCus1xGxr6OD.a1oexQKFMr20VHTOF5wHS1pwjO4Ae', '96579775', 'orin14@yahoo.com', '2012-09-30 08:39:10', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('floyd.okon', 'Doyle', 'Wilkinson', '$2y$10$vOwldOleYTV1PJiw2JG37OlWodm8OY9DhwylH2NiPPMtFjbTkzFla', '86501335', 'dakota.schiller@gmail.com', '2012-06-12 16:29:47', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('tdach', 'Marianna', 'Hahn', '$2y$10$liyTt1kEw4tkMT4JKKC3YeLS7KOhi2hd21YHuxTMnojkZVDiQXdIy', '69166177', 'ike.terry@durgan.info', '2015-08-21 18:08:25', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('jsimonis', 'Gideon', 'Yundt', '$2y$10$q9R2HVw.fZoWYw.XGita7eyDGzVZKJp/iaphLera80K0zVw1TyzVG', '69200735', 'ella19@hotmail.com', '2012-12-13 03:57:22', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('streich.dorothy', 'Turner', 'Daugherty', '$2y$10$MrisgNLJGZB.pG4rQtB3veawtDxv9DukVmi.um7xWkqSyXqvjqlXC', '60849027', 'maurice.effertz@fahey.com', '2008-07-19 07:36:37', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('carleton.buckridge', 'Anais', 'Senger', '$2y$10$cTBfnskMvVhBGUoxm5cI9.QMr3BmBjv.3KghixodAeV96TyZBh25u', '66836791', 'zabernathy@kunde.biz', '2011-03-13 16:41:49', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('okessler', 'Misty', 'Pollich', '$2y$10$HWP/eAfYqYhhVEnSoZMuBO0ZQJmi/JJ1n2tB2eQ92yr6/0jHi2ddy', '62190572', 'terry.jordyn@roberts.com', '2009-08-30 04:23:57', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('grady.zelda', 'Frank', 'Mante', '$2y$10$gsGSBTNj8Mc6zBJwW9Xqq.6o4MoZ4oQFroiG2.1HIIkzh1KS4tYOK', '95173817', 'kertzmann.alda@hotmail.com', '2013-12-24 16:35:22', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('carlee.haag', 'Else', 'Friesen', '$2y$10$Z/HhuYCtXR/I0Ro7adzBj.GW6ggXAchxIilHUrmEWUgy7uu3REOIG', '60664328', 'tcrooks@yahoo.com', '2015-07-23 21:47:17', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('chaya.borer', 'Bartholome', 'Cummings', '$2y$10$bZiFOGoxVJJ2lr2sl6x7mur/pCuc8G3Q/KTU.54yzRy1bKVqTQIbe', '63686819', 'marlin58@hotmail.com', '2012-06-03 13:22:28', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('bryce.maggio', 'Chauncey', 'Hane', '$2y$10$48l7lafW9LMGkb8t7c5v6.dV9ux.vgE5Iu1sFUeGaAfPtKKwK1kSm', '84431017', 'jess84@yahoo.com', '2013-04-03 08:26:32', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('marques.ziemann', 'Clement', 'Moen', '$2y$10$Jh6ltaBel86PNlCJaXl7aOJqDcy3OWRRImY/poNKlsgvu4X8UdBui', '63484958', 'xleannon@rippin.net', '2013-02-28 14:44:24', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('vince14', 'Merlin', 'Bartell', '$2y$10$CLBmNp/NW3Yxb2AeXZVl4.U0vPqzcRhiaBe1tyjoS0J1A5nmJf5zC', '63399220', 'harvey.maggie@hotmail.com', '2012-11-19 19:52:47', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('mikel05', 'Susanna', 'Carter', '$2y$10$eE2A2u39pZylshtwTBzLm.Dh1i0PaFYisIUmcOdv0O3OA31bb80hO', '68696650', 'fadel.maxwell@hotmail.com', '2012-08-02 15:11:28', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('pierre01', 'Lizzie', 'Runolfsson', '$2y$10$nF90phf3R.OzXQ0DJT1cLOtMKhBtm97K8JGGwpW0LJMgmRD1nACDi', '95911172', 'runte.elaina@kautzer.biz', '2012-11-26 06:55:27', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('zelda76', 'Claire', 'Stroman', '$2y$10$6AQAH/.7IVm7f6Y8ezA45.iGpWARVIIjPahYtszaG.laJ3tJEEK1i', '69505359', 'zbeahan@gmail.com', '2017-05-23 11:29:25', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('philip82', 'Beth', 'Koss', '$2y$10$hNpx5Ucw.KUwFZ/Fwi.vVuR2dkVkG7SZBR861M7FQ0psyMs.qyrwq', '61445279', 'rosalind77@blanda.com', '2010-01-18 23:46:36', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('raphael.toy', 'Giovanni', 'Moore', '$2y$10$E29wsQeHnjJ6/Ly7GImN6eHOowNb2ZVBC9kStCtCY39uF0R/oOSWW', '93683854', 'dbreitenberg@heathcote.com', '2011-12-29 01:24:35', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('aniya.champlin', 'Bradley', 'Douglas', '$2y$10$hqkRD8XsFzkmKLbSCtsgd.GoF7/p3TgN/jyUrz/zdt0YnfPAd4wo.', '89968233', 'annalise09@pouros.com', '2017-04-25 07:05:30', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('cemard', 'Maude', 'Kozey', '$2y$10$ZKibfO5mO1X9gjGWDo1CPOT5.cFpT/EscJQfSjrPa60/YK/kVLi06', '89580030', 'idoyle@hotmail.com', '2012-06-16 21:18:06', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('yabshire', 'Stephany', 'Harber', '$2y$10$nOaNehHCwzq7qaQ.PAsk4.hdk6qTb3BkouOh9PNky5BrgVDRsMFei', '83108960', 'jovanny93@hotmail.com', '2014-08-03 08:51:09', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('gmckenzie', 'Catherine', 'Borer', '$2y$10$9EoyknS0myZII2PNYE/Az.ao3mSnzJZ78DsvXqWLrvwRTSIyw7B/K', '66151030', 'dernser@kovacek.com', '2016-11-18 17:42:47', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('metz.marcella', 'Ebba', 'Bahringer', '$2y$10$8XKrTx.R.zS1gqrxvfRipuVHE28KK5DRwe6cyXFnZV1d04UUd87Li', '83354644', 'nikita.corwin@yahoo.com', '2008-08-02 00:35:31', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('florine.jaskolski', 'Vivien', 'Herzog', '$2y$10$PIWzAQcNGDh94kNtkm0kKufSX1qwPhHOgmh6yUdJfMID3Ic2h6ge6', '83860357', 'angel.schmeler@hotmail.com', '2016-11-10 15:47:29', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('emayer', 'Daphnee', 'Huels', '$2y$10$QSDxlmWSklvBi0H3XGPG1.KW69pRSNLHRu8x75.xAt2Db0c3VaiLa', '93697430', 'tierra74@yahoo.com', '2016-01-16 12:42:56', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('lexus.marks', 'Willa', 'Kuvalis', '$2y$10$zgFqoDDuKqLZ5qnUpOPkEuANxkWlPZiRDNW6qNZTAobcq6an5pPvm', '82364694', 'hessel.maggie@hotmail.com', '2013-02-27 06:30:30', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('kreiger.wava', 'Gisselle', 'Hickle', '$2y$10$tC1BDoM0TBsmaY9gQzDWKupcJPisWKRSQEe.ciLrRR4FaD5vP9Rhq', '60351335', 'bernardo.predovic@gmail.com', '2008-12-19 09:01:37', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('eldon.hoeger', 'Alberta', 'Hagenes', '$2y$10$dA0mlI4odjYFnb7eFkdgX.ywNrcQX55y16fzqIK5hOtq.rUyzKADW', '95141957', 'adams.margarete@fadel.org', '2010-09-29 17:11:24', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('jrosenbaum', 'Lucio', 'Reichel', '$2y$10$6vyH/IfFNgSZ8JQLtiOtKOJ9CTzg02fpvNSqjD8CrgnL8WiBphDoC', '86340291', 'rtowne@mckenzie.org', '2012-12-14 09:44:26', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('kamille.mann', 'Brad', 'Swift', '$2y$10$vOMXBP79K/QRA2x0h4L7Ne3H1L4bkqsnWZRtEsqz.XFbDXbM2vWM6', '61278853', 'bogan.jonatan@von.org', '2013-07-21 09:29:40', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('kozey.jennifer', 'Tania', 'Feest', '$2y$10$zO9uhLn/wHLNg5g8qXpD1epNcd9Nf1.I4Zj.hYpiqSavwQAIw3D4e', '64108818', 'khickle@hotmail.com', '2013-12-26 19:45:59', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('marks.ilene', 'Otis', 'Schoen', '$2y$10$ABT0l9Q.SIKN3Fpvm.BM1evz3ioiDQpW14BA/vvN83oSC4KEMngNS', '93692132', 'xerdman@dicki.net', '2016-03-15 11:05:58', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('mclaughlin.major', 'Bailey', 'Kilback', '$2y$10$RTHKqSLP7Eq.9QP1x7JD6uUvvW87kqg6JOl1xvLKmcBLvmAturwa6', '63770735', 'fbeatty@hotmail.com', '2016-01-08 00:20:24', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('maggie.hilpert', 'Sunny', 'Ruecker', '$2y$10$Etg34./IukGtpL0YCKj5bunzrgnIYRzTZLl0I3l3N8.zpwuh2cOYm', '84622872', 'weston88@blanda.biz', '2012-06-25 01:03:43', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('mack22', 'Stewart', 'Kreiger', '$2y$10$Ih9fema9SW796hMyAxQs4Ouvd/APlsr6yTY99alTL4bm94PiJW6JS', '85824295', 'hellen25@champlin.info', '2012-02-16 10:57:19', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('savanna06', 'Devin', 'Bailey', '$2y$10$KTOlYsDsHxwvKCMqBOVvSOy.cmZyiXznZbFlXmoTQ9bb3PKMqWJO.', '62637311', 'khalvorson@hayes.org', '2017-04-17 05:19:31', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('kiana52', 'Eldora', 'Stanton', '$2y$10$Vksye5jV5Gk/ItnG3IZrBeTB05WAHHJ31PlErL0.MBY31GbapljqG', '80352337', 'lindgren.reynold@yahoo.com', '2013-06-18 09:04:51', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('brenden.mcdermott', 'Gregoria', 'Crooks', '$2y$10$BY2KKkEH4gbRXcEx93vI5.ALninKhJ.vRaIOUgFMslAZxNFM9K81O', '80221714', 'ward.dessie@yahoo.com', '2017-07-15 20:14:13', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('victor03', 'Twila', 'Littel', '$2y$10$2cfIUInVp.4m6jv2qtOk5e7UQqOpDgebvpf/Sn7vWJMRwNZn9cUIu', '84366040', 'arielle.treutel@hotmail.com', '2010-10-27 18:30:59', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('clinton62', 'Myriam', 'Zieme', '$2y$10$3S1upMQWlgHgM2Y6cK9guuASsnoHN1rjaEVE4padg0KTBGzqMMA/O', '85699739', 'dach.tyrique@schamberger.com', '2009-04-02 12:23:46', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('farrell.berniece', 'Dimitri', 'Wolf', '$2y$10$8QfTumlhvS0/hW6KZjByeOlfYoi1csY/gDz/3VVu/oe0iyp/AmV3e', '66471193', 'eprice@kunze.com', '2015-04-24 02:14:56', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('treutel.hildegard', 'Brandon', 'Parisian', '$2y$10$lY4rMllGXECjzRESOBkxBOqnAB6KhvHopfY5i.ZCzHdWkmO03jyMa', '90598520', 'virgie.parker@gmail.com', '2014-09-26 14:50:23', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('ritchie.josefina', 'Melisa', 'Rohan', '$2y$10$JeR537uAkmbbmEctAfxeLeKF5LZyXz8uAYKlc6wkUclA1/BGtKS.6', '65962307', 'denesik.crawford@tillman.com', '2016-12-03 11:39:55', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('zhodkiewicz', 'Jessica', 'Rolfson', '$2y$10$Ts569w8umsS.Jm9i56ddfujz.rjZHAKc.bkJGJX7Axuw/8OdUSC6m', '90250876', 'helga.smith@gmail.com', '2013-01-03 23:04:42', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('gutmann.briana', 'Trudie', 'Padberg', '$2y$10$/6fhbkADmqMYuVd640xtB.sRe/R5rABQPLE/ICzxL9UoTspUY2lBa', '99946899', 'okuneva.vaughn@gmail.com', '2016-12-26 23:51:53', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('sedrick30', 'Bartholome', 'Kuhic', '$2y$10$20iT9wTcS8o9VKceemkQG.TH38wLEPIWqJkgP7AeJZrY7El6sk5FS', '99709637', 'kihn.kasandra@yahoo.com', '2015-05-25 01:15:30', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('blanca43', 'Wilson', 'Spinka', '$2y$10$nBA27OfybFQmrc0kkzIPv.iHPg5fBCWbwklBCAlbGSmSfJaYvLkIy', '65916823', 'coconner@stracke.com', '2009-12-08 22:59:58', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('tbailey', 'Hans', 'Bahringer', '$2y$10$l0bKyKrDbKD.RizboPQlN.wvBTBY2NL2tNTIdKwVTLoeX0MUPfMs6', '82500941', 'ara44@eichmann.com', '2016-08-12 15:45:48', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('fisher.kraig', 'Darwin', 'Kuhlman', '$2y$10$bKE0SsNCbzV9uLLq7PrvYeUSHz16tb6uJO6kgSSYpNP6.XYEMpg3K', '65839779', 'nannie.murray@gmail.com', '2012-11-30 14:04:40', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('augustus.zieme', 'Jarrod', 'Stroman', '$2y$10$kOg4H1mXruiIn6kJhqV1ge1RHfMIT.OiamU7c0PLdAgDbOTfiowrS', '92867914', 'wehner.samara@blick.com', '2013-07-02 07:22:46', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('zechariah.boyer', 'Edythe', 'Ullrich', '$2y$10$IZhXVnxybZ4ai76fTErt7OLfRAR3xEBSESoERveFc.iOFUdMQ1XPa', '82853772', 'johan63@satterfield.net', '2015-01-06 18:22:43', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('margarete12', 'Fiona', 'Lindgren', '$2y$10$ojXvmDVa33KSmZvcarQBi.iQZXubzsmpdbRrA/oJcyDsaIS.ioSG2', '99831058', 'lehner.jace@gmail.com', '2010-09-10 11:13:40', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('kuhic.brando', 'Kobe', 'Witting', '$2y$10$5mV52mmtna7UEhQ3TLth9OJfdxc7wgy60nuBvg670PnB4uhqDR8n6', '83042135', 'liam82@hagenes.com', '2014-09-12 13:33:21', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('ylittel', 'Kevin', 'Yundt', '$2y$10$dBhgpj3qVwgR9v7KlAbtrOU8EONgadrrNaY7gJlwXXsM4kv/2HpcG', '82389873', 'bennie92@heidenreich.com', '2013-08-04 02:53:56', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('godfrey.mitchell', 'Jerome', 'Howe', '$2y$10$LqpwY5HvO.MU9VSmL8JHTe/Va8LaZqX6mHKEaIhj0tTV6W5mlFrYy', '64857268', 'ljones@spencer.org', '2008-11-12 19:08:28', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('olson.gaetano', 'Christy', 'Grimes', '$2y$10$4kOuftqhHBURaHxCzTZLTu9ms0iix0IAnYDwRU3m8KSFTF1Lin6.K', '87175850', 'jenkins.teresa@gmail.com', '2016-11-19 03:42:27', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('rath.maximus', 'Herminio', 'Spinka', '$2y$10$PJvyH433ReID.gaWd0oKKec95Z6mT9v89ZIZaiGZRNzOuRUSekkUm', '62516297', 'ycasper@white.biz', '2017-02-28 07:08:50', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('lucy.larkin', 'Koby', 'Haley', '$2y$10$DPIrWxO1XCf3HEHUmkJ3qe792aSzBy.AccSEuF4jbrtZ4snnwIq3y', '66643878', 'krajcik.ariane@yahoo.com', '2012-12-31 16:51:28', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('chaya.witting', 'Effie', 'Schmeler', '$2y$10$.k1rzlNNVqFfMQL6th5sK.IfWefzVKLsNLzUwRZINxEnY0.2tikze', '83291022', 'astrid12@walter.com', '2015-07-08 16:55:11', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('jewell.gaylord', 'Aiden', 'Reilly', '$2y$10$qOu/slCHlm1P/GxC7e4SEOQhnqzZCbqoTLfmQr5LjhC0sBakYmBQW', '88469342', 'stokes.alexys@kirlin.net', '2009-11-20 23:14:37', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('wmarquardt', 'Christine', 'Aufderhar', '$2y$10$0UDl8wjOwQb9G1WRKSPmM.T2GOJ3X/xInAHaaMDlGqxJfQVfPJ8Q.', '88532401', 'rosemary20@yahoo.com', '2009-03-06 13:49:06', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('jerome.robel', 'Jaquelin', 'Schaefer', '$2y$10$rQw4UO.dlQavLSdEuBK03OiI60eiAwRJHzi2WzoKIGYw3ruKSSMDS', '97272057', 'lionel69@wunsch.com', '2014-09-18 03:37:26', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('proob', 'Treva', 'Carroll', '$2y$10$Thh9W.68D/oYYEbcnZ8h8eMDvmIxxXv2h6azqUSW3D2/Del9sQPq2', '88240506', 'bartell.yvonne@kub.com', '2013-01-28 19:43:49', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('joelle51', 'Rickey', 'Effertz', '$2y$10$kRg7H4vLKTdQpTxj3RQQgud5YZUNHr75M7UZygfFVbC5mteaTPOPC', '69825656', 'pagac.ramon@yahoo.com', '2009-03-01 14:18:01', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('shanel.wunsch', 'Amaya', 'Jaskolski', '$2y$10$sC9ycrPU4o/nqq59wmvdWurCLM3W5rxUHh3Uac11zHRtQk8OLzNau', '89011890', 'kale.christiansen@sipes.com', '2009-03-25 09:41:32', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('deondre.durgan', 'Gideon', 'Okuneva', '$2y$10$z1aE/yfrxT4Rput2B1BOke4DBrSy3c6uzfL5g9uO4B0Fa6Jmj3UOO', '97915569', 'mayer.sean@gmail.com', '2014-12-17 14:13:51', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('gyundt', 'Teagan', 'Grimes', '$2y$10$XNL8bD2OQKLL0Dvp4uAPhOaK4C8VcHnkZX5T73MAaulEekQqi/eOa', '61932582', 'vheller@yahoo.com', '2017-01-31 21:41:19', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('gutmann.missouri', 'Liam', 'Nader', '$2y$10$jIWPfBO6IJcRQ3uxVLmnRuOzUshN9YSKi92iK5u7vhclPq/q/rkLi', '60892097', 'rprosacco@gmail.com', '2007-11-28 06:06:08', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('walter.carli', 'Laurel', 'Johnson', '$2y$10$REPtDAmBe7SMDlIrxmsuv.yg971XoFV7e3VTMeFyOFb2odgYKlJ.K', '81146622', 'beier.bryce@haag.com', '2008-05-07 02:43:26', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('francisco81', 'Aubrey', 'Effertz', '$2y$10$LF24L8bD8WB9k88KZvfFBOLDif9a4rPUZt5EYgHBJPuNt.bBteRl.', '64932745', 'kirlin.bernie@gaylord.com', '2010-07-28 16:37:05', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('rowe.herminio', 'Marguerite', 'Stiedemann', '$2y$10$zUuC09un8RFiEqg6RNFsp.yV86t4b3TjcL09P2gr4jKdq/epNpU7a', '61621870', 'lakin.concepcion@yahoo.com', '2013-09-18 06:15:04', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('tgorczany', 'Norma', 'Considine', '$2y$10$nTq2GoBc.5/HajGXMdd0BeU6dsUzAJ0YJKC6oYpsrsrdR2.JNzdg2', '64561040', 'selmer.kunze@hotmail.com', '2014-08-19 10:48:00', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('marc19', 'Clark', 'Hermiston', '$2y$10$oikEWZJjYNueMW5gl3JSN.mEuMcoC7R1lS/Gjy5.Dt9IYUjOnfoEa', '80643155', 'austen21@schulist.com', '2013-01-09 13:55:22', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('jennie18', 'Theresa', 'Deckow', '$2y$10$nMGSWQKyYE5Nzy8isvurtONkMoT6PrV8wQS/lIgudQCGZli4uQqU.', '84129865', 'hudson.brendan@conn.com', '2011-08-18 12:42:24', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('kling.elizabeth', 'Samantha', 'Tremblay', '$2y$10$U8kSWE.yIE/wh2PehgxOxO75adWWWycl78jKDbpM/DJ7CflB5wKMy', '94185304', 'rowland44@moore.com', '2013-03-07 04:00:18', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('tgottlieb', 'Retta', 'Schowalter', '$2y$10$R8FT6XcsL2SXxUm4yeGKJOsIdb2i.DWQYSSvaDrK5lvZOYmbwMqK6', '62751482', 'reid.rice@hoppe.com', '2007-11-30 07:06:56', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('hschuppe', 'Will', 'O\'Reilly', '$2y$10$FLuh9k1WDs9ajM0n8HAAGeglFUSuwlaTUKIoVTUHs.e5RrgdYixMC', '68389603', 'coralie.hoeger@kreiger.org', '2013-10-29 10:55:06', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('weston.langosh', 'Luigi', 'Skiles', '$2y$10$kptvsNBlhEzqfx7pbz/1aecqIDgvESM82BZqeCBmjBfkZ4NlJcv.y', '61671393', 'collins.marcel@crist.com', '2011-03-12 15:28:23', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('myrtle35', 'Elenor', 'Wuckert', '$2y$10$dwMAJvZ6xfIkJTX7VGuF1.dzkTBLsyFa4rgL7F06xcqUzsMH0kLxm', '92786832', 'schowalter.eugenia@daugherty.com', '2008-07-21 14:56:13', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('carlie.klocko', 'Karson', 'Walker', '$2y$10$pXw7pw.TuXYw6DIjnFCsPOjmUQVp.3HS7nIwfKwgH49Mnkdz3bBC.', '60647929', 'gleichner.bertrand@gmail.com', '2016-05-03 21:49:59', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('ejohnston', 'Natalie', 'Corwin', '$2y$10$qVKHJOpam.Q35VBl3MumV.m9OITFKtRF5Mfd5tD2h/W2UdD6ZoHZC', '64202846', 'ekunze@yahoo.com', '2013-10-05 12:09:29', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('treutel.hosea', 'Stephon', 'Jacobs', '$2y$10$wH4/ozPAfWAGC.a/QlU.ZuhqVg7DXZwRdCuFByJPy2JRQDhTvpnVy', '91071669', 'lucy30@yahoo.com', '2015-05-13 12:21:27', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('schmitt.rachel', 'Charley', 'Koch', '$2y$10$axDi/g9rGu6GR8LtKNBoEexftu7wDMElThpR97qh3pYepU2GdegBO', '91491896', 'zemlak.hosea@sipes.com', '2012-05-02 15:08:31', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('dwalker', 'Therese', 'Jacobson', '$2y$10$vad9fKqzohWpIRBVewLuhu3knNpX0ojq5XAQiQLnZt2WGtD51CdsW', '93578540', 'jarret88@hotmail.com', '2016-09-19 17:01:16', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('coberbrunner', 'Amelia', 'Gislason', '$2y$10$ofsSI.5GEDbhsklf7XI5XOqS0hRJLIbmYrwESBN1KO0fTfQyIEmoK', '96857105', 'kmclaughlin@yahoo.com', '2013-04-19 17:04:24', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('lbins', 'Ken', 'Paucek', '$2y$10$dd6KK7UAFFPt9mdframwx.j6E1iYdqQwo20V.Wt/VL1c29Yfh48qy', '66970672', 'maggio.beaulah@gmail.com', '2014-10-10 02:44:55', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('christiana25', 'Norene', 'Heidenreich', '$2y$10$e40yve3YKXA7U1nOW3rzD..IhfHbGYqiJ2/ZqUrJLijQh7FXWWrCC', '66802372', 'lenora.ondricka@gmail.com', '2011-01-18 17:17:47', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('coby.powlowski', 'Alex', 'Rodriguez', '$2y$10$OSJ6vkihyeN4VOE1ZLKgjuHyXhdGUsZfwPK5gGSjxvR.vr31pNtIu', '67165564', 'dina.denesik@hotmail.com', '2017-10-19 11:08:44', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('ynitzsche', 'Ava', 'Heathcote', '$2y$10$jpGFlnES6EiFyIzVGL3Yfukpm3nmrT04ZNjyObQ4pJM3Z8XB3CHpu', '69846098', 'bergnaum.candelario@hotmail.com', '2016-07-21 18:01:32', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('llewellyn24', 'Jabari', 'Runolfsson', '$2y$10$DcK4jrY1UhoDOjI1Hknffe7JUhbFNWJzl6IcDCbdPfXpqZzF9787S', '90030297', 'qmetz@yahoo.com', '2016-01-16 20:02:42', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('nader.jacinthe', 'Jeanne', 'Sporer', '$2y$10$MsITOObtRbilp8QMHoP/h.FWgnP6K53eJTNUpQH36C1wLrYJ6ACT.', '67631890', 'iheathcote@becker.com', '2008-12-04 04:44:29', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('femard', 'Frederique', 'Roob', '$2y$10$XsNNL7aU0nwWWMN3Mn2Js.erXFWb6BkEazu/1ig.CMwrV2JWSzOR2', '68275061', 'astiedemann@yahoo.com', '2008-05-26 18:15:42', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('arau', 'Elise', 'Bergstrom', '$2y$10$G7IuRJj.HMpfPPXnlt8F0OsNQFz6FAPYkEflYqphlUZQXMGwGEIyu', '68681798', 'hsmitham@yahoo.com', '2015-08-09 13:59:07', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('luettgen.winfield', 'Rylee', 'Rodriguez', '$2y$10$W/9sKmU3zFLVQGLmZ7y7De9CVn57Vyo8A1sv4YCL1JH06ZeyUlY9i', '66483594', 'kohler.drew@ortiz.info', '2017-01-28 02:35:20', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('murl24', 'Johann', 'Medhurst', '$2y$10$GihL2qPApFFEo2h8DAbo3OZfY.bRiPMuc/PMu2Pu1rdzmBfV6lF5G', '91889147', 'rowland41@yahoo.com', '2014-04-13 17:31:42', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('lledner', 'Selena', 'Davis', '$2y$10$1oameV2/WqrGiqND9xN/ROAtTDXnDsoqmlIaO22GzI8LtRqD.ojuK', '63837268', 'marcos67@gmail.com', '2013-01-20 00:34:41', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('junior.runte', 'Omer', 'Kub', '$2y$10$eBrK6T5lsn7BRBzQUKEQSuqiT.ElLeDqiDIxzSI61u11D2cPtYKQC', '84390096', 'quigley.jarrell@yahoo.com', '2016-04-27 05:22:13', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('bruce82', 'Kris', 'Krajcik', '$2y$10$E0gXfJO.nL3GWIOiC48yA.bOrTE.FgVVVHRv1lRjZMQ3whMYxcpGK', '80607724', 'amie27@blick.com', '2015-01-29 09:46:42', '', 'User');
INSERT INTO User (`username`, `first_name`, `last_name`, `password_hash`, `contact`, `email`, `created_at`, `updated_at`, `user_type`) VALUES ('kilback.else', 'Kasey', 'Batz', '$2y$10$H/rdmx2rF6OSK64PtkuYJOODQYb5u4aWNJKHjJ5cswOYc0pFxwENq', '99649487', 'austyn99@yahoo.com', '2010-11-15 14:33:03', '', 'User');
-- 1 - 50 Tasks that have been won but not completed
-- 51 - 100 Tasks that are open
-- 101 - 150 Tasks that have been won and closed
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Sawing Machine Operator 1', 'Eveniet quia vero sint. Modi iusto ea iure doloribus accusantium.', '2016-09-09 06:10:53', '2016-09-09 06:10:53', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '23', '85', 'pierre01', 'weston.langosh', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Nuclear Monitoring Technician 2', 'Accusamus aut voluptatem nesciunt accusantium quidem adipisci consequatur. Natus nobis enim voluptas autem animi. Quidem reprehenderit et amet earum repellat accusamus. Tempora exercitationem quis non voluptas sit corrupti corporis.', '2012-10-20 21:56:45', '2012-10-20 21:56:45', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '38', '91', 'mack22', 'rowe.herminio', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Private Detective and Investigator 3', 'Iusto eos fugiat quia dolor repellat autem illo. Eaque et porro omnis.', '2014-03-21 23:05:56', '2014-03-21 23:05:56', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '26', '83', 'victor03', 'mikel05', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Teacher 4', 'Enim cumque aut accusantium dolores eum dolores. Voluptatem et voluptatem error maiores. Iste facere quis laudantium vero minima explicabo modi ea. Non et voluptas iste aliquam.', '2008-09-14 18:14:52', '2008-09-14 18:14:52', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '12', '75', 'luettgen.winfield', 'zhodkiewicz', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Cost Estimator 5', 'Sequi nemo reprehenderit optio et amet. Ut ab accusamus inventore atque qui animi officiis. Et non qui architecto incidunt veritatis. Et ut hic quisquam quaerat quisquam asperiores vitae nisi.', '2016-06-24 14:24:04', '2016-06-24 14:24:04', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '23', '47', 'victor03', 'marks.ilene', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Fabric Mender 6', 'Veniam repudiandae veritatis consequatur occaecati facilis consequatur. Dolor in quae reprehenderit libero at omnis. Adipisci sapiente est doloremque quia rerum nesciunt et minus.', '2010-01-23 04:10:56', '2010-01-23 04:10:56', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '30', '82', 'tdach', 'weston.langosh', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Executive Secretary 7', 'Omnis quasi cum esse quia mollitia et voluptas et. Nihil incidunt voluptates laborum nisi quia libero sunt. Error consequatur esse ea dolorem laboriosam. Deleniti fuga vitae labore.', '2012-05-14 15:51:24', '2012-05-14 15:51:24', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '21', '85', 'shanel.wunsch', 'tgottlieb', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Oil Service Unit Operator 8', 'Adipisci quo dolorum rerum quis itaque possimus non recusandae. Fuga et ad velit fuga. Assumenda iure veniam et vitae. Incidunt adipisci ut qui voluptatem in ex omnis laudantium. Non est delectus neque quisquam et ipsam.', '2010-06-07 02:30:17', '2010-06-07 02:30:17', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '33', '119', 'emayer', 'florine.jaskolski', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Dancer 9', 'Consequatur aut asperiores nihil atque. Vero asperiores quia earum saepe. Rerum eligendi ut natus sed hic. Facere voluptas magni eum et optio corrupti.', '2008-07-02 02:18:46', '2008-07-02 02:18:46', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '7', '44', 'philip82', 'margarete12', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Clinical School Psychologist 10', 'Nihil est aspernatur assumenda. Corporis quo porro aut corrupti molestiae. Voluptatem temporibus consequatur nesciunt dicta sequi quis non. Maxime sed dolores adipisci sunt ut.', '2008-05-16 16:57:28', '2008-05-16 16:57:28', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '18', '94', 'francisco81', 'godfrey.mitchell', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Occupational Therapist 11', 'Et perferendis ut voluptas. Rerum dolores quia in molestiae officiis. Et sit dolorem nostrum odio. Excepturi sint voluptatibus et et adipisci.', '2010-12-23 10:15:23', '2010-12-23 10:15:23', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '32', '53', 'augustus.zieme', 'marques.ziemann', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Environmental Engineer 12', 'Ex tempore aut eum distinctio temporibus ab culpa est. Nihil aut qui veritatis maxime autem aut consequatur.', '2013-09-20 10:09:20', '2013-09-20 10:09:20', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '26', '41', 'mikel05', 'maggie.hilpert', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Hand Presser 13', 'Ipsum ea fugiat pariatur rerum enim deserunt ad est. Error ad magni exercitationem est animi. Dolor dolores nostrum et laboriosam et.', '2011-07-29 02:19:24', '2011-07-29 02:19:24', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '25', '103', 'nader.jacinthe', 'marc19', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Child Care 14', 'Eaque iusto quia consectetur. Et qui velit facere ut. Voluptates eligendi quia quia quis eaque ipsam impedit enim. Doloremque vero molestiae incidunt.', '2011-10-31 10:54:33', '2011-10-31 10:54:33', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '26', '112', 'kamille.mann', 'olson.gaetano', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Epidemiologist 15', 'Ullam ullam voluptate consequatur unde quia voluptatibus qui. Velit temporibus animi molestiae eveniet ea dolor.', '2013-08-30 08:25:19', '2013-08-30 08:25:19', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '14', '101', 'kamille.mann', 'lucy.larkin', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Precision Printing Worker 16', 'Voluptas itaque accusantium incidunt aut. Voluptatibus non doloribus et et vel quasi eligendi. Qui quis porro amet expedita necessitatibus rerum tempore qui. Rem consequatur aut non inventore.', '2012-10-18 12:00:40', '2012-10-18 12:00:40', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '34', '90', 'rowe.herminio', 'gutmann.briana', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Cook 17', 'Accusamus autem commodi iure omnis beatae veniam. Et velit et aut ut excepturi eligendi consequatur. Amet omnis qui eveniet omnis. Tenetur est ducimus eos sequi iure consectetur corrupti.', '2013-08-22 00:18:09', '2013-08-22 00:18:09', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '17', '114', 'savanna06', 'streich.dorothy', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Librarian 18', 'Cumque fuga eaque voluptates dicta eaque. Qui et porro at repellendus cum corporis. Impedit nihil magni inventore soluta sint velit praesentium. Necessitatibus animi ducimus inventore.', '2009-01-26 23:02:17', '2009-01-26 23:02:17', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '36', '88', 'pierre01', 'kling.elizabeth', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Insurance Investigator 19', 'Nisi nihil quo sit dolorum officia temporibus optio. Molestiae ut nihil nobis iste impedit praesentium numquam. Quae id odio debitis repellendus. Impedit doloremque assumenda et repudiandae ratione velit vel.', '2016-05-15 23:52:38', '2016-05-15 23:52:38', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '12', '108', 'cemard', 'carlee.haag', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Gluing Machine Operator 20', 'In eum harum ea quia. Ab perspiciatis non ipsam architecto occaecati. Blanditiis facilis est sit aut.', '2011-10-14 22:18:56', '2011-10-14 22:18:56', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '12', '106', 'aniya.champlin', 'chaya.witting', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Insulation Worker 21', 'Excepturi eos dignissimos quo quia repudiandae laboriosam quo. Dolor doloremque autem occaecati aliquid ipsa at sint voluptas. Est alias cum dolorem. Beatae eius est quia minus.', '2016-10-28 09:28:10', '2016-10-28 09:28:10', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '18', '104', 'farrell.berniece', 'gmckenzie', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Transformer Repairer 22', 'Velit qui est reiciendis aut similique ab omnis. Accusamus voluptatem nihil esse dolores ut deleniti architecto. Praesentium nisi voluptatem reiciendis beatae ut qui sit.', '2011-11-15 01:08:44', '2011-11-15 01:08:44', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '25', '113', 'kiana52', 'streich.dorothy', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Central Office and PBX Installers 23', 'Necessitatibus praesentium ut ut vel magni et et. Necessitatibus ipsam repudiandae ea molestias. Vel eligendi eum omnis et quo.', '2017-03-05 16:56:45', '2017-03-05 16:56:45', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '23', '83', 'kilback.else', 'proob', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Central Office 24', 'Qui est ex quam ad delectus cupiditate. Fuga quis corrupti libero ut. Quam dolor asperiores reiciendis optio exercitationem. Quia non eum neque facere.', '2012-07-27 03:34:39', '2012-07-27 03:34:39', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '4', '63', 'kamille.mann', 'zelda76', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Special Forces Officer 25', 'Eos sequi voluptatum et mollitia reprehenderit quod. Non ipsam omnis minima ea sed quam. Laborum voluptatem quaerat molestiae voluptas.', '2012-08-07 11:51:09', '2012-08-07 11:51:09', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '34', '105', 'mikel05', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Meter Mechanic 26', 'Excepturi quisquam quod sit atque temporibus ratione quis. Laudantium quo autem beatae perspiciatis fugiat hic ratione repellat.', '2015-04-09 07:28:29', '2015-04-09 07:28:29', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '28', '80', 'tgorczany', 'shanel.wunsch', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Personal Trainer 27', 'Architecto molestias omnis reprehenderit rem. Maxime dolores aliquid laborum expedita voluptatibus non. Adipisci quis qui dolorem et sint suscipit repellat illo. Distinctio magnam aut in quasi dolore libero est.', '2007-11-12 08:40:40', '2007-11-12 08:40:40', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '17', '115', 'bryce.maggio', 'christiana25', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Elevator Installer and Repairer 28', 'Cumque dolore cum totam magnam dolores. Est eos sed tenetur sit ea ut odio. Eos aut temporibus sapiente. Consequatur enim dolor autem eaque alias quae libero.', '2016-02-12 08:03:57', '2016-02-12 08:03:57', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '30', '108', 'kilback.else', 'floyd.okon', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Coil Winders 29', 'Rerum sit nam eum asperiores perspiciatis quae. Animi sunt quia sit consequatur quos et. Sit id voluptatem nostrum ab.', '2013-12-01 15:33:43', '2013-12-01 15:33:43', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '26', '110', 'chaya.witting', 'eldon.hoeger', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Production Planner 30', 'Temporibus iusto adipisci ut enim adipisci amet quasi. Saepe illum ea nihil atque deserunt veritatis. Voluptas vitae et provident nemo voluptatem.', '2010-03-17 22:34:55', '2010-03-17 22:34:55', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '32', '94', 'chaya.witting', 'llewellyn24', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Pump Operators 31', 'Aperiam est est similique laboriosam et deserunt possimus. Ex et accusantium molestiae id et quis.', '2009-08-08 21:42:03', '2009-08-08 21:42:03', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '29', '92', 'christiana25', 'jrosenbaum', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Building Cleaning Worker 32', 'Qui sunt magni cum amet. Atque incidunt debitis iusto ab et iure nam. Provident tempora iure error officia.', '2010-02-25 19:20:06', '2010-02-25 19:20:06', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '32', '101', 'maggie.hilpert', 'metz.marcella', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Law Teacher 33', 'Ut illum eius quod dolorum vitae suscipit impedit enim. Quae adipisci cupiditate quidem molestias facilis quod. Est odio harum a eaque neque.', '2012-04-22 16:56:34', '2012-04-22 16:56:34', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '35', '69', 'mack22', 'augustus.zieme', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Landscape Architect 34', 'Velit quasi non quae ad laboriosam. Doloremque libero et eveniet nulla ipsa. Nisi animi ratione nisi ea architecto placeat fugit.', '2011-05-15 16:02:25', '2011-05-15 16:02:25', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '16', '63', 'kilback.else', 'godfrey.mitchell', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Bus Driver 35', 'Neque quo corporis voluptate tempora. Veniam voluptas minus harum occaecati cupiditate. Sed debitis commodi voluptas et voluptates qui iure laborum.', '2013-10-22 22:57:55', '2013-10-22 22:57:55', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '38', '102', 'chaya.witting', 'philip82', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Computer Hardware Engineer 36', 'Aut natus amet ad eum. Tenetur voluptas animi consequuntur eos tenetur quis. Quidem a veritatis tempora nostrum quam quasi. Omnis quos quos temporibus.', '2016-02-11 21:51:16', '2016-02-11 21:51:16', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '32', '63', 'mikel05', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Vocational Education Teacher 37', 'Consectetur aperiam et quisquam. Harum reprehenderit voluptate impedit dolores ad. Totam qui est id earum qui vitae.', '2009-06-23 19:45:41', '2009-06-23 19:45:41', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '38', '111', 'clinton62', 'margarete12', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Real Estate Broker 38', 'Explicabo porro explicabo et. Perspiciatis dolores deleniti autem rerum libero repellat. Consequatur deleniti expedita aperiam ut dolor nemo amet deserunt. Natus aut voluptas earum labore.', '2011-08-29 02:52:05', '2011-08-29 02:52:05', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '34', '85', 'streich.dorothy', 'victor03', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Optometrist 39', 'Nobis dolorum dolorem voluptatem voluptatem aut est rerum perferendis. Omnis ipsam omnis a totam error quis quos. Velit sed alias officiis. Tempora accusantium adipisci sequi ipsa rem doloremque.', '2015-05-25 16:49:07', '2015-05-25 16:49:07', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '18', '118', 'mikel05', 'mack22', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Typesetting Machine Operator 40', 'At non voluptas libero totam tenetur provident. Voluptatem sunt aut vel quia et aut. Ut error adipisci non et repellendus ut eaque. Velit occaecati sit voluptatem quo.', '2017-09-22 08:43:32', '2017-09-22 08:43:32', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '19', '74', 'godfrey.mitchell', 'eldon.hoeger', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Film Laboratory Technician 41', 'Ratione assumenda inventore eveniet illo. Neque ducimus quis et veritatis. Ut qui nisi exercitationem excepturi deserunt sunt non. Perspiciatis animi natus magnam.', '2008-09-29 01:03:33', '2008-09-29 01:03:33', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '23', '115', 'mack22', 'kreiger.wava', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Telemarketer 42', 'Tempore qui explicabo dolores aut itaque aut. Occaecati laudantium dolores magni rerum beatae voluptatibus quia. Debitis maiores perferendis voluptas vero aliquam eum unde. Doloribus voluptas non nesciunt magnam enim non maiores.', '2014-10-24 01:07:30', '2014-10-24 01:07:30', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '9', '75', 'arau', 'blanca43', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Anthropologist OR Archeologist 43', 'Et dicta voluptates et et sunt quia a in. Rerum officia impedit pariatur rerum quod. Provident nesciunt beatae id itaque tempore voluptas.', '2011-10-14 06:49:05', '2011-10-14 06:49:05', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '29', '99', 'mikel05', 'femard', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Precision Mold and Pattern Caster 44', 'Eum rerum dolorum pariatur est incidunt. Et et rerum in. Dolores reprehenderit quisquam soluta optio. Adipisci iusto molestiae eos quod.', '2009-06-06 20:26:18', '2009-06-06 20:26:18', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '28', '57', 'augustus.zieme', 'marc19', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Highway Patrol Pilot 45', 'Et repellendus iste aperiam doloremque iste. Hic vitae rerum repudiandae. Soluta illo ipsa officia cumque. Quod aliquid debitis iusto blanditiis recusandae facilis rerum. Voluptate error delectus sed placeat aut libero at.', '2017-01-14 13:54:50', '2017-01-14 13:54:50', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '3', '91', 'cemard', 'grady.zelda', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Recyclable Material Collector 46', 'Quod itaque aliquam aut quidem. Iste ullam facere odio. Sint id et nisi ea facilis sed provident est.', '2012-02-15 14:18:16', '2012-02-15 14:18:16', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '18', '113', 'proob', 'okessler', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Music Composer 47', 'A reiciendis eius quas nulla quam. Natus repudiandae provident dicta molestiae beatae atque consequatur corrupti. Magnam ipsum architecto ut voluptatem mollitia modi. Possimus reiciendis nobis atque fuga.', '2012-05-24 03:34:31', '2012-05-24 03:34:31', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '23', '77', 'brenden.mcdermott', 'junior.runte', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Plating Operator 48', 'Nisi facere repudiandae corporis molestiae. Porro atque in et numquam dolor dolorem. Ea autem iure nihil quia eaque. Est placeat sit fugit.', '2015-03-19 20:02:02', '2015-03-19 20:02:02', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '16', '84', 'kozey.jennifer', 'marc19', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('HR Specialist 49', 'Dolores consequuntur perferendis rerum exercitationem. Ducimus numquam magni et ullam ea. Et minus tenetur veritatis reiciendis quo. Libero dolorem dolores neque ad.', '2011-03-17 21:23:38', '2011-03-17 21:23:38', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '21', '67', 'blanca43', 'jrosenbaum', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Carpenter Assembler and Repairer 50', 'Minus odit repellendus ut ullam. Sunt harum iste non aspernatur laboriosam illum doloremque. Aut eum et aliquid et provident occaecati sit vel.', '2008-11-20 00:04:00', '2008-11-20 00:04:00', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '37', '44', 'eldon.hoeger', 'streich.dorothy', NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Bridge Tender OR Lock Tender 51', 'Autem esse explicabo velit voluptate animi dolorem quibusdam. Ut perferendis ipsa similique quo officia quasi eum deleniti. Temporibus rerum alias magnam harum ut velit voluptatem.', '2011-09-25 09:17:01', '2011-09-25 09:17:01', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '12', '115', 'streich.dorothy', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Communications Teacher 52', 'Nulla dicta porro praesentium dolor minima explicabo fugiat ea. Et in adipisci magnam dolorem sed. Cupiditate ea doloribus non cupiditate aut eos consequatur hic.', '2016-10-21 23:06:37', '2016-10-21 23:06:37', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '10', '83', 'okessler', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Recordkeeping Clerk 53', 'Molestiae quia ipsam omnis eum cumque. Suscipit qui dignissimos doloribus. Est ut magni occaecati sit facere. Omnis incidunt sed et consequatur architecto.', '2008-04-10 14:22:34', '2008-04-10 14:22:34', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '33', '60', 'kling.elizabeth', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Photographer 54', 'Explicabo est optio rerum unde est accusamus omnis. Id et itaque eaque velit qui. Similique nam unde quibusdam.', '2012-09-23 05:23:25', '2012-09-23 05:23:25', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '33', '62', 'olson.gaetano', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Motor Vehicle Inspector 55', 'Sed nobis et rerum quia nisi aut qui. Qui asperiores error voluptas omnis voluptas qui. Quos voluptas porro dolores aliquid earum et et magnam. Fugiat aliquam doloremque iste doloribus. Eligendi quia provident optio sed ducimus vel.', '2013-09-14 06:45:07', '2013-09-14 06:45:07', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '29', '74', 'marc19', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Industrial Engineer 56', 'Quia eos cumque minus distinctio. Quidem est deserunt beatae repellendus voluptas autem cum.', '2009-04-30 09:29:15', '2009-04-30 09:29:15', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '26', '101', 'kamille.mann', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Computer Science Teacher 57', 'Dolorem et non illo vel magnam dignissimos doloremque. Ut libero explicabo error molestiae ea voluptates. Id enim sit veritatis autem aut voluptates in. Est aut praesentium tenetur provident saepe minima sint.', '2008-03-10 01:50:53', '2008-03-10 01:50:53', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '13', '83', 'walter.carli', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Court Clerk 58', 'Voluptas sunt eveniet repellendus rem. Adipisci itaque aut ut necessitatibus. Facere minus velit omnis rerum velit earum.', '2017-03-22 18:13:24', '2017-03-22 18:13:24', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '35', '77', 'grady.zelda', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Interviewer 59', 'Id vitae iste iusto est nemo. At omnis beatae tenetur. Culpa assumenda cupiditate quidem consectetur nihil.', '2017-05-10 00:44:10', '2017-05-10 00:44:10', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '28', '95', 'olson.gaetano', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Product Specialist 60', 'Et est accusamus rerum blanditiis vel ut nihil beatae. Aut pariatur possimus dicta incidunt vero quo pariatur. Quaerat vitae ut nisi consequatur ea et.', '2015-08-04 15:18:46', '2015-08-04 15:18:46', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '27', '115', 'carlie.klocko', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Clinical Laboratory Technician 61', 'Ut et velit voluptatem debitis ad. Sed eum quisquam possimus quasi rerum repudiandae. Voluptates odit sint ut ducimus accusantium qui nemo voluptas.', '2011-08-28 10:40:23', '2011-08-28 10:40:23', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '23', '76', 'treutel.hildegard', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Music Composer 62', 'Qui et quae dolorem magnam. Nihil dolorum vel similique culpa. Sed eligendi eveniet magnam atque dolores quisquam non. Odit sequi temporibus quia doloremque vero cum.', '2013-06-23 00:03:19', '2013-06-23 00:03:19', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '33', '73', 'nader.jacinthe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Night Shift 63', 'Vel quibusdam cupiditate earum voluptatem ipsam odit. Mollitia consequatur praesentium ad enim facilis id autem. Aut omnis id enim est eaque. Debitis pariatur harum et laborum voluptatem blanditiis neque. Rerum labore veritatis animi aut alias voluptatem nihil.', '2016-12-23 04:54:31', '2016-12-23 04:54:31', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '38', '98', 'schmitt.rachel', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Electrical and Electronic Inspector and Tester 64', 'Velit ducimus libero quo optio veritatis. Debitis nulla quisquam omnis. Ut nisi veniam sunt amet.', '2017-09-17 14:25:51', '2017-09-17 14:25:51', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '38', '74', 'marc19', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Motorboat Operator 65', 'Optio consequatur rerum quo. Repellendus rerum et modi et corrupti sint tempore. Culpa voluptates sed incidunt nostrum quam.', '2013-06-12 04:09:08', '2013-06-12 04:09:08', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '32', '112', 'arau', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Tool and Die Maker 66', 'Voluptatem quis sed quisquam assumenda. Placeat debitis voluptatum repellat cupiditate. Dolores architecto possimus rem nesciunt quia consequatur qui. Laboriosam quisquam molestiae doloremque ab.', '2017-10-21 12:07:43', '2017-10-21 12:07:43', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '21', '80', 'fisher.kraig', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Welfare Eligibility Clerk 67', 'Odio neque sed vitae nisi consequatur officiis aut. Quam harum dolor quaerat occaecati quae necessitatibus voluptates quia. Vero sit laudantium harum tempora sint. Id voluptates a dolores cum tenetur quia voluptas.', '2016-04-20 09:17:59', '2016-04-20 09:17:59', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '40', '100', 'schmitt.rachel', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Log Grader and Scaler 68', 'Et id rem et odit. Est mollitia doloribus dolorem et molestias architecto. Quo itaque reiciendis praesentium.', '2008-09-28 06:37:33', '2008-09-28 06:37:33', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '29', '102', 'francisco81', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Forensic Science Technician 69', 'Soluta dolorem animi deserunt velit labore quaerat. Culpa facilis iure fuga aliquam tempore et ea. Rerum autem explicabo at molestias voluptates. Quod earum odio rerum et.', '2010-03-25 22:10:56', '2010-03-25 22:10:56', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '22', '110', 'rowe.herminio', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Portable Power Tool Repairer 70', 'Nihil deserunt ut ut. Laboriosam consectetur minima harum delectus quia magni non totam. Fuga odio perspiciatis perferendis quia exercitationem voluptatem.', '2009-10-23 23:00:32', '2009-10-23 23:00:32', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '35', '105', 'weston.langosh', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Online Marketing Analyst 71', 'Temporibus natus quis minima ratione. Modi laborum ut officiis consequatur aliquam. Beatae soluta animi accusantium nesciunt iste. Architecto voluptas exercitationem dolor numquam.', '2011-03-18 07:31:32', '2011-03-18 07:31:32', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '24', '116', 'mack22', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Marriage and Family Therapist 72', 'Consequatur repellat rem unde exercitationem. Ad ad beatae voluptas culpa esse repellendus in ipsa. Deleniti omnis dolore autem magnam atque asperiores quia.', '2012-11-09 23:24:15', '2012-11-09 23:24:15', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '3', '75', 'kiana52', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Night Shift 73', 'Labore quis culpa quidem eligendi ut sunt rerum. Quo quisquam id consequatur dolore. Sunt id provident repellat natus.', '2008-03-19 14:35:00', '2008-03-19 14:35:00', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '29', '106', 'ritchie.josefina', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Life Science Technician 74', 'Amet debitis dolor laboriosam vero laboriosam. Rerum pariatur reiciendis repudiandae modi est maiores. Deleniti enim eum non sit id quibusdam. Cumque sunt dolore molestiae consequatur. Sit ea in voluptatibus magni praesentium quia.', '2013-01-14 07:56:44', '2013-01-14 07:56:44', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '37', '69', 'arau', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('User Experience Researcher 75', 'Dolores et est culpa. Voluptas et pariatur dicta dicta. Eum officia dolores incidunt.', '2009-12-02 14:31:03', '2009-12-02 14:31:03', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '39', '59', 'femard', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Visual Designer 76', 'Minima iusto consequatur tempora officia facere. Rerum animi atque earum rerum ut facilis quidem itaque.', '2014-10-11 00:22:53', '2014-10-11 00:22:53', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '23', '85', 'metz.marcella', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Cutting Machine Operator 77', 'Ut non illo quisquam amet. Inventore sed minus incidunt quisquam aut eum quia. Voluptatem omnis dolor dolor saepe saepe.', '2014-10-30 12:08:42', '2014-10-30 12:08:42', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '35', '84', 'tbailey', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Producer 78', 'Praesentium dolorem et magnam labore perspiciatis sed non ea. Ut earum sit dolor hic nulla voluptatem. Nam aut dolore nulla.', '2014-09-14 20:43:32', '2014-09-14 20:43:32', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '10', '84', 'jennie18', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Meter Mechanic 79', 'Neque non reiciendis consectetur id. Earum quam delectus veniam sequi aut illo. Earum dolor voluptas odio.', '2008-07-20 07:09:26', '2008-07-20 07:09:26', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '26', '80', 'chaya.witting', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Bindery Worker 80', 'Velit repellendus sed rerum qui exercitationem at consectetur libero. Sunt consequatur odio aperiam voluptatibus. Nam commodi ea est blanditiis perspiciatis. Rerum itaque cum dolorem ipsa velit.', '2009-07-15 23:22:00', '2009-07-15 23:22:00', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '17', '97', 'tbailey', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Marking Clerk 81', 'Quae qui repellat laudantium non. Qui facilis aspernatur eveniet velit id. Veniam pariatur dolor error facilis. Illum placeat maiores eius dolor maxime.', '2016-02-10 09:58:09', '2016-02-10 09:58:09', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '10', '108', 'savanna06', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Order Filler OR Stock Clerk 82', 'Cumque quae tempore et occaecati. Consequuntur magnam nemo a. Quae quas eaque nisi ipsa quae hic.', '2010-04-16 04:10:45', '2010-04-16 04:10:45', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '27', '93', 'fisher.kraig', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Elementary School Teacher 83', 'Autem sed temporibus dicta et. Sit ducimus facilis dolores magnam aspernatur. Facilis sint qui asperiores.', '2011-06-26 09:45:44', '2011-06-26 09:45:44', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '40', '105', 'ylittel', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Manufactured Building Installer 84', 'Deserunt sed et porro consequatur. Omnis rerum ea non tempora provident. Commodi delectus veniam sit non. Sequi expedita ea reiciendis qui iure et nam.', '2016-05-23 04:43:25', '2016-05-23 04:43:25', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '15', '61', 'tgottlieb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Health Educator 85', 'Necessitatibus iste ipsa recusandae facere. Enim voluptatem rem quis quia non labore alias molestias. Ab accusantium qui temporibus ea.', '2010-01-03 23:04:04', '2010-01-03 23:04:04', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '32', '64', 'sedrick30', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Usher 86', 'Placeat ut quo dolorem impedit odio. Consequuntur veniam repellendus repellat itaque. Rerum dolorem eos ex accusantium.', '2008-01-30 02:33:48', '2008-01-30 02:33:48', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '18', '64', 'francisco81', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Biochemist or Biophysicist 87', 'Et ut velit consequatur commodi porro. Amet ut consequuntur voluptas neque inventore excepturi. Ut voluptatum aliquam pariatur eveniet ipsum fugit molestias. Voluptas aut autem neque vitae nisi quas doloremque maiores.', '2013-08-18 11:09:25', '2013-08-18 11:09:25', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '28', '86', 'wmarquardt', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Fishing OR Forestry Supervisor 88', 'Doloremque aperiam commodi itaque deserunt deserunt sunt et. Neque quis quisquam ut dolores. Ipsum architecto tempora saepe ea porro voluptas.', '2012-07-22 11:34:05', '2012-07-22 11:34:05', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '29', '114', 'coberbrunner', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Roofer 89', 'Labore amet mollitia explicabo distinctio. Blanditiis doloremque perspiciatis molestias error minus iusto ut eos. Adipisci eveniet officiis eum iste ut in quia.', '2015-05-08 04:21:22', '2015-05-08 04:21:22', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '21', '82', 'zechariah.boyer', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Precision Devices Inspector 90', 'Officiis quibusdam magnam saepe est nobis. Nobis sunt alias id debitis cumque saepe dolor. Laboriosam deleniti fugiat beatae ut.', '2017-10-06 07:24:47', '2017-10-06 07:24:47', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '15', '89', 'tdach', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Pharmaceutical Sales Representative 91', 'Nemo molestiae maiores aut suscipit. Quia ipsum ad aut eaque error voluptas. Qui amet corporis rerum repellat est exercitationem a ea. Et itaque quia sit cupiditate reprehenderit non.', '2010-06-02 13:35:27', '2010-06-02 13:35:27', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '29', '73', 'augustus.zieme', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('RN 92', 'Consequatur vero sed sed veniam officiis aut eius. Distinctio deserunt corrupti qui reprehenderit expedita ut. Illo veniam earum vel aperiam sunt incidunt minima. Et delectus sit aspernatur corrupti facilis dolor et.', '2013-01-09 05:29:01', '2013-01-09 05:29:01', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '39', '51', 'tgottlieb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Cook 93', 'Ab omnis eum quis vel voluptates. Deserunt nulla ab officia non et.', '2016-01-14 00:49:12', '2016-01-14 00:49:12', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '16', '103', 'clinton62', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Fishing OR Forestry Supervisor 94', 'Minima harum vel odit occaecati ratione et nulla. Nemo qui debitis repudiandae ipsa sint animi aut. Iure maiores architecto delectus molestiae. Iure vero eum ea deserunt non illum tempora.', '2015-05-05 11:06:01', '2015-05-05 11:06:01', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '40', '95', 'eldon.hoeger', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Credit Checker 95', 'Enim doloremque ut vel totam. Quae cum cupiditate facilis enim fugiat dolor.', '2011-08-20 10:30:48', '2011-08-20 10:30:48', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '29', '82', 'junior.runte', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Casting Machine Operator 96', 'Quisquam rerum et officia ut esse voluptatum. Illum sunt repellat quae laboriosam temporibus voluptas ut. Veritatis quos consequatur totam modi pariatur non nobis.', '2015-07-14 18:24:50', '2015-07-14 18:24:50', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '27', '112', 'augustus.zieme', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Lifeguard 97', 'Ea expedita sed at. Accusantium assumenda est possimus eos omnis totam voluptate exercitationem. Aspernatur delectus et rerum reiciendis quasi dolor autem omnis. Atque voluptas qui vel eius dolore. Nihil voluptas est deleniti vitae.', '2013-04-05 20:42:18', '2013-04-05 20:42:18', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '2', '113', 'jennie18', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Media and Communication Worker 98', 'Assumenda perferendis ipsum qui rerum et. Cumque est saepe unde. Doloremque animi eaque voluptates ullam placeat atque laborum sed.', '2017-10-09 06:25:18', '2017-10-09 06:25:18', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '35', '75', 'margarete12', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Business Operations Specialist 99', 'Ut sed et blanditiis. Distinctio modi ab et quos possimus natus. Sed repudiandae aut odio est distinctio asperiores et. Ullam odit explicabo alias architecto rerum veniam corporis.', '2012-02-26 06:52:10', '2012-02-26 06:52:10', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '18', '92', 'raphael.toy', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Telemarketer 100', 'Fuga cum velit nihil dicta. Sed aliquid quam et quasi. Nihil voluptates odio sapiente qui. Est fuga eum itaque neque earum dolorum aut labore.', '2008-06-13 08:39:41', '2008-06-13 08:39:41', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '5', '110', 'kuhic.brando', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Library Assistant 101', 'Autem repellat aliquam est est autem quasi culpa sed. Pariatur accusamus non rerum est est quasi soluta. Repellendus dignissimos eos culpa quibusdam aut. Repellendus a et repellendus quo non.', '2008-09-09 08:38:47', '2008-09-09 08:38:47', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '33', '106', 'shanel.wunsch', NULL, '3', '5', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Aircraft Launch Specialist 102', 'In reiciendis sequi hic quaerat delectus. Corporis sint sed inventore porro enim. Dolor tenetur aut est illum. Ut non et voluptatibus deleniti. Eum sunt occaecati reiciendis expedita dolorum.', '2013-12-30 14:21:35', '2013-12-30 14:21:35', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '19', '79', 'lexus.marks', NULL, '3', '5', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('User Experience Researcher 103', 'Sit aut eligendi laboriosam provident amet qui. Quia error ea ipsam consequuntur qui modi ad. Et maiores animi est fuga nihil.', '2011-10-08 12:48:45', '2011-10-08 12:48:45', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '6', '76', 'carlie.klocko', NULL, '4', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Airframe Mechanic 104', 'Occaecati repudiandae repellat dolores voluptas totam provident. Omnis voluptas ipsa voluptatem facere totam in perferendis.', '2014-10-16 07:57:52', '2014-10-16 07:57:52', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '31', '53', 'jennie18', NULL, '4', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Conveyor Operator 105', 'Et corporis aperiam sit hic beatae quisquam eos totam. Ut nihil laborum cupiditate consequatur voluptas dolor rerum. Assumenda optio vel ad ipsam. Fugit asperiores cum iure.', '2009-10-02 10:28:34', '2009-10-02 10:28:34', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '4', '68', 'cemard', NULL, '3', '5', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Real Estate Appraiser 106', 'Beatae in ad voluptas cupiditate est officia. Odio qui et maiores temporibus architecto molestiae error. Modi sint labore sit omnis molestiae. Minima suscipit soluta eligendi hic adipisci.', '2012-12-23 12:27:19', '2012-12-23 12:27:19', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '36', '115', 'lexus.marks', NULL, '3', '3', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Structural Metal Fabricator 107', 'Eum molestias rerum iusto nihil nesciunt molestias eum expedita. Porro ea iure autem nesciunt. Distinctio sapiente tenetur aut veniam omnis. Id ab eos unde ea dolores dolores.', '2010-12-14 07:51:01', '2010-12-14 07:51:01', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '10', '83', 'ritchie.josefina', NULL, '4', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Gas Processing Plant Operator 108', 'Nihil expedita est officiis ratione deleniti amet. Voluptatem non quia temporibus vel voluptatibus dolorem. Ut nihil rerum eum inventore.', '2007-12-25 19:10:11', '2007-12-25 19:10:11', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '39', '120', 'treutel.hosea', NULL, '4', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Chemical Equipment Tender 109', 'Voluptatibus rerum perferendis dolore dolores dicta. Voluptas vitae alias reiciendis voluptatibus facere omnis impedit provident. Ipsum minus velit minima aperiam totam dolorem vel. Possimus fugiat temporibus adipisci repellat dolorem.', '2016-03-30 07:26:17', '2016-03-30 07:26:17', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '26', '54', 'walter.carli', NULL, '4', '5', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Command Control Center Specialist 110', 'Non impedit officiis reiciendis praesentium aut corrupti. Illo et consequatur quas id eos velit omnis.', '2014-11-17 10:32:52', '2014-11-17 10:32:52', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '21', '52', 'farrell.berniece', NULL, '5', '3', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Human Resource Director 111', 'Nihil quod pariatur ipsum deserunt id hic. Minus qui id rerum et quia vel. Modi sit eum ratione commodi hic non et. Aliquam adipisci repudiandae repellat earum ut nulla.', '2014-01-27 21:15:00', '2014-01-27 21:15:00', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '40', '98', 'mclaughlin.major', NULL, '5', '3', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Economist 112', 'Maxime sit dolorem alias voluptatibus iusto autem pariatur. In quos culpa quas. Minus voluptas laboriosam ipsum nihil vitae ut eos atque.', '2016-02-23 12:17:56', '2016-02-23 12:17:56', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '34', '114', 'kamille.mann', NULL, '5', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Production Laborer 113', 'Voluptate soluta mollitia qui omnis occaecati ex. Vel iure unde dolorum autem consequatur est ipsum possimus. Odio cupiditate eius facilis eveniet eveniet non.', '2017-05-23 11:57:24', '2017-05-23 11:57:24', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '39', '74', 'jsimonis', NULL, '4', '3', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Furniture Finisher 114', 'Omnis ut et aspernatur ea sint nesciunt sed hic. Voluptate odit aut aperiam assumenda ipsum occaecati. Ut fugiat doloremque blanditiis quis quia.', '2015-08-01 00:13:41', '2015-08-01 00:13:41', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '27', '87', 'yabshire', NULL, '4', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Fashion Model 115', 'Maxime quis enim et amet nisi enim quas. Praesentium illo quae illo suscipit vitae voluptatem suscipit. Aut illo id totam dolores. Dolor eligendi et incidunt et blanditiis.', '2017-02-15 23:03:12', '2017-02-15 23:03:12', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '11', '92', 'schmitt.rachel', NULL, '3', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Forming Machine Operator 116', 'Officia voluptates nemo consequatur omnis non officiis sunt incidunt. Et modi error quo delectus voluptatem. Sed minima porro non sapiente rerum.', '2014-01-31 09:16:58', '2014-01-31 09:16:58', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '30', '111', 'gutmann.briana', NULL, '3', '3', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Human Resource Manager 117', 'Quis magnam excepturi ipsam. Nam laborum facilis provident et. Facere nostrum earum sed sed. Nostrum aut vel quod explicabo corporis.', '2017-01-28 16:50:16', '2017-01-28 16:50:16', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '8', '78', 'tgorczany', NULL, '3', '3', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Commercial and Industrial Designer 118', 'Id qui similique nostrum excepturi aut. Sint non dolorum aut cupiditate ut doloribus atque voluptatibus. Natus molestiae nisi iure maxime ea. Repudiandae omnis quo vero non dolores.', '2015-12-02 01:07:26', '2015-12-02 01:07:26', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '7', '95', 'florine.jaskolski', NULL, '4', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Brattice Builder 119', 'Necessitatibus quisquam tempora incidunt eveniet. Optio est a accusantium. Qui est ad quis ut impedit. Dolor atque impedit minima rerum. Voluptatum vitae fugit voluptatum nisi.', '2011-05-20 10:32:03', '2011-05-20 10:32:03', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '33', '113', 'florine.jaskolski', NULL, '4', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Stationary Engineer 120', 'Natus asperiores sed minima ab aut. Nisi ducimus voluptas amet dignissimos illum eligendi a aperiam. Deserunt necessitatibus delectus et dolorem sit commodi.', '2008-03-10 21:31:21', '2008-03-10 21:31:21', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '2', '81', 'chaya.borer', NULL, '3', '3', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Safety Engineer 121', 'Architecto ut sint delectus. Reiciendis hic vero natus voluptates et consectetur dolor consectetur. Aut labore ut saepe. Suscipit beatae delectus non modi eaque incidunt.', '2014-01-22 17:43:49', '2014-01-22 17:43:49', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '21', '61', 'gmckenzie', NULL, '4', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Audio and Video Equipment Technician 122', 'Sequi aut in culpa molestiae non illum voluptates est. Dolor aut culpa nesciunt voluptates odio. Rerum quia doloribus qui sint omnis aut ullam.', '2010-09-10 11:41:07', '2010-09-10 11:41:07', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '32', '78', 'marques.ziemann', NULL, '3', '5', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Railroad Conductors 123', 'Vitae pariatur asperiores culpa nihil voluptatem vel neque. Molestias reprehenderit alias vitae sunt amet accusamus alias. Eveniet iusto voluptatem dolor nemo expedita explicabo sed. Incidunt nulla est et earum vel ut quia.', '2010-05-11 13:52:24', '2010-05-11 13:52:24', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '21', '54', 'bryce.maggio', NULL, '4', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Telecommunications Equipment Installer 124', 'Ullam est facilis nulla ipsa voluptatem sit et est. Est rerum tempore voluptate laudantium. Autem sit dolore aut deleniti consectetur officiis voluptatum pariatur.', '2011-01-04 07:50:03', '2011-01-04 07:50:03', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '5', '61', 'metz.marcella', NULL, '5', '5', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Model Maker 125', 'Nisi possimus vitae accusamus eius id illum atque. Sit vitae asperiores nobis veritatis aut minima omnis.', '2013-09-01 18:06:01', '2013-09-01 18:06:01', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '38', '118', 'victor03', NULL, '3', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Agricultural Manager 126', 'Et veritatis veritatis doloribus a rem quasi aperiam. Et est voluptate quas non neque aspernatur. Quia dolorem voluptate illum tempora quod voluptas. Molestiae veniam beatae ut et rem recusandae.', '2009-07-22 09:22:05', '2009-07-22 09:22:05', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '32', '83', 'francisco81', NULL, '3', '5', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Textile Machine Operator 127', 'Non occaecati dolor commodi necessitatibus necessitatibus doloremque. Dolorem incidunt harum et accusamus dignissimos ea quia tenetur. Ut dolores autem velit commodi.', '2008-04-06 23:48:14', '2008-04-06 23:48:14', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '12', '54', 'augustus.zieme', NULL, '4', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Law Clerk 128', 'Autem doloremque soluta eligendi eaque itaque dolor optio. Dignissimos ipsa sed modi corrupti quia nulla. Voluptas est omnis maxime porro molestiae modi.', '2009-05-12 18:24:48', '2009-05-12 18:24:48', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '31', '73', 'emayer', NULL, '5', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Precision Pattern and Die Caster 129', 'Ea qui eligendi quam et beatae ut. Placeat ut accusamus beatae ea inventore eos sint temporibus. Autem quis consequatur similique quia qui magnam.', '2011-08-24 04:17:22', '2011-08-24 04:17:22', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '29', '75', 'vince14', NULL, '5', '3', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Architectural Drafter OR Civil Drafter 130', 'Commodi optio deserunt ipsum maxime unde aut. Amet iusto sint ab voluptates. Qui ullam qui minima adipisci eum sunt dolor veniam. Tempore aut quam ea laborum sint quia sunt.', '2012-02-29 21:40:51', '2012-02-29 21:40:51', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '18', '117', 'kamille.mann', NULL, '3', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Carpet Installer 131', 'Est earum inventore aut ut quam. Deleniti saepe incidunt unde omnis.', '2016-07-12 20:25:59', '2016-07-12 20:25:59', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '40', '77', 'clinton62', NULL, '5', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Assembler 132', 'Ut sunt nulla vero distinctio aperiam laudantium. Eum velit quisquam molestias sit impedit. Dolore odio recusandae quibusdam et. Qui culpa maxime culpa voluptas ea consequatur non.', '2012-03-21 12:24:20', '2012-03-21 12:24:20', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '31', '74', 'joelle51', NULL, '4', '3', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Mechanical Equipment Sales Representative 133', 'Est totam ratione impedit eveniet consectetur exercitationem aspernatur. Animi aut voluptatem tempore. Fugiat qui rerum minima ut labore quibusdam quas.', '2009-08-10 20:06:12', '2009-08-10 20:06:12', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '38', '88', 'zechariah.boyer', NULL, '5', '3', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Fashion Model 134', 'Tenetur saepe qui illo minima ut quo consequatur. Perferendis quia perspiciatis aliquid est.', '2016-12-27 12:41:41', '2016-12-27 12:41:41', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '34', '94', 'marques.ziemann', NULL, '3', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Dot Etcher 135', 'Ad quia sit aliquid animi. Repudiandae non necessitatibus qui. Laborum enim aut nam quisquam nihil quo ad.', '2012-12-07 14:38:38', '2012-12-07 14:38:38', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '40', '96', 'carlie.klocko', NULL, '3', '3', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Hand Sewer 136', 'Et necessitatibus blanditiis facere vero pariatur asperiores perspiciatis. Expedita dolorem illum aliquam consequatur. Ex non quia vero.', '2007-12-23 06:38:33', '2007-12-23 06:38:33', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '23', '73', 'florine.jaskolski', NULL, '4', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Recruiter 137', 'Numquam eligendi fuga eligendi et quis et explicabo. Aspernatur aliquam magni qui qui necessitatibus voluptatem. Laborum omnis vitae culpa ipsum aut. Placeat officiis quia quibusdam eligendi earum.', '2012-05-27 02:55:41', '2012-05-27 02:55:41', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '39', '55', 'metz.marcella', NULL, '4', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Milling Machine Operator 138', 'Qui hic nemo ut corporis eaque odio. Quidem culpa totam maiores assumenda. Similique sed facilis autem accusamus nobis.', '2008-09-15 13:18:55', '2008-09-15 13:18:55', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '16', '102', 'zechariah.boyer', NULL, '5', '5', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Computer Support Specialist 139', 'Eum commodi veniam nulla quibusdam commodi. Quidem tenetur earum ullam ipsa sit aperiam.', '2014-10-13 22:37:57', '2014-10-13 22:37:57', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '11', '109', 'kling.elizabeth', NULL, '4', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Director Of Talent Acquisition 140', 'Impedit rerum reprehenderit eos. Est ut suscipit ea. Ad sunt eum facilis eos voluptatibus eum minima.', '2008-05-22 17:11:34', '2008-05-22 17:11:34', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '38', '75', 'shanel.wunsch', NULL, '4', '3', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Cooling and Freezing Equipment Operator 141', 'Cupiditate facilis quas molestias est ex. Dolorem omnis ad ut eligendi consequuntur qui sunt. Eius harum consectetur eum quia.', '2013-10-26 22:10:02', '2013-10-26 22:10:02', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '38', '76', 'treutel.hosea', NULL, '4', '5', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('General Farmworker 142', 'Pariatur quo cumque sed et. Corrupti odit tempora voluptates quos mollitia perspiciatis ut eos. Voluptas aperiam itaque praesentium debitis sed neque ullam. Eaque saepe in eligendi blanditiis quod iste architecto.', '2013-03-20 05:08:39', '2013-03-20 05:08:39', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '23', '102', 'jsimonis', NULL, '4', '5', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Avionics Technician 143', 'Voluptas sunt voluptatum fugit sed aspernatur consequatur. Sed blanditiis sit placeat commodi doloribus eum. Non suscipit itaque soluta harum omnis ipsa eveniet.', '2008-12-20 16:10:15', '2008-12-20 16:10:15', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '23', '71', 'emayer', NULL, '5', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Supervisor Correctional Officer 144', 'Eveniet aliquam perspiciatis saepe minima. Repellat recusandae ea numquam consequuntur quasi corrupti quia ut. Vero amet ad sit minima adipisci.', '2013-12-26 19:56:30', '2013-12-26 19:56:30', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '12', '111', 'treutel.hosea', NULL, '5', '3', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Weapons Specialists 145', 'Iste et fugit ex sit. Inventore exercitationem qui consequuntur esse aliquam voluptas sequi. Voluptates fuga maiores distinctio.', '2015-02-14 08:11:47', '2015-02-14 08:11:47', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '30', '50', 'murl24', NULL, '4', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Barber 146', 'Perferendis est officia et sed et qui exercitationem. Et delectus accusantium dolores ratione earum distinctio. Autem vitae sint deleniti nobis rerum laudantium eos. Dolor fugiat quo velit nemo ratione illo sed sit.', '2009-06-13 01:29:41', '2009-06-13 01:29:41', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '13', '92', 'ritchie.josefina', NULL, '4', '3', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Travel Guide 147', 'Et modi enim sit. Quo non quia non dolor consequatur quas est. Enim in iusto totam voluptate architecto dignissimos iure. Aut corporis nihil voluptas.', '2015-07-13 14:43:50', '2015-07-13 14:43:50', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '14', '73', 'margarete12', NULL, '4', '3', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Taxi Drivers and Chauffeur 148', 'Molestiae fuga ut laborum incidunt rerum quibusdam. Quas ducimus sunt voluptas nobis unde ut deserunt. Et ut molestias totam harum quia ut eum rerum.', '2015-01-28 04:51:03', '2015-01-28 04:51:03', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '34', '111', 'grady.zelda', NULL, '4', '5', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Dental Hygienist 149', 'Placeat omnis hic vitae debitis sequi. Facere veritatis earum et explicabo.', '2014-10-22 22:55:36', '2014-10-22 22:55:36', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '35', '95', 'zelda76', NULL, '5', '3', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Task` (`title`, `description`, `created_at`, `updated_at`, `start_at`, `end_at`, `min_bid`, `max_bid` , `creator_username`, `assignee_username`, `creator_rating`, `assignee_rating`, `completed_at`,`remarks`)VALUES ('Probation Officers and Correctional Treatment Specialist 150', 'Suscipit velit omnis maiores voluptatibus. Facere laboriosam ad ut officia nihil. Non quasi voluptatem inventore assumenda nihil aut. Ipsum quidem deserunt libero possimus placeat.', '2012-05-11 05:22:24', '2012-05-11 05:22:24', '2017-10-16 00:00:00', '2017-10-21 00:00:00', '20', '88', 'kozey.jennifer', NULL, '3', '4', '2017-10-17 00:00:00', 'Good job!');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Bridge Tender OR Lock Tender 51', 'streich.dorothy', 'treutel.hosea', 'Quis a similique in porro cum qui consequatur autem. Quo et incidunt harum. A aut impedit officiis quasi eaque. Sed velit quia dignissimos et est enim sit.', '25', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Bridge Tender OR Lock Tender 51', 'streich.dorothy', 'floyd.okon', 'Sunt nam quam quidem. Architecto vel eius ut autem ea eligendi laudantium totam. Aut et eos odit quos natus.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Bridge Tender OR Lock Tender 51', 'streich.dorothy', 'coby.powlowski', 'Nesciunt occaecati qui in sed. Vel quae ab ducimus et est. Pariatur quisquam sint ducimus nihil dolor eaque repellendus.', '6', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Bridge Tender OR Lock Tender 51', 'streich.dorothy', 'godfrey.mitchell', 'Quasi error quasi fuga enim accusantium harum. Qui nesciunt et ipsa accusantium harum. Non ullam fugiat impedit molestias assumenda autem.', '15', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Bridge Tender OR Lock Tender 51', 'streich.dorothy', 'carlee.haag', 'Veritatis necessitatibus sint pariatur hic maiores. Sed suscipit omnis ut recusandae. Corrupti esse atque minima et neque aut facere. Cumque porro quod illum vitae labore odio.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Communications Teacher 52', 'okessler', 'kling.elizabeth', 'Quo id expedita non totam. Debitis voluptas nam deserunt nobis deserunt nostrum suscipit. Reprehenderit dolorem soluta non facilis rerum. Dolores inventore pariatur non praesentium eos ut modi. Ut incidunt laboriosam ex tenetur labore iusto sunt.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Communications Teacher 52', 'okessler', 'blanca43', 'Perspiciatis eum et quaerat ea. Iste minima neque aliquam consequatur distinctio enim. Quae aut non voluptatem omnis suscipit voluptatem aut. Cupiditate ratione necessitatibus enim consequatur doloribus.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Communications Teacher 52', 'okessler', 'jerome.robel', 'Quasi facilis voluptas veniam sapiente sit. Architecto corporis qui et numquam error saepe voluptas. Error eligendi sunt non mollitia quia et. Blanditiis minima veniam deserunt numquam.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Communications Teacher 52', 'okessler', 'brenden.mcdermott', 'Neque et aliquid natus explicabo in laboriosam molestiae. Asperiores dolor aspernatur sequi. Assumenda reiciendis aut ut pariatur atque velit eum.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Communications Teacher 52', 'okessler', 'farrell.berniece', 'Velit consequatur eius est enim ipsum. Adipisci dolores ipsam totam. Velit nulla sint accusantium assumenda quisquam.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Communications Teacher 52', 'okessler', 'dwalker', 'Vero sunt inventore aut perspiciatis rem provident suscipit. Qui et mollitia accusamus. Assumenda esse dolorem cupiditate ex voluptas. Libero sint nostrum ipsum.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Recordkeeping Clerk 53', 'kling.elizabeth', 'kilback.else', 'Non id ut nemo consequuntur. Nulla ut quibusdam beatae cum veritatis. Ut architecto aut ipsum aut assumenda quibusdam ipsam. Eveniet dicta nisi libero distinctio.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Recordkeeping Clerk 53', 'kling.elizabeth', 'tgorczany', 'In ut amet omnis dolorum illo. Alias reiciendis quaerat sapiente fugit quo soluta magni. Et et reiciendis quidem. Omnis sequi quae dignissimos voluptas voluptate eos quasi.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Recordkeeping Clerk 53', 'kling.elizabeth', 'hschuppe', 'Nam quidem maiores rerum sunt ut. Autem cum omnis non sit aut hic accusamus.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Recordkeeping Clerk 53', 'kling.elizabeth', 'emayer', 'Atque sed ea aut in aut consequatur enim. Quam eum cumque atque sequi sit autem autem. Voluptates suscipit asperiores aut quae dolores ipsum quia.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Photographer 54', 'olson.gaetano', 'tdach', 'Ut vitae voluptatem ut ea officiis totam modi. Consequatur incidunt qui est voluptas eius neque quas porro. Debitis assumenda iusto in dolorem eaque.', '9', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Photographer 54', 'olson.gaetano', 'tbailey', 'Fuga perferendis ad praesentium sit aut nostrum. Sint nam suscipit aliquam. Quis deleniti excepturi harum nulla cupiditate inventore necessitatibus.', '19', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Photographer 54', 'olson.gaetano', 'blanca43', 'Similique iusto cumque voluptas impedit molestiae ut recusandae. Dolores quaerat atque corrupti dolores necessitatibus sit laudantium. Nesciunt aut neque unde unde. Itaque qui rem sequi eum doloribus.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Photographer 54', 'olson.gaetano', 'deondre.durgan', 'Maxime distinctio est dolores similique. Incidunt et eveniet error quam.', '24', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Photographer 54', 'olson.gaetano', 'carlie.klocko', 'Eaque nostrum perspiciatis quia commodi. Laboriosam sed eum facilis qui qui ipsum. Dolorum est et esse sit voluptas alias numquam. Deserunt excepturi corrupti ut rerum libero ad.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Photographer 54', 'olson.gaetano', 'ritchie.josefina', 'Est veritatis voluptas possimus adipisci laboriosam. Facilis ut vero maiores laudantium voluptatem. Necessitatibus dolor est qui adipisci quam aspernatur blanditiis qui.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Motor Vehicle Inspector 55', 'marc19', 'dwalker', 'Quo rerum dolorem ut architecto rerum. Cupiditate nulla illo illo harum est omnis. Facilis eveniet reiciendis non non dignissimos ipsa assumenda.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Motor Vehicle Inspector 55', 'marc19', 'kamille.mann', 'Et occaecati sunt odit sequi. Fuga est pariatur repellat possimus et quia excepturi suscipit. Consequatur vero velit modi facere consectetur quo dignissimos. Consequatur ut sed vel magnam doloribus at.', '15', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Motor Vehicle Inspector 55', 'marc19', 'chaya.witting', 'Non quibusdam omnis provident cum. Dolor et sed voluptatem et molestias quos et tempora. Modi eum qui dicta sint laudantium neque aut.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Motor Vehicle Inspector 55', 'marc19', 'yabshire', 'Itaque aut cumque illo. Et quas dolor molestiae eveniet. Explicabo quo alias ipsum aut nesciunt. Eos amet vero rerum quia laboriosam quo.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Industrial Engineer 56', 'kamille.mann', 'okessler', 'Fuga quos voluptatem nulla autem. Vitae qui incidunt aut commodi.', '19', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Industrial Engineer 56', 'kamille.mann', 'tdach', 'Quia aut voluptate aut qui ut veniam enim neque. Et quisquam quia deserunt ducimus mollitia id fugit. Repellat eius temporibus facere aut provident sed eos excepturi.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Industrial Engineer 56', 'kamille.mann', 'myrtle35', 'Occaecati explicabo est minus dolore accusantium molestiae. Voluptatem enim officiis minus rerum minus. Provident occaecati et ea incidunt.', '5', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Industrial Engineer 56', 'kamille.mann', 'lledner', 'Consequuntur et quia molestiae. Consequuntur enim ipsa maiores dolore asperiores recusandae est. Accusantium ex sapiente odio. Est officia corporis temporibus unde nihil.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Industrial Engineer 56', 'kamille.mann', 'chaya.witting', 'Fugit quia cumque eos quidem est consectetur. Ipsa fugit qui minima voluptatem. Beatae nihil eaque occaecati laudantium vitae saepe sit ea. Reprehenderit quo excepturi est id deleniti id.', '11', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Industrial Engineer 56', 'kamille.mann', 'coby.powlowski', 'Id voluptatem delectus ad aut voluptatem praesentium est. Fugiat sequi ut amet laudantium culpa quaerat aliquid. Commodi amet tempore esse ipsum nisi. Illum sed velit odio unde. Fugit autem omnis nihil numquam nobis nisi.', '31', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Computer Science Teacher 57', 'walter.carli', 'maggie.hilpert', 'Consequatur sit distinctio illum at nisi asperiores. Quas voluptatem harum consequatur qui.', '10', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Computer Science Teacher 57', 'walter.carli', 'mack22', 'Ex voluptatem aut consequuntur quibusdam ut architecto. Soluta et qui tenetur necessitatibus maiores ut unde. Consequatur libero voluptate repudiandae ipsa adipisci explicabo fugit. Et assumenda saepe est minima iusto facere.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Computer Science Teacher 57', 'walter.carli', 'ritchie.josefina', 'Eum dolorem sequi a enim odit natus. Deserunt est quia reprehenderit dicta beatae in. Accusantium non eum ut rerum ab eos fugiat. Aut sed repellat quaerat aut illum.', '17', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Computer Science Teacher 57', 'walter.carli', 'tgorczany', 'Tempora est exercitationem nisi placeat assumenda nulla alias asperiores. Aut at rem exercitationem provident nostrum. Veniam cum enim magni dicta porro doloribus.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Computer Science Teacher 57', 'walter.carli', 'hschuppe', 'Repellat culpa sit ipsa delectus et eius magni. Corporis velit quos quidem expedita qui possimus. Dolores sed temporibus facere aut. Sunt et tenetur dolor et aut.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Computer Science Teacher 57', 'walter.carli', 'eldon.hoeger', 'Aliquam quis neque ut dolorem. Doloribus tenetur enim voluptatem architecto aut.', '5', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Court Clerk 58', 'grady.zelda', 'tgottlieb', 'Est quia vitae ut sequi dolorem ut placeat at. Dolorem et sit est omnis soluta aut. Sint sed est eius sed officia sint fuga. Labore suscipit ratione error beatae sapiente in enim qui.', '26', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Court Clerk 58', 'grady.zelda', 'felicita.prohaska', 'Minus quam vitae numquam dolores enim. Vel quaerat cumque a. Rerum perspiciatis ut quis impedit eos qui aperiam. Id dolores voluptatem aut sapiente.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Court Clerk 58', 'grady.zelda', 'tgorczany', 'Sint expedita ullam blanditiis quis nostrum repellat rerum. Aut maiores ea in aliquid aut quibusdam asperiores. Occaecati aut minus dolorem eos amet.', '11', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Court Clerk 58', 'grady.zelda', 'floyd.okon', 'Eius et esse ipsa nobis. Nam reprehenderit quia officiis nihil soluta. Natus vel et corporis natus commodi qui tenetur. Qui commodi suscipit maiores praesentium voluptas.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Court Clerk 58', 'grady.zelda', 'nader.jacinthe', 'Qui ipsum ducimus dolorem quis. Fuga dolores consequatur suscipit id aliquam. Necessitatibus officiis nihil quis laborum rerum impedit voluptatum. Eaque voluptate quidem nobis voluptatum. Dicta sequi et similique dolorum voluptas.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Court Clerk 58', 'grady.zelda', 'augustus.zieme', 'Officia omnis doloremque qui omnis at possimus. Velit doloremque ut ut error sed ut magni. Ut nihil facere exercitationem quos.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Interviewer 59', 'olson.gaetano', 'treutel.hildegard', 'Error eum est ut magnam velit voluptatibus consequatur. Adipisci unde error impedit nobis aut. Voluptates et repellat quod laborum assumenda. Porro ullam in quod iste fugiat soluta incidunt at.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Interviewer 59', 'olson.gaetano', 'kozey.jennifer', 'Deleniti molestiae doloremque aut voluptatem. Velit ratione necessitatibus molestiae similique repellat. Amet quisquam et ducimus eaque fugit error fugit. Sunt quia illo beatae velit est quibusdam doloribus.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Interviewer 59', 'olson.gaetano', 'schmitt.rachel', 'Aliquam veritatis inventore consequatur repellat ipsa delectus laboriosam. Ut assumenda asperiores est suscipit. Rem velit possimus odio enim maiores.', '16', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Interviewer 59', 'olson.gaetano', 'marc19', 'Iure at consequatur est accusamus ex totam. Distinctio omnis quo et. Et totam laborum architecto quis quis. Odio sapiente debitis quisquam et quis.', '14', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Interviewer 59', 'olson.gaetano', 'pierre01', 'Tempora rerum omnis quia dolores eligendi. Accusantium quam neque doloribus molestiae error.', '9', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Product Specialist 60', 'carlie.klocko', 'mclaughlin.major', 'Quis vel voluptatem harum ad accusamus. Dolores eum mollitia qui omnis dolorum. Minima voluptate nesciunt et vitae minima sapiente.', '11', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Product Specialist 60', 'carlie.klocko', 'kiana52', 'Sed enim quibusdam suscipit id occaecati. Cum sequi enim itaque et facere. Non ad accusantium dolor numquam.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Product Specialist 60', 'carlie.klocko', 'llewellyn24', 'Quidem accusamus facilis cumque autem esse provident qui reiciendis. Eligendi maxime mollitia autem ratione. Eos dolor neque non id iste. Aut ullam dolor perferendis consequatur quaerat ratione.', '31', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Product Specialist 60', 'carlie.klocko', 'farrell.berniece', 'Hic cumque unde quia harum similique possimus. Quia magnam veritatis qui enim nulla non et. Dolorem dolores magni laboriosam possimus voluptatum.', '3', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Clinical Laboratory Technician 61', 'treutel.hildegard', 'walter.carli', 'Ipsum et quo magnam est esse. Et rerum quia facilis quia ipsum voluptate. Aliquam aspernatur voluptatem incidunt temporibus ut.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Clinical Laboratory Technician 61', 'treutel.hildegard', 'kiana52', 'Fugit eveniet reiciendis aut. Nostrum mollitia dolores dignissimos. Quis dignissimos doloribus impedit et. Voluptates molestiae quos amet est eveniet reprehenderit eos.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Clinical Laboratory Technician 61', 'treutel.hildegard', 'kilback.else', 'Et et ut natus. Quasi tempore aut explicabo rerum nisi repudiandae iusto sunt. Quia modi qui distinctio ad veniam ipsa error illum. Facere consectetur autem commodi.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Clinical Laboratory Technician 61', 'treutel.hildegard', 'rath.maximus', 'Rerum consectetur aut in dolor libero nihil nihil. Facilis est hic veritatis ratione dolorum qui. Inventore voluptatem qui et et dolore et. Excepturi libero numquam sunt eos esse.', '12', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Clinical Laboratory Technician 61', 'treutel.hildegard', 'aniya.champlin', 'Nobis neque et voluptatem voluptatem nemo nobis. Itaque amet dolor omnis eius ipsam modi amet sunt. Id et suscipit expedita ut. Esse autem ut ad amet hic.', '6', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Music Composer 62', 'nader.jacinthe', 'femard', 'Repudiandae molestiae ut eum quaerat. Qui quis non minus dolor natus quo laboriosam. Earum qui sequi fugiat esse odio.', '13', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Music Composer 62', 'nader.jacinthe', 'proob', 'Quis non et tenetur enim quaerat culpa. Quia nostrum officiis unde odit.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Music Composer 62', 'nader.jacinthe', 'carleton.buckridge', 'Excepturi dolor ab debitis dignissimos. Rem at accusamus perferendis itaque dolorem.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Music Composer 62', 'nader.jacinthe', 'francisco81', 'Est inventore quibusdam soluta et et. Est earum voluptatem dolores accusamus consectetur eum sunt. Libero dolor voluptatem illum consequatur et accusamus iusto. Dolorem labore nulla doloremque minima doloremque sit sunt sapiente.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Music Composer 62', 'nader.jacinthe', 'floyd.okon', 'Voluptatum rem autem debitis aut aut. Nihil repellendus ducimus quidem ab quod voluptatibus voluptatibus quibusdam. Sit est culpa dolores consequatur consequatur quis. Quae quia et error reiciendis suscipit velit.', '4', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Night Shift 63', 'schmitt.rachel', 'femard', 'Facilis qui nemo quia et sit qui ea officia. Pariatur magnam dolor voluptatem molestiae iste sint. Est officiis in deserunt quaerat.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Night Shift 63', 'schmitt.rachel', 'jennie18', 'Possimus modi ratione officiis architecto necessitatibus molestiae ut ut. Ullam error qui sit. Commodi consequatur voluptatem aut dicta quis eaque qui. Eos iste ut cupiditate ullam facilis.', '17', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Night Shift 63', 'schmitt.rachel', 'fisher.kraig', 'Officiis molestias est rerum ex perferendis beatae. Eaque odit id tempora quia. Dolore et ut accusantium qui. Facere ducimus quis magni architecto ipsam accusamus qui non.', '17', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Night Shift 63', 'schmitt.rachel', 'dwalker', 'Nemo dicta et mollitia tenetur eveniet. Vel aliquid autem quo dolorem temporibus provident. Voluptas dolor est id mollitia nulla ut.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Night Shift 63', 'schmitt.rachel', 'augustus.zieme', 'Autem cumque deleniti magnam pariatur. Eos molestias rerum sint pariatur dolorum. Autem ullam repudiandae labore voluptatem debitis aperiam. Est molestiae possimus quia.', '31', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Electrical and Electronic Inspector and Tester 64', 'marc19', 'metz.marcella', 'At cum voluptatem suscipit eligendi voluptas in. Ad rerum atque delectus inventore. Consequatur deserunt ullam earum autem fugiat. Nam quas quibusdam cum et.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Electrical and Electronic Inspector and Tester 64', 'marc19', 'arau', 'Aut officia omnis est nostrum cupiditate illum consectetur. Fugit eum qui modi dolorum sit temporibus sequi. Explicabo ea est ipsum deleniti placeat. Minus minus nam recusandae laudantium ut. Consequatur est possimus illum voluptas quibusdam et quo autem.', '26', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Electrical and Electronic Inspector and Tester 64', 'marc19', 'kamille.mann', 'Eum ipsa possimus expedita sint maiores eos vel. Consequatur minus corrupti aperiam velit vitae blanditiis. Eos necessitatibus sint atque modi. Quod quisquam eligendi vel.', '24', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Electrical and Electronic Inspector and Tester 64', 'marc19', 'carleton.buckridge', 'Vel architecto reprehenderit sunt sint ut quis architecto debitis. Quos ex blanditiis autem voluptatum ut. Libero est assumenda alias. Aut ea soluta nihil et aliquid.', '24', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Electrical and Electronic Inspector and Tester 64', 'marc19', 'deondre.durgan', 'Qui quo cumque nihil facere dignissimos facilis accusamus ipsum. Voluptas quia modi deleniti ipsam voluptates eum et. Et labore placeat sunt consequatur illum deserunt qui. Molestiae eligendi impedit et pariatur. Esse voluptate repellendus quia aut debitis.', '24', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Electrical and Electronic Inspector and Tester 64', 'marc19', 'sedrick30', 'Facilis laboriosam harum aut architecto autem reiciendis. Repudiandae ut et maxime totam ea est est. Atque suscipit deleniti veritatis possimus. Pariatur soluta vel reiciendis id et repellendus suscipit. Totam dolorem ipsam sequi voluptates delectus sapiente.', '11', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Motorboat Operator 65', 'arau', 'berneice95', 'Et vel cumque deserunt. Consequatur sint facilis repellendus quisquam tempora eveniet.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Motorboat Operator 65', 'arau', 'schmitt.rachel', 'Maxime facilis nisi animi et qui. Dolore quasi doloremque suscipit sint eaque facilis. Qui ipsa sunt fuga in atque mollitia voluptatem veniam.', '25', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Motorboat Operator 65', 'arau', 'chaya.borer', 'In ab repellendus voluptatem nisi et sed. Id qui doloribus aut numquam tenetur nulla voluptates. Harum qui autem inventore ut dolorem sit. Porro id iure magni.', '8', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Motorboat Operator 65', 'arau', 'farrell.berniece', 'Commodi voluptas ad qui nisi sunt sit et eum. Et qui et veritatis unde ipsa et. Quo laudantium sed aperiam incidunt reprehenderit consequatur occaecati.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Tool and Die Maker 66', 'fisher.kraig', 'myrtle35', 'Vel mollitia soluta quos aspernatur. Ut earum autem non voluptatum adipisci. Et a nobis sapiente impedit sit consequatur. Similique qui sunt dolorum. Quas veniam nisi consequatur ratione quo voluptates quisquam.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Tool and Die Maker 66', 'fisher.kraig', 'florine.jaskolski', 'Sit explicabo non deleniti quibusdam totam reprehenderit architecto. Commodi temporibus et qui molestiae quidem rerum sunt iusto. Pariatur vitae culpa laboriosam molestias.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Tool and Die Maker 66', 'fisher.kraig', 'savanna06', 'Officia pariatur voluptate consequuntur et. Eaque qui perferendis ratione explicabo in. Alias architecto nihil perspiciatis culpa incidunt et facilis.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Tool and Die Maker 66', 'fisher.kraig', 'bruce82', 'Magnam quis iste et quisquam dolorem sed et. In quod vel ea voluptatum quae. Officia et sapiente molestias distinctio.', '11', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Welfare Eligibility Clerk 67', 'schmitt.rachel', 'jrosenbaum', 'Excepturi earum dicta nisi est ab. Aut tenetur nostrum dignissimos est aliquam nemo est.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Welfare Eligibility Clerk 67', 'schmitt.rachel', 'wmarquardt', 'Eum suscipit nisi accusamus deserunt. Soluta doloribus cupiditate quaerat et. Consequatur est doloribus quos quod.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Welfare Eligibility Clerk 67', 'schmitt.rachel', 'shanel.wunsch', 'Blanditiis sed laboriosam neque dolorem quisquam qui. Voluptatem architecto est perspiciatis ea atque ducimus. Eos nihil id deleniti libero.', '17', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Welfare Eligibility Clerk 67', 'schmitt.rachel', 'kilback.else', 'Vero cupiditate dolore ea consequatur id aliquam. Odio at laboriosam quia corrupti id perferendis. Ab quia saepe rem libero.', '18', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Welfare Eligibility Clerk 67', 'schmitt.rachel', 'kuhic.brando', 'Quia minus et et labore. Iusto at molestias nobis amet quae et. Aut voluptatem fugiat earum sunt.', '10', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Log Grader and Scaler 68', 'francisco81', 'sedrick30', 'Sit est doloribus accusamus ipsum sed dolorem. Voluptates recusandae et accusantium sit. Sit quas ipsum aut ducimus. Totam vel ducimus eius fuga tempora.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Log Grader and Scaler 68', 'francisco81', 'treutel.hildegard', 'Enim accusantium voluptatem sit debitis voluptatem. Ab natus deserunt consequatur eos voluptate ducimus fugit. Error quas et reiciendis voluptas minima itaque. Rem sint aut eum ipsum aut modi ipsum.', '16', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Log Grader and Scaler 68', 'francisco81', 'murl24', 'Id omnis sed qui non rerum laboriosam. Quam reprehenderit perferendis nisi eaque. Quia corrupti nam ut non.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Log Grader and Scaler 68', 'francisco81', 'kamille.mann', 'Non eveniet praesentium quia rerum qui corrupti. Nisi quidem voluptate nihil earum minus nostrum. Nulla architecto nihil qui distinctio et labore. Iure saepe corporis ab et.', '12', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Log Grader and Scaler 68', 'francisco81', 'arau', 'Nisi eum repellendus repudiandae est blanditiis iste. Aliquid quisquam modi omnis rem. Voluptas eos illo ex quo. Itaque explicabo repellat consectetur qui.', '9', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Log Grader and Scaler 68', 'francisco81', 'luettgen.winfield', 'Illum deserunt quaerat sed ut. Deleniti ut consequuntur dignissimos consequatur enim recusandae excepturi.', '11', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Forensic Science Technician 69', 'rowe.herminio', 'lbins', 'Ab tempora nisi maxime nostrum nostrum ut placeat. Aut ab perspiciatis voluptate nemo et voluptas nesciunt vel. Numquam quisquam corporis dolore quis eos exercitationem nihil. Quo repellendus numquam sed magnam aut quam neque.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Forensic Science Technician 69', 'rowe.herminio', 'emayer', 'Ab repellat est deleniti expedita quia. Provident ratione consequatur repudiandae tempore. Ipsa aperiam quia non praesentium debitis dolorum.', '6', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Forensic Science Technician 69', 'rowe.herminio', 'jewell.gaylord', 'Quo nulla voluptatem sed quas enim ea sunt. Voluptatem et aut omnis qui. Dolores dicta quia facilis reprehenderit vel consectetur beatae. Facere earum id sed alias qui.', '7', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Forensic Science Technician 69', 'rowe.herminio', 'kuhic.brando', 'Soluta perspiciatis modi qui consectetur vel rerum. Quis iusto adipisci natus quo non. Asperiores sunt libero vel qui. Id animi nostrum aut ut est autem nostrum.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Forensic Science Technician 69', 'rowe.herminio', 'tgorczany', 'Dignissimos voluptas eos dolore consequatur distinctio tempora. Dolore iste commodi blanditiis dolores quos. Voluptatem voluptatum vitae ducimus dolorem labore impedit. Quia modi eos qui fugit occaecati.', '24', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Portable Power Tool Repairer 70', 'weston.langosh', 'kuhic.brando', 'Sit nobis sed eveniet quia repudiandae dolor aliquam. Quia quia molestiae laboriosam ullam laboriosam.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Portable Power Tool Repairer 70', 'weston.langosh', 'godfrey.mitchell', 'Qui vel rem ipsa quaerat ipsa alias quae. Sed repellat at perferendis facilis. Possimus sed esse fugiat blanditiis recusandae quasi consequatur. Esse quia incidunt et autem et rerum cum.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Portable Power Tool Repairer 70', 'weston.langosh', 'llewellyn24', 'Voluptatem corporis mollitia magnam ullam. Fugiat assumenda nesciunt aliquid omnis et. Excepturi neque et est et animi dolorem delectus non. Veniam aut natus quia et unde voluptatem. Id in assumenda molestiae qui.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Portable Power Tool Repairer 70', 'weston.langosh', 'murl24', 'Rerum sit illum omnis veniam cumque explicabo sunt. Rem non distinctio nulla ratione non. Corporis et provident ut nihil.', '17', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Portable Power Tool Repairer 70', 'weston.langosh', 'carlie.klocko', 'Corrupti voluptatum officia temporibus reprehenderit. Deleniti sed ullam vel ea velit sequi. Nam amet cupiditate laborum repellat itaque odit atque. Aut at sint culpa. Eaque labore temporibus accusantium perspiciatis.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Portable Power Tool Repairer 70', 'weston.langosh', 'francisco81', 'Totam aliquid et hic eaque molestiae. Quo at natus vero culpa veritatis quos. Optio et praesentium natus non porro odit. Perferendis totam quibusdam aut voluptatem iusto.', '25', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Online Marketing Analyst 71', 'mack22', 'jsimonis', 'Nostrum amet tempora ut provident impedit. Culpa qui enim nulla porro asperiores.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Online Marketing Analyst 71', 'mack22', 'carleton.buckridge', 'Earum et repellat fugit ut possimus exercitationem nemo mollitia. Inventore voluptate qui consequatur quidem rem.', '19', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Online Marketing Analyst 71', 'mack22', 'marc19', 'Reiciendis odio omnis quisquam maiores. Explicabo accusamus et nisi officiis soluta sed autem. Explicabo est sed molestiae aut veritatis rem voluptates.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Online Marketing Analyst 71', 'mack22', 'proob', 'Beatae at sunt suscipit ex omnis quia aut. Est dolor accusantium illum. Placeat quisquam consectetur fugiat eos odio molestiae et.', '8', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Online Marketing Analyst 71', 'mack22', 'eldon.hoeger', 'Saepe ab ipsum sed suscipit. Labore autem amet occaecati quas ratione facilis. Aut omnis esse neque vitae deserunt doloribus molestiae.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Online Marketing Analyst 71', 'mack22', 'coby.powlowski', 'Rem illum quia consequatur recusandae necessitatibus et. Et nihil sint ipsum dignissimos distinctio. Velit voluptas perspiciatis sint rerum facere itaque. Pariatur omnis omnis quaerat quis rerum.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Marriage and Family Therapist 72', 'kiana52', 'ejohnston', 'Aut quam possimus necessitatibus voluptatem. Reprehenderit esse earum minus aliquid necessitatibus pariatur a. Enim vel dolore inventore vero et et.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Marriage and Family Therapist 72', 'kiana52', 'mack22', 'Blanditiis sint alias accusamus amet. Corporis ad officiis aut laboriosam aliquid. Aut voluptas iste aliquam omnis neque. Et voluptatem qui at eaque qui ut.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Marriage and Family Therapist 72', 'kiana52', 'brenden.mcdermott', 'Molestiae pariatur mollitia ipsum amet vel velit. Repudiandae voluptatum et ullam qui dolorem amet suscipit. Minima nulla cum nemo. Doloribus exercitationem labore vel ipsam minima voluptatum. Voluptatibus maiores velit rem quo.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Marriage and Family Therapist 72', 'kiana52', 'hschuppe', 'Non saepe cum odit. Ratione voluptas aut laudantium dolores in dolorum ducimus. Enim exercitationem tempora harum sed et voluptas cum.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Marriage and Family Therapist 72', 'kiana52', 'shanel.wunsch', 'Natus praesentium enim neque enim deleniti sapiente et. Dolor harum eveniet ut quas fugiat optio maxime. Incidunt voluptatem voluptas aut voluptas eos et expedita accusantium. Tenetur corporis occaecati cupiditate sint quis.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Marriage and Family Therapist 72', 'kiana52', 'marks.ilene', 'Sed accusantium quo est totam dicta vel numquam dolor. Voluptas et repellat explicabo a perferendis. Quo aut enim enim facere rerum quaerat. Praesentium nostrum consequatur aut inventore et. Occaecati molestiae est cum necessitatibus quia facere.', '25', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Night Shift 73', 'ritchie.josefina', 'aniya.champlin', 'Vel delectus itaque natus voluptas commodi. Dolor aut iure ullam distinctio veniam. Deserunt sed voluptatem sequi nemo corporis ad. Nam tempore eos aut omnis et doloribus.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Night Shift 73', 'ritchie.josefina', 'junior.runte', 'Illo porro omnis illo et in cupiditate. Voluptas ipsa molestiae non qui ex quod enim aliquid.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Night Shift 73', 'ritchie.josefina', 'carlie.klocko', 'Sit est occaecati molestias recusandae neque illum quasi. Debitis in nam facilis ullam officiis dolor. Neque ducimus praesentium necessitatibus quo. Fuga nihil facilis facilis rerum nostrum necessitatibus velit asperiores.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Night Shift 73', 'ritchie.josefina', 'tgorczany', 'Illum error quae sed doloremque. Eos magni velit eligendi at ea quod maxime cum. Ullam minus beatae hic qui.', '7', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Night Shift 73', 'ritchie.josefina', 'walter.carli', 'Autem corrupti error error qui. Ut consequatur consequatur et consequatur itaque voluptates. Est voluptatum odio cumque.', '17', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Night Shift 73', 'ritchie.josefina', 'wmarquardt', 'Et voluptas exercitationem in facere molestiae. Rerum incidunt ratione deserunt. Voluptates illo voluptatem rem. Rerum esse architecto qui omnis qui nobis. Qui repellendus veniam magnam in.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Life Science Technician 74', 'arau', 'emayer', 'Amet vero in et aut sint atque veniam. Aliquam eveniet modi nobis esse qui aut tempore. Nemo ad repudiandae ut vero ad cum quaerat.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Life Science Technician 74', 'arau', 'margarete12', 'Temporibus consequatur nemo modi beatae asperiores sit. Nemo eaque ut consectetur provident consequatur. Id voluptatibus tenetur nisi. Excepturi voluptatem qui voluptates voluptatem rem qui soluta. Dignissimos rerum dolor qui porro dignissimos qui velit.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Life Science Technician 74', 'arau', 'gmckenzie', 'Ipsam quaerat est ad dolor qui illum. Non vel suscipit dolore porro. Et delectus nihil aspernatur officiis dolorem ullam enim tempore. Ea ullam voluptatem dolore molestiae magni. Est ut adipisci cupiditate sed dicta.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Life Science Technician 74', 'arau', 'carleton.buckridge', 'Officia incidunt non cum sint maiores enim placeat. Minus in sint nihil velit. Ut ab eveniet similique cumque.', '26', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('User Experience Researcher 75', 'femard', 'junior.runte', 'Reprehenderit eos blanditiis iste fuga provident saepe ea. Delectus est unde repudiandae impedit. Illum qui sed et qui est. Perferendis modi est tempore explicabo. Inventore aut aut est rerum quia a sint.', '7', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('User Experience Researcher 75', 'femard', 'bryce.maggio', 'Ut cumque cupiditate reiciendis tempora atque illum. Consequatur facilis explicabo voluptas laborum. Mollitia velit aut fuga expedita sed. Ullam eius sequi itaque dolores omnis vel quibusdam assumenda.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('User Experience Researcher 75', 'femard', 'jrosenbaum', 'Sequi non quia aut quo sunt natus. Ut at et eum qui eos. Illo nulla perferendis voluptatibus architecto. Voluptatem aut nam sit quo consequatur exercitationem.', '9', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('User Experience Researcher 75', 'femard', 'rowe.herminio', 'Ut sint voluptatem velit blanditiis consequuntur illo. Sint accusantium non est. Voluptatum qui eaque et illo. Nihil itaque libero itaque explicabo tempora dolorem similique.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Visual Designer 76', 'metz.marcella', 'shanel.wunsch', 'Ut vel quia quis eum ut. Omnis quaerat qui voluptatem libero et in. Dolor eos eligendi voluptatibus dolor.', '31', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Visual Designer 76', 'metz.marcella', 'carleton.buckridge', 'Maiores et placeat ut aliquam molestias odio. Iste qui animi id unde voluptatum. Qui dolor repellendus quod aut nihil alias fuga qui. Quibusdam alias qui expedita similique. Et quo nostrum distinctio praesentium.', '7', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Visual Designer 76', 'metz.marcella', 'tdach', 'Molestiae aspernatur ut rerum quidem officiis reprehenderit molestiae quo. Asperiores soluta omnis perferendis voluptatum. Id expedita eius qui laborum ut sunt. Earum aut error sunt non magnam.', '2', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Visual Designer 76', 'metz.marcella', 'berneice95', 'Dolore voluptatem assumenda quas aliquid itaque. Aut sed autem mollitia est et in. Et nam veniam error ipsum.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Visual Designer 76', 'metz.marcella', 'murl24', 'Eum explicabo ut nesciunt accusantium aperiam. Deserunt sunt qui sunt exercitationem dolore explicabo. Ut quo quia deleniti. Sed neque iste aliquam neque qui.', '24', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Visual Designer 76', 'metz.marcella', 'kilback.else', 'Quae nostrum et sed ut sunt qui. Qui et inventore doloremque fugiat. Velit hic tempore assumenda eum nihil dolorum quo accusantium.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cutting Machine Operator 77', 'tbailey', 'kamille.mann', 'Veritatis doloribus ut provident et exercitationem. Maiores unde quam dolor. Asperiores quasi minima consequuntur qui quidem et omnis.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cutting Machine Operator 77', 'tbailey', 'brenden.mcdermott', 'Aliquid asperiores illo veritatis ea. Commodi voluptatem architecto est qui. Consequatur accusamus rerum voluptates praesentium.', '8', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cutting Machine Operator 77', 'tbailey', 'chaya.witting', 'Quia expedita nostrum iste sapiente et nemo atque. Quia excepturi facilis suscipit in repellat maiores. Laboriosam soluta perferendis dicta enim et. Ipsum sunt consequatur id voluptate aliquam et error ipsam.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cutting Machine Operator 77', 'tbailey', 'lledner', 'Ratione numquam odio ut nisi accusantium iusto ut. Harum voluptatum dolore saepe ea similique nulla excepturi. Est praesentium dignissimos dignissimos maiores totam est facilis.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cutting Machine Operator 77', 'tbailey', 'rowe.herminio', 'Aut consequuntur occaecati repellat quam delectus. Sequi ut quo placeat. Iusto veritatis qui quibusdam aut similique quae. Possimus quod amet quia autem provident.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cutting Machine Operator 77', 'tbailey', 'kozey.jennifer', 'Id molestiae nobis cupiditate. Quos minus et quod qui eos. Maiores in est qui aperiam nisi.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Producer 78', 'jennie18', 'llewellyn24', 'Velit autem voluptatem provident enim est ut vitae. Harum voluptas aut itaque sed doloribus. Quia aut est dolorem vitae enim et. Illum maxime non autem.', '5', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Producer 78', 'jennie18', 'eldon.hoeger', 'Error molestiae illo distinctio non. Ut id aut necessitatibus ipsum est quia animi. Saepe veritatis sapiente laboriosam qui. Ut nihil ut quia laborum minus sunt culpa. Repellendus sint quasi dolores est consequuntur.', '21', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Producer 78', 'jennie18', 'lledner', 'Exercitationem maxime maxime incidunt non repudiandae. Aut velit officia ratione repudiandae ipsam praesentium explicabo. Explicabo ut et dolor. Dolore suscipit facere quam autem.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Producer 78', 'jennie18', 'proob', 'Dolorem eum sed officia incidunt ipsam totam nobis. Mollitia unde quia quis nisi magni quia. Laudantium ipsum quia commodi in.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Meter Mechanic 79', 'chaya.witting', 'lucy.larkin', 'Eos repellendus molestias a sapiente. Aut distinctio adipisci explicabo laborum. Eos veniam natus blanditiis rerum aliquid.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Meter Mechanic 79', 'chaya.witting', 'ynitzsche', 'Voluptatem beatae voluptas atque consectetur numquam minus. Sunt dicta aut voluptates qui libero voluptatum a. Voluptatem et consectetur in hic hic omnis. Quas nihil id voluptatibus non.', '24', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Meter Mechanic 79', 'chaya.witting', 'florine.jaskolski', 'Placeat aut magni possimus. Soluta distinctio et aperiam nam ut. Est commodi praesentium a et eaque labore et accusantium. Delectus eos pariatur quasi velit.', '12', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Meter Mechanic 79', 'chaya.witting', 'chaya.borer', 'Asperiores deserunt consequuntur earum ullam ipsa. Molestias consequatur quas voluptas inventore impedit. Iusto sint vel sed unde dignissimos.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Meter Mechanic 79', 'chaya.witting', 'marques.ziemann', 'Voluptas doloribus ut repellendus deleniti quae enim qui et. Neque tempora harum nostrum facilis occaecati.', '31', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Meter Mechanic 79', 'chaya.witting', 'kamille.mann', 'Nemo exercitationem sunt vel amet iure in nemo. Quibusdam sit ducimus accusantium aliquid id eum iste. Doloribus tempore nam accusantium.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Bindery Worker 80', 'tbailey', 'carlee.haag', 'Ut consequatur pariatur quas ipsam ducimus harum. Quis iure quia velit deserunt nemo rerum non. Ut sint distinctio velit veritatis. Suscipit eum pariatur est ullam consequatur aspernatur.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Bindery Worker 80', 'tbailey', 'farrell.berniece', 'Enim exercitationem quae itaque minima optio aperiam iure. Rerum dolor nulla eos illum quia. Aut voluptas debitis quae. Distinctio non laudantium molestiae qui architecto sapiente.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Bindery Worker 80', 'tbailey', 'jerome.robel', 'Qui repudiandae recusandae inventore in alias autem voluptatem ut. Non voluptatem veritatis suscipit unde in. Ut quibusdam repellendus et et aut doloremque consequatur illum. Vel unde repellat eos quibusdam aut autem accusantium possimus.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Bindery Worker 80', 'tbailey', 'carlie.klocko', 'A asperiores qui dolorem vel molestias nobis ut. Et magnam eius quos nemo voluptas sed quas. Quisquam eos nostrum voluptates amet vero labore porro quasi.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Bindery Worker 80', 'tbailey', 'zelda76', 'Recusandae ut animi fugit earum necessitatibus voluptate non. Cupiditate molestiae veritatis totam impedit. Velit minima esse nostrum doloribus a ea tempora et. Vitae odit et laboriosam quia eaque et voluptates.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Marking Clerk 81', 'savanna06', 'christiana25', 'Sunt repellendus aspernatur aut corporis laborum aperiam. Voluptas dolor quisquam ut est aspernatur consequatur. Voluptatum provident impedit expedita fugit.', '15', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Marking Clerk 81', 'savanna06', 'aniya.champlin', 'Recusandae aliquam facilis molestias et iusto impedit. Voluptatem tempore quis omnis quisquam. Voluptatem qui natus ipsam minus neque.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Marking Clerk 81', 'savanna06', 'eldon.hoeger', 'Ab qui ut sapiente excepturi sint. Nemo consectetur consequuntur quam et ea. Adipisci pariatur omnis nam fuga dolorum.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Marking Clerk 81', 'savanna06', 'treutel.hosea', 'Delectus est illo nihil id laboriosam. Sed cupiditate magni quia blanditiis consequuntur. Consequatur beatae unde eum ratione. Nesciunt aperiam officiis dolore omnis est aliquam.', '7', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Order Filler OR Stock Clerk 82', 'fisher.kraig', 'bryce.maggio', 'Sint eum non voluptatem dolores et. At ducimus accusantium libero consequuntur molestiae placeat. Voluptas ea corporis voluptates.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Order Filler OR Stock Clerk 82', 'fisher.kraig', 'marques.ziemann', 'Explicabo quia ducimus fugiat magni occaecati praesentium commodi. At voluptate ea sunt neque velit.', '4', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Order Filler OR Stock Clerk 82', 'fisher.kraig', 'rath.maximus', 'Ducimus ratione ut distinctio aut qui veniam voluptatibus. Maiores eveniet ut eaque aut maxime. Voluptas ex sed tempora debitis. Culpa soluta consequatur in magni.', '13', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Order Filler OR Stock Clerk 82', 'fisher.kraig', 'francisco81', 'Dolores voluptatem velit ut delectus officia facilis sequi. Voluptatem animi perferendis voluptas quia corrupti consequatur nihil harum. Et quas vel rem aperiam voluptatem rerum voluptatem. Magnam quae eos a libero aliquam nisi laboriosam et.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Elementary School Teacher 83', 'ylittel', 'eldon.hoeger', 'Quo debitis inventore ad alias odio distinctio ab totam. Enim est iusto consequatur voluptatum. Harum nostrum doloremque quaerat. Cumque laudantium omnis error quod quos est eum impedit.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Elementary School Teacher 83', 'ylittel', 'floyd.okon', 'Omnis eius eum ut provident labore labore autem aperiam. Et nulla magni quo est quisquam facere ut. Praesentium quod ut saepe voluptatem autem omnis ex.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Elementary School Teacher 83', 'ylittel', 'florine.jaskolski', 'Blanditiis ut placeat quaerat autem et. Esse corporis odit earum id qui provident ex. Tempora quibusdam similique ut occaecati occaecati. Tempora doloribus cum et nam sint.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Elementary School Teacher 83', 'ylittel', 'raphael.toy', 'Ea hic voluptatem qui nulla quidem sequi. Minima ratione nostrum enim molestias necessitatibus quaerat. Perspiciatis similique ut velit enim ut doloremque suscipit. Quasi ducimus blanditiis et voluptates.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Manufactured Building Installer 84', 'tgottlieb', 'yabshire', 'Sunt non nulla ut totam quia. Neque illum impedit autem. Provident error enim et quod cumque fugiat tenetur. Omnis expedita architecto sunt voluptatem. Nulla veniam repellat ut qui architecto suscipit beatae harum.', '17', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Manufactured Building Installer 84', 'tgottlieb', 'ejohnston', 'Ex mollitia quisquam sit laboriosam minus voluptatibus veniam. Officiis quaerat voluptatibus vitae at rerum. Aliquam a molestias aliquam quaerat sed.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Manufactured Building Installer 84', 'tgottlieb', 'kamille.mann', 'Est inventore deserunt dolorem laborum sit deserunt officiis excepturi. Voluptatem fugit voluptatibus modi quo assumenda. Autem dicta laudantium quo voluptatem sed aliquid modi.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Manufactured Building Installer 84', 'tgottlieb', 'myrtle35', 'Nesciunt est saepe nihil autem vero dignissimos. Sit explicabo possimus laborum maiores exercitationem error consequuntur quod. Quos commodi animi non maiores. Possimus hic pariatur ipsa sit commodi quis temporibus.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Health Educator 85', 'sedrick30', 'ylittel', 'Voluptatibus iusto id consequatur officia dicta culpa velit. Maxime et officiis aut minus temporibus tempora. Voluptatibus alias in quod eaque. Quis aut voluptas cumque aut qui.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Health Educator 85', 'sedrick30', 'llewellyn24', 'Ea porro ullam incidunt magni et recusandae asperiores. Quo repellat aut delectus ex. Omnis sint eos eos repudiandae eos quas aut nam.', '12', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Health Educator 85', 'sedrick30', 'schmitt.rachel', 'Omnis consequatur accusamus deserunt consequuntur et aliquid tenetur ut. Tenetur aut sed perspiciatis perferendis. Aperiam nihil repellat deserunt odio dolorem dicta. Omnis ea id itaque rem enim ut voluptatem.', '31', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Health Educator 85', 'sedrick30', 'coberbrunner', 'Accusantium consequatur nobis nulla non. Non voluptatum magnam est saepe aliquid et illo.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Health Educator 85', 'sedrick30', 'florine.jaskolski', 'Delectus excepturi tempora delectus voluptatem aut delectus. Delectus ipsam officiis tempore debitis quasi omnis et. Sint quae asperiores labore praesentium.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Health Educator 85', 'sedrick30', 'arau', 'Nostrum expedita necessitatibus commodi ut. Non nemo aut saepe fuga ut nulla. Dolor maxime voluptates labore qui autem ut.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Usher 86', 'francisco81', 'lbins', 'Deleniti ut dicta atque optio temporibus distinctio nisi. Et nulla doloribus eos et corporis voluptatem facilis. Dicta quis quos rerum sint delectus.', '13', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Usher 86', 'francisco81', 'marc19', 'Optio est consequatur est et praesentium officia saepe. Animi nobis dolor voluptatem. Alias iure quod rerum consequatur.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Usher 86', 'francisco81', 'ritchie.josefina', 'A et commodi eos eos praesentium ratione. Dicta assumenda ut rerum et. Officia nulla optio vero enim velit in ut. Harum rerum omnis est libero et.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Usher 86', 'francisco81', 'pierre01', 'Quia eveniet aliquam eligendi accusamus in similique. Corrupti corporis quasi temporibus dolores. Necessitatibus numquam quae commodi autem similique rerum laudantium. Nulla praesentium animi enim ipsam recusandae aspernatur.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Biochemist or Biophysicist 87', 'wmarquardt', 'proob', 'Ea blanditiis quia non dolore voluptates. Voluptatem minus veritatis aut recusandae maiores. Tenetur dolorum accusantium possimus et et quae. Quo inventore voluptates qui quidem fugit qui omnis.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Biochemist or Biophysicist 87', 'wmarquardt', 'zhodkiewicz', 'Consequatur eveniet iste consequatur. Explicabo labore dolorem sit voluptates. Quas natus ullam sed non odio.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Biochemist or Biophysicist 87', 'wmarquardt', 'ritchie.josefina', 'Quam natus odio sed tenetur. Est est quia et veritatis minima deserunt consequatur. Ipsa alias culpa possimus aut. Quidem doloribus dolor molestiae praesentium dolorem ipsam.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Biochemist or Biophysicist 87', 'wmarquardt', 'treutel.hosea', 'Quod consequatur placeat quam vel. Voluptate dolor doloremque voluptate dolores aut. Enim ut suscipit et beatae nesciunt id. Totam quod quia eius consequuntur perferendis.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Biochemist or Biophysicist 87', 'wmarquardt', 'godfrey.mitchell', 'Eaque autem recusandae ab vitae accusantium consectetur. Rerum aperiam excepturi odio sed ut vel. Consequatur ea qui reiciendis.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fishing OR Forestry Supervisor 88', 'coberbrunner', 'victor03', 'Iure voluptatibus quis voluptatibus ea culpa rerum et. Doloribus tempore quidem et ut. Amet quia a et fugit quibusdam.', '5', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fishing OR Forestry Supervisor 88', 'coberbrunner', 'lexus.marks', 'Dicta culpa placeat architecto quis quia et. Nostrum dolorem pariatur nisi perferendis sint. Vitae similique voluptates ullam necessitatibus ea. Similique error possimus fuga soluta aut.', '16', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fishing OR Forestry Supervisor 88', 'coberbrunner', 'joelle51', 'Tenetur hic eius voluptatem reprehenderit blanditiis voluptatum corporis. Perspiciatis et repellendus repellat asperiores voluptatem cumque. Qui reprehenderit commodi nulla sunt reprehenderit. Eos in veritatis cumque beatae in nihil sunt.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fishing OR Forestry Supervisor 88', 'coberbrunner', 'gutmann.missouri', 'Laborum debitis ut alias nobis dolor. Labore quo rerum eveniet velit corporis. Aut minus cum ex voluptas consectetur cum qui enim. Doloribus fugit dignissimos soluta id provident saepe.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fishing OR Forestry Supervisor 88', 'coberbrunner', 'eldon.hoeger', 'Minus sunt ut quae dicta quis vel quidem sequi. Et repellat in nam quia vero et.', '10', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Roofer 89', 'zechariah.boyer', 'christiana25', 'Est unde veniam quas iure. Sed dolorem architecto earum qui accusantium ea. Sed pariatur et autem praesentium quod sed occaecati.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Roofer 89', 'zechariah.boyer', 'chaya.witting', 'Natus laboriosam eligendi et et inventore. Ea excepturi numquam quod sed repellat sunt voluptate praesentium. Dolore nam et ratione impedit distinctio est. Dolorem sed nesciunt eveniet animi non.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Roofer 89', 'zechariah.boyer', 'chaya.borer', 'Ipsam sed fugiat illo. Est quis mollitia sed veniam perferendis consectetur. Animi officiis quisquam numquam cum numquam et. Aperiam et aut minima eos rerum. In laboriosam ab omnis sequi rerum cum.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Roofer 89', 'zechariah.boyer', 'walter.carli', 'Voluptatem numquam sit quisquam vitae. Aspernatur eveniet animi quae quo. Laborum voluptatem aut aliquid rerum possimus. Maiores facere pariatur voluptatem repellendus dolorum culpa nam sunt.', '16', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Roofer 89', 'zechariah.boyer', 'ynitzsche', 'Illum doloremque ut aperiam quos possimus. Tempora et molestiae alias asperiores in. Ullam qui maiores a in qui hic quia.', '9', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Roofer 89', 'zechariah.boyer', 'llewellyn24', 'Esse id animi sapiente et earum omnis doloremque sed. Qui aut tenetur porro blanditiis sint similique tempore dignissimos. Non ipsam ut provident quos tempore. Numquam quos vel nostrum nisi autem quo nihil. Velit aut aliquam adipisci.', '14', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Precision Devices Inspector 90', 'tdach', 'zhodkiewicz', 'Modi unde fugiat ut rerum fugit doloremque et. Cumque vel molestias et nobis sed sed. Aliquam quis fuga neque et placeat voluptas.', '17', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Precision Devices Inspector 90', 'tdach', 'carlie.klocko', 'Suscipit ut optio eveniet fugiat. Eius exercitationem repellendus qui perspiciatis. Fugit ab et et veniam hic accusamus eaque.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Precision Devices Inspector 90', 'tdach', 'florine.jaskolski', 'Voluptates iure reprehenderit reiciendis omnis id fugit nisi. Eveniet minima animi rerum ut et. Atque vel corporis in occaecati non facilis animi. Dolor sed quis adipisci quas ut eligendi. Voluptas distinctio cupiditate porro impedit nesciunt vel.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Precision Devices Inspector 90', 'tdach', 'kamille.mann', 'Aliquam enim dolorem est enim. Et ut mollitia et eligendi vel officia sunt. Illo odit quis similique velit impedit.', '14', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Precision Devices Inspector 90', 'tdach', 'jsimonis', 'Id quis sunt velit consequatur hic quod. Aliquam reiciendis vel nam libero iure id aut maiores.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Pharmaceutical Sales Representative 91', 'augustus.zieme', 'rath.maximus', 'Nostrum nisi eveniet quos. Dolorem a consectetur consequatur. Itaque ea sint eos explicabo consequuntur accusantium.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Pharmaceutical Sales Representative 91', 'augustus.zieme', 'nader.jacinthe', 'Eum eveniet at excepturi. Sunt totam ut amet eum quos inventore rerum.', '9', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Pharmaceutical Sales Representative 91', 'augustus.zieme', 'felicita.prohaska', 'Consequatur et eaque qui itaque accusamus. Voluptas consequuntur voluptatem et enim nemo.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Pharmaceutical Sales Representative 91', 'augustus.zieme', 'carleton.buckridge', 'Vitae nihil recusandae commodi natus nesciunt dolorum. Harum provident est magni quam doloribus. Quidem ipsum perferendis nihil veritatis nulla. Veniam magni eligendi occaecati qui perferendis.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('RN 92', 'tgottlieb', 'joelle51', 'Odit et nam deleniti nemo maiores voluptas voluptas. Consequatur dolor temporibus id quia consectetur rem sint.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('RN 92', 'tgottlieb', 'zechariah.boyer', 'Sint quod facere rerum tempora. Autem qui in ut facilis magnam esse laudantium consequatur. Ab quos necessitatibus et soluta facere.', '14', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('RN 92', 'tgottlieb', 'murl24', 'Est voluptas rerum labore quo ipsa ex inventore. Quod placeat voluptate fuga saepe accusantium blanditiis ex. Nihil aliquam repellendus doloribus exercitationem expedita.', '7', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('RN 92', 'tgottlieb', 'blanca43', 'Quos quis vel nemo quidem. Sint dolor odit veritatis iste neque. Sint perspiciatis dignissimos suscipit consequatur.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('RN 92', 'tgottlieb', 'carleton.buckridge', 'Sed quos aut autem rem. Quos magnam quis ratione expedita aut magni maxime sed. Autem et possimus voluptas deleniti qui magnam officiis.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cook 93', 'clinton62', 'christiana25', 'Vero et dolor voluptatem dolores. Et quis veniam sed laudantium consequatur. Vitae in et alias nesciunt adipisci quos. Voluptas esse et sint sed sit alias.', '10', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cook 93', 'clinton62', 'marks.ilene', 'Ratione et adipisci dolorum. Nostrum pariatur ex mollitia consequatur perferendis. Omnis delectus voluptate officiis repudiandae consequatur minus. Ea laudantium placeat eveniet omnis in debitis.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cook 93', 'clinton62', 'pierre01', 'Aut ut aut non deleniti consequatur provident ea. Accusamus voluptas laudantium veniam quis et. Reprehenderit consequatur ducimus inventore consequatur. Aut in sed laudantium quos sit quam dolor deserunt.', '16', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cook 93', 'clinton62', 'godfrey.mitchell', 'Temporibus id non voluptas deserunt vero. Quam deserunt et sit molestiae velit molestiae consequuntur. Et enim eum tenetur sequi. Consequatur eveniet nisi doloremque voluptas perferendis repellat.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cook 93', 'clinton62', 'wmarquardt', 'Sunt non dicta quia necessitatibus aut sed. Quo suscipit voluptatem quisquam debitis molestiae vero numquam. Impedit dicta quibusdam cum blanditiis consequuntur et illum.', '25', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fishing OR Forestry Supervisor 94', 'eldon.hoeger', 'ritchie.josefina', 'Consequatur molestiae est cum vel eum. Commodi vel vel ex aspernatur et. Pariatur est laudantium ullam eveniet neque aut sunt dignissimos. Tempore doloribus voluptatem similique dolorum.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fishing OR Forestry Supervisor 94', 'eldon.hoeger', 'yabshire', 'Quasi natus aspernatur vitae. Eum consectetur soluta doloremque quia. Quos animi est occaecati aliquid. Facilis suscipit et quia repellat numquam consequuntur quas. Aut eos natus et quos et.', '16', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fishing OR Forestry Supervisor 94', 'eldon.hoeger', 'pierre01', 'Sit totam non quaerat molestias quidem quis. Qui qui et esse aut pariatur optio velit. Magnam consequatur quis adipisci modi nam voluptatum dolores. Eos eos sit provident dolores quam aut eius.', '8', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fishing OR Forestry Supervisor 94', 'eldon.hoeger', 'marques.ziemann', 'Possimus veniam quia suscipit iure animi. Ratione id cumque eos quibusdam mollitia impedit.', '4', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Credit Checker 95', 'junior.runte', 'streich.dorothy', 'Non soluta aut rerum voluptatem vitae. Quos repellendus maiores eius enim error vel. Vitae magnam commodi porro eos eum nesciunt pariatur.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Credit Checker 95', 'junior.runte', 'kuhic.brando', 'Inventore exercitationem dolorem modi ut. Doloribus numquam dolor sint officia.', '7', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Credit Checker 95', 'junior.runte', 'godfrey.mitchell', 'Quibusdam magnam est sapiente eius aut explicabo. Omnis aut at magni.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Credit Checker 95', 'junior.runte', 'coberbrunner', 'Quia quia placeat magni aut. Facere et quo qui quidem at dolores voluptas rerum. Et nostrum voluptatem deleniti quam. Dolorem et eaque eius explicabo. Et deserunt repellat soluta necessitatibus recusandae earum aut velit.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Casting Machine Operator 96', 'augustus.zieme', 'coberbrunner', 'Voluptas maxime quas quaerat inventore voluptate pariatur et ducimus. Quia explicabo repellat magnam quia quisquam. Et mollitia perferendis necessitatibus ab rem minus ut.', '24', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Casting Machine Operator 96', 'augustus.zieme', 'llewellyn24', 'Est nihil odit fugit qui beatae. Quod aliquam neque voluptatibus ea eaque. Possimus natus natus enim sed. Quae neque repellat cumque ad.', '4', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Casting Machine Operator 96', 'augustus.zieme', 'lledner', 'Aliquid eum non sit aut eum tempora nesciunt. Officia deserunt earum aut repellendus. Eum voluptate quae sit non. Vel qui laborum vel sed totam eveniet autem optio.', '7', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Casting Machine Operator 96', 'augustus.zieme', 'ritchie.josefina', 'Autem sed dignissimos ea ex. Soluta facere vel recusandae eaque delectus mollitia. Maiores hic voluptas culpa voluptatem ab porro. Dolores in deleniti cupiditate.', '2', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Casting Machine Operator 96', 'augustus.zieme', 'treutel.hosea', 'Qui id quo et. Ut consectetur nihil qui id exercitationem est omnis. Aliquam aperiam et animi debitis fuga.', '7', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Casting Machine Operator 96', 'augustus.zieme', 'christiana25', 'Ea minima et dolorem mollitia excepturi iure. Distinctio eum praesentium rerum libero.', '11', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Lifeguard 97', 'jennie18', 'ynitzsche', 'Doloribus officiis itaque doloremque aliquam expedita soluta rem. Ut at nostrum quis odit veritatis. Enim sed sunt doloribus nulla.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Lifeguard 97', 'jennie18', 'clinton62', 'Illo quibusdam sint corrupti suscipit et dolor accusamus nihil. Tenetur praesentium ad ullam labore in aliquam ratione. Neque ducimus eum autem animi.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Lifeguard 97', 'jennie18', 'carlee.haag', 'Quibusdam non et illum odio labore. Aut eum exercitationem nemo temporibus atque unde occaecati. Sit reiciendis dolorem delectus nesciunt sit error.', '31', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Lifeguard 97', 'jennie18', 'mack22', 'Fugit libero provident sint omnis est consectetur expedita quam. Tempore qui quisquam aut porro pariatur facilis recusandae. Reprehenderit reprehenderit sunt odit aut sit ex rerum ut.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Lifeguard 97', 'jennie18', 'olson.gaetano', 'Omnis itaque earum laudantium nulla sint deserunt. Iusto fuga quaerat amet cum maxime nihil tempore libero. Quam voluptatem quasi aut nobis tenetur ut.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Media and Communication Worker 98', 'margarete12', 'christiana25', 'Deserunt voluptatem adipisci tenetur enim. Dolorem eos quidem qui expedita debitis adipisci exercitationem facilis. Possimus totam dolore dolores officiis sed. Labore aut quae et commodi omnis et. Repudiandae ut reprehenderit dolorem ex voluptas iure illum quo.', '16', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Media and Communication Worker 98', 'margarete12', 'ritchie.josefina', 'Optio ratione eos possimus consequuntur voluptates quis enim. Aliquid facilis minima nulla adipisci.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Media and Communication Worker 98', 'margarete12', 'myrtle35', 'Aut culpa vero quia alias nemo est. Iusto eveniet laborum est possimus temporibus veritatis. Molestiae optio nulla doloremque.', '8', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Media and Communication Worker 98', 'margarete12', 'floyd.okon', 'Numquam necessitatibus at repellat nulla. Maiores velit assumenda ducimus consequuntur harum possimus rerum. Dolor tempora illum beatae et veritatis.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Media and Communication Worker 98', 'margarete12', 'kilback.else', 'Atque itaque quisquam mollitia ullam neque. Sit laboriosam corrupti quia maxime soluta enim dolorem amet. Eos beatae quo aspernatur. Illo laborum id itaque totam eaque distinctio natus.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Business Operations Specialist 99', 'raphael.toy', 'okessler', 'Voluptas reiciendis eligendi eum asperiores voluptas necessitatibus quia. Voluptate quidem quod tenetur corporis asperiores. Qui adipisci laboriosam ab iure. Provident at animi quibusdam blanditiis unde perspiciatis.', '5', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Business Operations Specialist 99', 'raphael.toy', 'treutel.hildegard', 'Unde voluptate repellendus velit tempore inventore quisquam quidem. Dolorum voluptatem modi adipisci quo quia laborum. Eum excepturi voluptatem excepturi cumque eum cupiditate. Sint exercitationem atque quo voluptates unde cupiditate fuga.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Business Operations Specialist 99', 'raphael.toy', 'jerome.robel', 'Vitae quis est quisquam praesentium cumque. Qui quas quidem a natus dolore unde. Quia corporis voluptatem vitae earum ullam eos vel repudiandae.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Business Operations Specialist 99', 'raphael.toy', 'gmckenzie', 'Cumque ab non magni in. Voluptatem a consequatur error provident. Adipisci laboriosam fuga et natus. Voluptas consequatur est sunt et esse reprehenderit.', '31', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Business Operations Specialist 99', 'raphael.toy', 'ylittel', 'Pariatur modi repellendus non aut sapiente accusantium at voluptates. Molestiae illo non quasi exercitationem quia magnam. Enim unde tempore perspiciatis.', '26', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Telemarketer 100', 'kuhic.brando', 'kreiger.wava', 'Quisquam corrupti aspernatur perferendis dolor. Autem consequatur rerum at vel veritatis maxime. Repellat ab natus commodi ipsam corrupti nesciunt pariatur. Autem aspernatur amet voluptatum recusandae sed cum.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Telemarketer 100', 'kuhic.brando', 'okessler', 'Est et ipsum cupiditate perferendis accusantium. Et aliquid reiciendis accusantium beatae aut. Voluptatem ut dolorum odit dicta cumque.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Telemarketer 100', 'kuhic.brando', 'eldon.hoeger', 'Soluta natus sit accusamus quo sed. Numquam ipsa fuga id. Sit dolor quia deleniti eveniet et soluta culpa dolores. Qui dolor natus hic sit aut.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Telemarketer 100', 'kuhic.brando', 'vince14', 'Neque laboriosam perferendis aut delectus iste. Magni est quidem et consectetur impedit. Nulla voluptas magnam mollitia dolores doloremque dolorum.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Telemarketer 100', 'kuhic.brando', 'lbins', 'Reprehenderit debitis nulla optio sint et. Corporis nobis quia doloribus. Alias vitae fugit animi est et.', '10', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Telemarketer 100', 'kuhic.brando', 'mikel05', 'Maxime minima quasi id ratione quia natus sunt qui. Corrupti voluptas qui ab fugiat. Voluptatum est quis nam. Facilis autem doloribus et modi odio vel.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Sawing Machine Operator 1', 'pierre01', 'jerome.robel', 'Maxime facilis nihil eum et et. Occaecati eaque officiis expedita enim voluptates. Rem quisquam esse officia explicabo fuga animi. Adipisci officia dolorem voluptas iusto quibusdam eveniet illum.', '12', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Sawing Machine Operator 1', 'pierre01', 'joelle51', 'Et praesentium quis quo quam optio. Eum tempora voluptatem nobis sed eum.', '15', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Sawing Machine Operator 1', 'pierre01', 'fisher.kraig', 'Asperiores provident voluptatem deserunt vel ut voluptate. Possimus sed odio modi dolor.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Sawing Machine Operator 1', 'pierre01', 'femard', 'Maxime ut ducimus voluptatem. Autem nesciunt sapiente non est praesentium. Est sed deleniti quaerat soluta.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Sawing Machine Operator 1', 'pierre01', 'luettgen.winfield', 'Illo sint dicta repudiandae. Quis quas velit neque distinctio. Dicta voluptate voluptas aut fuga ipsum perferendis molestiae. Ullam minus sequi commodi perferendis porro aspernatur dolores.', '11', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Nuclear Monitoring Technician 2', 'mack22', 'fisher.kraig', 'Hic nemo fugiat neque. Harum et molestias dolore aut quia et debitis. Laboriosam accusantium tempore commodi deleniti aut odio et.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Nuclear Monitoring Technician 2', 'mack22', 'victor03', 'Quidem libero at distinctio facere totam. Sint iste quia illo. Distinctio quia non sed amet eos. Non optio consequatur rerum eaque. Quia dolor quos in facilis velit.', '10', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Nuclear Monitoring Technician 2', 'mack22', 'grady.zelda', 'Enim sint id sit esse et. Ut ipsam consequatur enim. Quo assumenda praesentium rem laborum ex ex id.', '16', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Nuclear Monitoring Technician 2', 'mack22', 'rath.maximus', 'Id cum aut beatae consequatur eaque et quos sit. Labore sed quos totam suscipit. Impedit dicta dolores consequuntur.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Nuclear Monitoring Technician 2', 'mack22', 'kilback.else', 'Ad corrupti voluptatem assumenda perferendis inventore. Commodi quia qui voluptatibus debitis deserunt. Omnis enim excepturi quo corporis maiores. Non et maiores sapiente quas debitis. Dignissimos et quisquam dolorem quo eaque quia aut.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Private Detective and Investigator 3', 'victor03', 'deondre.durgan', 'Itaque ut ratione aperiam tenetur ut corrupti. Molestias repudiandae quam nisi ab dolor. Dolorem itaque vero mollitia numquam laboriosam praesentium.', '16', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Private Detective and Investigator 3', 'victor03', 'maggie.hilpert', 'Aliquid esse atque soluta facilis ea quis delectus. Laudantium quae occaecati distinctio tenetur a quam. Deleniti praesentium rerum quidem nesciunt magnam. Rerum ullam est modi.', '31', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Private Detective and Investigator 3', 'victor03', 'gutmann.missouri', 'Explicabo eos sint quam placeat debitis quia. Ducimus explicabo veritatis odio eveniet qui quibusdam. Reiciendis sunt ea et quibusdam quod tenetur. Rerum reprehenderit quis voluptatem reprehenderit expedita commodi non.', '17', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Private Detective and Investigator 3', 'victor03', 'coby.powlowski', 'Consectetur odit et aliquam mollitia. Tempora vitae soluta quia error dolores voluptatibus maiores fugit. In aut minus aut.', '26', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Private Detective and Investigator 3', 'victor03', 'emayer', 'Perspiciatis ipsa quo asperiores aperiam. Voluptate asperiores asperiores distinctio dolor voluptatibus rerum. Voluptas enim tempora iste fuga quo consequuntur quidem.', '14', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Teacher 4', 'luettgen.winfield', 'chaya.witting', 'Tenetur consequuntur impedit et veniam maiores possimus. Facere et autem eveniet placeat veritatis voluptatibus consectetur quia. Consequuntur amet sit praesentium culpa. Fugiat et nam numquam ratione doloremque numquam.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Teacher 4', 'luettgen.winfield', 'myrtle35', 'Ut voluptas id quo dolor eligendi omnis rem impedit. Quam ducimus voluptatum amet. Ipsum sed cum fugit deleniti dolorem repudiandae dolore.', '19', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Teacher 4', 'luettgen.winfield', 'deondre.durgan', 'Non sed qui sint et molestias consequatur. Praesentium omnis excepturi reprehenderit.', '12', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Teacher 4', 'luettgen.winfield', 'kozey.jennifer', 'Doloribus vel distinctio eveniet rerum culpa tenetur illum. Mollitia molestiae error et atque velit nobis est. Autem voluptatibus ab temporibus laboriosam temporibus. Eius illo eos repudiandae voluptas ut laborum.', '11', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Teacher 4', 'luettgen.winfield', 'berneice95', 'Maxime est itaque voluptatem et. Nostrum eos ducimus asperiores ea odio in reprehenderit. Nesciunt aspernatur corporis assumenda repellendus et sit.', '19', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Teacher 4', 'luettgen.winfield', 'ejohnston', 'Omnis beatae culpa illum tenetur. Ab et ea perferendis blanditiis eum. Nesciunt aut voluptatum atque nihil rerum laudantium. Blanditiis veniam dolor ea velit pariatur.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cost Estimator 5', 'victor03', 'lexus.marks', 'Est eaque adipisci eum consequatur animi molestiae ut. Excepturi repellat similique sit consequatur velit. Suscipit eos harum praesentium ea est sequi.', '21', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cost Estimator 5', 'victor03', 'maggie.hilpert', 'Fugit atque dolor mollitia doloribus vero et autem. Esse libero est nostrum corporis quidem illum. Et facere amet adipisci voluptatem consequuntur sint.', '26', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cost Estimator 5', 'victor03', 'lucy.larkin', 'Sint debitis omnis expedita eius commodi. Placeat incidunt dolore reiciendis sequi dolores delectus. Harum est corporis numquam iste sint odio. Voluptas dolorum earum fugit dignissimos qui exercitationem.', '24', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cost Estimator 5', 'victor03', 'carleton.buckridge', 'Beatae repellendus adipisci ut et accusantium debitis ex. Nemo architecto hic repellendus id. Sunt dolore assumenda voluptate perspiciatis iure.', '31', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cost Estimator 5', 'victor03', 'tbailey', 'Vel qui qui aut voluptatem molestias asperiores eveniet. Ut suscipit veritatis iure. Repellendus fuga iusto quaerat molestiae.', '31', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cost Estimator 5', 'victor03', 'berneice95', 'Beatae unde et quidem qui. Adipisci saepe quasi vero et eum. Consequuntur rerum vitae aut. Ducimus deserunt nemo alias facilis.', '31', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fabric Mender 6', 'tdach', 'vince14', 'Molestiae ipsum ab omnis laudantium iusto. Vero doloremque omnis tenetur consequatur. Omnis quia ut quaerat voluptates quia dolores magni.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fabric Mender 6', 'tdach', 'augustus.zieme', 'Eos quos est ipsa totam voluptatum aspernatur. Aliquid odit sit odio explicabo reiciendis unde nesciunt. Officiis blanditiis laboriosam eum neque et atque laborum.', '5', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fabric Mender 6', 'tdach', 'wmarquardt', 'Sit cumque aut aut exercitationem ut. Odit omnis possimus est aliquam veritatis qui inventore. Est rem ut ut fugiat.', '17', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fabric Mender 6', 'tdach', 'grady.zelda', 'Totam omnis molestiae quisquam est. Dolor sunt et atque omnis.', '19', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fabric Mender 6', 'tdach', 'schmitt.rachel', 'Officiis delectus vitae est deleniti et ipsa. Asperiores asperiores aut odit eaque saepe impedit. Sed omnis et delectus officia libero nihil. Et dolores voluptas amet.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fabric Mender 6', 'tdach', 'chaya.borer', 'Esse officiis assumenda tempore error nihil molestiae soluta est. Ratione et eos commodi nostrum quis molestias.', '25', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Executive Secretary 7', 'shanel.wunsch', 'nader.jacinthe', 'Sed dolores asperiores quod sunt eligendi vel commodi. Dolores necessitatibus nihil enim est exercitationem. Et aut eum earum fuga doloremque fuga. Numquam excepturi ut et id nesciunt.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Executive Secretary 7', 'shanel.wunsch', 'gutmann.missouri', 'Ut quaerat qui velit nostrum. Quia voluptatem doloremque dolore. Voluptatem autem earum quis tenetur.', '8', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Executive Secretary 7', 'shanel.wunsch', 'blanca43', 'Qui qui ut a cupiditate iste perferendis. Ducimus et temporibus aut odio odio eum. Ab occaecati mollitia tempora magni dolor veniam.', '9', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Executive Secretary 7', 'shanel.wunsch', 'kamille.mann', 'Ea a soluta molestiae porro perferendis animi tempore non. Sed veritatis molestiae quo repellendus eligendi et et. Eum quibusdam asperiores corporis cum voluptatem numquam qui.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Executive Secretary 7', 'shanel.wunsch', 'maggie.hilpert', 'Sequi qui sunt sit sed vel ad. Labore id rerum nemo. Incidunt occaecati quisquam in occaecati fuga. Et eveniet molestiae perferendis voluptatum qui autem ad.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Oil Service Unit Operator 8', 'emayer', 'kilback.else', 'Alias alias qui incidunt temporibus quis. Harum et eligendi ut molestiae officiis incidunt. Delectus dolores neque cumque voluptate impedit. Incidunt dolorem dolore odit ducimus quisquam reiciendis. Doloremque veniam dolor velit facere esse quos.', '3', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Oil Service Unit Operator 8', 'emayer', 'metz.marcella', 'Quia quaerat et consequatur dolor occaecati qui. Odio rerum nesciunt quo est tempore accusamus maxime. Recusandae dolore quod illo ut molestiae et.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Oil Service Unit Operator 8', 'emayer', 'okessler', 'Pariatur hic enim et ea sint. Provident quod in voluptatum quis odit sit. Tempora dicta delectus quibusdam architecto est magnam rem.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Oil Service Unit Operator 8', 'emayer', 'lledner', 'Molestiae autem sit ex eligendi sunt. Numquam earum saepe dolorem odio eum recusandae ratione. Officiis optio quod a ut autem.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Oil Service Unit Operator 8', 'emayer', 'schmitt.rachel', 'Et dolores veritatis est id sunt et. Rerum et inventore in ut. Laudantium repellat voluptatem quas nihil ex quis. Tenetur numquam animi ad enim voluptatem qui in.', '16', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Oil Service Unit Operator 8', 'emayer', 'lbins', 'Dolorem amet nemo reprehenderit recusandae debitis id aperiam doloremque. Voluptatibus et laudantium sit consequatur. Molestias velit dolor quos velit similique necessitatibus qui minima. Aut eligendi veniam eum ut dolor qui.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Dancer 9', 'philip82', 'mikel05', 'Quasi quas explicabo molestiae ea sit nihil voluptatem. Nesciunt voluptas cumque distinctio dolorem. Neque facere eaque velit error nobis veritatis.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Dancer 9', 'philip82', 'christiana25', 'Vel facere eveniet laborum quaerat vel aperiam molestiae et. Adipisci aut minima id aut est magnam. Explicabo aut vero et natus velit praesentium. Possimus et quam numquam. Odio dignissimos ut aut sed ut.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Dancer 9', 'philip82', 'zhodkiewicz', 'Ipsum accusamus et necessitatibus non expedita animi et. Id deleniti culpa magnam vel.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Dancer 9', 'philip82', 'luettgen.winfield', 'Quisquam necessitatibus rerum cum quia exercitationem et. Ut explicabo in minima facilis. Enim quaerat ut aliquam repudiandae. Dolor possimus non nobis id qui expedita itaque.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Dancer 9', 'philip82', 'vince14', 'Eius illum veritatis suscipit placeat totam sint quidem. Deserunt voluptas tempora quasi est perferendis dolorum.', '21', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Clinical School Psychologist 10', 'francisco81', 'kuhic.brando', 'Ut et molestiae omnis est cupiditate. Ducimus impedit sunt asperiores asperiores. Dolores cumque fugiat maxime esse quasi ipsum.', '26', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Clinical School Psychologist 10', 'francisco81', 'aniya.champlin', 'Quibusdam et quia excepturi amet. Facilis corrupti harum autem rem. Dolor dolor unde explicabo et animi perferendis. Fugiat fugiat sed sequi quasi est cumque nihil.', '2', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Clinical School Psychologist 10', 'francisco81', 'kreiger.wava', 'Consequatur culpa praesentium maiores quaerat qui esse. Velit fugit quidem rerum vel repellendus et ut. Veritatis nihil dignissimos repellendus corporis asperiores eum sint.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Clinical School Psychologist 10', 'francisco81', 'ylittel', 'Iusto non velit fugiat. Maiores animi earum est et ex et unde. Adipisci natus eos neque consequuntur nulla qui quod. Veniam aut tempora voluptates in voluptas pariatur.', '5', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Clinical School Psychologist 10', 'francisco81', 'coby.powlowski', 'Aut commodi exercitationem aliquid enim occaecati necessitatibus. Nemo est aliquam quia quia architecto debitis et aut. Possimus veniam dicta ipsa et. Animi eos laborum sunt fugit non reiciendis.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Clinical School Psychologist 10', 'francisco81', 'farrell.berniece', 'Sit accusamus odio cupiditate enim. Facere beatae optio et alias ipsum commodi temporibus occaecati. Reiciendis ea aut voluptatibus accusamus.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Occupational Therapist 11', 'augustus.zieme', 'fisher.kraig', 'Ipsa omnis quidem aut ea. Odio reprehenderit aut quo debitis sint. Et qui libero rerum sit qui magnam.', '26', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Occupational Therapist 11', 'augustus.zieme', 'christiana25', 'Officia asperiores exercitationem ut exercitationem aperiam. Est animi expedita sit voluptatem. Voluptatem repudiandae natus repudiandae aut dolor.', '18', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Occupational Therapist 11', 'augustus.zieme', 'jewell.gaylord', 'Amet assumenda ea autem consequatur non dolorem quisquam. Aspernatur in tenetur labore consequatur et iusto est optio. Itaque ipsam voluptates amet debitis enim. Tenetur delectus in qui sint earum.', '14', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Occupational Therapist 11', 'augustus.zieme', 'junior.runte', 'Voluptatum provident quos ipsa quo. Veniam aliquam dolor animi aut suscipit quae. Rem provident a dolores labore. Aliquam exercitationem cum quisquam quod cumque debitis qui.', '18', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Environmental Engineer 12', 'mikel05', 'eldon.hoeger', 'Rerum odio suscipit neque dolorem fuga dicta. Laboriosam earum necessitatibus corporis aliquam corrupti iure necessitatibus. Repudiandae sint saepe adipisci in ut neque. Autem eligendi laborum sequi magnam veritatis eligendi quod. At voluptatem neque ullam sed aut modi.', '8', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Environmental Engineer 12', 'mikel05', 'zhodkiewicz', 'Unde sit quo voluptatem voluptatem. Recusandae consequatur quia in distinctio eos non. Odio deserunt eos eius dolorum ipsa odio excepturi.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Environmental Engineer 12', 'mikel05', 'chaya.borer', 'Sunt tempore nostrum beatae. Eveniet esse et cupiditate animi quisquam ut ex distinctio. Aut maxime voluptate error voluptatibus aspernatur commodi.', '12', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Environmental Engineer 12', 'mikel05', 'proob', 'Aspernatur animi reiciendis labore est aliquid sequi eligendi. Consequatur eligendi et velit dolorem tempora. Veritatis modi deserunt temporibus incidunt ut ea. Omnis et perferendis in aut sit itaque aliquid. Tempora necessitatibus eveniet et et.', '14', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Environmental Engineer 12', 'mikel05', 'lexus.marks', 'Nobis et facilis est voluptas sit deserunt harum. Animi cum hic labore. Nihil omnis blanditiis fugit et reiciendis aut.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Environmental Engineer 12', 'mikel05', 'carlee.haag', 'Sit vel consequatur velit delectus numquam. Occaecati repellat qui culpa aut consequatur. Et porro inventore fugiat nostrum.', '15', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Hand Presser 13', 'nader.jacinthe', 'mclaughlin.major', 'Ut deleniti error perferendis animi. Id praesentium at voluptatem nulla mollitia sapiente repudiandae maxime. Assumenda eius a id.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Hand Presser 13', 'nader.jacinthe', 'carleton.buckridge', 'Molestiae adipisci tenetur aliquid. Nihil architecto voluptas ab voluptas et. Placeat voluptatem voluptates nostrum sunt quas voluptatem. Accusamus ut laudantium molestiae dolore.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Hand Presser 13', 'nader.jacinthe', 'francisco81', 'Iste dolor culpa vero dolorum. Aut rerum consequatur similique quas. Porro ratione officiis debitis qui eius quod architecto.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Hand Presser 13', 'nader.jacinthe', 'cemard', 'Animi quia odio quia delectus et qui eos. Sint et nam ad quo qui sit totam illum. Modi magni aut aut totam.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Hand Presser 13', 'nader.jacinthe', 'walter.carli', 'Quis blanditiis assumenda asperiores velit laudantium et omnis. Autem ex occaecati modi dicta quia et aliquam. Veniam quam consequuntur quam sunt voluptas enim. Dolores aut voluptates libero in ut reprehenderit.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Hand Presser 13', 'nader.jacinthe', 'dwalker', 'Temporibus aspernatur esse consequuntur dolor. Ut eum et et.', '19', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Child Care 14', 'kamille.mann', 'vince14', 'Fugiat velit vero illo non. Culpa beatae deleniti delectus minima. Sunt qui quidem quia enim ratione.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Child Care 14', 'kamille.mann', 'myrtle35', 'Assumenda dolorem velit occaecati alias et ut voluptate. Reprehenderit soluta possimus nemo sequi.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Child Care 14', 'kamille.mann', 'cemard', 'Inventore atque molestiae expedita tempora quod recusandae. Et corrupti ducimus autem enim velit at. Sint autem et sapiente sint nesciunt.', '18', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Child Care 14', 'kamille.mann', 'femard', 'Maiores temporibus id et. Voluptates fugit veritatis sit ut quidem suscipit itaque. Eos quibusdam velit cupiditate saepe facere quis.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Epidemiologist 15', 'kamille.mann', 'clinton62', 'Maxime et deleniti quaerat recusandae inventore est. Recusandae non voluptas excepturi est est. Sapiente rem nostrum qui reiciendis. Labore doloremque suscipit eligendi repellat quia quisquam.', '15', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Epidemiologist 15', 'kamille.mann', 'cemard', 'Voluptatem error quo commodi unde sit temporibus aliquam. Quo dolorum neque ipsam et beatae omnis. Velit voluptatem molestias repellendus rerum quibusdam provident quis.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Epidemiologist 15', 'kamille.mann', 'lbins', 'Laudantium at ipsum minima aperiam aspernatur. Qui reprehenderit quod qui asperiores quis dolorum labore. Eos nihil quae culpa incidunt.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Epidemiologist 15', 'kamille.mann', 'jrosenbaum', 'Asperiores nisi a corporis. Inventore qui voluptatem dolorum iure dolorem id. Quibusdam fuga laborum sunt tempora. Consequatur nostrum et odit culpa.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Precision Printing Worker 16', 'rowe.herminio', 'llewellyn24', 'Mollitia sunt non ducimus praesentium. Dolorum dolorum est aut qui omnis ipsum id. Doloribus itaque veritatis quis saepe eligendi vitae.', '17', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Precision Printing Worker 16', 'rowe.herminio', 'weston.langosh', 'Et rerum explicabo sint vero facere cupiditate. Vero consequatur architecto aliquid corrupti itaque culpa. Pariatur quas dignissimos est facere. Mollitia aspernatur qui quam laborum qui.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Precision Printing Worker 16', 'rowe.herminio', 'bryce.maggio', 'Sed et eius rem qui iste omnis voluptates. Et non quasi commodi quidem at. Dolor voluptatem laboriosam porro maxime ipsam.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Precision Printing Worker 16', 'rowe.herminio', 'victor03', 'Temporibus vel necessitatibus dicta commodi qui aspernatur neque. Perferendis tempore iure et ut. Hic beatae aperiam dolorem perspiciatis.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Precision Printing Worker 16', 'rowe.herminio', 'grady.zelda', 'Natus aperiam natus vel magnam laudantium inventore quod. Dolor facere dolorem dolore nemo. Sapiente esse consequuntur quia voluptate doloremque atque. Eveniet provident cumque laboriosam sed.', '24', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cook 17', 'savanna06', 'gyundt', 'Ex veritatis numquam harum aut. Labore rerum exercitationem sunt sed. Sit soluta pariatur voluptatibus molestias fugiat.', '14', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cook 17', 'savanna06', 'kuhic.brando', 'Est aut neque quaerat. Facilis temporibus dolorem impedit maxime id. Alias eveniet aliquam corrupti rem. Blanditiis velit sed tempora suscipit harum sunt.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cook 17', 'savanna06', 'gutmann.missouri', 'Harum fugiat atque vel placeat. Sint ullam sapiente voluptatem earum tempore eveniet aut. Sint mollitia doloribus repudiandae labore.', '15', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cook 17', 'savanna06', 'kozey.jennifer', 'Molestias quibusdam omnis ad veniam vel omnis ea. Nulla non quia sapiente consequatur animi. Et rerum voluptas amet nihil consequatur sit. Totam voluptatem est nihil dolores omnis praesentium.', '9', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Cook 17', 'savanna06', 'myrtle35', 'Fuga aut iste qui sed assumenda molestias. Eos nulla sequi commodi hic atque quod inventore. Aut modi aliquam sequi quisquam molestiae quis ut. Possimus sapiente qui quod optio quia. Autem et cum aperiam nam vero sunt.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Librarian 18', 'pierre01', 'raphael.toy', 'Provident voluptas quam facilis error qui commodi. Consequuntur quibusdam fugiat adipisci iure eum est. Itaque soluta praesentium voluptatem et placeat. Qui praesentium et dolor soluta.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Librarian 18', 'pierre01', 'vince14', 'Sunt commodi quae expedita voluptatibus rerum cumque. Voluptatibus officiis dolores ut. Consequatur quia minus quia totam est. Et ex aut et iusto sed quia rerum incidunt.', '16', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Librarian 18', 'pierre01', 'coberbrunner', 'Quisquam voluptatem quis ratione dolor fugit assumenda. Delectus cupiditate quo cumque eaque. Ipsum voluptatem sit accusantium nesciunt ea.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Librarian 18', 'pierre01', 'coby.powlowski', 'Voluptatem ut porro et velit consectetur recusandae. Saepe eos qui provident distinctio delectus iusto voluptatem. Ut quaerat unde veritatis nobis praesentium nostrum quia quae.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Librarian 18', 'pierre01', 'mclaughlin.major', 'Ipsum ratione aut odio. Amet tenetur quia laudantium rerum. Magni non eos qui modi in ipsam ipsum.', '21', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Librarian 18', 'pierre01', 'ylittel', 'Aperiam porro id culpa odio. Quas ratione ut eveniet. Magni est sint ratione rerum possimus.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Insurance Investigator 19', 'cemard', 'clinton62', 'Quos est autem consequatur eligendi. Molestias nulla beatae maxime ad omnis vel.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Insurance Investigator 19', 'cemard', 'gutmann.missouri', 'Fuga aliquid quidem itaque ipsa. Et nisi amet consequatur voluptatem eos. Quia doloribus eum adipisci.', '21', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Insurance Investigator 19', 'cemard', 'margarete12', 'Et atque quis recusandae nemo. Iure in adipisci incidunt non numquam consectetur. Eos voluptatum dolorum veritatis et.', '15', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Insurance Investigator 19', 'cemard', 'wmarquardt', 'Dolores ducimus voluptates praesentium sunt quas qui mollitia. Suscipit et qui quia suscipit quo.', '4', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Insurance Investigator 19', 'cemard', 'coberbrunner', 'Voluptatem cumque consectetur illo repellendus. Quis consequuntur hic aut sapiente reprehenderit consequatur est. Officiis neque magnam qui dolor voluptas corporis id. Vitae et officiis laboriosam et impedit. Nobis quis qui voluptas iste ut.', '10', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Insurance Investigator 19', 'cemard', 'felicita.prohaska', 'Adipisci sit et modi iusto sunt. Quidem officiis voluptates rerum unde dolor est. Vel ut aut ducimus. Rem et dolores blanditiis dolorum iste.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Gluing Machine Operator 20', 'aniya.champlin', 'rowe.herminio', 'Mollitia natus rerum fugit praesentium. Dolorem incidunt natus voluptates laudantium. Molestiae eius consequatur facere corrupti quibusdam. Enim aliquam temporibus ipsam repellendus sapiente.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Gluing Machine Operator 20', 'aniya.champlin', 'kamille.mann', 'Voluptatem ut sint et et eos tempora enim. Fugit et blanditiis quia a. Pariatur aliquam eum doloremque quia enim dolores perferendis.', '6', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Gluing Machine Operator 20', 'aniya.champlin', 'ritchie.josefina', 'Ipsa sit officiis voluptatum in itaque laboriosam voluptatem facere. Maiores ut rerum temporibus et velit.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Gluing Machine Operator 20', 'aniya.champlin', 'jerome.robel', 'Perspiciatis provident officia et aspernatur natus atque consequuntur quas. Rerum qui et est minima quia consectetur. Ad sit fugit veritatis voluptate occaecati enim necessitatibus sed. Aut omnis consequuntur perferendis illo.', '21', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Gluing Machine Operator 20', 'aniya.champlin', 'carlee.haag', 'Eum asperiores nisi non vel. Dicta iure ab impedit hic possimus. Officiis eligendi illum hic ut quas.', '21', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Gluing Machine Operator 20', 'aniya.champlin', 'godfrey.mitchell', 'Quasi aspernatur ab labore perferendis. Saepe non fugit in sint est cupiditate molestiae quo. Aspernatur cupiditate asperiores consequuntur assumenda ea rerum quis. Rerum velit quos quia non accusamus.', '6', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Insulation Worker 21', 'farrell.berniece', 'fisher.kraig', 'Unde qui voluptatem autem error. Mollitia architecto optio rem itaque quam. Libero quia blanditiis dignissimos temporibus hic aut distinctio. Aliquam non voluptates enim iusto et. Quia vel voluptas necessitatibus temporibus temporibus magnam.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Insulation Worker 21', 'farrell.berniece', 'proob', 'Mollitia qui molestias nam illo eum ut reiciendis. Nemo velit ipsum hic nobis dolorum eligendi. Et voluptatum possimus eos ad facere adipisci. Possimus vitae veritatis sed consectetur iusto. Veritatis et sunt blanditiis velit dolores pariatur adipisci nihil.', '13', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Insulation Worker 21', 'farrell.berniece', 'kilback.else', 'Et quidem quis nam quaerat quibusdam et. Quo voluptatem nihil explicabo ut laboriosam dolore quidem. Accusamus et exercitationem dolor est nihil fugiat iste eligendi.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Insulation Worker 21', 'farrell.berniece', 'philip82', 'Pariatur omnis aut cumque minus sit. Qui praesentium nemo ut praesentium iste. Blanditiis necessitatibus omnis earum atque mollitia consequuntur voluptatem.', '31', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Insulation Worker 21', 'farrell.berniece', 'gutmann.missouri', 'Aut adipisci enim quaerat laboriosam laboriosam quisquam. Repellendus cupiditate odit aut. Et alias et cum dolorum maiores eos repellendus temporibus.', '24', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Transformer Repairer 22', 'kiana52', 'lledner', 'Odio quo rerum nulla doloremque accusantium praesentium et cum. Rem facilis a dolor vitae rem cupiditate at aperiam. Facilis temporibus ea nam quia debitis optio provident.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Transformer Repairer 22', 'kiana52', 'sedrick30', 'Et qui adipisci mollitia maxime sapiente nihil corrupti. Id enim voluptatum ad sed a doloremque. Voluptatem ut dolor voluptas libero labore.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Transformer Repairer 22', 'kiana52', 'deondre.durgan', 'Quia velit quam ea. Aut inventore est nihil reiciendis nihil enim. In aut veritatis optio ullam et dolor. Et ut rerum odit atque ipsam mollitia tenetur.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Transformer Repairer 22', 'kiana52', 'chaya.borer', 'Provident similique non alias porro explicabo occaecati excepturi. Et nam iste dolores ea in minima. Praesentium nemo quas sed.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Transformer Repairer 22', 'kiana52', 'marks.ilene', 'Non laborum sint nesciunt rerum sit mollitia a rem. Occaecati voluptates similique et reiciendis impedit ipsum. Sed sed ullam sint repudiandae quae reprehenderit aut. Temporibus ea natus aut soluta non sit.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Central Office and PBX Installers 23', 'kilback.else', 'ritchie.josefina', 'Sunt odit provident expedita corporis sint totam. Consequatur quos voluptatum in doloremque minima voluptatem. Consequatur sint animi explicabo nulla dolores architecto. Amet reiciendis autem voluptatem repellendus reiciendis quae. Non quasi corporis at iusto omnis explicabo.', '14', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Central Office and PBX Installers 23', 'kilback.else', 'lbins', 'Repudiandae asperiores ut incidunt itaque. Aspernatur debitis aliquam et est. Est officia dolorum nemo sed quae accusantium. Pariatur sint numquam eos veniam aut maxime.', '24', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Central Office and PBX Installers 23', 'kilback.else', 'eldon.hoeger', 'Tempora quia molestiae qui velit autem. Eveniet ducimus quo officiis aut veniam ut. Eum aut eaque libero eos et occaecati.', '7', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Central Office and PBX Installers 23', 'kilback.else', 'schmitt.rachel', 'Et quis hic rerum officia alias officia. Occaecati incidunt et qui non.', '18', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Central Office and PBX Installers 23', 'kilback.else', 'godfrey.mitchell', 'Illo harum explicabo nemo tenetur. Temporibus cum laudantium est adipisci doloribus. Quas quam consequatur quo consectetur qui. Ad vitae tempore velit vitae maxime.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Central Office 24', 'kamille.mann', 'zhodkiewicz', 'Non necessitatibus quia aliquid qui voluptatem nobis. Molestias ex quas beatae dolorum. Quia sit molestiae modi minima voluptates. Est non provident voluptatem dolorum.', '26', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Central Office 24', 'kamille.mann', 'zelda76', 'Nihil ipsa quam similique illum aut sed. Est non soluta provident similique cumque ut mollitia. Et voluptates ratione perspiciatis ut sunt cumque ut odit. Cumque aut dicta quisquam rerum.', '7', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Central Office 24', 'kamille.mann', 'deondre.durgan', 'Eum ipsum itaque adipisci et maxime in autem. Minima recusandae nihil qui et soluta. Quas assumenda at quia est aliquid consequatur.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Central Office 24', 'kamille.mann', 'sedrick30', 'Aut quae ut velit quas incidunt explicabo. Deleniti sit officiis excepturi eligendi. Et maxime qui dignissimos omnis consectetur.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Central Office 24', 'kamille.mann', 'bruce82', 'Dolorum dolore blanditiis repudiandae nihil. Labore voluptatibus consectetur est dolores voluptas aliquam iste. Dolores accusamus consectetur illum aut incidunt amet.', '31', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Central Office 24', 'kamille.mann', 'kiana52', 'Quasi non officiis magnam velit voluptate. Consectetur aut eaque sint impedit tenetur id minima. Ducimus est ipsa consequuntur aliquam doloribus doloremque.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Special Forces Officer 25', 'mikel05', 'treutel.hildegard', 'Illum qui suscipit autem hic similique illo. Ducimus molestiae praesentium voluptatibus tempora. Molestias quisquam commodi quo nam sunt corrupti. Ut sit ipsa iusto animi.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Special Forces Officer 25', 'mikel05', 'berneice95', 'Qui quasi reiciendis et est excepturi. Est illo numquam possimus necessitatibus odio libero debitis. Magni quo quia fugit esse officiis.', '18', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Special Forces Officer 25', 'mikel05', 'christiana25', 'Officia inventore quia rem quis ea optio commodi ea. Ea et recusandae assumenda aperiam dolor aliquid. Reiciendis earum tempora aut ipsum. Rerum doloremque aliquid commodi itaque numquam.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Special Forces Officer 25', 'mikel05', 'junior.runte', 'Quas soluta voluptatem sit dolore. Animi architecto minus est minus sint culpa explicabo voluptas. Consequatur numquam modi et facilis praesentium.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Special Forces Officer 25', 'mikel05', 'farrell.berniece', 'Quo fugiat numquam ab nihil. Officia sapiente officiis voluptate sapiente rem facilis sequi quae. Officia sit reprehenderit fugiat voluptas impedit facere.', '16', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Special Forces Officer 25', 'mikel05', 'savanna06', 'Eos possimus sed ut et laborum commodi. Illo voluptatibus odio nisi hic et quis blanditiis magnam. Et consequatur quo itaque fugit sit.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Meter Mechanic 26', 'tgorczany', 'clinton62', 'Eos quis deleniti et harum. Quisquam quia asperiores ad fuga minus. Tempore qui aperiam earum numquam.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Meter Mechanic 26', 'tgorczany', 'kuhic.brando', 'Architecto quaerat dolore porro cupiditate in iste nesciunt. Accusantium explicabo ut necessitatibus et et sint. Consequatur sit soluta alias nesciunt. Dicta sunt dolor magni tempore.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Meter Mechanic 26', 'tgorczany', 'weston.langosh', 'Et sit molestias libero in quos ea unde. Sint vel impedit unde illo illo. Doloremque officia architecto doloremque velit autem similique repellat.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Meter Mechanic 26', 'tgorczany', 'carlee.haag', 'Adipisci maiores harum soluta vel ratione. Minima provident iure quia enim quidem dolores. Nihil non doloremque delectus velit veniam.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Meter Mechanic 26', 'tgorczany', 'felicita.prohaska', 'Necessitatibus non sed asperiores qui qui et. Ut dolore placeat tenetur repudiandae sint aut. Maxime amet aut nulla incidunt.', '13', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Personal Trainer 27', 'bryce.maggio', 'olson.gaetano', 'Qui voluptas dolor ullam culpa sed explicabo labore aspernatur. Ipsum sunt in molestiae. Corporis neque a reiciendis consequatur. Qui ut ratione odio perferendis voluptatem repellendus est.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Personal Trainer 27', 'bryce.maggio', 'gutmann.missouri', 'Neque labore assumenda necessitatibus et voluptas adipisci repellendus excepturi. Similique ut ut vero consequatur. Et dicta quia molestiae ut. Possimus tempora assumenda dolorum omnis illo.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Personal Trainer 27', 'bryce.maggio', 'lbins', 'Voluptatem corrupti autem quis sunt maiores. Expedita a voluptatem qui dolorem esse sint. Autem aut ipsam nam at. Et eligendi minima consequatur enim totam accusantium.', '13', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Personal Trainer 27', 'bryce.maggio', 'coby.powlowski', 'Ut ut ut magni ut. Illo ipsam doloremque facere dolorum. Recusandae deserunt fugiat quibusdam atque.', '14', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Personal Trainer 27', 'bryce.maggio', 'metz.marcella', 'Pariatur non consequatur praesentium. Id quas labore magni ullam quia molestiae qui. Enim voluptas laborum autem quidem optio et ut cupiditate. Quod omnis atque amet voluptas neque.', '24', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Personal Trainer 27', 'bryce.maggio', 'jrosenbaum', 'Molestiae qui distinctio omnis voluptate qui. Molestiae hic voluptatem est atque ad ea aperiam. Qui iusto alias placeat quia modi libero.', '21', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Elevator Installer and Repairer 28', 'kilback.else', 'margarete12', 'Soluta perspiciatis facere accusamus cupiditate. A suscipit atque eligendi culpa atque rem est. Alias eum optio ullam neque explicabo exercitationem.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Elevator Installer and Repairer 28', 'kilback.else', 'vince14', 'Odio iusto aspernatur nihil molestias ex ut. Debitis quas possimus harum temporibus et sint.', '26', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Elevator Installer and Repairer 28', 'kilback.else', 'kamille.mann', 'Eos magnam maxime rerum rerum. Et consectetur sequi dolorem expedita sed et. Dolor quos quo illo nam sapiente. Est dolor eos debitis quo.', '9', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Elevator Installer and Repairer 28', 'kilback.else', 'marks.ilene', 'Nemo dolor occaecati impedit ducimus ut consectetur suscipit distinctio. Aut officia aut delectus. Esse laborum voluptas a et aut laudantium.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Elevator Installer and Repairer 28', 'kilback.else', 'rath.maximus', 'Inventore et velit asperiores officia maiores et ut consequatur. Ipsum qui est facilis doloribus ea. Aut aut qui delectus eligendi aut.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Elevator Installer and Repairer 28', 'kilback.else', 'sedrick30', 'Nostrum eum quaerat rem ut et quisquam quasi. Minima ipsum voluptatem eius voluptate eius. Illo dolorem nemo sequi enim libero.', '14', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Coil Winders 29', 'chaya.witting', 'jsimonis', 'Qui qui consequatur et qui. Ducimus sed est architecto occaecati et. Eveniet excepturi aut eum quos labore. Dolorem tempora et ab dolor tenetur et.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Coil Winders 29', 'chaya.witting', 'gutmann.briana', 'Ea accusamus perferendis in est. Aspernatur placeat quis pariatur aut. Eligendi quia nobis molestiae cum est est.', '15', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Coil Winders 29', 'chaya.witting', 'savanna06', 'Est veritatis est qui temporibus. Aperiam ipsam illum expedita et perferendis pariatur at. Et dolorem ea libero doloremque dolor laboriosam ut. Aut neque vel rerum cum.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Coil Winders 29', 'chaya.witting', 'ejohnston', 'Atque qui vel exercitationem saepe. Non qui blanditiis est libero. Maxime est velit repellat occaecati dolor. Est officia consequatur quo porro aliquam ducimus.', '10', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Coil Winders 29', 'chaya.witting', 'christiana25', 'Eum occaecati et repudiandae expedita. Omnis omnis est facilis quo. Rem hic dolorum a expedita et dolor repellendus. Consequuntur non quisquam laudantium tempore illo.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Coil Winders 29', 'chaya.witting', 'kiana52', 'Repellat repellat nesciunt consequuntur itaque sit. Ut mollitia velit ut impedit. Iusto dolores ut dolorum voluptas. Dolores et pariatur iure cupiditate alias ea fugit iusto.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Production Planner 30', 'chaya.witting', 'coberbrunner', 'Ut culpa qui eaque corporis quibusdam deserunt et. Itaque non aut voluptatem. Cumque voluptate sed est et a. Et vero sunt enim error adipisci laboriosam consequatur.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Production Planner 30', 'chaya.witting', 'weston.langosh', 'Omnis autem est ad iure mollitia. Quaerat animi nisi quam rerum et nam distinctio. Tenetur adipisci illo ipsum quos nihil.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Production Planner 30', 'chaya.witting', 'streich.dorothy', 'Omnis iusto qui atque ea et. Cumque dolores et aut excepturi beatae quia. Dolores ab sunt aliquid non deleniti hic. Perferendis impedit provident voluptate in voluptas quod. Molestias sed vero aut necessitatibus nesciunt autem doloribus.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Production Planner 30', 'chaya.witting', 'sedrick30', 'Ex quibusdam facilis minima est excepturi sunt. Earum quia voluptatem pariatur et asperiores et ea fuga. Dignissimos consequatur sapiente omnis recusandae aperiam reprehenderit. Et hic facere tenetur facere ipsum molestiae.', '2', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Production Planner 30', 'chaya.witting', 'aniya.champlin', 'Illo rerum voluptas porro doloremque. Ea sit ut iste in ratione saepe eveniet quis. Quis non ea aperiam labore rem nesciunt.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Production Planner 30', 'chaya.witting', 'emayer', 'Distinctio aliquid impedit ea dicta excepturi expedita quia vitae. Dolore eos corporis quia voluptas fuga. Veritatis suscipit est aut neque aut vel suscipit. Delectus distinctio aut perferendis aperiam optio quaerat laborum.', '19', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Pump Operators 31', 'christiana25', 'wmarquardt', 'Accusantium nihil minus laborum saepe dolorum. Modi qui nemo aspernatur sed explicabo ut eaque. Adipisci quisquam cum quis veritatis cupiditate. Est nisi repudiandae consequatur repellat placeat.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Pump Operators 31', 'christiana25', 'felicita.prohaska', 'Eum ut sint omnis dolorem repellat aperiam et. Sint aliquid ratione explicabo dignissimos. Pariatur aspernatur ipsa ipsum quod nisi.', '21', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Pump Operators 31', 'christiana25', 'dwalker', 'Sed laudantium numquam optio quod. Error est quisquam cumque quos exercitationem ipsum ut. Et amet perferendis placeat ut. A nihil facilis atque velit.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Pump Operators 31', 'christiana25', 'jrosenbaum', 'Qui et veritatis magnam ut molestiae. Aut debitis beatae omnis est autem sequi. Vitae est aut dignissimos soluta excepturi aut.', '2', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Building Cleaning Worker 32', 'maggie.hilpert', 'tgorczany', 'Et autem vel est rerum enim omnis. Nihil omnis minus ut nihil voluptatem animi. Aut asperiores voluptatibus minima tempore fugiat deleniti aut. Fugiat in nemo quis fugiat officia minus.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Building Cleaning Worker 32', 'maggie.hilpert', 'kuhic.brando', 'Qui distinctio voluptas suscipit eos accusantium ut. Est cupiditate nemo et voluptate odio sunt neque. Numquam qui nobis aut unde est. Saepe dolor optio fugiat hic.', '21', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Building Cleaning Worker 32', 'maggie.hilpert', 'philip82', 'Et molestiae nesciunt inventore debitis ullam. Autem quod illum sunt voluptatem cum animi ut asperiores. Illum et consequatur iusto est sunt ad. Natus ducimus est nesciunt quaerat rem et.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Building Cleaning Worker 32', 'maggie.hilpert', 'blanca43', 'Occaecati repellendus quis maiores vel aliquid eos animi. Veritatis quo officia ea velit nesciunt omnis magnam. Voluptatem illum corporis error velit.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Building Cleaning Worker 32', 'maggie.hilpert', 'streich.dorothy', 'Sunt id aliquid sit. A est nam natus iure. Ut doloremque architecto ab maiores vel veritatis et. Ut et qui aut delectus adipisci corporis.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Building Cleaning Worker 32', 'maggie.hilpert', 'kamille.mann', 'Sed nostrum maiores aut amet voluptate autem perspiciatis. Assumenda voluptas consequatur at occaecati adipisci. Fuga modi quia nesciunt. Qui ut exercitationem aliquam eligendi aut assumenda inventore. Sed debitis quas alias asperiores maxime totam.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Law Teacher 33', 'mack22', 'brenden.mcdermott', 'Itaque veritatis eaque error sunt et necessitatibus. Voluptas tenetur aperiam odio quis voluptas. Sint ratione labore minima repellat facilis et. Repellat libero et dicta sed ea reiciendis molestias.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Law Teacher 33', 'mack22', 'coby.powlowski', 'Assumenda maiores incidunt voluptatem distinctio. Amet et a iure quo veritatis natus. Sit distinctio et impedit laboriosam molestiae quas. Ut consequuntur exercitationem consequatur molestias autem harum nihil.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Law Teacher 33', 'mack22', 'florine.jaskolski', 'Perferendis sed numquam enim incidunt quia repudiandae. Cumque sed consectetur laborum velit voluptatem repellendus eligendi.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Law Teacher 33', 'mack22', 'kiana52', 'Temporibus nulla laboriosam nemo dolor quia. Ullam aut molestiae culpa qui est saepe fugit vel. Nostrum totam sit cumque aut magni rerum.', '25', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Law Teacher 33', 'mack22', 'femard', 'Beatae quia magni explicabo. Sint et perferendis rem mollitia consequatur delectus. Et quaerat nemo inventore totam quisquam.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Law Teacher 33', 'mack22', 'francisco81', 'Rem fugit fugit a eos reiciendis ut eum ab. Eos dolore distinctio quas et. Autem numquam omnis id autem dolore rerum animi.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Landscape Architect 34', 'kilback.else', 'jennie18', 'In odio ut natus repellendus porro distinctio. Quas porro accusantium est sapiente consequatur reiciendis consequatur natus. Natus aut ut voluptas aut.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Landscape Architect 34', 'kilback.else', 'rath.maximus', 'Amet nulla non non dolorum repellendus dolore nobis quod. Est atque nulla cumque incidunt eaque. Soluta hic et nisi cum dolores aut modi.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Landscape Architect 34', 'kilback.else', 'bryce.maggio', 'Totam corrupti rerum nam perspiciatis quidem ut voluptatum. Dolor est explicabo tenetur. Consectetur et repellendus culpa et earum quod similique. Quae tenetur recusandae ex et. Mollitia officia rem eos et ad.', '21', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Landscape Architect 34', 'kilback.else', 'zhodkiewicz', 'Alias dolor cumque incidunt consectetur. Voluptate qui consequatur aut sed ullam. Temporibus dolor dolor optio mollitia atque. Modi qui quia non occaecati voluptatem eaque.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Landscape Architect 34', 'kilback.else', 'ritchie.josefina', 'At earum et et autem nostrum. Dolorem facere voluptates veritatis sint. Voluptatem quia reiciendis harum tempore aliquam.', '12', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Landscape Architect 34', 'kilback.else', 'ynitzsche', 'Quis adipisci voluptas et est vel dignissimos quia ea. Quisquam sit voluptates velit consequatur. Recusandae ut excepturi aliquid recusandae.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Bus Driver 35', 'chaya.witting', 'ynitzsche', 'Ab et laudantium temporibus quas quasi itaque repudiandae. Facilis et corporis cupiditate laudantium iure. Culpa cupiditate tempore architecto soluta velit impedit. Aspernatur ut esse eligendi enim. In atque nesciunt est distinctio quibusdam.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Bus Driver 35', 'chaya.witting', 'carlee.haag', 'Nobis repellat aliquam rerum illo. Inventore vero quia at excepturi. Voluptas exercitationem nam tenetur est et exercitationem.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Bus Driver 35', 'chaya.witting', 'pierre01', 'Voluptatum et non natus veritatis sit. Recusandae cupiditate sint ea et. Qui explicabo aliquid quo sunt porro quaerat. Saepe ut maxime aut tempora rerum illum eius. Velit possimus neque et ut fugit accusamus.', '24', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Bus Driver 35', 'chaya.witting', 'kiana52', 'Molestiae magnam sed iusto accusamus mollitia delectus. Sed enim odio ea animi cum reiciendis. Harum vel ea autem corrupti quis. Labore et dicta sed voluptates similique.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Bus Driver 35', 'chaya.witting', 'francisco81', 'Inventore nam corporis adipisci. Quia et facere voluptatibus voluptatibus. Laudantium nemo aut dolorem nostrum magni. Nulla pariatur illo ut distinctio.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Computer Hardware Engineer 36', 'mikel05', 'gmckenzie', 'Officia et dolores ut deleniti odit nostrum magnam. Et sint nulla quam dolorum tempora. Beatae iure dolor nam qui.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Computer Hardware Engineer 36', 'mikel05', 'berneice95', 'Sit sit ipsam optio dolorem tempora vel reprehenderit. Sed enim nisi occaecati sed velit. Ipsa pariatur perferendis aut cum tempore.', '12', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Computer Hardware Engineer 36', 'mikel05', 'streich.dorothy', 'Natus dignissimos quisquam odio. Molestias occaecati tenetur optio est facere rerum molestias. Ut quaerat quas ullam non quia molestiae in. Nihil quia ut atque quia error.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Computer Hardware Engineer 36', 'mikel05', 'murl24', 'Est possimus doloremque ut natus. Commodi officiis pariatur dolor ad sequi dolores sed. Non illum qui est odit.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Vocational Education Teacher 37', 'clinton62', 'gmckenzie', 'Quo voluptatem placeat autem impedit. Aut aut deserunt quibusdam quia repellendus.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Vocational Education Teacher 37', 'clinton62', 'treutel.hildegard', 'Voluptas non qui sit architecto. Amet beatae culpa ullam labore necessitatibus quod ut. Quaerat odit accusamus sit. Aut rerum non repellat assumenda et fugiat quas.', '14', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Vocational Education Teacher 37', 'clinton62', 'chaya.witting', 'Aut ex impedit atque nulla voluptas dolor veniam. Dolorum ea assumenda at. Et sit cum accusamus magnam eligendi voluptatibus ipsum. Consequuntur quisquam quia ut omnis quod doloribus iure.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Vocational Education Teacher 37', 'clinton62', 'margarete12', 'Neque tempora illo sapiente delectus optio sed. Dolor similique facere saepe dicta enim. Eveniet dolor veniam et ut rem eius illum. Vero totam iusto impedit aliquid non quo sunt accusantium.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Vocational Education Teacher 37', 'clinton62', 'cemard', 'Neque eius et dolor nostrum facilis ad. Minus magni nihil molestias quis error. Cum delectus illo nesciunt autem omnis omnis.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Real Estate Broker 38', 'streich.dorothy', 'farrell.berniece', 'In sit ratione unde perferendis cumque. Quas sequi provident ut quis deleniti. Vel pariatur aut suscipit beatae.', '3', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Real Estate Broker 38', 'streich.dorothy', 'gutmann.briana', 'Esse a aut voluptas perspiciatis. Eligendi dolore maiores at laboriosam. Ad perferendis et ducimus libero eum. Excepturi omnis voluptas cum nam.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Real Estate Broker 38', 'streich.dorothy', 'maggie.hilpert', 'Iusto omnis fugiat dignissimos minima qui aut sunt. Sed recusandae cumque et omnis ut laboriosam. Ab et et nihil laudantium ratione ea in.', '2', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Real Estate Broker 38', 'streich.dorothy', 'pierre01', 'Optio voluptatem voluptas mollitia voluptas delectus id. Cum cum molestias sit optio fugiat. Aspernatur sunt doloremque odit doloremque eaque molestiae. Quae velit vitae non quasi a consequatur totam voluptatum. Dolor cumque ad voluptatem.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Real Estate Broker 38', 'streich.dorothy', 'carlee.haag', 'Aut repellendus maxime commodi eius. Aut adipisci recusandae architecto occaecati. Quibusdam voluptatem optio laudantium impedit. Eos debitis maxime libero culpa reprehenderit.', '15', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Real Estate Broker 38', 'streich.dorothy', 'grady.zelda', 'Molestiae quos at quis deserunt a odio quas nam. Laudantium doloremque consectetur esse tenetur modi aut. Necessitatibus libero odit eos deleniti quod aut eveniet deserunt. Eum et est sunt nulla. Et ducimus corporis quo doloribus porro repellendus.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Optometrist 39', 'mikel05', 'cemard', 'Aut velit in quidem excepturi. Id sint saepe cupiditate voluptatum. In maxime sapiente qui alias ducimus rerum architecto dolore. Quam dignissimos omnis laborum delectus expedita eum.', '6', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Optometrist 39', 'mikel05', 'margarete12', 'Nesciunt eius voluptate iure pariatur non corrupti. Nam quae nemo dolor aspernatur. Et ut eum harum fugit accusamus molestiae.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Optometrist 39', 'mikel05', 'zelda76', 'Sed enim hic adipisci quis esse consequatur. Neque aliquid sed est. Accusantium qui dolor odio sint.', '18', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Optometrist 39', 'mikel05', 'chaya.borer', 'Unde sit a quasi quia amet. Quia minus delectus cumque libero et blanditiis. Rem consequatur maiores assumenda odit. Aliquid nam et iure ut officiis quo.', '7', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Optometrist 39', 'mikel05', 'floyd.okon', 'Accusamus consequuntur repellendus sed ullam. Autem odit et quaerat suscipit. Et ut quia blanditiis temporibus velit nemo. Et possimus minima illum qui voluptate rerum.', '24', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Optometrist 39', 'mikel05', 'carleton.buckridge', 'Cum alias est optio atque incidunt id et dolor. Facilis perspiciatis aliquam impedit distinctio voluptates veniam. Rerum alias recusandae non sequi libero reiciendis qui.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Typesetting Machine Operator 40', 'godfrey.mitchell', 'marques.ziemann', 'Aperiam sit id sit dolor molestiae. Iste suscipit eum autem explicabo. Quos quo veniam corrupti atque ab eligendi ipsa.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Typesetting Machine Operator 40', 'godfrey.mitchell', 'gmckenzie', 'Omnis placeat quia modi voluptas. Repellat quod maxime ducimus culpa. Minima accusamus vero quisquam dolorem illo sunt quas. Quos odit consectetur maxime in molestiae.', '8', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Typesetting Machine Operator 40', 'godfrey.mitchell', 'rath.maximus', 'Voluptas aut accusantium est dolorem eum eligendi aliquid. Perferendis incidunt autem nulla ut aut officia. Quia deleniti quia similique quia ut mollitia architecto et.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Typesetting Machine Operator 40', 'godfrey.mitchell', 'treutel.hosea', 'Voluptatem omnis non nulla ipsum dolores odit eveniet. Ab aperiam laborum dolores veniam consectetur. Dolores suscipit fugit et ad vero.', '18', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Film Laboratory Technician 41', 'mack22', 'carlie.klocko', 'Sint voluptatem iste non necessitatibus. Tempore quisquam ut sed quam sit sed consequuntur. Sed provident nihil quis incidunt sunt cum placeat.', '17', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Film Laboratory Technician 41', 'mack22', 'treutel.hosea', 'Ea qui ut amet aliquid illum repellendus voluptatem. Alias aut illo nam facere. Ducimus aut totam voluptas nostrum. Aliquid minima saepe adipisci asperiores aliquid qui iusto qui.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Film Laboratory Technician 41', 'mack22', 'gutmann.briana', 'Sapiente laborum et nisi non magni voluptatem. Sapiente provident totam doloribus ducimus iusto possimus. Omnis ut consequatur architecto est quo ut.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Film Laboratory Technician 41', 'mack22', 'kling.elizabeth', 'Earum nam pariatur laborum accusamus similique veniam. Eveniet temporibus facere libero voluptatem a. Beatae ut quo recusandae reiciendis velit. Ut sit architecto quasi ratione et nulla.', '16', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Film Laboratory Technician 41', 'mack22', 'savanna06', 'Saepe commodi repellat consectetur error et laudantium iusto optio. Voluptatum sed est in placeat ex. Qui repellendus saepe culpa voluptatibus laboriosam. Ducimus pariatur ut quia quia sequi. Voluptas rem sint veritatis minima aperiam.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Telemarketer 42', 'arau', 'raphael.toy', 'Possimus quos omnis nam. Modi sit blanditiis laudantium repudiandae recusandae ullam ut fugit. Blanditiis ut sequi aut deleniti expedita quibusdam maiores. Eaque quis distinctio corrupti voluptatibus et sit dolores.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Telemarketer 42', 'arau', 'murl24', 'Qui vitae provident autem ut. Exercitationem facere vero id numquam. Officiis quam quia eaque maxime quaerat nam est. Qui ipsa aliquid ipsum doloribus. Ut dolorem velit quam facilis blanditiis autem amet.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Telemarketer 42', 'arau', 'cemard', 'Ut quia vero quia sunt sit. Nihil dolore perspiciatis laboriosam in nam et quo. Vel commodi aut autem. Cupiditate dolorem deserunt omnis quibusdam voluptas praesentium fuga.', '5', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Telemarketer 42', 'arau', 'victor03', 'Non sed eligendi eaque consequatur. Neque quo vel beatae. Dolore enim qui rerum voluptatem. Molestiae voluptatem illo nihil in.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Telemarketer 42', 'arau', 'wmarquardt', 'Eligendi ea repellat in consequuntur iure sed. Architecto vitae occaecati qui nemo. Quia vel quae iste consectetur incidunt.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Telemarketer 42', 'arau', 'dwalker', 'Amet laudantium aperiam et. Qui perferendis est praesentium et ut. Non provident modi dolores sapiente natus tempore et sint.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Anthropologist OR Archeologist 43', 'mikel05', 'murl24', 'Sapiente pariatur sequi aut nisi et ut est. Nulla excepturi optio modi autem nemo sit quos. Consequatur quisquam dicta incidunt nam deserunt eos aut corrupti.', '8', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Anthropologist OR Archeologist 43', 'mikel05', 'berneice95', 'Occaecati sequi voluptatum ea sunt. Corrupti minus praesentium nisi repellendus rerum ex et. Culpa aspernatur error quisquam. Quo asperiores voluptas in animi.', '21', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Anthropologist OR Archeologist 43', 'mikel05', 'kiana52', 'Provident vel perspiciatis enim aspernatur asperiores qui accusantium. Ut aperiam nam sunt et atque et. Iusto explicabo ullam nemo repellendus ut error cum. Molestiae ea mollitia sit ut voluptas ut.', '13', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Anthropologist OR Archeologist 43', 'mikel05', 'jsimonis', 'Reiciendis reprehenderit laborum quasi numquam ut ut ut exercitationem. Consectetur molestiae nihil ipsum dolorum enim provident. Ad enim vero dicta eum voluptates.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Precision Mold and Pattern Caster 44', 'augustus.zieme', 'lucy.larkin', 'Sed delectus sapiente voluptatem quasi eos nobis sunt. Aliquam tempore corporis dolorem distinctio sequi vel. Quaerat dignissimos omnis quod.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Precision Mold and Pattern Caster 44', 'augustus.zieme', 'rath.maximus', 'Officia voluptatem quis quidem sunt reiciendis. Quia et aut reiciendis voluptate consequatur. Voluptatem qui sequi et omnis praesentium quod. Laboriosam iusto ab aperiam soluta eos.', '24', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Precision Mold and Pattern Caster 44', 'augustus.zieme', 'llewellyn24', 'Excepturi est quam qui ipsum. Quibusdam nostrum culpa facilis distinctio ducimus. Maxime ratione sunt quis rem omnis consequatur. Ullam perspiciatis libero voluptate et.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Precision Mold and Pattern Caster 44', 'augustus.zieme', 'walter.carli', 'Sed nulla incidunt magni ea non. Officiis voluptas velit reiciendis ducimus architecto et officia expedita. Laborum unde distinctio omnis enim velit et. Harum sit facere nisi voluptas ut.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Precision Mold and Pattern Caster 44', 'augustus.zieme', 'jewell.gaylord', 'Eius deserunt quos ea fugiat aut quos asperiores. Praesentium est facilis molestiae nihil eveniet nam ut. Explicabo voluptates enim autem quis quia.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Precision Mold and Pattern Caster 44', 'augustus.zieme', 'junior.runte', 'Quia est neque voluptas officia nihil. Repellendus aspernatur eligendi aut facilis deleniti vel. Fugit numquam delectus quam quo rem cum nemo. Est esse accusamus eligendi magnam aut. Quae saepe aliquam sunt porro labore.', '10', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Highway Patrol Pilot 45', 'cemard', 'tgorczany', 'Aliquid aspernatur neque unde repudiandae. Aut ex placeat quod quam itaque dignissimos dolor. Dolor molestiae sint laborum atque.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Highway Patrol Pilot 45', 'cemard', 'aniya.champlin', 'Non sed quisquam est nobis similique dolor molestiae. Et incidunt facere ratione. Molestias atque et explicabo maxime consequuntur mollitia. Voluptas non deleniti quisquam in qui.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Highway Patrol Pilot 45', 'cemard', 'sedrick30', 'Ipsam quasi consequatur alias molestiae architecto nisi nam. Officia facere numquam odio. Ea nostrum rem quia ullam.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Highway Patrol Pilot 45', 'cemard', 'ylittel', 'Ipsam ipsum harum voluptas laudantium dolores. Voluptatem dolor dolor iure. Odit non dignissimos consequatur et commodi necessitatibus et quam.', '17', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Highway Patrol Pilot 45', 'cemard', 'chaya.witting', 'Molestiae et neque assumenda esse numquam et. Maxime qui cumque suscipit placeat molestiae laboriosam quis minus. Dolor ratione laudantium ut.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Highway Patrol Pilot 45', 'cemard', 'kreiger.wava', 'Ratione temporibus est aut autem et et id. Qui non magni perspiciatis omnis. Blanditiis in praesentium autem ipsum est aliquam.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Recyclable Material Collector 46', 'proob', 'jsimonis', 'Possimus eaque deserunt ut in rerum veniam pariatur. Provident iste est cupiditate numquam necessitatibus odio nostrum dolorem. Delectus dolore in pariatur qui et est nulla. Eos in occaecati quidem delectus quas voluptate.', '8', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Recyclable Material Collector 46', 'proob', 'floyd.okon', 'Ut quisquam rerum ducimus quae eum occaecati. Iure cumque ut sequi. Et maiores voluptates temporibus fuga voluptatem. Et perspiciatis ipsa alias illo ut magnam consectetur.', '10', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Recyclable Material Collector 46', 'proob', 'jennie18', 'Vitae labore molestiae possimus quo sunt ea voluptatem deleniti. Accusantium deleniti quae pariatur numquam earum voluptas rem. Ut dolores dolore nulla aliquam perferendis qui omnis ipsam.', '14', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Recyclable Material Collector 46', 'proob', 'tgorczany', 'Voluptatibus placeat nulla expedita nihil ipsum necessitatibus ut rerum. Qui odit ipsum quaerat aut consequatur facilis.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Recyclable Material Collector 46', 'proob', 'cemard', 'Nobis pariatur non placeat doloribus numquam et. Quia ut qui cupiditate dolorum voluptatibus. Minus error earum dolores cupiditate. Eum ut qui est.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Music Composer 47', 'brenden.mcdermott', 'femard', 'Voluptate a id ut porro et error. Asperiores vitae qui dolor et. Enim labore cupiditate doloremque molestiae qui.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Music Composer 47', 'brenden.mcdermott', 'chaya.witting', 'Fugit incidunt eos et. Nesciunt enim labore nemo veritatis est. Praesentium similique sed qui totam. Voluptate nisi voluptatem mollitia totam placeat et ipsam.', '26', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Music Composer 47', 'brenden.mcdermott', 'jerome.robel', 'In voluptatibus distinctio molestiae. Qui earum et quasi odit quos totam. Ab sunt possimus voluptatum at minima eos velit.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Music Composer 47', 'brenden.mcdermott', 'kuhic.brando', 'Quam laudantium tempora ducimus assumenda. Dolores illum voluptas aut eligendi ad ipsam.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Music Composer 47', 'brenden.mcdermott', 'zhodkiewicz', 'Similique et sit non illum voluptates. Dolore quia autem rerum perspiciatis. Doloremque rem ipsum blanditiis quam nisi eius ad. Assumenda nemo officiis veniam libero.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Music Composer 47', 'brenden.mcdermott', 'llewellyn24', 'Quia ex consectetur mollitia modi sunt aut mollitia sequi. Et quam qui maxime ea quasi iste ipsum. Placeat ducimus voluptatem animi.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Plating Operator 48', 'kozey.jennifer', 'zhodkiewicz', 'Iure totam aut consequatur repudiandae. Tempore dicta ducimus aut autem minus animi. Ipsa veritatis et quasi officiis rerum dolorem. Fuga a culpa minus vitae quo.', '14', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Plating Operator 48', 'kozey.jennifer', 'eldon.hoeger', 'Veritatis sed tempora tempora laborum libero accusamus adipisci eveniet. Fuga sed excepturi rerum aut harum. Laboriosam dolore qui voluptas sit ut.', '6', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Plating Operator 48', 'kozey.jennifer', 'kuhic.brando', 'Consequatur quod consequatur sunt ex facilis suscipit sint. Cupiditate deserunt fugit asperiores culpa in. In alias nesciunt et autem et.', '17', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Plating Operator 48', 'kozey.jennifer', 'raphael.toy', 'Illo consequatur non delectus modi est quo. Non voluptatem reprehenderit et soluta dignissimos dignissimos minima aut. Culpa harum quis voluptatibus dolorum voluptatem velit ratione et. Sed vero fuga eum qui et.', '13', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Plating Operator 48', 'kozey.jennifer', 'lbins', 'Et molestiae neque corporis excepturi rerum non dicta. Quia esse nihil voluptas iure illum assumenda dolorum. Sunt sint ut veritatis. Debitis necessitatibus molestiae eaque nam ut minus quia.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('HR Specialist 49', 'blanca43', 'carlee.haag', 'Voluptatum distinctio dolores soluta facilis eum. Repudiandae fugiat ut nihil. Veritatis ab vitae magnam qui omnis harum. Alias vel porro non qui adipisci veniam et possimus. Eum quis veritatis quia in et ipsa.', '1', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('HR Specialist 49', 'blanca43', 'godfrey.mitchell', 'Debitis minima et totam dolores eligendi accusantium. Non eaque quia aut accusantium quia cumque libero. Debitis qui sed ut culpa nemo aut.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('HR Specialist 49', 'blanca43', 'francisco81', 'Molestiae iusto dolorum officiis labore eligendi necessitatibus odio. Incidunt soluta iste corporis. Eaque a voluptas quasi perferendis.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('HR Specialist 49', 'blanca43', 'carleton.buckridge', 'Sit sapiente id voluptas adipisci. Non et tempore cumque omnis. Qui eius quas rerum explicabo. Quibusdam doloremque cum rerum ratione placeat laborum neque.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Carpenter Assembler and Repairer 50', 'eldon.hoeger', 'ritchie.josefina', 'Officiis optio alias sapiente at molestiae dolorem. Occaecati nostrum quasi ipsa voluptatum libero quae voluptatibus. Quo totam dolor nostrum minus asperiores omnis suscipit. Corporis culpa voluptas dolore et.', '17', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Carpenter Assembler and Repairer 50', 'eldon.hoeger', 'lexus.marks', 'Eligendi quibusdam nulla suscipit aliquam. Doloremque culpa pariatur sint adipisci. Qui odit non est eveniet ad ut sunt. Consectetur veritatis culpa placeat eos omnis ut earum.', '17', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Carpenter Assembler and Repairer 50', 'eldon.hoeger', 'femard', 'Fugiat dolores ut dolores. Ex consequatur nesciunt omnis natus id necessitatibus. Quaerat et quae minima.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Carpenter Assembler and Repairer 50', 'eldon.hoeger', 'junior.runte', 'Non qui harum possimus eos mollitia. Id at ipsam omnis dignissimos. Consequuntur aut rem quod nam.', '11', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Carpenter Assembler and Repairer 50', 'eldon.hoeger', 'lbins', 'Veritatis rerum quae aut animi fugit et nesciunt qui. Sapiente quaerat nesciunt aut omnis. Voluptate vitae eligendi adipisci vero ut reiciendis. Asperiores voluptas sunt illo a consequatur necessitatibus. Ea asperiores unde quo.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Library Assistant 101', 'shanel.wunsch', 'rowe.herminio', 'Quod illo minus pariatur pariatur neque quis. Nihil illo iusto ratione et modi ipsam dolorem. Iusto tempore dolorum id dolores odio ipsam illum. Voluptates ea quaerat sed debitis corporis rerum sint.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Library Assistant 101', 'shanel.wunsch', 'marks.ilene', 'Velit autem pariatur assumenda vero. Repudiandae eum recusandae qui in. Mollitia voluptatibus est iusto dolores non. Rerum distinctio et quidem dicta sunt tempora. Animi nulla et est ea aut qui.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Library Assistant 101', 'shanel.wunsch', 'berneice95', 'Dolore fuga eveniet esse cumque aut illum. Dolorem architecto nemo laudantium voluptas veritatis. Delectus nisi consequatur placeat voluptatum neque est libero. Reprehenderit aut voluptatem sed error facere eligendi.', '8', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Library Assistant 101', 'shanel.wunsch', 'aniya.champlin', 'Eaque sunt a sed consequatur. Sequi vel est rerum voluptate consequuntur. Accusamus et nesciunt sapiente doloremque eos qui et fuga. Aut et quo praesentium labore nihil saepe.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Library Assistant 101', 'shanel.wunsch', 'mack22', 'Qui quos blanditiis voluptate rerum consequuntur voluptas. Et repellat nemo officia rerum vero exercitationem. Adipisci dolores nulla sequi libero dolor nesciunt. Qui mollitia excepturi vel temporibus qui qui.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Library Assistant 101', 'shanel.wunsch', 'francisco81', 'Facere voluptate laboriosam mollitia. Reprehenderit sint maiores placeat. Et quo soluta sint facilis exercitationem non. Iste pariatur quo sint velit temporibus et officia.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Aircraft Launch Specialist 102', 'lexus.marks', 'carlee.haag', 'Est expedita repellat ut aut sed. Minus in dolorem velit ipsam praesentium. Nobis enim error modi quaerat. Sit officia est assumenda.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Aircraft Launch Specialist 102', 'lexus.marks', 'gutmann.missouri', 'Voluptatem corporis aut rerum. Cupiditate eos rem possimus dolorum. Nisi pariatur ut et est. Facere sed iure rerum at similique qui.', '15', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Aircraft Launch Specialist 102', 'lexus.marks', 'grady.zelda', 'Mollitia vitae autem voluptatibus dolorem eveniet quia voluptate. Consequatur ut voluptatum inventore recusandae. Non eos cum qui. Maiores eum eum voluptatem non unde.', '1', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Aircraft Launch Specialist 102', 'lexus.marks', 'streich.dorothy', 'Aut non et ut placeat sed. Consequatur consectetur ut ut molestiae. Tempora est consequatur eum ea expedita necessitatibus.', '14', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Aircraft Launch Specialist 102', 'lexus.marks', 'kuhic.brando', 'Quisquam doloremque architecto perferendis dolor quod. Ratione qui sed libero minus error. Reprehenderit rerum tenetur ipsam qui eius.', '11', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Aircraft Launch Specialist 102', 'lexus.marks', 'myrtle35', 'Quod nisi illum aut architecto rerum debitis. Rem harum veritatis voluptatibus odit facere aut architecto. Voluptate sunt perferendis repellat tenetur deleniti.', '15', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('User Experience Researcher 103', 'carlie.klocko', 'pierre01', 'Ullam hic hic et odit ut occaecati. Esse enim tempora eos quia.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('User Experience Researcher 103', 'carlie.klocko', 'tbailey', 'Quae voluptate explicabo ea aspernatur eum quisquam et. Consectetur dignissimos quos soluta delectus cupiditate voluptatem omnis praesentium. Minus aliquid odit qui non autem. Reiciendis incidunt sit numquam expedita aut nulla sit.', '26', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('User Experience Researcher 103', 'carlie.klocko', 'sedrick30', 'Quidem saepe minus aliquam consequuntur quo. Libero facilis eum sunt error cumque.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('User Experience Researcher 103', 'carlie.klocko', 'gutmann.briana', 'Deleniti distinctio consequuntur eaque repellat nemo. Animi aspernatur id est rerum. Nulla aut quis ipsa. Sit ut fuga reiciendis sit sunt.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Airframe Mechanic 104', 'jennie18', 'bryce.maggio', 'Consequatur consequatur provident et inventore. Et ipsa odio illum eos. Pariatur quo qui deleniti nemo rerum aut debitis temporibus.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Airframe Mechanic 104', 'jennie18', 'blanca43', 'Aut nihil quo consequuntur minima ab consequatur. Est fuga a deleniti aut sint aut asperiores.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Airframe Mechanic 104', 'jennie18', 'gmckenzie', 'Dicta rerum neque esse id debitis ullam. Incidunt ad praesentium dolores numquam. Impedit quisquam autem ut cum.', '4', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Airframe Mechanic 104', 'jennie18', 'olson.gaetano', 'Neque adipisci iste repellat modi dolore tempora. Quam tempore sit voluptate tenetur cupiditate. Explicabo accusantium voluptatem dolore velit officiis eum blanditiis harum.', '11', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Airframe Mechanic 104', 'jennie18', 'bruce82', 'Molestiae aut ipsam illo eum est quo sapiente nihil. Tempora quam autem fuga rerum alias non non autem. Quasi eveniet est doloremque modi qui eos rem.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Airframe Mechanic 104', 'jennie18', 'proob', 'Molestiae aut eos eveniet distinctio corrupti qui natus. Nisi delectus dignissimos esse repellendus autem. Fugiat iusto recusandae beatae facilis. Est qui ipsa est atque expedita est commodi.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Conveyor Operator 105', 'cemard', 'luettgen.winfield', 'Asperiores ea voluptas qui quia. Qui qui aut animi distinctio reiciendis voluptas et. Quod qui voluptas maiores ex in consectetur assumenda.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Conveyor Operator 105', 'cemard', 'weston.langosh', 'Quia eos molestiae quod quia debitis ut impedit. Ullam error iusto sint ipsa. Occaecati facilis et modi. Aliquid explicabo maiores facilis suscipit.', '11', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Conveyor Operator 105', 'cemard', 'zhodkiewicz', 'Dolores vel repellat ea asperiores eveniet atque. Totam occaecati et consequuntur repellendus rerum dolor. Quia rerum natus veritatis est tenetur non. Expedita magni vero molestias velit consequuntur ex voluptas. Praesentium natus temporibus deserunt voluptatem ut.', '21', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Conveyor Operator 105', 'cemard', 'gutmann.briana', 'Earum non ex distinctio ut. Molestiae neque voluptatem occaecati et asperiores qui. Tempora adipisci in voluptatibus sed suscipit.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Real Estate Appraiser 106', 'lexus.marks', 'hschuppe', 'Et dolores nesciunt et rem rerum consequatur minus dolorem. Architecto quam asperiores est qui ut officia. Corrupti est et voluptas cumque ipsam quis nam sunt. Minima at vitae magnam sapiente quas quam cupiditate.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Real Estate Appraiser 106', 'lexus.marks', 'gutmann.briana', 'Iste nostrum repellendus dicta repellat. Tenetur maxime ducimus voluptatem ipsum et ratione. Recusandae dolores nisi ducimus et eos architecto. Expedita aperiam eius unde ipsum provident. Dolorum laudantium eaque sed porro eius dolore voluptates.', '31', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Real Estate Appraiser 106', 'lexus.marks', 'walter.carli', 'Iure hic repudiandae veniam natus sint corrupti. Et doloremque reiciendis ut. Corrupti velit in rerum architecto et optio.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Real Estate Appraiser 106', 'lexus.marks', 'marques.ziemann', 'Sed reprehenderit exercitationem aut vel consequatur quod minus et. Autem est ipsum dolor aliquam. Nobis aut voluptas enim rem reiciendis.', '24', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Real Estate Appraiser 106', 'lexus.marks', 'pierre01', 'Porro quam voluptates hic. Voluptas et laboriosam soluta sit quae eos. Doloremque recusandae vero nisi explicabo aperiam illum. Praesentium voluptates iste ut porro dignissimos.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Structural Metal Fabricator 107', 'ritchie.josefina', 'gmckenzie', 'Deserunt voluptatem tempore quisquam exercitationem. Adipisci quidem natus maxime est non qui magni sit. Corporis quaerat voluptatem officiis vel.', '18', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Structural Metal Fabricator 107', 'ritchie.josefina', 'dwalker', 'Voluptas mollitia in explicabo eum. Sapiente ullam aut nihil numquam alias laborum explicabo. Non exercitationem quod iure harum. Architecto architecto qui perspiciatis adipisci qui.', '8', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Structural Metal Fabricator 107', 'ritchie.josefina', 'chaya.witting', 'Temporibus ad ipsa aspernatur rerum deleniti quos labore. Est voluptatem quidem qui in occaecati officiis dolore. Tempora veniam autem aliquam nihil. Repellat occaecati esse reprehenderit est laboriosam facilis aspernatur.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Structural Metal Fabricator 107', 'ritchie.josefina', 'kreiger.wava', 'Recusandae quis iure sunt aut est corrupti aut odio. In aut est et ea corrupti. Unde hic repellat sapiente provident iure qui id placeat. Maiores sequi officiis officiis placeat rerum corrupti amet nobis.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Structural Metal Fabricator 107', 'ritchie.josefina', 'kiana52', 'Rerum libero eos quas quia. Qui aliquam nihil est impedit dicta ad. Et quasi quas non nemo magni aspernatur nostrum.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Gas Processing Plant Operator 108', 'treutel.hosea', 'zechariah.boyer', 'Quasi soluta sit officiis delectus numquam culpa. Quia qui consequatur voluptas non vitae adipisci. Et quibusdam est mollitia voluptates quae laborum ut. Fuga aut doloribus et ut recusandae libero culpa sit. Eaque temporibus quis magnam repellendus aliquam.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Gas Processing Plant Operator 108', 'treutel.hosea', 'margarete12', 'Velit ullam et doloribus. Ut sequi sapiente vero consectetur ullam veritatis autem. In dolorem fugit doloribus voluptates libero quasi. Fugit nam facilis sunt molestiae cum consectetur et.', '26', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Gas Processing Plant Operator 108', 'treutel.hosea', 'christiana25', 'Dicta ab et est non accusantium libero dolor. Unde suscipit ut rerum beatae non voluptatem. Sit totam quia omnis suscipit voluptatem.', '39', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Gas Processing Plant Operator 108', 'treutel.hosea', 'bruce82', 'Numquam id non odio voluptatem dolorem ad. Ut numquam ipsa non maiores. Magnam voluptates quaerat dolor.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Gas Processing Plant Operator 108', 'treutel.hosea', 'junior.runte', 'Voluptatum nobis quasi qui hic vitae aperiam autem. Qui qui vel expedita beatae recusandae. Dolores autem voluptas et provident dolores excepturi omnis.', '5', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Chemical Equipment Tender 109', 'walter.carli', 'carlee.haag', 'Praesentium id sit illo. Laboriosam provident aliquid dicta et.', '8', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Chemical Equipment Tender 109', 'walter.carli', 'gutmann.briana', 'Nam et deleniti porro cum numquam ut qui est. Rerum reiciendis et autem. Autem optio et sit vitae quo qui. Praesentium ex sint perspiciatis.', '11', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Chemical Equipment Tender 109', 'walter.carli', 'bruce82', 'Nemo molestiae labore iure. Sunt natus itaque voluptatibus vel. Eligendi sint est illum et culpa harum.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Chemical Equipment Tender 109', 'walter.carli', 'deondre.durgan', 'Omnis et minima autem veritatis beatae sint harum. Ab maxime et minima sunt natus non. Voluptate nesciunt at nesciunt provident quos omnis laboriosam. Earum ut reiciendis voluptas facere quis.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Chemical Equipment Tender 109', 'walter.carli', 'ritchie.josefina', 'Adipisci quibusdam libero itaque vel iure eveniet quo. Laboriosam quia et dolores eaque in voluptas. Excepturi vel dolores aut exercitationem dolor. Eligendi voluptas enim ex aut maxime.', '26', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Chemical Equipment Tender 109', 'walter.carli', 'jerome.robel', 'Numquam est consectetur ipsum aspernatur eaque eveniet. Nulla hic possimus tenetur ut. Et dolorum aut repellat fuga est totam est. Esse dolorem eos alias eaque quidem velit provident.', '19', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Command Control Center Specialist 110', 'farrell.berniece', 'brenden.mcdermott', 'Numquam eos beatae rerum qui voluptatem aspernatur voluptate. Autem similique perspiciatis expedita quia consequatur et. Minus explicabo porro natus numquam et quia dicta.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Command Control Center Specialist 110', 'farrell.berniece', 'lucy.larkin', 'Ducimus magni eos officiis a nihil non quia minima. Ut nihil et omnis illo qui. Sit sed expedita eos reprehenderit qui.', '16', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Command Control Center Specialist 110', 'farrell.berniece', 'treutel.hosea', 'Quia et vero sed deserunt eveniet temporibus. Eveniet et impedit aut ut. Blanditiis molestias quam et totam inventore praesentium vero aut. In eveniet atque ducimus quibusdam enim dolores possimus.', '2', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Command Control Center Specialist 110', 'farrell.berniece', 'lbins', 'Sit non natus provident quam nobis quia. Accusantium voluptas ut pariatur. Fugit et vel dolore non sunt eveniet placeat. Molestiae autem distinctio voluptatem ratione dolore.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Command Control Center Specialist 110', 'farrell.berniece', 'okessler', 'Maiores quos explicabo possimus adipisci omnis numquam sed. Eum eum itaque distinctio adipisci voluptatem quisquam. Et harum magni nulla est.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Command Control Center Specialist 110', 'farrell.berniece', 'chaya.witting', 'Pariatur non laboriosam dolorum laboriosam dignissimos et adipisci. Et vero numquam aperiam dolorem. Suscipit natus ut fugiat non.', '34', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Human Resource Director 111', 'mclaughlin.major', 'hschuppe', 'Expedita praesentium atque iste quod suscipit. Consequatur voluptatum rem quae pariatur et. Tempora odio saepe et. Velit enim occaecati facere nesciunt voluptatum sapiente sed.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Human Resource Director 111', 'mclaughlin.major', 'tgorczany', 'Et sint et quos natus tempora aliquam. Ut qui sed dolorem veritatis ea qui et.', '25', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Human Resource Director 111', 'mclaughlin.major', 'tbailey', 'Laborum quo voluptatem aut qui adipisci. Quaerat omnis non quas sint exercitationem. Ut et eveniet ad suscipit qui deleniti. Ut voluptates sit quam deleniti expedita minima et.', '8', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Human Resource Director 111', 'mclaughlin.major', 'eldon.hoeger', 'Omnis veritatis ipsum expedita delectus ipsam doloribus. Sed perspiciatis praesentium quod laudantium veritatis hic. Adipisci ducimus nisi quas aut aut sed. Dolorum ut porro ratione aut veritatis.', '21', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Economist 112', 'kamille.mann', 'marks.ilene', 'Sunt culpa amet et. Quis blanditiis consequatur atque quae. Quasi eos mollitia dolor sed.', '11', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Economist 112', 'kamille.mann', 'christiana25', 'Aliquid iusto eum consequatur odio voluptatum consectetur. Inventore earum ad libero vel inventore. Distinctio omnis expedita consequatur porro vel assumenda ipsam.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Economist 112', 'kamille.mann', 'gmckenzie', 'Non voluptas corrupti debitis totam. Similique quia ipsam cum debitis. Ad mollitia nostrum deleniti non cupiditate esse dolor. Eum id et at voluptatum.', '16', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Economist 112', 'kamille.mann', 'walter.carli', 'Repellat quia nihil soluta explicabo rerum. Fugit labore autem omnis nobis.', '11', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Economist 112', 'kamille.mann', 'lexus.marks', 'Et omnis quas deserunt. Dolorem veritatis aut ullam atque. Perspiciatis id quidem odit qui deleniti enim officia iusto.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Economist 112', 'kamille.mann', 'marc19', 'Dolor adipisci doloribus nihil dolorem ad qui. Aut consequatur fuga enim et. Quidem dolores placeat et a qui eum. Eum qui exercitationem iste eius perferendis.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Production Laborer 113', 'jsimonis', 'mikel05', 'Facere sunt ad quasi vitae accusamus beatae. Sit atque sint ut omnis. Omnis et architecto quia illo mollitia animi odit.', '10', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Production Laborer 113', 'jsimonis', 'rowe.herminio', 'In sapiente quis quidem et eos sed asperiores. Molestiae sit aliquam libero nihil. Aspernatur laboriosam consequatur ut occaecati amet dolorum aut accusantium.', '15', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Production Laborer 113', 'jsimonis', 'cemard', 'Necessitatibus sapiente enim voluptatibus minima qui qui quidem. Ducimus unde eligendi voluptatem libero. Eligendi architecto officia unde nisi eos.', '4', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Production Laborer 113', 'jsimonis', 'llewellyn24', 'Voluptatem ut ut ut eius vel dolores. Aut minus qui eos voluptatum. Sunt voluptate qui et quo explicabo deserunt.', '32', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Furniture Finisher 114', 'yabshire', 'shanel.wunsch', 'Nesciunt tempore consequuntur rerum cumque doloribus. Cumque est molestiae placeat aperiam cumque quo. Amet beatae neque aut omnis distinctio possimus autem.', '26', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Furniture Finisher 114', 'yabshire', 'ynitzsche', 'Repudiandae incidunt minus reprehenderit dignissimos provident quod. Cum accusantium sit soluta cupiditate consequuntur nulla.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Furniture Finisher 114', 'yabshire', 'tbailey', 'Ipsa vero nihil voluptatem consequatur. Quis rerum nesciunt officiis et. Atque dolor aut voluptas et harum. Aperiam non quia suscipit rerum.', '9', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Furniture Finisher 114', 'yabshire', 'carlee.haag', 'Ullam et ut ullam odio. Consequatur ipsam quam repellat. Aliquam aliquam iure placeat repellat.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Furniture Finisher 114', 'yabshire', 'margarete12', 'Autem totam dolores dolorum exercitationem occaecati cupiditate. Quos omnis modi nobis voluptate id. Quisquam et quas cumque quam fuga pariatur sit voluptas.', '13', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Furniture Finisher 114', 'yabshire', 'kreiger.wava', 'Est dignissimos vero ratione commodi. Placeat minima voluptatem necessitatibus et. Aperiam quas perferendis cumque. Earum temporibus voluptatem eum nulla nesciunt itaque. Reprehenderit voluptas tempore pariatur quia rerum corrupti nam.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fashion Model 115', 'schmitt.rachel', 'arau', 'Autem dolore eos molestiae minus in iure. In minus libero et est quas tempore.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fashion Model 115', 'schmitt.rachel', 'coberbrunner', 'Optio similique odit numquam est consequatur quis. Culpa et recusandae voluptatem ipsum. Rerum consequuntur sed officiis.', '13', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fashion Model 115', 'schmitt.rachel', 'kamille.mann', 'Ratione ut et at beatae. Dolores est error vel saepe sed qui sed sunt. Et nam odio et quia aliquam voluptas. Iusto non dolore tempore.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fashion Model 115', 'schmitt.rachel', 'carlie.klocko', 'Suscipit culpa quidem deleniti quas quidem id dolorem neque. Reiciendis tenetur deserunt eius. Molestias eius rerum et exercitationem qui. Veritatis nisi omnis harum eligendi sunt.', '27', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Fashion Model 115', 'schmitt.rachel', 'llewellyn24', 'Voluptatem et in dicta. Eius natus eveniet sit autem iure assumenda suscipit. Eum rem ut dolores et iusto. Debitis excepturi atque natus saepe totam perspiciatis ut. Nihil occaecati non commodi eaque perspiciatis ea debitis.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Forming Machine Operator 116', 'gutmann.briana', 'rowe.herminio', 'Tempore temporibus aut delectus occaecati. Qui ea ea odit voluptas ea quo impedit a. Alias nobis atque totam labore impedit praesentium. Cum ratione et quae doloribus sed sequi natus a.', '40', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Forming Machine Operator 116', 'gutmann.briana', 'jerome.robel', 'Molestiae dolor itaque vero sed magni. Est velit sit facere omnis dolor. Qui nostrum architecto itaque aut et dolorem ducimus. Et laboriosam nesciunt facilis sed fugit.', '22', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Forming Machine Operator 116', 'gutmann.briana', 'jewell.gaylord', 'Eveniet in voluptatem facilis explicabo. Et numquam minus dolor. Fugiat id qui inventore minima minima dolore impedit accusantium. Facere corrupti voluptatum quam et inventore.', '26', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Forming Machine Operator 116', 'gutmann.briana', 'kilback.else', 'Dolorem ut cupiditate est doloribus adipisci perferendis voluptas nihil. Reiciendis eaque ipsum libero. Labore et adipisci enim qui unde cum magnam.', '33', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Human Resource Manager 117', 'tgorczany', 'arau', 'Blanditiis qui doloribus id libero aut nihil. Nobis aut dolore itaque illo ipsam corporis non. Hic atque magni a sed facilis non. Atque quae laborum quod recusandae earum officiis quae provident.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Human Resource Manager 117', 'tgorczany', 'christiana25', 'Hic sit magnam aut porro repellendus sed fugit. Rerum quis earum provident atque vel perspiciatis labore magni.', '29', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Human Resource Manager 117', 'tgorczany', 'myrtle35', 'Rem ea eveniet tenetur voluptatum qui. Harum itaque repellendus hic qui iure. Earum ipsum tempora velit aut beatae eveniet ut totam. Nulla possimus ratione qui quia ut unde. In ut odio distinctio nam.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Human Resource Manager 117', 'tgorczany', 'jerome.robel', 'Illo est et aut quisquam impedit qui. Rem quos cumque quibusdam voluptatem. Omnis dicta fugit provident soluta nihil quo ut. Debitis quia mollitia quia facere cupiditate at illo.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Human Resource Manager 117', 'tgorczany', 'mikel05', 'Ea beatae ut quam ea. Consequatur aut nisi pariatur incidunt. Iure quia consequatur quo ut nobis facere ipsam debitis.', '35', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Commercial and Industrial Designer 118', 'florine.jaskolski', 'dwalker', 'Iusto totam officia et eos sequi perferendis. Accusamus doloribus autem cumque. Dolorem eius ullam explicabo consequatur esse tempore eaque.', '14', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Commercial and Industrial Designer 118', 'florine.jaskolski', 'eldon.hoeger', 'Minima consequatur itaque molestiae magnam dolore quidem. Aut omnis est deserunt fugit. Iusto commodi repellendus laborum non veritatis praesentium.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Commercial and Industrial Designer 118', 'florine.jaskolski', 'emayer', 'Aliquid ex eligendi doloremque. Expedita odio magnam autem sit quo iste est. Nulla ut facere dolorem.', '23', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Commercial and Industrial Designer 118', 'florine.jaskolski', 'jsimonis', 'Enim quod nostrum excepturi. Quia et quo non. Iure rerum ut libero nulla corporis et animi sit. Voluptatem ut non vel tempore voluptate architecto mollitia.', '3', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Commercial and Industrial Designer 118', 'florine.jaskolski', 'aniya.champlin', 'Aut ipsa ullam quisquam voluptatem ab velit eum. Quidem itaque inventore dolorum molestias voluptatibus vero qui. Et qui quia id veritatis.', '30', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Brattice Builder 119', 'florine.jaskolski', 'francisco81', 'Animi ex facere necessitatibus consequuntur. Voluptate dolore numquam consectetur quaerat quia. Voluptatem cum quia in. Dolor est tempora est qui sit in.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Brattice Builder 119', 'florine.jaskolski', 'carlee.haag', 'Est sed modi nesciunt molestiae possimus. Culpa a eos eligendi ab beatae et. Architecto praesentium repudiandae doloribus quas delectus.', '6', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Brattice Builder 119', 'florine.jaskolski', 'ylittel', 'Alias qui maiores distinctio ad optio enim asperiores. Earum voluptatem occaecati quam. Incidunt amet voluptas dolore quis quaerat. Sunt eos dignissimos fugiat rerum reprehenderit necessitatibus quia et.', '28', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Brattice Builder 119', 'florine.jaskolski', 'carlie.klocko', 'Atque occaecati voluptas fuga. Sapiente quod illum sunt distinctio quia sint. Qui quam fugit facilis velit.', '12', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Stationary Engineer 120', 'chaya.borer', 'treutel.hosea', 'Nemo cupiditate in assumenda nemo rerum veniam et. Veritatis quo omnis doloribus doloribus voluptas. Facilis ut et eum dolores aliquam recusandae sequi. Ut ex dolore assumenda vitae.', '9', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Stationary Engineer 120', 'chaya.borer', 'kreiger.wava', 'Ut et non eius iure nisi sequi. Et voluptas et qui velit fuga consequatur. Impedit voluptas sed in atque sapiente. Architecto quia sit vel illo suscipit.', '38', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Stationary Engineer 120', 'chaya.borer', 'godfrey.mitchell', 'Voluptatem aut modi sapiente vero in quo. Dolorum in officiis eius vel deserunt dolor harum. Natus delectus earum soluta minima porro.', '20', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Stationary Engineer 120', 'chaya.borer', 'gutmann.missouri', 'Pariatur sit vero culpa iusto eaque quia reprehenderit libero. Qui vel ex quasi ea consequatur. Nemo rerum enim iure quis nisi.', '36', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Stationary Engineer 120', 'chaya.borer', 'lucy.larkin', 'Est tempore qui suscipit voluptates impedit incidunt magni. Sed temporibus facere sunt. Nobis velit adipisci qui et qui minus.', '18', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Safety Engineer 121', 'gmckenzie', 'jerome.robel', 'Aut omnis amet aliquam nisi recusandae. Facere aperiam modi accusamus excepturi reiciendis est. Officia illum occaecati minima voluptas.', '31', '2017-10-17 00:00:00', '2017-10-18 00:00:00');
INSERT INTO `Bid` (`task_title`, `task_creator_username`, `bidder_username`, `details`, `amount`, `created_at`, `updated_at`) VALUES ('Safety Engineer 121', 'gmckenzie', 'tbailey', 'Unde et ad dicta tenetur. Omnis ipsum quasi a cumque enim et. Aut quo sapiente ipsa illo quos voluptates et.', '37', '2017-10-17 00:00:00', '2017-10-18 00:00:00');