-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrain.json
12102 lines (12102 loc) · 887 KB
/
train.json
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
[
{
"example_id": 5655493461695504401,
"question_text": "which is the most common use of opt-in e-mail marketing",
"long_answer_candidates": [
{
"end_token": 170,
"start_token": 14,
"top_level": true
},
{
"end_token": 169,
"start_token": 15,
"top_level": false
},
{
"end_token": 103,
"start_token": 52,
"top_level": false
},
{
"end_token": 102,
"start_token": 53,
"top_level": false
},
{
"end_token": 156,
"start_token": 103,
"top_level": false
},
{
"end_token": 155,
"start_token": 104,
"top_level": false
},
{
"end_token": 321,
"start_token": 170,
"top_level": true
},
{
"end_token": 180,
"start_token": 171,
"top_level": false
},
{
"end_token": 186,
"start_token": 180,
"top_level": false
},
{
"end_token": 224,
"start_token": 186,
"top_level": false
},
{
"end_token": 222,
"start_token": 188,
"top_level": false
},
{
"end_token": 194,
"start_token": 189,
"top_level": false
},
{
"end_token": 200,
"start_token": 194,
"top_level": false
},
{
"end_token": 205,
"start_token": 200,
"top_level": false
},
{
"end_token": 231,
"start_token": 224,
"top_level": false
},
{
"end_token": 257,
"start_token": 231,
"top_level": false
},
{
"end_token": 255,
"start_token": 233,
"top_level": false
},
{
"end_token": 241,
"start_token": 234,
"top_level": false
},
{
"end_token": 246,
"start_token": 241,
"top_level": false
},
{
"end_token": 263,
"start_token": 257,
"top_level": false
},
{
"end_token": 281,
"start_token": 263,
"top_level": false
},
{
"end_token": 279,
"start_token": 265,
"top_level": false
},
{
"end_token": 287,
"start_token": 281,
"top_level": false
},
{
"end_token": 302,
"start_token": 287,
"top_level": false
},
{
"end_token": 300,
"start_token": 289,
"top_level": false
},
{
"end_token": 295,
"start_token": 290,
"top_level": false
},
{
"end_token": 308,
"start_token": 302,
"top_level": false
},
{
"end_token": 320,
"start_token": 308,
"top_level": false
},
{
"end_token": 318,
"start_token": 310,
"top_level": false
},
{
"end_token": 460,
"start_token": 321,
"top_level": true
},
{
"end_token": 746,
"start_token": 563,
"top_level": true
},
{
"end_token": 852,
"start_token": 746,
"top_level": true
},
{
"end_token": 869,
"start_token": 855,
"top_level": true
},
{
"end_token": 970,
"start_token": 873,
"top_level": true
},
{
"end_token": 1044,
"start_token": 970,
"top_level": true
},
{
"end_token": 1107,
"start_token": 1044,
"top_level": true
},
{
"end_token": 1175,
"start_token": 1111,
"top_level": true
},
{
"end_token": 1286,
"start_token": 1178,
"top_level": true
},
{
"end_token": 1311,
"start_token": 1292,
"top_level": true
},
{
"end_token": 1326,
"start_token": 1314,
"top_level": true
},
{
"end_token": 1629,
"start_token": 1326,
"top_level": true
},
{
"end_token": 1373,
"start_token": 1327,
"top_level": false
},
{
"end_token": 1412,
"start_token": 1373,
"top_level": false
},
{
"end_token": 1464,
"start_token": 1412,
"top_level": false
},
{
"end_token": 1516,
"start_token": 1464,
"top_level": false
},
{
"end_token": 1540,
"start_token": 1516,
"top_level": false
},
{
"end_token": 1580,
"start_token": 1540,
"top_level": false
},
{
"end_token": 1604,
"start_token": 1580,
"top_level": false
},
{
"end_token": 1628,
"start_token": 1604,
"top_level": false
},
{
"end_token": 1716,
"start_token": 1632,
"top_level": true
},
{
"end_token": 1730,
"start_token": 1716,
"top_level": true
},
{
"end_token": 1792,
"start_token": 1730,
"top_level": true
},
{
"end_token": 1847,
"start_token": 1799,
"top_level": true
},
{
"end_token": 1952,
"start_token": 1847,
"top_level": true
},
{
"end_token": 2019,
"start_token": 1952,
"top_level": true
},
{
"end_token": 2061,
"start_token": 2019,
"top_level": true
},
{
"end_token": 2152,
"start_token": 2068,
"top_level": true
},
{
"end_token": 2206,
"start_token": 2155,
"top_level": true
},
{
"end_token": 2277,
"start_token": 2210,
"top_level": true
},
{
"end_token": 2326,
"start_token": 2277,
"top_level": true
},
{
"end_token": 2565,
"start_token": 2330,
"top_level": true
},
{
"end_token": 2656,
"start_token": 2565,
"top_level": true
},
{
"end_token": 2720,
"start_token": 2656,
"top_level": true
}
],
"document_text": "Email marketing - Wikipedia <H1> Email marketing </H1> Jump to : navigation , search <Table> <Tr> <Td> </Td> <Td> ( hide ) This article has multiple issues . Please help improve it or discuss these issues on the talk page . ( Learn how and when to remove these template messages ) <Table> <Tr> <Td> </Td> <Td> This article needs additional citations for verification . Please help improve this article by adding citations to reliable sources . Unsourced material may be challenged and removed . ( September 2014 ) ( Learn how and when to remove this template message ) </Td> </Tr> </Table> <Table> <Tr> <Td> </Td> <Td> This article possibly contains original research . Please improve it by verifying the claims made and adding inline citations . Statements consisting only of original research should be removed . ( January 2015 ) ( Learn how and when to remove this template message ) </Td> </Tr> </Table> ( Learn how and when to remove this template message ) </Td> </Tr> </Table> <Table> <Tr> <Td> Part of a series on </Td> </Tr> <Tr> <Th> Internet marketing </Th> </Tr> <Tr> <Td> <Ul> <Li> Search engine optimization </Li> <Li> Local search engine optimisation </Li> <Li> Social media marketing </Li> <Li> Email marketing </Li> <Li> Referral marketing </Li> <Li> Content marketing </Li> <Li> Native advertising </Li> </Ul> </Td> </Tr> <Tr> <Th> Search engine marketing </Th> </Tr> <Tr> <Td> <Ul> <Li> Pay - per - click </Li> <Li> Cost per impression </Li> <Li> Search analytics </Li> <Li> Web analytics </Li> </Ul> </Td> </Tr> <Tr> <Th> Display advertising </Th> </Tr> <Tr> <Td> <Ul> <Li> Ad blocking </Li> <Li> Contextual advertising </Li> <Li> Behavioral targeting </Li> </Ul> </Td> </Tr> <Tr> <Th> Affiliate marketing </Th> </Tr> <Tr> <Td> <Ul> <Li> Cost per action </Li> <Li> Revenue sharing </Li> </Ul> </Td> </Tr> <Tr> <Th> Mobile advertising </Th> </Tr> <Tr> <Td> <Ul> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> </Td> </Tr> </Table> <P> Email marketing is the act of sending a commercial message , typically to a group of people , using email . In its broadest sense , every email sent to a potential or current customer could be considered email marketing . It usually involves using email to send advertisements , request business , or solicit sales or donations , and is meant to build loyalty , trust , or brand awareness . Marketing emails can be sent to a purchased lead list or a current customer database . The term usually refers to sending email messages with the purpose of enhancing a merchant 's relationship with current or previous customers , encouraging customer loyalty and repeat business , acquiring new customers or convincing current customers to purchase something immediately , and sharing third - party ads . </P> <P> </P> <H2> Contents </H2> ( hide ) <Ul> <Li> 1 History </Li> <Li> 2 Types <Ul> <Li> 2.1 Transactional emails </Li> <Li> 2.2 Direct emails <Ul> <Li> 2.2. 1 Mobile email marketing </Li> </Ul> </Li> </Ul> </Li> <Li> 3 Comparison to traditional mail <Ul> <Li> 3.1 Advantages </Li> <Li> 3.2 Disadvantages </Li> </Ul> </Li> <Li> 4 Opt - in email advertising </Li> <Li> 5 Legal requirements <Ul> <Li> 5.1 Australia </Li> <Li> 5.2 Canada </Li> <Li> 5.3 European Union </Li> <Li> 5.4 United States </Li> </Ul> </Li> <Li> 6 See also </Li> <Li> 7 References </Li> </Ul> <P> </P> <H2> History </H2> <P> Email marketing has evolved rapidly alongside the technological growth of the 21st century . Prior to this growth , when emails were novelties to the majority of customers , email marketing was not as effective . In 1978 , Gary Thuerk of Digital Equipment Corporation ( DEC ) sent out the first mass email to approximately 400 potential clients via the Advanced Research Projects Agency Network ( ARPANET ) . This email resulted in $13 million worth of sales in DEC products , and highlighted the potential of marketing through mass emails . However , as email marketing developed as an effective means of direct communication , users began blocking out content from emails with filters and blocking programs . In order to effectively communicate a message through email , marketers had to develop a way of pushing content through to the end user , without being cut out by automatic filters and spam removing software . This resulted in the birth of triggered marketing emails , which are sent to specific users based on their tracked online browsing patterns . </P> <P> Historically , it has been difficult to measure the effectiveness of marketing campaigns because target markets can not be adequately defined . Email marketing carries the benefit of allowing marketers to identify returns on investment and measure and improve efficiency . Email marketing allows marketers to see feedback from users in real time , and to monitor how effective their campaign is in achieving market penetration , revealing a communication channel 's scope . At the same time , however , it also means that the more personal nature of certain advertising methods , such as television advertisements , can not be captured . </P> <H2> Types </H2> <P> Email marketing can be carried out through different types of emails : </P> <H3> Transactional emails </H3> <P> Transactional emails are usually triggered based on a customer 's action with a company . To be qualified as transactional or relationship messages , these communications ' primary purpose must be `` to facilitate , complete , or confirm a commercial transaction that the recipient has previously agreed to enter into with the sender '' along with a few other narrow definitions of transactional messaging . Triggered transactional messages include dropped basket messages , password reset emails , purchase or order confirmation emails , order status emails , reorder emails , and email receipts . </P> <P> The primary purpose of a transactional email is to convey information regarding the action that triggered it . But , due to their high open rates ( 51.3 % compared to 36.6 % for email newsletters ) , transactional emails are an opportunity to introduce or extend the email relationship with customers or subscribers ; to anticipate and answer questions ; or to cross-sell or up - sell products or services . </P> <P> Many email newsletter software vendors offer transactional email support , which gives companies the ability to include promotional messages within the body of transactional emails . There are also software vendors that offer specialized transactional email marketing services , which include providing targeted and personalized transactional email messages and running specific marketing campaigns ( such as customer referral programs ) . </P> <H3> Direct emails </H3> <P> Direct email involves sending an email solely to communicate a promotional message ( for example , a special offer or a product catalog ) . Companies usually collect a list of customer or prospect email addresses to send direct promotional messages to , or they rent a list of email addresses from service companies . Safe mail marketing is also used . </P> Mobile email marketing <P> Email marketing develops large amounts of traffic through smartphones and tablets . Marketers are researching ways to advertise to more users and to make them view advertising for longer . However , the rate of delivery is still relatively low due to better filtering - out of advertising and users having multiple email accounts for different purposes . Because emails are generated according to the tracked behavior of consumers , it is possible to send advertising which is based on the recipient 's behavior . Because of this , modern email marketing is perceived more often as a pull strategy rather than a push strategy . </P> <H2> Comparison to traditional mail </H2> <P> There are both advantages and disadvantages to using email marketing in comparison to traditional advertising mail . </P> <H3> Advantages </H3> <P> Email marketing is popular with companies for several reasons : </P> <Ul> <Li> An exact return on investment can be tracked ( `` track to basket '' ) and has proven to be high when done properly . Email marketing is often reported as second only to search marketing as the most effective online marketing tactic . </Li> <Li> Email marketing is significantly cheaper and faster than traditional mail , mainly because of the high cost and time required in a traditional mail campaign for producing the artwork , printing , addressing , and mailing . </Li> <Li> Businesses and organizations who send a high volume of emails can use an ESP ( email service provider ) to gather information about the behavior of the recipients . The insights provided by consumer response to email marketing help businesses and organizations understand and make use of consumer behavior . </Li> <Li> Email provides a cost - effective method to test different marketing content , including visual , creative , marketing copy , and multimedia assets . The data gathered by testing in the email channel can then be used across all channels of marketing campaigns , both print and digital . </Li> <Li> Advertisers can reach substantial numbers of email subscribers who have opted in ( i.e. , consented ) to receive the email . </Li> <Li> Almost half of American Internet users check or send email on a typical day , with emails delivered between 1 am and 5 am local time outperforming those sent at other times in open and click rates . </Li> <Li> Email is popular with digital marketers , rising an estimated 15 % in 2009 to \u00a3 292 million in the UK . </Li> <Li> If compared to standard email , direct email marketing produces higher response rate and higher average order value for e-commerce businesses . </Li> </Ul> <H3> Disadvantages </H3> <P> As of mid-2016 email deliverability is still an issue for legitimate marketers . According to the report , legitimate email servers averaged a delivery rate of 73 % in the U.S. ; six percent were filtered as spam , and 22 % were missing . This lags behind other countries : Australia delivers at 90 % , Canada at 89 % , Britain at 88 % , France at 84 % , Germany at 80 % and Brazil at 79 % . </P> <P> Additionally , consumers receive on average circa 90 emails per day . </P> <P> Companies considering the use of an email marketing program must make sure that their program does not violate spam laws such as the United States ' Controlling the Assault of Non-Solicited Pornography and Marketing Act ( CAN - SPAM ) , the European Privacy and Electronic Communications Regulations 2003 , or their Internet service provider 's acceptable use policy . </P> <H2> Opt - in email advertising </H2> <P> Opt - in email advertising , or permission marketing , is a method of advertising via email whereby the recipient of the advertisement has consented to receive it . This method is one of several developed by marketers to eliminate the disadvantages of email marketing . </P> <P> Opt - in email marketing may evolve into a technology that uses a handshake protocol between the sender and receiver . This system is intended to eventually result in a high degree of satisfaction between consumers and marketers . If opt - in email advertising is used , the material that is emailed to consumers will be `` anticipated '' . It is assumed that the recipient wants to receive it , which makes it unlike unsolicited advertisements sent to the consumer . Ideally , opt - in email advertisements will be more personal and relevant to the consumer than untargeted advertisements . </P> <P> A common example of permission marketing is a newsletter sent to an advertising firm 's customers . Such newsletters inform customers of upcoming events or promotions , or new products . In this type of advertising , a company that wants to send a newsletter to their customers may ask them at the point of purchase if they would like to receive the newsletter . </P> <P> With a foundation of opted - in contact information stored in their database , marketers can send out promotional materials automatically using autoresponders -- known as drip marketing . They can also segment their promotions to specific market segments . </P> <H2> Legal requirements </H2> <H3> Australia </H3> <P> The Australian Spam Act 2003 is enforced by the Australian Communications and Media Authority , widely known as `` ACMA '' . The act defines the term unsolicited electronic messages , states how unsubscribe functions must work for commercial messages , and gives other key information . Fines range with 3 fines of AU $110,000 being issued to Virgin Blue Airlines ( 2011 ) , Tiger Airways Holdings Limited ( 2012 ) and Cellar master Wines Pty Limited ( 2013 ) . </P> <H3> Canada </H3> <P> The `` Canada Anti-Spam Law '' ( CASL ) went into effect on July 1 , 2014 . CASL requires an explicit or implicit opt - in from users , and the maximum fines for noncompliance are CA $ 1 million for individuals and $10 million for businesses . </P> <H3> European Union </H3> <P> In 2002 the European Union ( EU ) introduced the Directive on Privacy and Electronic Communications . Article 13 of the Directive prohibits the use of personal email addresses for marketing purposes . The Directive establishes the opt - in regime , where unsolicited emails may be sent only with prior agreement of the recipient ; this does not apply to business email addresses . </P> <P> The directive has since been incorporated into the laws of member states . In the UK it is covered under the Privacy and Electronic Communications ( EC Directive ) Regulations 2003 and applies to all organizations that send out marketing by some form of electronic communication . </P> <H3> United states </H3> <P> The CAN - SPAM Act of 2003 was passed by Congress as a direct response of the growing number of complaints over spam e-mails . Congress determined that the US government was showing an increased interest in the regulation of commercial electronic mail nationally , that those who send commercial e-mails should not mislead recipients over the source or content of them , and that all recipients of such emails have a right to decline them . The act authorizes a US $16,000 penalty per violation for spamming each individual recipient . However , it does not ban spam emailing outright , but imposes laws on using deceptive marketing methods through headings which are `` materially false or misleading '' . In addition there are conditions which email marketers must meet in terms of their format , their content and labeling . As a result , many commercial email marketers within the United States utilize a service or special software to ensure compliance with the act . A variety of older systems exist that do not ensure compliance with the act . To comply with the act 's regulation of commercial email , services also typically require users to authenticate their return address and include a valid physical address , provide a one - click unsubscribe feature , and prohibit importing lists of purchased addresses that may not have given valid permission . </P> <P> In addition to satisfying legal requirements , email service providers ( ESPs ) began to help customers establish and manage their own email marketing campaigns . The service providers supply email templates and general best practices , as well as methods for handling subscriptions and cancellations automatically . Some ESPs will provide insight and assistance with deliverability issues for major email providers . They also provide statistics pertaining to the number of messages received and opened , and whether the recipients clicked on any links within the messages . </P> <P> The CAN - SPAM Act was updated with some new regulations including a no - fee provision for opting out , further definition of `` sender '' , post office or private mail boxes count as a `` valid physical postal address '' and definition of `` person '' . These new provisions went into effect on July 7 , 2008 . </P> <H2> See also </H2> <Ul> <Li> CAUCE -- Coalition Against Unsolicited Commercial Email </Li> <Li> Customer engagement </Li> <Li> Suppression list </Li> <Li> Email spam - Unsolicited email marketing </Li> </Ul> <H2> References </H2> <Ol> <Li> Jump up ^ `` spam unsolicited e-mail '' . Retrieved September 19 , 2016 . </Li> <Li> Jump up ^ `` PUBLIC LAW 108 -- 187 -- DEC . 16 , 2003 117 STAT. 2699 '' ( PDF ) . U.S Government GPO . </Li> <Li> Jump up ^ ADIKESAVAN , T. MANAGEMENT INFORMATION SYSTEMS BEST PRACTICES AND APPLICATIONS IN BUSINESS . ISBN 8120348966 . Retrieved July 10 , 2015 . </Li> <Li> Jump up ^ MECLABS , content : MarketingSherpa , design : Scott McDaniel , code : Steve Beger , ( January 21 , 2009 ) . `` New Survey Data : Email 's ROI Makes Tactic Key for Marketers in 2009 '' . MarketingSherpa.com . Retrieved August 12 , 2017 . </Li> <Li> Jump up ^ Pew Internet & American Life Project , `` Tracking surveys '' , March 2000 -- March 2009 </Li> <Li> Jump up ^ How Scheduling Affects Rates . Mailermailer.com ( July 2012 ) . Retrieved on July 28 , 2013 . </Li> <Li> Jump up ^ BtoB Magazine , `` Early Email Blasts Results in Higher Click & Open Rates '' Archived 2011 - 11 - 22 at the Wayback Machine. , September 2011 </Li> <Li> Jump up ^ UK e-mail marketing predicted to rise 15 % . MediaWeek.co.uk ( 13 October 2009 ) </Li> <Li> Jump up ^ `` Why Email Marketing is King '' . Harvard Business Review ( 21 August 2012 ) </Li> <Li> Jump up ^ Roberts , A. `` Email deliverability is on the decline : report '' , ClickZ </Li> <Li> Jump up ^ Radicati , Sara . `` Email Statistics Report , 2014 - 2018 '' ( PDF ) . The Radicati Group , Inc . </Li> <Li> Jump up ^ `` Consumer Information '' . Consumer Information . Retrieved August 12 , 2017 . </Li> <Li> ^ Jump up to : Fairhead , N. ( 2003 ) `` All hail the brave new world of permission marketing via email '' ( Media 16 , August 2003 ) </Li> <Li> Jump up ^ Dilworth , Dianna ( 2007 ) . `` Ruth 's Chris Steak House sends sizzling e-mails for special occasions '' . DMNews . Retrieved February 19 , 2008 . </Li> <Li> Jump up ^ O'Brian J. & Montazemia , A. ( 2004 ) Management Information Systems ( Canada : McGraw - Hill Ryerson Ltd . ) </Li> <Li> Jump up ^ `` Spam : enforcement actions '' . Australian Communications and Media Authority . Australian Communications and Media Authority . Archived from the original on February 29 , 2016 . Retrieved August 15 , 2015 . </Li> <Li> Jump up ^ Moorcraft , Bethan . `` Law could force idle brokers back to dark ages '' . Insurance Business . Retrieved August 12 , 2017 . </Li> <Li> Jump up ^ `` Canada 's law on spam '' . Government of Canada . Retrieved July 19 , 2014 ... </Li> <Li> Jump up ^ The Privacy and Electronic Communications ( EC Directive ) Regulations 2003 Archived November 14 , 2006 , at the Wayback Machine ... Opsi.gov.uk . Retrieved on July 28 , 2013 . </Li> <Li> Jump up ^ `` CAN - SPAM Act : A Compliance Guide for Business '' . FTC.gov . BCP Business Center . Retrieved August 10 , 2017 . </Li> <Li> Jump up ^ `` FTC Approves New Rule Provision Under The CAN - SPAM Act '' . FTC.gov . June 24 , 2011 . </Li> <Li> Jump up ^ `` 16 CFR Part 316 Definitions and Implementation Under the CAN -- SPAM Act ; Final Rule '' ( PDF ) . FTC.gov . May 21 , 2008 . </Li> </Ol> Retrieved from `` https://en.wikipedia.org/w/index.php?title=Email_marketing&oldid=814071202 '' Categories : <Ul> <Li> Advertising by medium </Li> <Li> Email </Li> <Li> Digital marketing </Li> <Li> Market research </Li> <Li> Marketing techniques </Li> <Li> Online advertising </Li> <Li> Spamming </Li> </Ul> Hidden categories : <Ul> <Li> Webarchive template wayback links </Li> <Li> Wikipedia indefinitely semi-protected pages </Li> <Li> Articles needing additional references from September 2014 </Li> <Li> All articles needing additional references </Li> <Li> Articles that may contain original research from January 2015 </Li> <Li> All articles that may contain original research </Li> <Li> Articles with multiple maintenance issues </Li> <Li> All articles with unsourced statements </Li> <Li> Articles with unsourced statements from August 2017 </Li> <Li> Articles with unsourced statements from July 2015 </Li> <Li> All Wikipedia articles needing clarification </Li> <Li> Wikipedia articles needing clarification from August 2017 </Li> <Li> Articles with unsourced statements from March 2016 </Li> </Ul> <H2> </H2> <H3> </H3> <Ul> <Li> </Li> <Li> Talk </Li> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> </Ul> <H3> </H3> <Ul> <Li> </Li> <Li> View source </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> </Ul> <H3> </H3> <H3> </H3> <Ul> <Li> </Li> <Li> Contents </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> <Li> </Li> <Li> About Wikipedia </Li> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> <Li> </Li> <Li> \u09ac\u09be\u0982\u09b2\u09be </Li> <Li> \u0411\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438 </Li> <Li> Catal\u00e0 </Li> <Li> \u010ce\u0161tina </Li> <Li> Espa\u00f1ol </Li> <Li> \u0641\u0627\u0631\u0633\u06cc </Li> <Li> Fran\u00e7ais </Li> <Li> Italiano </Li> <Li> \u0c95\u0ca8\u0ccd\u0ca8\u0ca1 </Li> <Li> \u10e5\u10d0\u10e0\u10d7\u10e3\u10da\u10d8 </Li> <Li> \u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0441\u043a\u0438 </Li> <Li> Nederlands </Li> <Li> \u65e5\u672c \u8a9e </Li> <Li> Norsk </Li> <Li> Polski </Li> <Li> Portugu\u00eas </Li> <Li> \u0420\u0443\u0441\u0441\u043a\u0438\u0439 </Li> <Li> \u0421\u0440\u043f\u0441\u043a\u0438 / srpski </Li> <Li> Svenska </Li> <Li> \u0ba4\u0bae\u0bbf\u0bb4\u0bcd </Li> <Li> \u0c24\u0c46\u0c32\u0c41\u0c17\u0c41 </Li> <Li> \u0e44\u0e17\u0e22 </Li> <Li> T\u00fcrk\u00e7e </Li> <Li> \u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430 </Li> <Li> Ti\u1ebfng Vi\u1ec7t </Li> <Li> \u4e2d\u6587 </Li> 18 more </Ul> Edit links <Ul> <Li> This page was last edited on 6 December 2017 , at 19 : 06 . </Li> <Li> </Li> </Ul> <Ul> <Li> </Li> <Li> About Wikipedia </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <Ul> <Li> </Li> <Li> </Li> </Ul>",
"document_url": "https://en.wikipedia.org//w/index.php?title=Email_marketing&oldid=814071202",
"annotations": [
{
"annotation_id": 593165450220027640,
"short_answers": [
{
"end_token": 1969,
"start_token": 1960
}
],
"long_answer": {
"end_token": 2019,
"start_token": 1952,
"candidate_index": 54
},
"yes_no_answer": "NONE"
}
]
},
{
"example_id": 5328212470870865242,
"question_text": "how i.met your mother who is the mother",
"long_answer_candidates": [
{
"end_token": 212,
"start_token": 28,
"top_level": true
},
{
"end_token": 35,
"start_token": 29,
"top_level": false
},
{
"end_token": 45,
"start_token": 35,
"top_level": false
},
{
"end_token": 57,
"start_token": 45,
"top_level": false
},
{
"end_token": 79,
"start_token": 57,
"top_level": false
},
{
"end_token": 91,
"start_token": 79,
"top_level": false
},
{
"end_token": 103,
"start_token": 91,
"top_level": false
},
{
"end_token": 113,
"start_token": 103,
"top_level": false
},
{
"end_token": 118,
"start_token": 113,
"top_level": false
},
{
"end_token": 127,
"start_token": 118,
"top_level": false
},
{
"end_token": 135,
"start_token": 127,
"top_level": false
},
{
"end_token": 147,
"start_token": 135,
"top_level": false
},
{
"end_token": 168,
"start_token": 147,
"top_level": false
},
{
"end_token": 203,
"start_token": 168,
"top_level": false
},
{
"end_token": 211,
"start_token": 203,
"top_level": false
},
{
"end_token": 310,
"start_token": 212,
"top_level": true
},
{
"end_token": 416,
"start_token": 310,
"top_level": true
},
{
"end_token": 536,
"start_token": 416,
"top_level": true
},
{
"end_token": 746,
"start_token": 581,
"top_level": true
},
{
"end_token": 851,
"start_token": 746,
"top_level": true
},
{
"end_token": 870,
"start_token": 858,
"top_level": true
},
{
"end_token": 941,
"start_token": 870,
"top_level": true
},
{
"end_token": 1107,
"start_token": 941,
"top_level": true
},
{
"end_token": 1271,
"start_token": 1107,
"top_level": true
},
{
"end_token": 1543,
"start_token": 1271,
"top_level": true
},
{
"end_token": 1573,
"start_token": 1543,
"top_level": true
},
{
"end_token": 1728,
"start_token": 1573,
"top_level": true
},
{
"end_token": 1796,
"start_token": 1728,
"top_level": true
},
{
"end_token": 1873,
"start_token": 1796,
"top_level": true
},
{
"end_token": 1933,
"start_token": 1873,
"top_level": true
},
{
"end_token": 2067,
"start_token": 1933,
"top_level": true
},
{
"end_token": 2185,
"start_token": 2067,
"top_level": true
},
{
"end_token": 2346,
"start_token": 2185,
"top_level": true
},
{
"end_token": 2416,
"start_token": 2346,
"top_level": true
},
{
"end_token": 2531,
"start_token": 2422,
"top_level": true
},
{
"end_token": 2736,
"start_token": 2542,
"top_level": true
},
{
"end_token": 2815,
"start_token": 2736,
"top_level": true
}
],
"document_text": "The Mother ( How I Met Your Mother ) - wikipedia <H1> The Mother ( How I Met Your Mother ) </H1> Jump to : navigation , search <Table> <Tr> <Th_colspan=\"2\"> Tracy McConnell </Th> </Tr> <Tr> <Td_colspan=\"2\"> How I Met Your Mother character </Td> </Tr> <Tr> <Td_colspan=\"2\"> The Mother appearing in `` The Locket '' </Td> </Tr> <Tr> <Th> First appearance </Th> <Td> `` Lucky Penny ( unseen ) '' `` Something New '' ( seen ) </Td> </Tr> <Tr> <Th> Last appearance </Th> <Td> `` Last Forever '' </Td> </Tr> <Tr> <Th> Created by </Th> <Td> Carter Bays Craig Thomas </Td> </Tr> <Tr> <Th> Portrayed by </Th> <Td> Cristin Milioti </Td> </Tr> <Tr> <Th_colspan=\"2\"> Information </Th> </Tr> <Tr> <Th> Aliases </Th> <Td> The Mother </Td> </Tr> <Tr> <Th> Gender </Th> <Td> Female </Td> </Tr> <Tr> <Th> Spouse ( s ) </Th> <Td> Ted Mosby </Td> </Tr> <Tr> <Th> Significant other ( s ) </Th> <Td> Max ( deceased former boyfriend ) Louis ( ex-boyfriend ) </Td> </Tr> <Tr> <Th> Children </Th> <Td> Penny Mosby ( daughter , born in 2015 , played by Lyndsy Fonseca ) Luke Mosby ( son , born in 2017 , played by David Henrie ) </Td> </Tr> <Tr> <Th> Nationality </Th> <Td> American </Td> </Tr> </Table> <P> Tracy McConnell , better known as `` The Mother '' , is the title character from the CBS television sitcom How I Met Your Mother . The show , narrated by Future Ted , tells the story of how Ted Mosby met The Mother . Tracy McConnell appears in 8 episodes from `` Lucky Penny '' to `` The Time Travelers '' as an unseen character ; she was first seen fully in `` Something New '' and was promoted to a main character in season 9 . The Mother is played by Cristin Milioti . </P> <P> The story of how Ted met The Mother is the framing device behind the series ; many facts about her are revealed throughout the series , including the fact that Ted once unwittingly owned her umbrella before accidentally leaving it behind in her apartment . Ted and The Mother meet at the Farhampton train station following Barney Stinson and Robin Scherbatsky 's wedding ; this scene is shown in `` Last Forever '' , the series finale . The Mother 's death from an unspecified terminal illness in 2024 , also revealed in the series finale , received a mixed reaction from fans . </P> <P> An alternate ending was released in the ninth season DVD . In the alternate ending , Tracy Mosby is still living when Ted is telling the story in 2030 . In the video , future Ted is heard saying , `` ... When I think how lucky I am to wake up next to your mom every morning , I ca n't help but be amazed how easy it all really was ... '' , indirectly stating that The Mother is alive . The video ends right after the train passes at Farhampton station and credits start rolling , implying that Ted never went back to Robin as he lived a successful married life with Tracy Mosby . </P> <P> </P> <H2> Contents </H2> ( hide ) <Ul> <Li> 1 Casting </Li> <Li> 2 Character history <Ul> <Li> 2.1 Name </Li> </Ul> </Li> <Li> 3 Death </Li> <Li> 4 Notes </Li> <Li> 5 References </Li> </Ul> <P> </P> <H2> Casting ( edit ) </H2> <P> During its first eight seasons , the successful sitcom How I Met Your Mother often hinted at the unseen character of The Mother . Well - known actresses often made guest appearances on the show . Many fans expected that another would play one of the most - wanted roles in Hollywood , but creators Carter Bays and Craig Thomas wanted an unknown . Using Anne Hathaway and Amy Adams as examples , Thomas said that `` We did n't want it to be a big famous star because we did n't want the wider audience to have associations with whatever actress this would be ... The whole idea is that Ted 's never seen this woman before , so it better feel that way to the audience '' , similar to how Cobie Smulders being cast as Robin Scherbatsky had `` kept the show alive '' when it began . Bays and Thomas also did not want a large casting call . </P> <P> They chose Cristin Milioti after seeing her on 30 Rock and Once ; her musical ability was also helpful , as The Mother had been described as a band member . After competing for the role against at least two others , Milioti filmed her first scene -- for the last episode of season 8 -- having never watched How I Met Your Mother ; she recalled , `` I had ignorance on my side . So I did n't know what it meant . '' Milioti learned of the character 's importance only after binge watching the show during the summer . </P> <H2> Character history ( edit ) </H2> <P> The Mother was born on September 19 , 1984 . </P> <P> The Mother , joined by her roommate Kelly awaits the arrival of her boyfriend Max only to receive a call informing her of his death . After the funeral service , she returns to the apartment to open Max 's last gift to her -- a ukulele . The Mother spends the next few years grieving the passing of the man she believes was her one true love . </P> <P> In `` Wait for It '' , it is revealed that the short story of how they met involved her yellow umbrella . In `` No Tomorrow '' , Ted finds the umbrella at a club and takes it home after attending a St. Patrick 's Day party which she also attended , as it had been two and a half years since the death of Max , her late boyfriend . She is still grieving , but her roommate Kelly encourages her to go out and date again , bringing her to the same bar where Ted and Barney are celebrating . The two women run into Mitch , her old orchestra instructor ; The Mother offers to give Mitch her cello for his work at a school and they head to her apartment . After they start talking , Mitch encourages her to pursue her dreams . The Mother expresses her desire to end poverty by taking up economics in college . </P> <P> On his first day of teaching as Professor Mosby , as seen in the season 4 finale `` The Leap '' , he is seen in front of the classroom of students , one of which Future Ted says is the titular mother . But in the first episode of season 5 , `` Definitions '' , it is revealed that he was actually in the wrong classroom -- Economics instead of Architecture . At the same time in `` How Your Mother Met Me '' , the Mother sits her first session in Economics 305 and meets another graduate student named Cindy ( Rachel Bilson ) , whom she offers to move in with her as her roommate . They see Ted enter the room , but when he announces the subject , The Mother thinks she is in the wrong room and runs off . She heads back to the room after seeing Ted scramble to his actual classroom . </P> <P> Later , in `` Girls Versus Suits '' , Ted dates Cindy , not knowing that her roommate is his future wife . Throughout the episode , Ted notes that Cindy had spent most of their first date talking jealously about her roommate . When in Cindy and the mother 's apartment he picks up many of The Mother 's belongings , attempting to show how compatible he and Cindy are ( thinking the items are Cindy 's ) and glimpses the mother 's foot as she disappears into her room after taking a shower . Ted finds out at this time that she plays bass guitar in a band . Ted forgets to take the yellow umbrella with him when he goes out and Future Ted mentions , `` this is how your mother got her yellow umbrella back . '' In `` How Your Mother Met Me '' , it is revealed that , after Ted left the apartment , the Mother had discovered the umbrella and , upon going to question Cindy , finds her in a state . As she tried to console her , Cindy said that she was a much better match for Ted , and began to lovingly list all of the reasons that Ted would find the mother attractive , before spontaneously kissing her , revealing that her jealousy towards her roommate was actually a crush . While this incident made Cindy realise that she is a lesbian , it also made the Mother decide to go back into dating , as the kiss was her first in a long time . </P> <P> Some time after this , a man named Darren approaches The Mother and is welcomed into her band named Superfreakonomics . Darren gradually takes over the band . </P> <P> In the season 6 opener `` Big Days '' it is revealed Ted meets his future wife `` the day of '' the wedding at which he is the best man . In the episode `` False Positive '' Robin asks Ted to be her future best man , should she ever get married . In the episode `` Challenge Accepted '' , it is revealed that Ted meets the mother of his children the day of Barney 's wedding . In the last episode of season 7 , `` The Magician 's Code '' it is shown that Barney will marry Robin , and Ted will meet the mother `` the day of '' their wedding . On the premiere of season 8 , Ted 's wife appears after Barney and Robin 's wedding , outside at the `` Farhampton '' station while holding a yellow umbrella and her bass guitar . </P> <P> In the season 8 episode `` Band or DJ ? , '' Ted runs into Cindy on the subway and tells her that the band Barney and Robin hired to play at their wedding cancelled at the last minute . The end result of the encounter is that Cindy 's ( now ex - ) roommate 's band plays at Barney and Robin 's wedding . </P> <P> The Mother is first shown meeting Louis in `` How Your Mother Met Me '' as she is left to carry the band equipment while the now - lead band member Darren talks to his fans . Later at MacLaren 's Pub , she tells him she 's not yet ready to date . Louis asks her to give him a call if she changes her mind and they begin dating not long after . </P> <P> The Mother meets all of Ted 's best friends ( Barney , Lily , Marshall and Robin ) before she meets him . The Mother is responsible for convincing Barney to pursue Robin , as revealed through a flashback in `` Platonish '' . In `` The Locket '' , Tracy meets Lily on a train journey . </P> <P> In `` Bass Player Wanted '' , the Mother picks up a hitchhiking Marshall , carrying his son Marvin , on her way to Farhampton Inn . On their way , it is revealed that the Mother is a bass player in the band , that is scheduled to play at the wedding reception . But the band 's leader , Darren , forced her to quit . The Mother ultimately decides to confront Darren and retake the band . She ends up alone at the bar , and while practicing a speech to give Darren , Darren walks up to her furious the groom 's best man punched him for `` no reason . '' Amused by this , the Mother laughs , and Darren quits the band in anger . </P> <P> In `` How Your Mother Met Me '' , it is shown that after this incident , the Mother returns to Louis ' summer cottage not far from the Farhampton Inn where she has been staying for the duration of the wedding weekend . As she walks in the door , Louis proposes to her , but she goes outside to think about it for a few minutes . She declines Louis ' proposal and leaves his cottage , going to check in at Farhampton Inn . On her room 's balcony , she plays the ukulele and sings `` La Vie en Rose '' . Ted hears her singing from his room next door . </P> <P> In `` Gary Blauman '' , Ted and the Mother are on their first date . Ted picks her up at her New York City apartment and they proceed to walk to a Scottish - Mexican fusion restaurant for dinner . On the way there , Ted is telling her a story when they nearly have a run - in with Louis . She says that she is in the `` weirdest place on earth '' right now and that it is too soon for her to be dating . Ted walks her back to her apartment . They say goodnight and Ted begins to walk away . The Mother then stops him and asks him to finish the story he was telling her . When the story is over , they say goodnight again . The Mother takes a step towards Ted and they kiss for the first time , before deciding to carry on their date . </P> <P> In a flashforward in `` The Lighthouse '' , Ted proposes to the Mother at the top of the lighthouse near Farhampton Inn . She immediately accepts . In another flashfoward in `` Unpause '' , the Mother is revealed to be pregnant with their second child , Luke , in the year 2017 . She goes into labor while she and Ted are staying at Farhampton . </P> <H3> Name ( edit ) </H3> <P> The Mother 's real name is not revealed until the series finale , `` Last Forever '' . When Ted meets her at the Farhampton train station , she reveals that her name is Tracy McConnell . In the season 1 episode `` Belly Full of Turkey '' , Ted meets a stripper named Tracy and says `` ... that , kids , is the true story of how I met your mother '' . The children react in surprise and appear to believe Ted before he admits he is joking , which led some fans to correctly guess that The Mother 's name is Tracy . </P> <H2> Death ( edit ) </H2> See also : Last Forever <P> In the series finale , it is revealed that six years prior to Ted telling the story to his children , Tracy died in 2024 from an undisclosed illness . In the finale the characters do not directly state that the mother is dead . Ted says that she `` became sick '' and his children saying that she has been `` gone '' for six years . Many fans expressed considerable disappointment to The Mother 's death . Milioti cried when she learned her character was supposed to die , but came to accept the ending was what the writers had planned from the beginning . Bill Kuchman from Popculturology said that The Mother was `` an amazing character '' and that `` over the course of this final season HIMYM made us care about Tracy . Kuchman said that `` asking fans to drop all of that with a simple line about The Mother getting sick and passing away was a very difficult request '' , that the finale `` advanced too quickly '' and that `` HIMYM was a victim of its own success on this issue '' . </P> <P> A petition was started , aiming to rewrite and reshoot the finale . The petition has over 20,000 signatures and considerable online news coverage . On April 5 , 2014 , Carter Bays announced on Twitter that an alternate ending would be included on the Season 9 DVD . No new material was shot for this scene . In the alternate ending , the mother is still living when Ted is telling the story in 2030 . </P> <H2> Notes ( edit ) </H2> <Ol> <Li> Jump up ^ The Mother celebrates her 21st birthday on the day that `` Pilot '' is set . The pilot is set on September 19 , 2005 . </Li> </Ol> <H2> References ( edit ) </H2> <Ol> <Li> ^ Jump up to : Debnath , Neela ( 7 September 2014 ) . `` How I Met Your Mother alternative finale leaks online ahead of DVD release '' . The Independent . Retrieved 15 February 2015 . </Li> <Li> Jump up ^ Kreps , Daniel ( September 6 , 2014 ) . `` Watch the Happier ' How I Met Your Mother ' Alternate Ending '' . Rolling Stone . </Li> <Li> Jump up ^ MacGregor , Rachel ( September 23 , 2014 ) . `` 8 reasons why How I Met Your Mother should 've used its alternative ending '' . Metro UK . </Li> <Li> Jump up ^ Stransky , Tanner ( 2013 - 05 - 13 ) . `` ' How I Met Your Mother ' : Burning questions about the mother '' . Entertainment Weekly . </Li> <Li> ^ Jump up to : Fallon , Kevin ( 2013 - 05 - 14 ) . `` ' How I Met Your Mother ' Mother Revealed : Meet Cristin Milioti '' . The Daily Beast . </Li> <Li> Jump up ^ Fallon , Kevin ( 2015 - 11 - 03 ) . `` How Cristin Milioti Met ' Fargo ' -- And Left ' How I Met Your Mother ' Behind '' . The Daily Beast . </Li> <Li> ^ Jump up to : `` How Your Mother Met Me '' . How I Met Your Mother . Season 9 . Episode 16 . January 27 , 2014 . </Li> <Li> Jump up ^ `` Pilot '' . How I Met Your Mother . Season 1 . Episode 1 . September 19 , 2005 . CBS . </Li> <Li> ^ Jump up to : Kuchman , Bill ( April 4 , 2014 ) . `` ' How I Met Your Mother ' ' Last Forever ' Recap : A Divisive Finale and What It Means for ' HIMYM ' '' . Retrieved July 7 , 2014 . </Li> <Li> Jump up ^ Rullo , Samantha ( 10 March 2014 ) . `` What is The Mother 's Name on ' How I Met Your Mother ' ? Episode Title Might Hold the Secret '' . Retrieved July 7 , 2014 . </Li> <Li> Jump up ^ `` HIMYM Tomatometer Watch : Series Finale Currently Rotten - Majority of critics disappointed by ' Last Forever ' '' . Rotten Tomatoes. April 2 , 2014 . Retrieved April 3 , 2014 . </Li> <Li> Jump up ^ http://abcnews.go.com/Entertainment/cristin-milioti-sobbed-found-characters-fate-met-mother/story?id=25947923 </Li> <Li> Jump up ^ Kuchman , Bill ( March 31 , 2014 ) . `` ' HIMYM ' Finale Instant Reaction '' . Retrieved July 7 , 2014 . </Li> <Li> Jump up ^ Guerrero , Danger ( April 4 , 2014 ) . `` Now There 's A Petition To ' Rewrite And Reshoot ' The ' How I Met Your Mother ' Ending '' . Retrieved July 7 , 2014 . </Li> <Li> Jump up ^ Maresca , Rachel ( April 3 , 2014 ) . `` ' How I Met Your Mother ' series finale sparks online petition from fans who want ending changed '' . New York Daily News . Retrieved July 7 , 2014 . </Li> <Li> Jump up ^ Update for those who 've been asking : Alt # himym ending will be on s9 DVD and also in the series box set . https://twitter.com/CarterBays/status/452299544995184640 </Li> <Li> Jump up ^ James , Lauren ( April 5 , 2014 ) . `` ' How I Met Your Mother ' May Get Alternate Ending After Petition , Says Carter Bays '' . Contact Music . Retrieved July 7 , 2014 . </Li> <Li> Jump up ^ Kreps , Daniel ( September 6 , 2014 ) . `` Watch the Happier ' How I Met Your Mother ' Alternate Ending '' . Rolling Stone . Retrieved November 16 , 2014 . </Li> </Ol> <Table> <Tr> <Th_colspan=\"2\"> ( hide ) <Ul> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> How I Met Your Mother </Th> </Tr> <Tr> <Th> Episodes </Th> <Td> <Ul> <Li> Season 1 </Li> <Li> Season 2 </Li> <Li> Season 3 </Li> <Li> Season 4 </Li> <Li> Season 5 </Li> <Li> Season 6 </Li> <Li> Season 7 </Li> <Li> Season 8 </Li> <Li> Season 9 </Li> </Ul> </Td> </Tr> <Tr> <Th> Characters </Th> <Td> <Ul> <Li> Ted Mosby </Li> <Li> Marshall Eriksen </Li> <Li> Lily Aldrin </Li> <Li> Barney Stinson </Li> <Li> Robin Scherbatsky </Li> <Li> The Mother ( Tracy McConnell ) </Li> </Ul> </Td> </Tr> <Tr> <Th> Soundtracks </Th> <Td> <Ul> <Li> How I Met Your Music </Li> </Ul> </Td> </Tr> <Tr> <Th> Related articles </Th> <Td> <Ul> <Li> Awards and nominations </Li> <Li> The Bro Code </Li> <Li> Cheerleader effect </Li> <Li> `` Nothing Suits Me Like a Suit '' </Li> </Ul> </Td> </Tr> </Table> Retrieved from `` https://en.wikipedia.org/w/index.php?title=The_Mother_(How_I_Met_Your_Mother)&oldid=802354471 '' Categories : <Ul> <Li> How I Met Your Mother characters </Li> <Li> Fictional characters introduced in 2013 </Li> <Li> Fictional female musicians </Li> </Ul> Hidden categories : <Ul> <Li> Pages using deprecated image syntax </Li> <Li> Pages using infobox character with unknown parameters </Li> </Ul> <H2> </H2> <H3> </H3> <Ul> <Li> </Li> <Li> Talk </Li> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> </Ul> <H3> </H3> <Ul> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> </Ul> <H3> </H3> <H3> </H3> <Ul> <Li> </Li> <Li> Contents </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> <Li> </Li> <Li> About Wikipedia </Li> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> <Li> Espa\u00f1ol </Li> <Li> Italiano </Li> <Li> Magyar </Li> <Li> Ti\u1ebfng Vi\u1ec7t </Li> </Ul> Edit links <Ul> <Li> This page was last edited on 25 September 2017 , at 17 : 03 . </Li> <Li> Text is available under the Creative Commons Attribution - ShareAlike License ; additional terms may apply . By using this site , you agree to the Terms of Use and Privacy Policy . Wikipedia \u00ae is a registered trademark of the Wikimedia Foundation , Inc. , a non-profit organization . </Li> </Ul> <Ul> <Li> </Li> <Li> About Wikipedia </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <Ul> <Li> </Li> <Li> </Li> </Ul>",
"document_url": "https://en.wikipedia.org//w/index.php?title=The_Mother_(How_I_Met_Your_Mother)&oldid=802354471",
"annotations": [
{
"annotation_id": 12034874153783787365,
"short_answers": [
{
"end_token": 215,
"start_token": 213
}
],
"long_answer": {
"end_token": 310,
"start_token": 212,
"candidate_index": 15
},
"yes_no_answer": "NONE"
}
]
},
{
"example_id": 4435104480114867852,
"question_text": "what type of fertilisation takes place in humans",
"long_answer_candidates": [
{
"end_token": 225,
"start_token": 14,
"top_level": true
},
{
"end_token": 24,
"start_token": 15,
"top_level": false
},
{
"end_token": 32,
"start_token": 24,
"top_level": false
},
{
"end_token": 41,
"start_token": 36,
"top_level": false
},
{
"end_token": 84,
"start_token": 41,
"top_level": false
},
{
"end_token": 82,
"start_token": 43,
"top_level": false
},
{
"end_token": 90,
"start_token": 84,
"top_level": false
},
{
"end_token": 121,
"start_token": 90,
"top_level": false
},
{
"end_token": 119,
"start_token": 92,
"top_level": false
},
{
"end_token": 128,
"start_token": 121,
"top_level": false
},
{
"end_token": 161,
"start_token": 128,
"top_level": false
},
{
"end_token": 159,
"start_token": 130,
"top_level": false
},
{
"end_token": 137,
"start_token": 131,
"top_level": false
},
{
"end_token": 142,
"start_token": 137,
"top_level": false
},
{
"end_token": 168,
"start_token": 161,
"top_level": false
},
{
"end_token": 201,
"start_token": 168,
"top_level": false
},
{
"end_token": 199,
"start_token": 170,
"top_level": false
},
{
"end_token": 195,
"start_token": 190,
"top_level": false
},
{
"end_token": 212,
"start_token": 201,
"top_level": false
},
{
"end_token": 210,
"start_token": 203,
"top_level": false
},
{
"end_token": 209,
"start_token": 204,
"top_level": false
},
{
"end_token": 224,
"start_token": 212,
"top_level": false
},
{
"end_token": 222,
"start_token": 214,
"top_level": false
},
{
"end_token": 319,
"start_token": 262,
"top_level": true
},
{
"end_token": 438,
"start_token": 319,
"top_level": true
},
{
"end_token": 464,
"start_token": 438,
"top_level": true
},
{
"end_token": 629,
"start_token": 573,
"top_level": true
},
{
"end_token": 701,
"start_token": 640,
"top_level": true
},
{
"end_token": 792,
"start_token": 713,
"top_level": true
},
{
"end_token": 863,
"start_token": 799,
"top_level": true
},
{
"end_token": 927,
"start_token": 863,
"top_level": true
},
{
"end_token": 943,
"start_token": 927,
"top_level": true
},
{
"end_token": 1068,
"start_token": 948,
"top_level": true
},
{
"end_token": 1157,
"start_token": 1080,
"top_level": true
},
{
"end_token": 1180,
"start_token": 1164,
"top_level": true
},
{
"end_token": 1215,
"start_token": 1186,
"top_level": true
},
{
"end_token": 1258,
"start_token": 1215,
"top_level": true
},
{
"end_token": 1315,
"start_token": 1258,
"top_level": true
},
{
"end_token": 1351,
"start_token": 1321,
"top_level": true
},
{
"end_token": 1471,
"start_token": 1357,
"top_level": true
},
{
"end_token": 1504,
"start_token": 1471,
"top_level": true
},
{
"end_token": 1563,
"start_token": 1511,
"top_level": true
},
{
"end_token": 1709,
"start_token": 1563,
"top_level": true
},
{
"end_token": 1748,
"start_token": 1709,
"top_level": true
},
{
"end_token": 1793,
"start_token": 1748,
"top_level": true
},
{
"end_token": 1812,
"start_token": 1799,
"top_level": true
},
{
"end_token": 1825,
"start_token": 1812,
"top_level": true
},
{
"end_token": 1824,
"start_token": 1813,
"top_level": false
},
{
"end_token": 1877,
"start_token": 1825,
"top_level": true
}
],
"document_text": "Human fertilization - wikipedia <H1> Human fertilization </H1> Jump to : navigation , search <Table> <Tr> <Td> Part of a series on </Td> </Tr> <Tr> <Th> Human growth and development </Th> </Tr> <Tr> <Td> </Td> </Tr> <Tr> <Th> Stages </Th> </Tr> <Tr> <Td> <Ul> <Li> Human embryogenesis </Li> <Li> Fetus </Li> <Li> Infant </Li> <Li> Toddler </Li> <Li> Early childhood </Li> <Li> Child </Li> <Li> Preadolescence </Li> <Li> Adolescence </Li> <Li> Adult </Li> <Li> Middle age </Li> <Li> Old age </Li> </Ul> </Td> </Tr> <Tr> <Th> Biological milestones </Th> </Tr> <Tr> <Td> <Ul> <Li> Fertilization </Li> <Li> Childbirth </Li> <Li> Walking </Li> <Li> Language acquisition </Li> <Li> Puberty </Li> <Li> Menopause </Li> <Li> Ageing </Li> <Li> Death </Li> </Ul> </Td> </Tr> <Tr> <Th> Development and psychology </Th> </Tr> <Tr> <Td> <Ul> <Li> Pre - and perinatal </Li> <Li> Infant and child </Li> <Li> Adolescent </Li> <Li> Youth </Li> <Li> Young adult </Li> <Li> Adult </Li> <Li> Maturity </Li> </Ul> </Td> </Tr> <Tr> <Th> Developmental stage theories </Th> </Tr> <Tr> <Td> <Ul> <Li> Attachment </Li> <Li> Ecological </Li> <Li> Psychosocial </Li> <Li> Psychosexual development </Li> <Li> Moral </Li> <Li> Cognitive </Li> <Li> Cultural - historical </Li> <Li> Evolutionary </Li> </Ul> </Td> </Tr> <Tr> <Td> <Ul> <Li> Human body portal </Li> </Ul> </Td> </Tr> <Tr> <Td> <Ul> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> </Td> </Tr> </Table> The acrosome reaction for a sea urchin , a similar process . Note that the picture shows several stages of one and the same spermatozoon - only one penetrates the ovum Illustration depicting ovulation and fertilization . <P> Human fertilization is the union of a human egg and sperm , usually occurring in the ampulla of the fallopian tube . The result of this union is the production of a zygote cell , or fertilized egg , initiating prenatal development . Scientists discovered the dynamics of human fertilization in the nineteenth century . </P> <P> The process of fertilization involves a sperm fusing with an ovum . The most common sequence begins with ejaculation during copulation , follows with ovulation , and finishes with fertilization . Various exceptions to this sequence are possible , including artificial insemination , in vitro fertilization , external ejaculation without copulation , or copulation shortly after ovulation . Upon encountering the secondary oocyte , the acrosome of the sperm produces enzymes which allow it to burrow through the outer jelly coat of the egg . The sperm plasma then fuses with the egg 's plasma membrane , the sperm head disconnects from its flagellum and the egg travels down the Fallopian tube to reach the uterus . </P> <P> In vitro fertilization ( IVF ) is a process by which egg cells are fertilized by sperm outside the womb , in vitro . </P> <P> </P> <H2> Contents </H2> ( hide ) <Ul> <Li> 1 Anatomy <Ul> <Li> 1.1 Corona radiata </Li> <Li> 1.2 Cone of attraction and perivitelline membrane </Li> <Li> 1.3 Sperm preparation </Li> <Li> 1.4 Zona pellucida <Ul> <Li> 1.4. 1 Cortical reaction </Li> </Ul> </Li> </Ul> </Li> <Li> 2 Fusion <Ul> <Li> 2.1 Cell membranes </Li> <Li> 2.2 Transformations </Li> <Li> 2.3 Replication </Li> <Li> 2.4 Mitosis </Li> </Ul> </Li> <Li> 3 Fertilization age </Li> <Li> 4 Diseases </Li> <Li> 5 See also </Li> <Li> 6 References </Li> <Li> 7 External links </Li> </Ul> <P> </P> <H2> Anatomy ( edit ) </H2> <H3> Corona radiata ( edit ) </H3> <P> The sperm binds through the corona radiata , a layer of follicle cells on the outside of the secondary oocyte . Fertilization occurs when the nucleus of both a sperm and an egg fuse to form a diploid cell , known as zygote . The successful fusion of gametes forms a new organism . </P> <H3> Cone of attraction and perivitelline membrane ( edit ) </H3> <P> Where the spermatozoon is about to pierce , the yolk ( ooplasm ) is drawn out into a conical elevation , termed the cone of attraction or reception cone . Once the spermatozoon has entered , the peripheral portion of the yolk changes into a membrane , the perivitelline membrane , which prevents the passage of additional spermatozoa . </P> <H3> Sperm preparation ( edit ) </H3> Further information : Acrosome reaction <P> At the beginning of the process , the sperm undergoes a series of changes , as freshly ejaculated sperm is unable or poorly able to fertilize . The sperm must undergo capacitation in the female 's reproductive tract over several hours , which increases its motility and destabilizes its membrane , preparing it for the acrosome reaction , the enzymatic penetration of the egg 's tough membrane , the zona pellucida , which surrounds the oocyte . </P> <H3> Zona pellucida ( edit ) </H3> <P> After binding to the corona radiata the sperm reaches the zona pellucida , which is an extra-cellular matrix of glycoproteins . A special complementary molecule on the surface of the sperm head binds to a ZP3 glycoprotein in the zona pellucida . This binding triggers the acrosome to burst , releasing enzymes that help the sperm get through the zona pellucida . </P> <P> Some sperm cells consume their acrosome prematurely on the surface of the egg cell , facilitating the penetration by other sperm cells . As a population , sperm cells have on average 50 % genome similarity so the premature acrosomal reactions aid fertilization by a member of the same cohort . It may be regarded as a mechanism of kin selection . </P> <P> Recent studies have shown that the egg is not passive during this process . </P> Cortical reaction ( edit ) <P> Once the sperm cells find their way past the zona pellucida , the cortical reaction occurs . Cortical granules inside the secondary oocyte fuse with the plasma membrane of the cell , causing enzymes inside these granules to be expelled by exocytosis to the zona pellucida . This in turn causes the glyco - proteins in the zona pellucida to cross-link with each other -- i.e. the enzymes cause the ZP2 to hydrolyse into ZP2f -- making the whole matrix hard and impermeable to sperm . This prevents fertilization of an egg by more than one sperm . The cortical reaction and acrosome reaction are both essential to ensure that only one sperm will fertilize an egg . </P> <H2> Fusion ( edit ) </H2> Fertilization and implantation in humans . <P> After the sperm enters the cytoplasm of the oocyte ( also called ovocyte ) , the tail and the outer coating of the sperm disintegrate and the cortical reaction takes place , preventing other sperm from fertilizing the same egg . The oocyte now undergoes its second meiotic division producing the haploid ovum and releasing a polar body . The sperm nucleus then fuses with the ovum , enabling fusion of their genetic material . </P> <H3> Cell membranes ( edit ) </H3> <P> The fusion of cell membranes of the secondary oocyte and sperm takes place . </P> <H3> Transformations ( edit ) </H3> <P> In preparation for the fusion of their genetic material both the oocyte and the sperm undergo transformations as a reaction to the fusion of cell membranes . </P> <P> The oocyte completes its second meiotic division . This results in a mature ovum . The nucleus of the oocyte is called a pronucleus in this process , to distinguish it from the nuclei that are the result of fertilization . </P> <P> The sperm 's tail and mitochondria degenerate with the formation of the male pronucleus . This is why all mitochondria in humans are of maternal origin . Still , a considerable amount of RNA from the sperm is delivered to the resulting embryo and likely influences embryo development and the phenotype of the offspring . </P> <H3> Replication ( edit ) </H3> <P> The pronuclei migrate toward the center of the oocyte , rapidly replicating their DNA as they do so to prepare the zygote for its first mitotic division . </P> <H3> Mitosis ( edit ) </H3> <P> Usually 23 chromosomes from spermatozoon and 23 chromosomes from egg cell fuse ( half of spermatozoons carry X chromosome and the other half Y chromosome ) . Their membranes dissolve , leaving no barriers between the male and female chromosomes . During this dissolution , a mitotic spindle forms between them . The spindle captures the chromosomes before they disperse in the egg cytoplasm . Upon subsequently undergoing mitosis ( which includes pulling of chromatids towards centrioles in anaphase ) the cell gathers genetic material from the male and female together . Thus , the first mitosis of the union of sperm and oocyte is the actual fusion of their chromosomes . </P> <P> Each of the two daughter cells resulting from that mitosis has one replica of each chromatid that was replicated in the previous stage . Thus , they are genetically identical . </P> <H2> Fertilization age ( edit ) </H2> <P> Fertilization is the event most commonly used to mark the zero point in descriptions of prenatal development of the embryo or fetus . The resultant age is known as fertilization age , fertilizational age , embryonic age , fetal age or ( intrauterine ) developmental ( IUD ) age . </P> <P> Gestational age , in contrast , takes the beginning of the last menstrual period ( LMP ) as the zero point . By convention , gestational age is calculated by adding 14 days to fertilization age and vice versa . In fact , however , fertilization usually occurs within a day of ovulation , which , in turn , occurs on average 14.6 days after the beginning of the preceding menstruation ( LMP ) . There is also considerable variability in this interval , with a 95 % prediction interval of the ovulation of 9 to 20 days after menstruation even for an average woman who has a mean LMP - to - ovulation time of 14.6 . In a reference group representing all women , the 95 % prediction interval of the LMP - to - ovulation is 8.2 to 20.5 days . </P> <P> The average time to birth has been estimated to be 268 days ( 38 weeks and two days ) from ovulation , with a standard deviation of 10 days or coefficient of variation of 3.7 % . </P> <P> Fertilization age is sometimes used postnatally ( after birth ) as well to estimate various risk factors . For example , it is a better predictor than postnatal age for risk of intraventricular hemorrhage in premature babies treated with extracorporeal membrane oxygenation . </P> <H2> Diseases ( edit ) </H2> <P> Various disorders can arise from defects in the fertilization process . </P> <Ul> <Li> Polyspermy results from multiple sperm fertilizing an egg . </Li> </Ul> <P> However , some researchers have found that in rare pairs of fraternal twins , their origin might have been from the fertilization of one egg cell from the mother and eight sperm cells from the father . This possibility has been investigated by computer simulations of the fertilization process . </P> <H2> See also ( edit ) </H2> <Ul> <Li> Spontaneous conception , the unassisted conception of a subsequent child after prior use of assisted reproductive technology </Li> </Ul> <H2> References ( edit ) </H2> <Ol> <Li> Jump up ^ Garrison , Fielding . An Introduction to the History of Medicine , pages 566 - 567 ( Saunders 1921 ) . </Li> <Li> Jump up ^ `` Archived copy '' . Archived from the original on 2011 - 12 - 22 . Retrieved 2016 - 01 - 24 . </Li> <Li> Jump up ^ http://www.americanpregnancy.org/preventingpregnancy/pregnancyfaqmyths.html </Li> <Li> Jump up ^ Lawyers Guide to Forensic Medicine SBN 978 - 1 - 85941 - 159 - 9 By Bernard Knight - Page 188 `` Pregnancy is well known to occur from such external ejaculation ... '' </Li> <Li> Jump up ^ `` Fertilization of the Ovum '' . Gray 's Anatomy . Retrieved 2010 - 10 - 16 . </Li> <Li> Jump up ^ `` Fertilization '' . Retrieved 28 July 2010 . </Li> <Li> Jump up ^ Angier , Natalie ( 2007 - 06 - 12 ) . `` Sleek , Fast and Focused : The Cells That Make Dad Dad '' . The New York Times . </Li> <Li> Jump up ^ Suzanne Wymelenberg , Science and Babies , National Academy Press , page 17 </Li> <Li> Jump up ^ Richard E. Jones and Kristin H. Lopez , Human Reproductive Biology , Third Edition , Elsevier , 2006 , page 238 </Li> <Li> Jump up ^ `` Fertilization : The Cortical Reaction '' . Boundless . Boundless . Retrieved 14 March 2013 . </Li> <Li> Jump up ^ Jodar , M. ; Selvaraju , S. ; Sendler , E. ; Diamond , M.P. ; Krawetz , S.A. ; for the Reproductive Medicine Networks ( 2013 ) . `` The presence , role and clinical use of spermatozoal RNAs '' . Human Reproduction Update. 19 ( 6 ) : 604 -- 624 . doi : 10.1093 / humupd / dmt031 . PMC 3796946 . PMID 23856356 . </Li> <Li> ^ Jump up to : Marieb , Elaine M. Human Anatomy and Physiology , 5th ed . pp. 1119 - 1122 ( 2001 ) . ISBN 0 - 8053 - 4989 - 8 </Li> <Li> Jump up ^ https://www.genderselectionauthority.com/blog/five-facts-about-xx-or-xy </Li> <Li> Jump up ^ Wagner F , Erd\u00f6sov\u00e1 B , Kylarov\u00e1 D ( December 2004 ) . `` Degradation phase of apoptosis during the early stages of human metanephros development '' . Biomed Pap Med Fac Univ Palacky Olomouc Czech Repub. 148 ( 2 ) : 255 -- 6 . doi : 10.5507 / bp. 2004.054 . PMID 15744391 . </Li> <Li> Jump up ^ Robinson , H.P. ; Fleming , J.E.E. ( 1975 ) . `` A Critical Evaluation of Sonar `` crown - Rump Length '' Measurements `` . BJOG : an International Journal of Obstetrics and Gynaecology. 82 ( 9 ) : 702 -- 710 . doi : 10.1111 / j. 1471 - 0528.1975. tb00710. x . </Li> <Li> ^ Jump up to : Geirsson RT ( May 1991 ) . `` Ultrasound instead of last menstrual period as the basis of gestational age assignment '' . Ultrasound Obstet Gynecol. 1 ( 3 ) : 212 -- 9 . doi : 10.1046 / j. 1469 - 0705.1991. 01030212. x . PMID 12797075 . </Li> <Li> Jump up ^ Derived from a standard deviation in this interval of 2.6 , as given in : Fehring RJ , Schneider M , Raviele K ( 2006 ) . `` Variability in the phases of the menstrual cycle '' . J Obstet Gynecol Neonatal Nurs. 35 ( 3 ) : 376 -- 84 . doi : 10.1111 / j. 1552 - 6909.2006. 00051. x . PMID 16700687 . </Li> <Li> Jump up ^ Jukic AM , Baird DD , Weinberg CR , McConnaughey DR , Wilcox AJ ( 2013 ) . `` Length of human pregnancy and contributors to its natural variation '' . Hum . Reprod. 28 ( 10 ) : 2848 -- 55 . doi : 10.1093 / humrep / det297 . PMC 3777570 . PMID 23922246 . </Li> <Li> Jump up ^ Jobe , Alan H ( 2004 ) . `` Post-conceptional age and IVH in ECMO patients '' . The Journal of Pediatrics. 145 ( 2 ) : A2 . doi : 10.1016 / j. jpeds. 2004.07. 010 . </Li> </Ol> <H2> External links ( edit ) </H2> <Ul> <Li> Fertilization ( Conception ) </Li> </Ul> <Table> <Tr> <Th_colspan=\"2\"> ( hide ) <Ul> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> Human physiology of sexual reproduction </Th> </Tr> <Tr> <Th> Menstrual cycle </Th> <Td> <Ul> <Li> Menarche </Li> <Li> Menstruation </Li> <Li> Follicular phase </Li> <Li> Ovulation </Li> <Li> Luteal phase </Li> </Ul> </Td> </Tr> <Tr> <Th> Gametogenesis </Th> <Td> <Ul> <Li> Spermatogenesis ( spermatogonium </Li> <Li> spermatocyte </Li> <Li> spermatid </Li> <Li> sperm ) </Li> <Li> Oogenesis ( oogonium </Li> <Li> oocyte </Li> <Li> ootid </Li> <Li> ovum ) </Li> <Li> Germ cell ( gonocyte </Li> <Li> gamete ) </Li> </Ul> </Td> </Tr> <Tr> <Th> Human sexual behavior </Th> <Td> <Ul> <Li> Sexual arousal </Li> <Li> Sexual intercourse </Li> <Li> Masturbation </Li> <Li> Erection </Li> <Li> Orgasm </Li> <Li> Ejaculation </Li> <Li> Insemination </Li> <Li> Fertilisation / Fertility </Li> <Li> Implantation </Li> <Li> Pregnancy </Li> <Li> Postpartum period </Li> <Li> Mechanics of sex </Li> </Ul> </Td> </Tr> <Tr> <Th> Life span </Th> <Td> <Ul> <Li> Prenatal development / Sexual dimorphism / Sexual differentiation ( Feminization </Li> <Li> Virilization ) </Li> <Li> Puberty ( Gonadarche </Li> <Li> Pubarche </Li> <Li> Menarche </Li> <Li> Spermarche </Li> <Li> Adrenarche ) </Li> <Li> Maternal age / Paternal age </Li> <Li> Climacteric ( Menopause </Li> <Li> Late - onset hypogonadism ) </Li> <Li> Tanner scale </Li> </Ul> </Td> </Tr> <Tr> <Th> Egg </Th> <Td> <Ul> <Li> Ovum </Li> <Li> Oviposition </Li> <Li> Oviparity </Li> <Li> Ovoviviparity </Li> <Li> Vivipary </Li> </Ul> </Td> </Tr> <Tr> <Th> Reproductive endocrinology and infertility </Th> <Td> <Ul> <Li> Hypothalamic -- pituitary -- gonadal axis </Li> <Li> Hypothalamic -- pituitary -- prolactin axis </Li> <Li> Andrology </Li> <Li> Hormone </Li> </Ul> </Td> </Tr> <Tr> <Th> Breast </Th> <Td> <Ul> <Li> Thelarche </Li> <Li> Breast development </Li> <Li> Lactation </Li> <Li> Breastfeeding </Li> </Ul> </Td> </Tr> </Table> Retrieved from `` https://en.wikipedia.org/w/index.php?title=Human_fertilization&oldid=831042507 '' Categories : <Ul> <Li> Fertility </Li> </Ul> Hidden categories : <Ul> <Li> All articles with unsourced statements </Li> <Li> Articles with unsourced statements from June 2014 </Li> </Ul> <H2> </H2> <H3> </H3> <Ul> <Li> </Li> <Li> Talk </Li> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> </Ul> <H3> </H3> <Ul> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> </Ul> <H3> </H3> <H3> </H3> <Ul> <Li> </Li> <Li> Contents </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> <Li> </Li> <Li> About Wikipedia </Li> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <H3> </H3> <Ul> <Li> </Li> <Li> Bosanski </Li> <Li> \u010ce\u0161tina </Li> <Li> \u0641\u0627\u0631\u0633\u06cc </Li> <Li> Fran\u00e7ais </Li> <Li> Hrvatski </Li> <Li> Latvie\u0161u </Li> <Li> \u0928\u0947\u092a\u093e\u0932\u0940 </Li> <Li> Polski </Li> <Li> Portugu\u00eas </Li> <Li> \u0420\u0443\u0441\u0441\u043a\u0438\u0439 </Li> <Li> Sloven\u010dina </Li> 5 more </Ul> Edit links <Ul> <Li> This page was last edited on 18 March 2018 , at 11 : 37 . </Li> <Li> Text is available under the Creative Commons Attribution - ShareAlike License ; additional terms may apply . By using this site , you agree to the Terms of Use and Privacy Policy . Wikipedia \u00ae is a registered trademark of the Wikimedia Foundation , Inc. , a non-profit organization . </Li> </Ul> <Ul> <Li> </Li> <Li> About Wikipedia </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> <Li> </Li> </Ul> <Ul> <Li> </Li> <Li> </Li> </Ul>",
"document_url": "https://en.wikipedia.org//w/index.php?title=Human_fertilization&oldid=831042507",
"annotations": [
{
"annotation_id": 10527123009892725162,
"short_answers": [],
"long_answer": {
"end_token": 438,
"start_token": 319,
"candidate_index": 24
},
"yes_no_answer": "NONE"
}
]
},
{
"example_id": 5289242154789678439,
"question_text": "who had the most wins in the nfl",
"long_answer_candidates": [
{
"end_token": 469,
"start_token": 28,
"top_level": true
},
{
"end_token": 35,
"start_token": 29,
"top_level": false
},
{
"end_token": 50,
"start_token": 35,
"top_level": false
},
{
"end_token": 48,
"start_token": 42,
"top_level": false
},
{
"end_token": 213,
"start_token": 50,
"top_level": false
},
{
"end_token": 211,
"start_token": 56,
"top_level": false
},
{
"end_token": 186,
"start_token": 57,
"top_level": false
},
{
"end_token": 175,
"start_token": 75,
"top_level": false
},
{
"end_token": 81,
"start_token": 76,
"top_level": false
},
{
"end_token": 185,
"start_token": 175,
"top_level": false
},
{
"end_token": 191,
"start_token": 186,
"top_level": false
},
{
"end_token": 199,
"start_token": 191,
"top_level": false
},
{
"end_token": 210,
"start_token": 199,
"top_level": false
},
{
"end_token": 209,
"start_token": 200,
"top_level": false
},
{
"end_token": 208,
"start_token": 201,
"top_level": false
},
{
"end_token": 266,
"start_token": 213,
"top_level": false
},
{
"end_token": 264,
"start_token": 220,
"top_level": false
},
{
"end_token": 227,
"start_token": 221,
"top_level": false
},
{
"end_token": 233,
"start_token": 227,
"top_level": false
},
{
"end_token": 239,
"start_token": 233,
"top_level": false
},
{
"end_token": 245,
"start_token": 239,
"top_level": false
},
{
"end_token": 251,
"start_token": 245,
"top_level": false
},
{
"end_token": 257,
"start_token": 251,
"top_level": false
},
{
"end_token": 263,
"start_token": 257,
"top_level": false
},
{
"end_token": 310,
"start_token": 266,
"top_level": false
},
{
"end_token": 308,
"start_token": 272,
"top_level": false
},
{
"end_token": 278,
"start_token": 273,
"top_level": false
},
{
"end_token": 284,
"start_token": 278,
"top_level": false
},
{
"end_token": 290,
"start_token": 284,
"top_level": false
},
{
"end_token": 295,
"start_token": 290,
"top_level": false
},
{
"end_token": 301,
"start_token": 295,
"top_level": false
},
{
"end_token": 307,
"start_token": 301,
"top_level": false
},
{
"end_token": 340,
"start_token": 310,
"top_level": false
},
{
"end_token": 338,
"start_token": 316,
"top_level": false
},
{
"end_token": 322,
"start_token": 317,
"top_level": false
},
{
"end_token": 327,
"start_token": 322,
"top_level": false
},