-
Notifications
You must be signed in to change notification settings - Fork 2
/
src-train.txt
1212 lines (1212 loc) · 29.6 KB
/
src-train.txt
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
bounceInDown_image_fast11
bounceInDown_image_faster11
bounceInDown_image_slow11
bounceInDown_image_slower11
bounceInDown_line_fast11
bounceInDown_line_faster11
bounceInDown_line_slow11
bounceInDown_line_slower11
bounceInDown_square_fast11
bounceInDown_square_faster11
bounceInDown_square_slow11
bounceInDown_square_slower11
bounceInDown_text_fast11
bounceInDown_text_faster11
bounceInDown_text_slow11
bounceInDown_text_slower11
bounceInLeft_image_fast12
bounceInLeft_image_faster12
bounceInLeft_image_slow12
bounceInLeft_image_slower12
bounceInLeft_line_fast12
bounceInLeft_line_faster12
bounceInLeft_line_slow12
bounceInLeft_line_slower12
bounceInLeft_square_fast12
bounceInLeft_square_faster12
bounceInLeft_square_slow12
bounceInLeft_square_slower12
bounceInLeft_text_fast12
bounceInLeft_text_faster12
bounceInLeft_text_slow12
bounceInLeft_text_slower12
bounceInRight_image_fast13
bounceInRight_image_faster13
bounceInRight_image_slow13
bounceInRight_image_slower13
bounceInRight_line_fast13
bounceInRight_line_faster13
bounceInRight_line_slow13
bounceInRight_line_slower13
bounceInRight_square_fast13
bounceInRight_square_faster13
bounceInRight_square_slow13
bounceInRight_square_slower13
bounceInRight_text_fast13
bounceInRight_text_faster13
bounceInRight_text_slow13
bounceInRight_text_slower13
bounceInUp_image_fast14
bounceInUp_image_faster14
bounceInUp_image_slow14
bounceInUp_image_slower14
bounceInUp_line_fast14
bounceInUp_line_faster14
bounceInUp_line_slow14
bounceInUp_line_slower14
bounceInUp_square_fast14
bounceInUp_square_faster14
bounceInUp_square_slower14
bounceInUp_text_fast14
bounceInUp_text_faster14
bounceInUp_text_slow14
bounceInUp_text_slower14
bounceIn_image_fast10
bounceIn_image_faster10
bounceIn_image_slow10
bounceIn_image_slower10
bounceIn_line_fast10
bounceIn_line_faster10
bounceIn_line_slow10
bounceIn_line_slower10
bounceIn_square_fast10
bounceIn_square_faster10
bounceIn_square_slow10
bounceIn_square_slower10
bounceIn_text_fast10
bounceIn_text_faster10
bounceIn_text_slow10
bounceIn_text_slower10
bounceOutDown_image_fast16
bounceOutDown_image_faster16
bounceOutDown_image_slow16
bounceOutDown_image_slower16
bounceOutDown_line_fast16
bounceOutDown_line_faster16
bounceOutDown_line_slow16
bounceOutDown_line_slower16
bounceOutDown_square_fast16
bounceOutDown_square_faster16
bounceOutDown_square_slow16
bounceOutDown_square_slower16
bounceOutDown_text_fast16
bounceOutDown_text_faster16
bounceOutDown_text_slow16
bounceOutDown_text_slower16
bounceOutLeft_image_fast17
bounceOutLeft_image_faster17
bounceOutLeft_image_slow17
bounceOutLeft_image_slower17
bounceOutLeft_line_fast17
bounceOutLeft_line_faster17
bounceOutLeft_line_slow17
bounceOutLeft_line_slower17
bounceOutLeft_square_fast17
bounceOutLeft_square_faster17
bounceOutLeft_square_slow17
bounceOutLeft_square_slower17
bounceOutLeft_text_fast17
bounceOutLeft_text_faster17
bounceOutLeft_text_slow17
bounceOutLeft_text_slower17
bounceOutRight_image_fast18
bounceOutRight_image_faster18
bounceOutRight_image_slow18
bounceOutRight_image_slower18
bounceOutRight_line_fast18
bounceOutRight_line_slow18
bounceOutRight_line_slower18
bounceOutRight_square_fast18
bounceOutRight_square_faster18
bounceOutRight_square_slow18
bounceOutRight_square_slower18
bounceOutRight_text_fast18
bounceOutRight_text_faster18
bounceOutRight_text_slow18
bounceOutRight_text_slower18
bounceOutUp_image_fast19
bounceOutUp_image_faster19
bounceOutUp_image_slow19
bounceOutUp_image_slower19
bounceOutUp_line_fast19
bounceOutUp_line_faster19
bounceOutUp_line_slow19
bounceOutUp_line_slower19
bounceOutUp_square_fast19
bounceOutUp_square_faster19
bounceOutUp_square_slow19
bounceOutUp_square_slower19
bounceOutUp_text_fast19
bounceOutUp_text_faster19
bounceOutUp_text_slow19
bounceOutUp_text_slower19
bounceOut_image_fast15
bounceOut_image_faster15
bounceOut_image_slow15
bounceOut_image_slower15
bounceOut_line_fast15
bounceOut_line_faster15
bounceOut_line_slow15
bounceOut_line_slower15
bounceOut_square_fast15
bounceOut_square_faster15
bounceOut_square_slow15
bounceOut_square_slower15
bounceOut_text_fast15
bounceOut_text_faster15
bounceOut_text_slow15
bounceOut_text_slower15
bounce_image_fast0
bounce_image_faster0
bounce_image_slow0
bounce_image_slower0
bounce_line_fast0
bounce_line_faster0
bounce_line_slow0
bounce_line_slower0
bounce_square_fast0
bounce_square_faster0
bounce_square_slow0
bounce_square_slower0
bounce_text_fast0
bounce_text_faster0
bounce_text_slow0
bounce_text_slower0
fadeInDownBig_image_faster22
fadeInDownBig_image_slow22
fadeInDownBig_image_slower22
fadeInDownBig_line_fast22
fadeInDownBig_line_faster22
fadeInDownBig_line_slow22
fadeInDownBig_line_slower22
fadeInDownBig_square_fast22
fadeInDownBig_square_faster22
fadeInDownBig_square_slow22
fadeInDownBig_square_slower22
fadeInDownBig_text_fast22
fadeInDownBig_text_faster22
fadeInDownBig_text_slow22
fadeInDownBig_text_slower22
fadeInDown_image_fast21
fadeInDown_image_faster21
fadeInDown_image_slow21
fadeInDown_image_slower21
fadeInDown_line_fast21
fadeInDown_line_faster21
fadeInDown_line_slow21
fadeInDown_line_slower21
fadeInDown_square_fast21
fadeInDown_square_faster21
fadeInDown_square_slow21
fadeInDown_square_slower21
fadeInDown_text_fast21
fadeInDown_text_faster21
fadeInDown_text_slow21
fadeInDown_text_slower21
fadeInLeftBig_image_fast24
fadeInLeftBig_image_faster24
fadeInLeftBig_image_slow24
fadeInLeftBig_image_slower24
fadeInLeftBig_line_fast24
fadeInLeftBig_line_faster24
fadeInLeftBig_line_slow24
fadeInLeftBig_line_slower24
fadeInLeftBig_square_fast24
fadeInLeftBig_square_faster24
fadeInLeftBig_square_slow24
fadeInLeftBig_square_slower24
fadeInLeftBig_text_fast24
fadeInLeftBig_text_faster24
fadeInLeftBig_text_slow24
fadeInLeftBig_text_slower24
fadeInLeft_image_fast23
fadeInLeft_image_faster23
fadeInLeft_image_slow23
fadeInLeft_image_slower23
fadeInLeft_line_fast23
fadeInLeft_line_faster23
fadeInLeft_line_slow23
fadeInLeft_line_slower23
fadeInLeft_square_fast23
fadeInLeft_square_faster23
fadeInLeft_square_slow23
fadeInLeft_text_fast23
fadeInLeft_text_faster23
fadeInLeft_text_slow23
fadeInLeft_text_slower23
fadeInRightBig_image_fast26
fadeInRightBig_image_faster26
fadeInRightBig_image_slow26
fadeInRightBig_image_slower26
fadeInRightBig_line_fast26
fadeInRightBig_line_faster26
fadeInRightBig_line_slow26
fadeInRightBig_line_slower26
fadeInRightBig_square_fast26
fadeInRightBig_square_faster26
fadeInRightBig_square_slow26
fadeInRightBig_square_slower26
fadeInRightBig_text_fast26
fadeInRightBig_text_faster26
fadeInRightBig_text_slow26
fadeInRightBig_text_slower26
fadeInRight_image_fast25
fadeInRight_image_faster25
fadeInRight_image_slow25
fadeInRight_image_slower25
fadeInRight_line_fast25
fadeInRight_line_faster25
fadeInRight_line_slow25
fadeInRight_line_slower25
fadeInRight_square_fast25
fadeInRight_square_faster25
fadeInRight_square_slow25
fadeInRight_square_slower25
fadeInRight_text_fast25
fadeInRight_text_faster25
fadeInRight_text_slow25
fadeInRight_text_slower25
fadeInUpBig_image_fast28
fadeInUpBig_image_faster28
fadeInUpBig_image_slow28
fadeInUpBig_image_slower28
fadeInUpBig_line_fast28
fadeInUpBig_line_faster28
fadeInUpBig_line_slow28
fadeInUpBig_line_slower28
fadeInUpBig_square_fast28
fadeInUpBig_square_faster28
fadeInUpBig_square_slow28
fadeInUpBig_square_slower28
fadeInUpBig_text_fast28
fadeInUpBig_text_faster28
fadeInUpBig_text_slow28
fadeInUpBig_text_slower28
fadeInUp_image_fast27
fadeInUp_image_faster27
fadeInUp_image_slow27
fadeInUp_image_slower27
fadeInUp_line_fast27
fadeInUp_line_faster27
fadeInUp_line_slower27
fadeInUp_square_fast27
fadeInUp_square_faster27
fadeInUp_square_slow27
fadeInUp_square_slower27
fadeInUp_text_fast27
fadeInUp_text_faster27
fadeInUp_text_slow27
fadeInUp_text_slower27
fadeIn_image_fast20
fadeIn_image_faster20
fadeIn_image_slow20
fadeIn_image_slower20
fadeIn_line_fast20
fadeIn_line_faster20
fadeIn_line_slow20
fadeIn_line_slower20
fadeIn_square_fast20
fadeIn_square_faster20
fadeIn_square_slow20
fadeIn_square_slower20
fadeIn_text_fast20
fadeIn_text_faster20
fadeIn_text_slow20
fadeIn_text_slower20
fadeOutDownBig_image_fast31
fadeOutDownBig_image_faster31
fadeOutDownBig_image_slow31
fadeOutDownBig_image_slower31
fadeOutDownBig_line_fast31
fadeOutDownBig_line_faster31
fadeOutDownBig_line_slow31
fadeOutDownBig_line_slower31
fadeOutDownBig_square_fast31
fadeOutDownBig_square_faster31
fadeOutDownBig_square_slow31
fadeOutDownBig_square_slower31
fadeOutDownBig_text_fast31
fadeOutDownBig_text_faster31
fadeOutDownBig_text_slow31
fadeOutDownBig_text_slower31
fadeOutDown_image_fast30
fadeOutDown_image_faster30
fadeOutDown_image_slow30
fadeOutDown_image_slower30
fadeOutDown_line_fast30
fadeOutDown_line_faster30
fadeOutDown_line_slow30
fadeOutDown_line_slower30
fadeOutDown_square_fast30
fadeOutDown_square_faster30
fadeOutDown_square_slow30
fadeOutDown_square_slower30
fadeOutDown_text_fast30
fadeOutDown_text_faster30
fadeOutDown_text_slow30
fadeOutDown_text_slower30
fadeOutLeftBig_image_fast33
fadeOutLeftBig_image_slow33
fadeOutLeftBig_image_slower33
fadeOutLeftBig_line_fast33
fadeOutLeftBig_line_faster33
fadeOutLeftBig_line_slow33
fadeOutLeftBig_line_slower33
fadeOutLeftBig_square_fast33
fadeOutLeftBig_square_faster33
fadeOutLeftBig_square_slow33
fadeOutLeftBig_square_slower33
fadeOutLeftBig_text_fast33
fadeOutLeftBig_text_faster33
fadeOutLeftBig_text_slow33
fadeOutLeftBig_text_slower33
fadeOutLeft_image_fast32
fadeOutLeft_image_faster32
fadeOutLeft_image_slow32
fadeOutLeft_image_slower32
fadeOutLeft_line_fast32
fadeOutLeft_line_faster32
fadeOutLeft_line_slow32
fadeOutLeft_line_slower32
fadeOutLeft_square_fast32
fadeOutLeft_square_faster32
fadeOutLeft_square_slow32
fadeOutLeft_square_slower32
fadeOutLeft_text_fast32
fadeOutLeft_text_faster32
fadeOutLeft_text_slow32
fadeOutLeft_text_slower32
fadeOutRightBig_image_fast35
fadeOutRightBig_image_faster35
fadeOutRightBig_image_slow35
fadeOutRightBig_image_slower35
fadeOutRightBig_line_fast35
fadeOutRightBig_line_faster35
fadeOutRightBig_line_slow35
fadeOutRightBig_line_slower35
fadeOutRightBig_square_fast35
fadeOutRightBig_square_faster35
fadeOutRightBig_square_slow35
fadeOutRightBig_square_slower35
fadeOutRightBig_text_fast35
fadeOutRightBig_text_faster35
fadeOutRightBig_text_slow35
fadeOutRightBig_text_slower35
fadeOutRight_image_fast34
fadeOutRight_image_faster34
fadeOutRight_image_slow34
fadeOutRight_image_slower34
fadeOutRight_line_fast34
fadeOutRight_line_faster34
fadeOutRight_line_slow34
fadeOutRight_line_slower34
fadeOutRight_square_fast34
fadeOutRight_square_faster34
fadeOutRight_square_slow34
fadeOutRight_square_slower34
fadeOutRight_text_faster34
fadeOutRight_text_slow34
fadeOutRight_text_slower34
fadeOutUpBig_image_fast37
fadeOutUpBig_image_faster37
fadeOutUpBig_image_slow37
fadeOutUpBig_image_slower37
fadeOutUpBig_line_fast37
fadeOutUpBig_line_faster37
fadeOutUpBig_line_slow37
fadeOutUpBig_line_slower37
fadeOutUpBig_square_fast37
fadeOutUpBig_square_faster37
fadeOutUpBig_square_slow37
fadeOutUpBig_square_slower37
fadeOutUpBig_text_fast37
fadeOutUpBig_text_faster37
fadeOutUpBig_text_slow37
fadeOutUpBig_text_slower37
fadeOutUp_image_fast36
fadeOutUp_image_faster36
fadeOutUp_image_slow36
fadeOutUp_image_slower36
fadeOutUp_line_fast36
fadeOutUp_line_faster36
fadeOutUp_line_slow36
fadeOutUp_line_slower36
fadeOutUp_square_fast36
fadeOutUp_square_faster36
fadeOutUp_square_slow36
fadeOutUp_square_slower36
fadeOutUp_text_fast36
fadeOutUp_text_faster36
fadeOutUp_text_slow36
fadeOutUp_text_slower36
fadeOut_image_fast29
fadeOut_image_faster29
fadeOut_image_slow29
fadeOut_image_slower29
fadeOut_line_fast29
fadeOut_line_faster29
fadeOut_line_slow29
fadeOut_line_slower29
fadeOut_square_fast29
fadeOut_square_faster29
fadeOut_square_slow29
fadeOut_square_slower29
fadeOut_text_fast29
fadeOut_text_faster29
fadeOut_text_slow29
fadeOut_text_slower29
flash_image_fast1
flash_image_faster1
flash_image_slow1
flash_image_slower1
flash_line_fast1
flash_line_faster1
flash_line_slow1
flash_square_fast1
flash_square_faster1
flash_square_slow1
flash_square_slower1
flash_text_fast1
flash_text_faster1
flash_text_slow1
flash_text_slower1
flipInX_image_fast38
flipInX_image_faster38
flipInX_image_slow38
flipInX_image_slower38
flipInX_line_fast38
flipInX_line_faster38
flipInX_line_slow38
flipInX_line_slower38
flipInX_square_fast38
flipInX_square_faster38
flipInX_square_slow38
flipInX_square_slower38
flipInX_text_fast38
flipInX_text_faster38
flipInX_text_slow38
flipInX_text_slower38
flipInY_image_fast39
flipInY_image_faster39
flipInY_image_slow39
flipInY_image_slower39
flipInY_line_fast39
flipInY_line_faster39
flipInY_line_slow39
flipInY_line_slower39
flipInY_square_fast39
flipInY_square_faster39
flipInY_square_slow39
flipInY_square_slower39
flipInY_text_fast39
flipInY_text_faster39
flipInY_text_slow39
flipInY_text_slower39
flipOutX_image_fast40
flipOutX_image_faster40
flipOutX_image_slow40
flipOutX_image_slower40
flipOutX_line_fast40
flipOutX_line_faster40
flipOutX_line_slow40
flipOutX_line_slower40
flipOutX_square_fast40
flipOutX_square_faster40
flipOutX_square_slow40
flipOutX_square_slower40
flipOutX_text_fast40
flipOutX_text_faster40
flipOutX_text_slow40
flipOutX_text_slower40
flipOutY_image_fast41
flipOutY_image_faster41
flipOutY_image_slower41
flipOutY_line_fast41
flipOutY_line_faster41
flipOutY_line_slow41
flipOutY_line_slower41
flipOutY_square_fast41
flipOutY_square_faster41
flipOutY_square_slow41
flipOutY_square_slower41
flipOutY_text_fast41
flipOutY_text_faster41
flipOutY_text_slow41
flipOutY_text_slower41
headShake_image_fast5
headShake_image_faster5
headShake_image_slow5
headShake_image_slower5
headShake_line_fast5
headShake_line_faster5
headShake_line_slow5
headShake_line_slower5
headShake_square_fast5
headShake_square_faster5
headShake_square_slow5
headShake_square_slower5
headShake_text_fast5
headShake_text_faster5
headShake_text_slow5
headShake_text_slower5
heartBeat_image_fast76
heartBeat_image_faster76
heartBeat_image_slow76
heartBeat_image_slower76
heartBeat_line_fast76
heartBeat_line_faster76
heartBeat_line_slow76
heartBeat_line_slower76
heartBeat_square_fast76
heartBeat_square_faster76
heartBeat_square_slow76
heartBeat_square_slower76
heartBeat_text_fast76
heartBeat_text_faster76
heartBeat_text_slow76
heartBeat_text_slower76
hinge_image_fast54
hinge_image_faster54
hinge_image_slow54
hinge_image_slower54
hinge_line_fast54
hinge_line_faster54
hinge_line_slow54
hinge_line_slower54
hinge_square_fast54
hinge_square_faster54
hinge_square_slow54
hinge_square_slower54
hinge_text_fast54
hinge_text_slow54
hinge_text_slower54
jackInTheBox_image_fast55
jackInTheBox_image_faster55
jackInTheBox_image_slow55
jackInTheBox_image_slower55
jackInTheBox_line_fast55
jackInTheBox_line_faster55
jackInTheBox_line_slow55
jackInTheBox_line_slower55
jackInTheBox_square_fast55
jackInTheBox_square_faster55
jackInTheBox_square_slow55
jackInTheBox_square_slower55
jackInTheBox_text_fast55
jackInTheBox_text_faster55
jackInTheBox_text_slow55
jackInTheBox_text_slower55
jello_image_fast9
jello_image_faster9
jello_image_slow9
jello_image_slower9
jello_line_fast9
jello_line_faster9
jello_line_slow9
jello_line_slower9
jello_square_fast9
jello_square_faster9
jello_square_slow9
jello_square_slower9
jello_text_fast9
jello_text_faster9
jello_text_slow9
jello_text_slower9
lightSpeedIn_image_fast42
lightSpeedIn_image_faster42
lightSpeedIn_image_slow42
lightSpeedIn_image_slower42
lightSpeedIn_line_fast42
lightSpeedIn_line_faster42
lightSpeedIn_line_slow42
lightSpeedIn_line_slower42
lightSpeedIn_square_fast42
lightSpeedIn_square_faster42
lightSpeedIn_square_slow42
lightSpeedIn_square_slower42
lightSpeedIn_text_fast42
lightSpeedIn_text_faster42
lightSpeedIn_text_slow42
lightSpeedIn_text_slower42
lightSpeedOut_image_fast43
lightSpeedOut_image_faster43
lightSpeedOut_image_slow43
lightSpeedOut_image_slower43
lightSpeedOut_line_fast43
lightSpeedOut_line_faster43
lightSpeedOut_line_slow43
lightSpeedOut_line_slower43
lightSpeedOut_square_faster43
lightSpeedOut_square_slow43
lightSpeedOut_square_slower43
lightSpeedOut_text_fast43
lightSpeedOut_text_faster43
lightSpeedOut_text_slow43
lightSpeedOut_text_slower43
pulse_image_fast2
pulse_image_faster2
pulse_image_slow2
pulse_image_slower2
pulse_line_fast2
pulse_line_faster2
pulse_line_slow2
pulse_line_slower2
pulse_square_fast2
pulse_square_faster2
pulse_square_slow2
pulse_square_slower2
pulse_text_fast2
pulse_text_faster2
pulse_text_slow2
pulse_text_slower2
rollIn_image_fast56
rollIn_image_faster56
rollIn_image_slow56
rollIn_image_slower56
rollIn_line_fast56
rollIn_line_faster56
rollIn_line_slow56
rollIn_line_slower56
rollIn_square_fast56
rollIn_square_faster56
rollIn_square_slow56
rollIn_square_slower56
rollIn_text_fast56
rollIn_text_faster56
rollIn_text_slow56
rollIn_text_slower56
rollOut_image_fast57
rollOut_image_faster57
rollOut_image_slow57
rollOut_image_slower57
rollOut_line_fast57
rollOut_line_faster57
rollOut_line_slow57
rollOut_line_slower57
rollOut_square_fast57
rollOut_square_faster57
rollOut_square_slow57
rollOut_square_slower57
rollOut_text_fast57
rollOut_text_faster57
rollOut_text_slow57
rollOut_text_slower57
rotateInDownLeft_image_fast45
rotateInDownLeft_image_faster45
rotateInDownLeft_image_slow45
rotateInDownLeft_line_fast45
rotateInDownLeft_line_faster45
rotateInDownLeft_line_slow45
rotateInDownLeft_line_slower45
rotateInDownLeft_square_fast45
rotateInDownLeft_square_faster45
rotateInDownLeft_square_slow45
rotateInDownLeft_square_slower45
rotateInDownLeft_text_fast45
rotateInDownLeft_text_faster45
rotateInDownLeft_text_slow45
rotateInDownLeft_text_slower45
rotateInDownRight_image_fast46
rotateInDownRight_image_faster46
rotateInDownRight_image_slow46
rotateInDownRight_image_slower46
rotateInDownRight_line_fast46
rotateInDownRight_line_faster46
rotateInDownRight_line_slow46
rotateInDownRight_line_slower46
rotateInDownRight_square_fast46
rotateInDownRight_square_faster46
rotateInDownRight_square_slow46
rotateInDownRight_square_slower46
rotateInDownRight_text_fast46
rotateInDownRight_text_faster46
rotateInDownRight_text_slow46
rotateInDownRight_text_slower46
rotateInUpLeft_image_fast47
rotateInUpLeft_image_faster47
rotateInUpLeft_image_slow47
rotateInUpLeft_image_slower47
rotateInUpLeft_line_fast47
rotateInUpLeft_line_faster47
rotateInUpLeft_line_slow47
rotateInUpLeft_line_slower47
rotateInUpLeft_square_fast47
rotateInUpLeft_square_faster47
rotateInUpLeft_square_slow47
rotateInUpLeft_square_slower47
rotateInUpLeft_text_fast47
rotateInUpLeft_text_faster47
rotateInUpLeft_text_slow47
rotateInUpLeft_text_slower47
rotateInUpRight_image_fast48
rotateInUpRight_image_faster48
rotateInUpRight_image_slow48
rotateInUpRight_image_slower48
rotateInUpRight_line_fast48
rotateInUpRight_line_faster48
rotateInUpRight_line_slow48
rotateInUpRight_line_slower48
rotateInUpRight_square_fast48
rotateInUpRight_square_faster48
rotateInUpRight_square_slow48
rotateInUpRight_square_slower48
rotateInUpRight_text_fast48
rotateInUpRight_text_faster48
rotateInUpRight_text_slower48
rotateIn_image_fast44
rotateIn_image_faster44
rotateIn_image_slow44
rotateIn_image_slower44
rotateIn_line_fast44
rotateIn_line_faster44
rotateIn_line_slow44
rotateIn_line_slower44
rotateIn_square_fast44
rotateIn_square_faster44
rotateIn_square_slow44
rotateIn_square_slower44
rotateIn_text_fast44
rotateIn_text_faster44
rotateIn_text_slow44
rotateIn_text_slower44
rotateOutDownLeft_image_fast50
rotateOutDownLeft_image_faster50
rotateOutDownLeft_image_slow50
rotateOutDownLeft_image_slower50
rotateOutDownLeft_line_fast50
rotateOutDownLeft_line_faster50
rotateOutDownLeft_line_slow50
rotateOutDownLeft_line_slower50
rotateOutDownLeft_square_fast50
rotateOutDownLeft_square_faster50
rotateOutDownLeft_square_slow50
rotateOutDownLeft_square_slower50
rotateOutDownLeft_text_fast50
rotateOutDownLeft_text_faster50
rotateOutDownLeft_text_slow50
rotateOutDownLeft_text_slower50
rotateOutDownRight_image_fast51
rotateOutDownRight_image_faster51
rotateOutDownRight_image_slow51
rotateOutDownRight_image_slower51
rotateOutDownRight_line_fast51
rotateOutDownRight_line_faster51
rotateOutDownRight_line_slow51
rotateOutDownRight_line_slower51
rotateOutDownRight_square_fast51
rotateOutDownRight_square_faster51
rotateOutDownRight_square_slow51
rotateOutDownRight_square_slower51
rotateOutDownRight_text_fast51
rotateOutDownRight_text_faster51
rotateOutDownRight_text_slow51
rotateOutDownRight_text_slower51
rotateOutUpLeft_image_fast52
rotateOutUpLeft_image_faster52
rotateOutUpLeft_image_slow52
rotateOutUpLeft_image_slower52
rotateOutUpLeft_line_fast52
rotateOutUpLeft_line_faster52
rotateOutUpLeft_line_slow52
rotateOutUpLeft_line_slower52
rotateOutUpLeft_square_fast52
rotateOutUpLeft_square_slow52
rotateOutUpLeft_square_slower52
rotateOutUpLeft_text_fast52
rotateOutUpLeft_text_faster52
rotateOutUpLeft_text_slow52
rotateOutUpLeft_text_slower52
rotateOutUpRight_image_fast53
rotateOutUpRight_image_faster53
rotateOutUpRight_image_slow53
rotateOutUpRight_image_slower53
rotateOutUpRight_line_fast53
rotateOutUpRight_line_faster53
rotateOutUpRight_line_slow53
rotateOutUpRight_line_slower53
rotateOutUpRight_square_fast53
rotateOutUpRight_square_faster53
rotateOutUpRight_square_slow53
rotateOutUpRight_square_slower53
rotateOutUpRight_text_fast53
rotateOutUpRight_text_faster53
rotateOutUpRight_text_slow53
rotateOutUpRight_text_slower53
rotateOut_image_fast49
rotateOut_image_faster49
rotateOut_image_slow49
rotateOut_image_slower49
rotateOut_line_fast49
rotateOut_line_faster49
rotateOut_line_slow49
rotateOut_line_slower49
rotateOut_square_fast49
rotateOut_square_faster49
rotateOut_square_slow49
rotateOut_square_slower49
rotateOut_text_fast49
rotateOut_text_faster49
rotateOut_text_slow49
rotateOut_text_slower49
rubberBand_image_fast3
rubberBand_image_faster3
rubberBand_image_slow3
rubberBand_image_slower3
rubberBand_line_fast3
rubberBand_line_faster3
rubberBand_line_slow3
rubberBand_line_slower3
rubberBand_square_fast3
rubberBand_square_faster3
rubberBand_square_slow3
rubberBand_square_slower3
rubberBand_text_fast3
rubberBand_text_faster3
rubberBand_text_slow3
rubberBand_text_slower3
shake_image_fast4
shake_image_faster4
shake_image_slow4
shake_image_slower4
shake_line_faster4
shake_line_slow4
shake_line_slower4
shake_square_fast4
shake_square_faster4
shake_square_slow4
shake_square_slower4
shake_text_fast4
shake_text_faster4
shake_text_slow4
shake_text_slower4
slideInDown_image_fast68
slideInDown_image_faster68
slideInDown_image_slow68
slideInDown_image_slower68
slideInDown_line_fast68
slideInDown_line_faster68
slideInDown_line_slow68
slideInDown_line_slower68
slideInDown_square_fast68
slideInDown_square_faster68
slideInDown_square_slow68
slideInDown_square_slower68
slideInDown_text_fast68
slideInDown_text_faster68
slideInDown_text_slow68
slideInDown_text_slower68
slideInLeft_image_fast69
slideInLeft_image_faster69
slideInLeft_image_slow69
slideInLeft_image_slower69
slideInLeft_line_fast69
slideInLeft_line_faster69
slideInLeft_line_slow69
slideInLeft_line_slower69
slideInLeft_square_fast69
slideInLeft_square_faster69
slideInLeft_square_slow69
slideInLeft_square_slower69
slideInLeft_text_fast69
slideInLeft_text_faster69
slideInLeft_text_slow69
slideInLeft_text_slower69
slideInRight_image_fast70
slideInRight_image_faster70
slideInRight_image_slow70
slideInRight_image_slower70
slideInRight_line_fast70
slideInRight_line_faster70
slideInRight_line_slow70
slideInRight_line_slower70
slideInRight_square_fast70
slideInRight_square_faster70
slideInRight_square_slow70
slideInRight_square_slower70
slideInRight_text_fast70
slideInRight_text_faster70
slideInRight_text_slow70
slideInUp_image_fast71
slideInUp_image_faster71
slideInUp_image_slow71
slideInUp_image_slower71
slideInUp_line_fast71
slideInUp_line_faster71
slideInUp_line_slow71
slideInUp_line_slower71
slideInUp_square_fast71
slideInUp_square_faster71
slideInUp_square_slow71
slideInUp_square_slower71
slideInUp_text_fast71
slideInUp_text_faster71
slideInUp_text_slow71
slideInUp_text_slower71
slideOutDown_image_fast72
slideOutDown_image_faster72
slideOutDown_image_slow72
slideOutDown_image_slower72
slideOutDown_line_fast72
slideOutDown_line_faster72
slideOutDown_line_slow72
slideOutDown_line_slower72
slideOutDown_square_fast72
slideOutDown_square_faster72
slideOutDown_square_slow72
slideOutDown_square_slower72
slideOutDown_text_fast72
slideOutDown_text_faster72
slideOutDown_text_slow72
slideOutDown_text_slower72
slideOutLeft_image_fast73
slideOutLeft_image_faster73
slideOutLeft_image_slow73
slideOutLeft_image_slower73
slideOutLeft_line_fast73
slideOutLeft_line_faster73
slideOutLeft_line_slow73
slideOutLeft_line_slower73
slideOutLeft_square_fast73
slideOutLeft_square_faster73
slideOutLeft_square_slow73
slideOutLeft_square_slower73
slideOutLeft_text_fast73
slideOutLeft_text_faster73
slideOutLeft_text_slow73
slideOutLeft_text_slower73
slideOutRight_image_fast74
slideOutRight_image_faster74
slideOutRight_image_slow74
slideOutRight_image_slower74
slideOutRight_line_fast74
slideOutRight_line_faster74
slideOutRight_line_slow74
slideOutRight_line_slower74
slideOutRight_square_fast74
slideOutRight_square_faster74
slideOutRight_square_slower74
slideOutRight_text_fast74
slideOutRight_text_faster74
slideOutRight_text_slow74
slideOutRight_text_slower74
slideOutUp_image_fast75
slideOutUp_image_faster75
slideOutUp_image_slow75
slideOutUp_image_slower75
slideOutUp_line_fast75
slideOutUp_line_faster75
slideOutUp_line_slow75
slideOutUp_line_slower75
slideOutUp_square_fast75