-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLatexCode.tex
1498 lines (1498 loc) · 49.9 KB
/
LatexCode.tex
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
\begin{itemize}%
\item%
Accipitridae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Haliastur indus (LC)}%
\item[]%
\textbf{Brahminy Kite}%
\end{description}%
\begin{description}%
\item[H: ]%
Very common breeding resident in lowlands. Regular but rare visitor to the hills. Can be observed easily near water mainly in coastal areas and large inland wetlands and also along rivers{[}2{]}.%
\item[D: ]%
Fish, snakes, lizards, frogs, and small mammals. They soar high in the air and swoop down to catch their prey.%
\item[R: ]%
Most commonly observed during flight throughout the university. Perched specimen can be spotted near the university ground premises and the bolgoda lakeside trees.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Accipiter badius (LC)}%
\item[]%
\textbf{Shikra}%
\end{description}%
\begin{description}%
\item[H: ]%
Common breeding resident throughout the entire island. Can be observed in both open country and in dense forest. Specially can be observed in close proximity with residential areas too{[}2{]}.%
\item[D: ]%
Lizards, birds, snakes, and insects. They hunt from perches or by flying low over the ground.%
\item[R: ]%
Perched on trees around the ground and in Kaju Kele and in flight at Boat yard area.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Pernis ptilorhynchus (VU)}%
\item[]%
\textbf{Oriental Honey Bazzard}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly rare breeding resident and the population much increased by the winter migrants. Occurs throughout the island. Mostly observed in well{-}wooded areas{[}2{]}.%
\item[D: ]%
Primarily larvae, pupae, and honeycombs of social wasps and bees, occasionally supplemented with cicadas, small birds, reptiles, and frogs.%
\item[R: ]%
Edges of the university ground, boat yard and the surrounding trees.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Haliaeetus leucogaster (LC)}%
\item[]%
\textbf{White{-}Bellied Sea Eagle}%
\end{description}%
\begin{description}%
\item[H: ]%
Kind of uncommon breeding resident in lowlands and up to lower hills, more common in dry lowlands and regular visitor to higher hills. Mainly observed in near vicinity of coasts, large tanks and also along rivers{[}2{]}.%
\item[D: ]%
Primarily fish, scavenged carrion, and occasionally reptiles and crustaceans. They hunt by soaring and diving, snatching prey from the water's surface.%
\item[R: ]%
Around the university ground and the boat yard area.%
\end{description}%
\end{enumerate}%
\item%
Accipitridae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Nisaetus cirrhatus (LC)}%
\item[]%
\textbf{Changeable{-}Hawk Eagle/Crested Hawk{-}Eagle}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly common locally througout the island and a breeding resident. Well wooded areas is the preferred habitat{[}2{]}.%
\item[D: ]%
Has a diverse diet, preying on a variety of animals including mammals, large birds, reptiles such as snakes and lizards, fish and amphibians like frogs.%
\item[R: ]%
Observed only once in the boat yard at the opposite bank.%
\end{description}%
\end{enumerate}%
\item%
Acrocephalidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Acrocephalus dumetorum (LC*)}%
\item[]%
\textbf{Blyth'S Reed Warbler}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly common winter migrant throughout the Island. Bushes, undergrowth and reed beds are the places to observe{[}2{]}.%
\item[D: ]%
Primarily feed on arthropods found in vegetation, including insects, spiders, and occasionally small snails.%
\item[R: ]%
Recorded only once and was in the Boatyard.%
\end{description}%
\end{enumerate}%
\item%
Aegithinidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Aegithina tiphia (LC)}%
\item[]%
\textbf{Common Iora}%
\end{description}%
\begin{description}%
\item[H: ]%
A common breeding resident throughout lowlands and up to mid hills{[}2{]}.%
\item[D: ]%
It primarily feeds on insects like grasshoppers, caterpillars, dragonflies, and mantises. It also eats spiders, smaller insects, fruit, and nectar.%
\item[R: ]%
Recorded from hotspot 2 inside Kaju kele.%
\end{description}%
\end{enumerate}%
\item%
Alcedinidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Pelargopsis capensis (LC)}%
\item[]%
\textbf{Stork{-}Billed Kingfisher}%
\end{description}%
\begin{description}%
\item[H: ]%
Uncommon breeding resident from lowlands up to lower hills. Wooded banks of rivers and streams, lakes and paddyfields adjoining wooded areas, tanks, lagoons and mangrove edged creeks are the habitat where mostly can be seen.{[}2{]}.%
\item[D: ]%
Mainly consists of fresh water fish speices, crustatians, frogs and sometimes small rodents.%
\item[R: ]%
boat yard and the surrounding areas of Bolgoda lake.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Halcyon smyrnensis (LC)}%
\item[]%
\textbf{White{-}Brested Kingfisher/White{-}Throated Kingfisher}%
\end{description}%
\begin{description}%
\item[H: ]%
Common breeding resident found throughout the island. Can be observed in open areas, cultivation, gardens and wetlands. The most common Kingfisher species in Sri Lanka{[}2{]}.%
\item[D: ]%
Has a diverse range of prey, including large crustaceans, insects, earthworms, rodents, lizards, snakes, fish, and frogs. Occationally preys on small birds.%
\item[R: ]%
Near the university playground, hostels and fairly common in boat yard and Kaju Kele.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Ceryle rudis (LC)}%
\item[]%
\textbf{Pied Kingfisher}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly uncommon breeding resident in lowlands. ocassionally visits low hills. Paddyfields,streams,tanks and coastal areas of estuaries,lagoons,large tanks and slow moving rivers are the preferred habitat{[}2{]}.%
\item[D: ]%
The primary diet of this species comprises fish. Occasionally consumes crustaceans and large aquatic insects such as dragonfly larvae.%
\item[R: ]%
boat yard and the surrounding areas of Bolgoda lake.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Alcedo atthis (LC)}%
\item[]%
\textbf{Common Kingfisher}%
\end{description}%
\begin{description}%
\item[H: ]%
Somewhat uncommon breeding resident thoughout Sri Lanka, but rare in higher hills. Wetlands, open country and forests are the preferred habitat{[}2{]}.%
\item[D: ]%
Primary diet consists mainly of small fish, although it also includes insect larvae and, occasionally frogs.%
\item[R: ]%
boat yard and the surrounding areas of Bolgoda lake.%
\end{description}%
\end{enumerate}%
\item%
Anatidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Dendrocygna javanica (LC)}%
\item[]%
\textbf{Lesser Whistling{-}Duck}%
\end{description}%
\begin{description}%
\item[H: ]%
Common breeding resident throughout the lowlands. Migrant population also has been identified during the northern winter season. Can be commonly observed in fresh water marshes and tanks{[}2{]}.%
\item[D: ]%
Mainly on plants taken from the water as well as grains from cultivated rice apart from small fish, frogs and invertebrates such as molluscs and worms%
\item[R: ]%
boat yard and the surrounding areas of Bolgoda lake.%
\end{description}%
\end{enumerate}%
\item%
Anhingidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Anhinga melanogaster (LC)}%
\item[]%
\textbf{Oriental Darter}%
\end{description}%
\begin{description}%
\item[H: ]%
Uncommon breeeding resident in dry lowlands. Very rarely observed in wet lowlands and high hills. Tanks, lakes, larger rivers and lagoons are the preferred habitat{[}2{]}.%
\item[D: ]%
Mainly fish, particularly snakeheads and mudfish.%
\item[R: ]%
boat yard and the surrounding areas of Bolgoda lake.%
\end{description}%
\end{enumerate}%
\item%
Apodidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Cypsiurus balasiensis (LC)}%
\item[]%
\textbf{Asian Palm{-}Swift}%
\end{description}%
\begin{description}%
\item[H: ]%
Common breeding resident throughout Sri Lanka. Mainly observed around fan palms{[}2{]}.%
\item[D: ]%
Primarily sustains itself on an insect{-}based diet such as grasshoppers, moths, crickets, mantises, beetles, dragonflies and flying termites.%
\item[R: ]%
Surrounding woody areas of the university playground and open banks of Bolgoda lake near boat yard.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Aerodramus unicolor (VU)}%
\item[]%
\textbf{Indian Swiftlet}%
\end{description}%
\begin{description}%
\item[H: ]%
Common breeding resident found throughout Sri Lanka. Roosts and breeds inside cav{[}2{]}.%
\item[D: ]%
Diet comprises a variety of insects, including flies, wasps, bees, cicadas, flying termites, beetles, grasshoppers, airborne spiders, and butterflies.%
\item[R: ]%
Surrounding woody areas of the university playground%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{ Apus affinis (LC)}%
\item[]%
\textbf{Little Swift/House Swift}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly common breeding resident rather locally from lowlands up to high hills{[}2{]}.%
\item[D: ]%
Diet mainly consists of flying insects.%
\item[R: ]%
Observed in flight near ENTC Building.%
\end{description}%
\end{enumerate}%
\item%
Ardeidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Ardea intermedia (LC)}%
\item[]%
\textbf{Intermediate Egret/Medium Egret}%
\end{description}%
\begin{description}%
\item[H: ]%
Uncommon breeding resident found from lowlands to hills. Commonly observed in marshes, paddyfields and shallow vegetated edges of tanks and lagoons{[}2{]}.%
\item[D: ]%
Fish, frogs, insects, and crustaceans. They forage in shallow water, often stalking their prey.%
\item[R: ]%
boat yard and the surrounding areas of Bolgoda lake.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Ardea purpurea (LC)}%
\item[]%
\textbf{Purple Heron}%
\end{description}%
\begin{description}%
\item[H: ]%
Common breeding resident in lowlands and assends up to lower hills, but rare in hills.Can be spotted in vegetation of marshes, paddyfields and tanks.{[}2{]}.%
\item[D: ]%
Fish, frogs, insects, and small mammals.%
\item[R: ]%
boat yard and the surrounding areas of Bolgoda lake.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Ardeola grayii (LC)}%
\item[]%
\textbf{Indian Pond{-}Heron}%
\end{description}%
\begin{description}%
\item[H: ]%
Common breeding residents that can be found all throughout Sri Lanka and numerous winter migrants appear to arrive all over the country{[}2{]}.%
\item[D: ]%
Consists of crustaceans, aquatic insects, fishes, tadpoles and sometimes leeches. Outside wetlands, these herons regularly feed on insects.%
\item[R: ]%
boat yard and the surrounding areas of Bolgoda lake.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Nycticorax nycticorax (LC)}%
\item[]%
\textbf{Black{-}Crowned Night{-}Heron}%
\end{description}%
\begin{description}%
\item[H: ]%
Common breeding resident throughout the lowlands up to lower hills. Occasionally assends to higher hills too. Can be observed in mrashes, mangroves and other vegetation at edge of rivers,tanks and lagoons as well as tree covered islands{[}2{]}.%
\item[D: ]%
Fish, frogs, crabs, and insects. They are nocturnal hunters and forage in wetlands and rice paddies.%
\item[R: ]%
boat yard and the surrounding areas of Bolgoda lake.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Ardea cinerea (LC)}%
\item[]%
\textbf{Gray Heron}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly common breeding resident in dry lowlands. Rare in wet lowlands. Occasional records are present at high hills up to 2000m. Coastal lagoons, marshes, and tanks are the preferred habitats{[}2{]}.%
\item[D: ]%
Main diet consists of fish. May also consume amphibians, crustaceans, snakes, small birds, rodents, and occasionally, certain plants.%
\item[R: ]%
boat yard and the surrounding areas of Bolgoda lake. Mostly observed in flight.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Butorides striata (LC)}%
\item[]%
\textbf{Striated Heron}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly uncommon breeding resident in lowlands and lower hills. Mangroves and dense vegetations at the edges of the rivers, marshes and tanks, open edges of lagoons are the preferred habitats{[}2{]}.%
\item[D: ]%
Primarily feeds on a diet consisting of crabs and other crustaceans. Additionally, it includes mollusks and small fish in its feeding repertoire.%
\item[R: ]%
Observed only once at Boat yard in flight.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Bubulcus ibis (LC)}%
\item[]%
\textbf{Cattle Egret/Eastern Cattle Egret}%
\end{description}%
\begin{description}%
\item[H: ]%
Common migratry bird and can be seen througout the country. Often seen around herds of cattle{[}2{]}.%
\item[D: ]%
Primary diet consists of large insects such as grasshoppers, crickets, and flies. They may also include frogs, spiders, moths in their diet.%
\item[R: ]%
University playground premises and the Boat yard.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Egretta garzetta (LC)}%
\item[]%
\textbf{Little Egret}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly common breeding resident from lower hills to lowlands. Uncommon in high hills{[}2{]}.%
\item[D: ]%
They primarily consume fish, although their diet also includes amphibians, small reptiles, mammals, and small birds.%
\item[R: ]%
boat yard and the surrounding areas of Bolgoda lake.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Ixobrychus sinensis (EN)}%
\item[]%
\textbf{Yellow Bittern}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly Rare breeding resident in lowlands and a winter migrant to lowlands up to lower hills. reed beds and vegetation at wetland edges are the preferred habitat{[}2{]}.%
\item[D: ]%
Feed on a diet consisting of fish, insects, and various other invertebrates.%
\item[R: ]%
boat yard and the surrounding areas of Bolgoda lake.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Ardea alba (LC)}%
\item[]%
\textbf{Great Egret}%
\end{description}%
\begin{description}%
\item[H: ]%
fairly common breeding resident in lowlands, occasionally seen on hills. Margins of lagoons,tanks paddyfields and marshes are the preferred habitat{[}2{]}.%
\item[D: ]%
Its diet primarily consists of mollusks, amphibians, aquatic insects, small reptiles, crustaceans, and occasionally other small animals. However, fish constitute the main portion of its diet.%
\item[R: ]%
boat yard and the surrounding areas of Bolgoda lake.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Ixobrychus flavicollis (LC)}%
\item[]%
\textbf{Black Bittern}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly rare breeding resident in lowlands. A winter migrant to lowlands and less so up to mid hills. Favours reedbeds,marshes and waterside vegetation with dense tangles{[}2{]}.%
\item[D: ]%
Black Bitterns primarily consume a variety of small animals, with a focus on fish and amphibians.%
\item[R: ]%
Recorded only once and was in the boat yard.%
\end{description}%
\end{enumerate}%
\item%
Campephagidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Pericrocotus cinnamomeus (LC)}%
\item[]%
\textbf{Small Minivet}%
\end{description}%
\begin{description}%
\item[H: ]%
Uncommon breeding resident from lowlands up to mid hills. Open forests and bushes with scattered trees are the places to look for{[}2{]}.%
\item[D: ]%
Primarily feed on an insect{-}based diet, which includes caterpillars, beetles, bugs, and ants.%
\item[R: ]%
Observed in the tree canopy of Kaju Kele and behind the building located in Boat yard.%
\end{description}%
\end{enumerate}%
\item%
Charadriidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Vanellus indicus (LC)}%
\item[]%
\textbf{Red{-}Wattled Lapwing}%
\end{description}%
\begin{description}%
\item[H: ]%
Common breeding resident throughout the island but somewhat rare in hills. Can be commonly in open flat grounds located in the near viscinity of water{[}2{]}.%
\item[D: ]%
Insects, worms, and other invertebrates. They forage by running and probing the ground with their long bills.%
\item[R: ]%
Observed very commonly in the university ground premises.%
\end{description}%
\end{enumerate}%
\item%
Chloropseidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Chloropsis jerdoni (LC)}%
\item[]%
\textbf{Jerdon'S Leafbird}%
\end{description}%
\begin{description}%
\item[H: ]%
Uncommon breeding resident from lowlands up to mid hills. More common to see in dry zone. Forests, wooded areas and gardens are the preferred habitats{[}2{]}.%
\item[D: ]%
This species feeds on eats insects, fruit and nectar. %
\item[R: ]%
On the trees behind the Dept. of Civil Engineering main building and inside Kaju Kele.%
\end{description}%
\end{enumerate}%
\item%
Ciconiidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Anastomus oscitans (LC)}%
\item[]%
\textbf{Asian Openbill}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly common breeding resident in lowlands, can be found in small numbers along rivers in interior wet zone and on lakes and rivers up to lower hills. Marshes, tanks, lakes, rivers and lagoons are the preferred habitats{[}2{]}.%
\item[D: ]%
Primarily feeds on large mollusks in shallow water and marshy areas. Diet also includes smaller snails, water snakes, frogs, and large insects.%
\item[R: ]%
boat yard and the trees of the surrounding areas of Bolgoda lake.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Mycteria leucocephala (LC)}%
\item[]%
\textbf{Painted Stork}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly common breeding resident in dry lowlands. An introduced population can be observed in and the suburbs of Colombo. Marshes,tanks and lagoons are the places to look for{[}2{]}.%
\item[D: ]%
Primary diet consists of small fish, and they also consume crustaceans, amphibians, insects, frogs in their diet and occasionally prey on snakes.%
\item[R: ]%
boat yard and the surrounding areas of Bolgoda lake. Documented only once.%
\end{description}%
\end{enumerate}%
\item%
Cisticolidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Orthotomus sutorius (LC)}%
\item[]%
\textbf{Common Tailorbird}%
\end{description}%
\begin{description}%
\item[H: ]%
Common breeding resident throughout Sri Lanka. Can be seen in forest wooded areas, and trees in villages and town gardens{[}2{]}.%
\item[D: ]%
Primarily subsist on insects, displaying a particular fondness for beetles and bugs. They visit flowers to consume nectar.%
\item[R: ]%
Mostly observed in the bushes and trees in the side of Kaju kele. Also observed in the university ground at the side of lagan. Faily common throughout the university premises.%
\end{description}%
\end{enumerate}%
\item%
Columbidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Columba livia (Feral)}%
\item[]%
\textbf{Rock Pigeon}%
\end{description}%
\begin{description}%
\item[H: ]%
Wild populations occur rarely at large concrete dams while the largest may be in the pigeon island. Feral populations are the most common living in villages and towns{[}2{]}.%
\item[D: ]%
Mainly grains, seeds, plant seeds. They will also feast on berries, fruits and vegetables. Occasionally even will eat insects,snails and worms too.%
\item[R: ]%
Mostly observed in the library building. Uses broken ceilings as shelter there.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Ducula aenea (LC)}%
\item[]%
\textbf{Green Imperial Pigeon}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly common breeding resident. Found from lowlands to lower hills. Mostly seen in forests and well{-}wooded gardens{[}2{]}.%
\item[D: ]%
Fruits, seeds, and leaves. They forage in trees and on the ground.%
\item[R: ]%
Surrounding areas of Lagaan, steel building, in Kaju Kele and on the trees of Ceremonial courtyard.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Spilopelia suratensis (LC)}%
\item[]%
\textbf{Spotted Dove}%
\end{description}%
\begin{description}%
\item[H: ]%
Very common breeding resident found throughout the island except the high hills. Cultivation, gardens and the open forests are the preferred habitat and usually avoids interior of dense wet forests{[}2{]}.%
\item[D: ]%
Seeds, fruits, and grain. They forage on the ground and in trees.%
\item[R: ]%
Throughout the university premises.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Treron pompadora (LC)}%
\item[]%
\textbf{Sri Lanka Green Pigeon}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly common breeding resident in lowlands to lower hills. Local and uncommon up to mid hills. preferred habitats are forests and woods{[}2{]}.%
\item[D: ]%
Ears the seeds and fruits of a wide variety of plants.%
\item[R: ]%
On the trees behind the Dept. of Civil Engineering main building%
\end{description}%
\end{enumerate}%
\item%
Corvidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Corvus splendens (LC)}%
\item[]%
\textbf{House Crow}%
\end{description}%
\begin{description}%
\item[H: ]%
Very common breeding resident in coastal areas. Locally common in interior lowland areas up to lower hills and rare in occasional up to mid hills. Can be se in and near vicinity of human habitations{[}2{]}.%
\item[D: ]%
These birds primarily feed on refuse in human habitations, targeting small reptiles and mammals. %
\item[R: ]%
Throughout the university. %
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Corvus macrorhynchos (LC)}%
\item[]%
\textbf{Jungle Crow/Large{-}Billed Crow}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly common breeding resident throughout. Can be seen in villages and towns adjoining forests and forest patches{[}2{]}.%
\item[D: ]%
Feeds on anything that appears edible, whether alive or dead, and from both plant and animal sources.%
\item[R: ]%
Throughout the university. Specially in the university playground premises. %
\end{description}%
\end{enumerate}%
\item%
Cuculidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Eudynamys scolopaceus (LC)}%
\item[]%
\textbf{Asian Koel/Western Koel}%
\end{description}%
\begin{description}%
\item[H: ]%
Common breeding resident from lowland to mid hills. Forests, open woodlands, gardens, and cultivations are the habitats that mostly preferred{[}2{]}.%
\item[D: ]%
Has a diverse diet that includes insects, caterpillars and small vertebrates. However, adults primarily sustain themselves by consuming fruits%
\item[R: ]%
Throughout the university. Common in Kaju Kele and boat yard area.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Centropus sinensis (LC)}%
\item[]%
\textbf{Greater Coucal/Southern Coucal}%
\end{description}%
\begin{description}%
\item[H: ]%
Common breeding resident throughout the island. Can be observed in forest edges of the wetland rain forests, dry forests, shrubs, gardens and around cultivation{[}2{]}.%
\item[D: ]%
Mainly insects, caterpillars, snails, and small vertebrates. Also known to eat bird eggs, nestlings, fruits, and seeds.%
\item[R: ]%
In Kaju Kele area and surroundings of Lagaan.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Cacomantis passerinus (LC*)}%
\item[]%
\textbf{Gray{-}Bellied Cuckoo}%
\end{description}%
\begin{description}%
\item[H: ]%
Rather uncommon migrant, to lowlands to mid hills, rarer in wet lowlands and hills. Open forests, gardens and scrub are the preferred habitat{[}2{]}.%
\item[D: ]%
Gray{-}bellied cuckoos primarily feed on caterpillars, with a variety of insects also making up a significant portion of their diet.%
\item[R: ]%
Observed only once and was in Kaju kele, hotspot 2.%
\end{description}%
\end{enumerate}%
\item%
Dicaeidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Dicaeum erythrorhynchos (LC)}%
\item[]%
\textbf{Pale{-}Billed Flowerpecker}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly commmon breeding resident throughout the Island. Preffers areas with tall trees{[}2{]}.%
\item[D: ]%
Feeds on nectar and berries.%
\item[R: ]%
Around the Lagaan, Seetha gangula and Ceremonial courtyard.%
\end{description}%
\end{enumerate}%
\item%
Dicruridae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Dicrurus caerulescens (LC)}%
\item[]%
\textbf{White{-}Bellied Drongo}%
\end{description}%
\begin{description}%
\item[H: ]%
Common breeding resident from lowlands up to mid hills. Can be observed in forest fringe, wooded areas, plantations, gardens and towns{[}2{]}.%
\item[D: ]%
Primarily insectivorous, these birds display opportunistic behavior and are known to prey on small birds.%
\item[R: ]%
Throughout the university specially around Sumandasa building, Kaju Kele area and open area behind the steel building.%
\end{description}%
\end{enumerate}%
\item%
Estrildidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Lonchura punctulata (LC)}%
\item[]%
\textbf{Scaly{-}Breasted Munia}%
\end{description}%
\begin{description}%
\item[H: ]%
Common breeding resident thoughout the island. Cultivation and open gardens are the preferred habitat{[}2{]}.%
\item[D: ]%
Primarily feeds on grass seeds, small berries like those from the Lantana plant, and insects.%
\item[R: ]%
Trees between Sumanadasa building and the University ground, behind the Dept. of Civil Engineering main building, around Lagan and Dept. of Textile and Apparel Engineering and inside Kaju Kele.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Lonchura striata (LC)}%
\item[]%
\textbf{White{-}Rumped Munia}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly common breeding resident in lowlands up to mid hills.preferred habitats include forests, open wooded areas, scrub and cultivation{[}2{]}.%
\item[D: ]%
Primarily sustains itself by consuming seeds.%
\item[R: ]%
Trees behind the behind the Dept. of Civil Engineering main building, inside Kaju Kele and around the Boat yard.%
\end{description}%
\end{enumerate}%
\item%
Hirundinidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Hirundo rustica (LC*)}%
\item[]%
\textbf{Barn Swallow}%
\end{description}%
\begin{description}%
\item[H: ]%
Three recognised subspecies. H.r. gutturalis is a very common winter migrant. H.r.rustica is an uncommon migrant. H.r.tyleri is a very rare migrant. Often seen in open country and towns near water{[}2{]}.%
\item[D: ]%
Consumes on flies, beetles, wasps, wild bees, winged ants, and true bugs. Additionally, includes moths, damselflies and grasshoppers.%
\item[R: ]%
Can be seen in flight around the university ground and at Bolgoda lake near boat yard in the season.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Cecropis hyperythra (LC)}%
\item[]%
\textbf{Sri Lanka Swallow}%
\end{description}%
\begin{description}%
\item[H: ]%
Uncommon breeding resident throughout Sri Lanka. Open areas at forest fringe, plantations, human habitation, grasslands and paddyfields are the preferred habitat{[}2{]}.%
\item[D: ]%
Mostly insectivorous, feeding on insects in flight.%
\item[R: ]%
Can be seen in flight around the university ground and near Boat yard.%
\end{description}%
\end{enumerate}%
\item%
Jacanidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Hydrophasianus chirurgus (LC)}%
\item[]%
\textbf{Pheasant{-}Tailed Jacana}%
\end{description}%
\begin{description}%
\item[H: ]%
Common breeding resident in the lowlands of Sri Lanka. Can be easily observed in marshes, lakes and tanks with floating vegetation{[}2{]}.%
\item[D: ]%
Primariyl feeds on insects found on the water surface and invertebrates gleaned from the roots and leaves of aquatic vegetation.%
\item[R: ]%
Boat yard and the surrounding areas of Bolgoda lake.%
\end{description}%
\end{enumerate}%
\item%
Laniidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Lanius cristatus (LC*)}%
\item[]%
\textbf{Brown Shrike}%
\end{description}%
\begin{description}%
\item[H: ]%
Common throughout the island. Can be observed in open country with trees or bushes{[}2{]}.%
\item[D: ]%
The primary diet of this bird includes insects, as well as small birds and mammals.%
\item[R: ]%
Observed in an exact single location located inside the Kaju kele multiple times.%
\end{description}%
\end{enumerate}%
\item%
Laridae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Chlidonias hybrida (LC*)}%
\item[]%
\textbf{Whiskered Tern}%
\end{description}%
\begin{description}%
\item[H: ]%
Common winter migrant to lowlands but rare in the hills. Marshes, tanks, paddyfields, coastal lagoons, salt{-}pans, coastal waters, lakes and rivers are the preferred habitats{[}2{]}.%
\item[D: ]%
Small fish, shrimp, and other marine invertebrates. They hunt by dipping their bills into the water while hovering or flying low over the surface.%
\item[R: ]%
Boat yard and the surrounding areas of Bolgoda lake.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Sternula albifrons (VU)}%
\item[]%
\textbf{Little Tern}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly common and local breeding resident in dry zone and visitor to the wet zone. Can be seen in coastal wetlands and inland tanks{[}2{]}.%
\item[D: ]%
Diet consisting of fish, crustaceans, and invertebrates.%
\item[R: ]%
Boat yard and the surrounding areas of Bolgoda lake. Seen only once%
\end{description}%
\end{enumerate}%
\item%
Leiothrichidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Argya affinis (LC)}%
\item[]%
\textbf{Yellow{-}Billed Babbler}%
\end{description}%
\begin{description}%
\item[H: ]%
Common breeding resident from lowlands up to mid hills. uncommon and local further in higher hills. Mostly being on the ground can be seen in wooded areas and trees in villages and town gardens. Avoids forests in wet zone and adjoining hills.{[}2{]}.%
\item[D: ]%
Diet includes insects, spiders, small fruits, grains, nectar, and occasionally, lizards or scavenged scraps of food from human habitations.%
\item[R: ]%
Thoughout the university.%
\end{description}%
\end{enumerate}%
\item%
Megalaimidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Psilopogon zeylanicus (LC)}%
\item[]%
\textbf{Brown{-}Headed Barbet}%
\end{description}%
\begin{description}%
\item[H: ]%
Common breeding resident from lowlands up to mid hills. Uncommon but recoreded in higher hills. Forests,open woods.gardens and trees in cultivation are the habitat which can be observed mostly.{[}2{]}.%
\item[D: ]%
Primarily feeds on fruit{-}based diet, consists of wild fruits, berries, and plantation fruits. Also feeds on insects, including ants, termites, and grasshoppers.%
\item[R: ]%
In Kaju kele, Lagaan area and the playground premises.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Psilopogon rubricapillus (LC)}%
\item[]%
\textbf{Sri Lanka Barbet/Crimson{-}Fronted Barbet}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly common endemic locally from wet lowlands up to mid hills. Uncommon but recorded in dry zone. Forests and open wooded country is the preferred habitat{[}2{]}.%
\item[D: ]%
Mainly consists of fruits and insects.%
\item[R: ]%
Observed in Ceremonial courtyard, Kaju Kele and "Thummulla" area.%
\end{description}%
\end{enumerate}%
\item%
Meropidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Merops philippinus (CR)}%
\item[]%
\textbf{Blue{-}Tailed Bee{-}Eater}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly common winter migrants throughout the island. Small flocks do breed on eastern dry lowlands. Open areas and the forests are the preferred habitats{[}2{]}.%
\item[D: ]%
Primarily feeds on flying insects, with a particular focus on bees, wasps, butterflies and hornets. %
\item[R: ]%
University ground, around Sumanadasa building, Boat yard, open areas of Kaju Kele. Around the buildings/trees of ENTC, Dept. of Civil Engineering and Dept. of Architecture buildings.%
\end{description}%
\end{enumerate}%
\item%
Monarchidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Terpsiphone paradisi (LC)}%
\item[]%
\textbf{Asian Paradise Flycatcher/Indian Paradise Flycatcher}%
\end{description}%
\begin{description}%
\item[H: ]%
Two recognised subspecies. One being (T.p.ceylonensis) a fairly common breeding resident found in dry lowlands and adjoining dy lower hills. The other (T.p.paradisi) is a fairly common winter migrant througout. Open forests, groves and town gardens are the habitat where mostly can be spotted{[}2{]}.%
\item[D: ]%
Feeds mainly on insects. They usually hunt in the understory of densely canopied trees.%
\item[R: ]%
Observed in Kaju Kele area and at the boat yard.%
\end{description}%
\end{enumerate}%
\item%
Motacillidae%
\begin{enumerate}%
\item%
\begin{description}%
\item[]%
\textit{Motacilla tschutschensis/flava (LC*)}%
\item[]%
\textbf{Eastern/Western Yellow Wagtail}%
\end{description}%
\begin{description}%
\item[H: ]%
Common winter migrant to Sri Lanka. Can be observed in damp grasslands and marshes{[}2{]}.%
\item[D: ]%
Primarily feeds on insects, such as midges, flies, beetles, aphids, ants, and various others.%
\item[R: ]%
In the university ground premises.%
\end{description}%
\item%
\begin{description}%
\item[]%
\textit{Dendronanthus indicus (LC*)}%
\item[]%
\textbf{Forest Wagtail}%
\end{description}%
\begin{description}%
\item[H: ]%
Fairly common winter migrant throughout. Paths and open spaces in wooded areas are the preferred habitat{[}2{]}.%
\item[D: ]%
The diet primarily includes tiny invertebrates like ants, beetles, small grasshoppers, butterflies, cicadas, and various other insects. It also includes spiders, small mollusks, and worms.%
\item[R: ]%
Observed multiple times but only at hotspot 2, Kaju kele.%