-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfreshwater fisheries - landing 1950 - 2013.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 1352 should actually have 70 columns, instead of 1 in line 1351.
1352 lines (1352 loc) · 439 KB
/
freshwater fisheries - landing 1950 - 2013.csv
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
Country (Country),Species (ASFIS species),Fishing area (FAO major fishing area),Measure (Measure),1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015
Afghanistan,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),100,100,100,100,100,200,200,200,200,200,200,300,300,300,300,300,300,400,400,400,400 F,500 F,500 F,500 F,500 F,600 F,600 F,600 F,600 F,600 F,700 F,700 F,700 F,800 F,800 F,800 F,800 F,1000 F,1000 F,1000 F,1100 F,1100 F,1200 F,1200 F,1300 F,1300 F,1300 F,1250 F,1200 F,1200 F,1000 F,800 F,900 F,900 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F
Albania,Bighead carp,Europe - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,24,24,5,...,23,12,11 F,10,16
Albania,Bleak,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,151,162,68,149,160,190,478,234,280 F,330,457,402,504,190,530,505,360,201,175 F,150,200
Albania,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,-,-,-,64,104,146,89,27,14,20 F,30 F,34,45,38,230,216,230,300,260,350 F,415,540,430,435,371,214,335 F,450,214,196 F,178,27
Albania,Common dace,Europe - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,8,8,4,...,4,4,5 F,5,5 F
Albania,Crucian carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,-,-,-,148,143,149,97,32,11,10 F,9 F,...,...,...,77,62,65,326,260,300 F,350,381,394,431,380,208,225 F,230,208,193 F,178,212
Albania,European perch,Europe - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,64,111,58,136,20,55,30 F,8,8 F
Albania,Freshwater crustaceans nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,154,220,208,45,20,15,10 F,5 F,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Albania,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),500,500,700,800,800,900,800,900,900,900,900,1100,1000,1000,1000,1400,1400,1700,2000,2400,2700 F,2700 F,2700 F,2697 F,2955 F,2915 F,2879 F,2846 F,2817 F,2790 F,2761 F,2778,3092,2745,2432,2772,2784,734,863,927,635,317,481,500 F,440 F,-,-,-,-,-,-,-,24,30 F,-,3,3,210,321,508,157 F,73,426,640 F,836,631
Albania,Freshwater gobies nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,5,7,...,...,...,...,10,18,...,5,8,...,...,...,...
Albania,Grass carp(=White amur),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,2,7,6,6,2,1,1 F,1 F,0 0,1,0 0,3,5,45,10,14,20 F,23,43,38,88,45,64,67,60,2,1 F,-,-
Albania,Orfe(=Ide),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,24,23,34,31,4,10,8 F,5 F,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Albania,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,5,171,57,34,25 F,20 F,5,10,4,-,-,-,45,30,45 F,60,55,68,74,55,62,80,55,62,56 F,50,0 0
Albania,Roaches nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,43,29,48,21,16,8,6 F,4 F,...,...,...,...,...,...,...,...,...,95,16,132,105,90,115,114 F,110,108,100 F,85,85 F
Albania,Silver carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,...,...,...,...,...,...,...,...,...,...,...,-,-,-,546,678,585,373,217,133,100 F,70 F,11,52,33,104,130,140,101,129,100 F,68,140,148,169,125,183,165,180,190,170 F,150,98
Albania,Wuchang bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,12,13,32,13,2,1,1 F,1 F,0 0,0 0,0 0,-,-,-,-,3,...,...,2,4,3,3,12,...,1,7,5 F,-,-
Algeria,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Algeria,Northern pike,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,2,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
American Samoa,Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Andorra,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Angola,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),3500,3500,3500,4000,4000,4000,5000,5000,5000,5300,5300,5300,5500,5500,5500,5800,5800,6000,6000,6000,6000,6000,6000,6500,6500,7000,7000,7000,7000,7000,7500,7500,7500,7500,7500,7500,8000,8000,8000,8000,8000,7000,7000,7000,7000,6000,6000,6000,6000,6000 F,7000 F,8000 F,9000 F,10000,10000 F,10000 F,10500,9000 F,7500 F,5848,10000 F,14000 F,18000 F,23000 F,28887,38514
Anguilla,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Antigua and Barbuda,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Argentina,[Leporinus obtusidens],"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,264,1,669,406,91,140,279
Argentina,Argentinian silverside,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,241,...,444,351,...,...,278
Argentina,Characins nei,"America, South - Inland waters",Quantity (tonnes),9300,11500,7800,6100,4600,4700,5800,6700,6300,7700,7700,11000,6500,8000,9100,9100,6600,8100,7300,6800,1700,1800,2100,3100,5314,10551,6948,7599,12496,11732,4685,6444,13266,12561,5709,6937,3982,4440,6160,7350,6734,6734,7000,8000,7500 F,7000 F,6500 F,6000 F,5500 F,4500 F,4000 F,1557 F,1000 F,1515 F,1737,3927,5258,3349,713,-,-,-,-,-,-,-
Argentina,Common carp,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,494,633,306,267,...,...,91
Argentina,Dorado,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1,2,135,80,0 0,0 0,0 0
Argentina,Freshwater fishes nei,"America, South - Inland waters",Quantity (tonnes),3600,3200,2700,2200,2500,2300,2400,2400,3000,3200,6000,2400,2500,2300,2200,1500,1300,1800,1500,1900,1700,2200,2500,2400,3225,2125,661,606,682,1243,886,592,428,249,157,344,450,266,350,341,308,308,1996,1754,3254 F,8508 F,1097 F,3235 F,2297 F,5758 F,6228 F,-,102 F,-,-,181,352,60,107,-,-,-,-,-,-,-
Argentina,Freshwater siluroids nei,"America, South - Inland waters",Quantity (tonnes),800,800,900,900,800,900,600,600,1000,700,1000,900,1000,1500,3300,2300,2100,3100,2300,2800,2000,1700,1700,2100,1609,2369,2196,2147,1883,3077,2756,2649,1693,1784,3416,2284,4176,3084,3980,2900,3089,3089,1781,1800,1700 F,1600 F,1500 F,1400 F,1300 F,1200 F,1100 F,292 F,276 F,205 F,287,498,485,684,342,40,82,55,25,1,27,57
Argentina,Pati,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,226,315,241,357,94,94,153
Argentina,Prochilods nei,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,10000 F,12000 F,14000 F,16000 F,19000 F,13687 F,17096 F,24876 F,31879,29396,27522,15602,10084,14839,13999,15164,12148,11986,14181,17417
Argentina,Sorubims nei,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,29,105,7,0 0,0 0,0 0,0 0
Argentina,Trahira,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,123,308,1277,689,111,138,610
Armenia,Common carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,9,1,0 0,1,91,32,14,12,9,7,11,143,26,30 F,42 F,49 F,56 F,58 F,58 F,75 F,77,86 F,70,120 F
Armenia,Crucian carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,53,73,87,68,65,25,10,2,28,23,42,26,38,32,54,63,40,45 F,63 F,73 F,83 F,85 F,85 F,110 F,130,140 F,110,190 F
Armenia,Cyprinids nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,321,501,370,66,231,312,46,42,33,7,37,21,19,15,9,10,6,7 F,10 F,12 F,14 F,15 F,14 F,20 F,25,28 F,20,34 F
Armenia,Danube crayfish,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,717 F,258 F,266 F,266 F,340 F,360,3550 F,4350,7380 F
Armenia,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,139,0 0,30,...,...,...,...,...,...,...,...,...,...,22,81,49,56 F,80 F,73 F,69 F,71 F,70 F,90 F,92,100 F,80,136 F
Aruba,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Australia,Australian crayfish,Oceania - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,100,100,100,295,181,131,82,38,20,62,67,162,70,17,15,11,7,-,-,-,-,1,-,-,-,-,-,-,66,24,23,51,35,36,1,1,0 0,0 0,0 0,-,24,15,...,...,...
Australia,Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),500,500,700,900,1000,1000,900,800,1000,1100,700,600,500,500,400,500,500,500,500,800,600,700,900,1200,1227,1317,1308,1425,1210,935,1401,1127,1938,1646,2506,1994 F,1660,1909,1953,1950 F,2480 F,2400 F,3337,2834,122,301,252,194,200,154,166,162,105,268,281,500,334,1238,1275,1576,1376,1060,1059,1113,1226,1039
Austria,Common carp,Europe - Inland waters,Quantity (tonnes),200,150,300,300,420,500,620,840,920,1050,1150,1140,1130,1250,1350,1300,1300,1110,1060,900 F,830,640,220,...,...,...,...,...,...,...,400,500,650,400,100,150,40,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Austria,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),600,500,700,800,800,1000,1200,1300,1400,1700,1700,1700,1900,1900,2000,2100,2000,1700,1700,1500 F,1300,1200,1100,900,850,840,970,870,800,700,700,700,750,700,600,550,600,600,600,550,533,500,479,420,388,404,450,465,451,432,439,362,350,372,400,370,360,350,350,350,350,350,300,350,350,350
Azerbaijan,Asp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6,87,131,51,63,31,14,5,9,6,4,2,1,5,1,4,3,2,2,4,4,1,3,1,2,2,2,0 0
Azerbaijan,Common carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1188,1446,803,370,84,49,87,92,93,51,10,13,16,17,20,17,16,9,9,6,14,7,22,21
Azerbaijan,Crucian carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,13,...,...,...,...,...,...,...,...,...,...,6,4,17,6,8,7,3,9,10,20,19,12,5,5,5,3,4
Azerbaijan,Cyprinids nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,10,58,12,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Azerbaijan,Freshwater bream,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,771,610,568,448,518,412,309,219,402,346,314,52,55,127,48,50,43,63,66,75,76,72,56,72,64,59,46,21
Azerbaijan,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,145,0 0,1,2,1,4,25,16,21,13,8,-,-,2,8,13,8,10,19,2,4,7,-,-,-,-,8
Azerbaijan,Freshwater gobies nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,6,7,8,5,5,10,16,18,14,19,13,17,10,4
Azerbaijan,Kutum,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,16,31,16,18,20,46,50,41,54,82,80,117,162,117
Azerbaijan,Northern pike,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,164,75,31,78,85,82,27,15,7,23,18,21,28,25,6,9,10,8,8,3,4,1,-,-,-,-,-,-
Azerbaijan,Pike-perch,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,44,442,13,42,45,33,27,19,22,11,7,5,5,19,17,35,33,41,39,25,27,27,20,30,28,27,9,3
Azerbaijan,Roach,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,185,258,281,81,78,63,53,19,74,89,62,81,8,64,19,26,36,33,32,48,58,39,34,59,63,72,52,54
Azerbaijan,Sichel,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,61,52,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Azerbaijan,Tench,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,39,31,21,18,5,0 0,0 0,2,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Azerbaijan,Vimba bream,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,1,2,4,7,9,5,6,7,12,5,-,-
Azerbaijan,Wels(=Som) catfish,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,90,160,122,95,78,63,19,6,11,9,8,8,9,8,4,8,8,4,3,4,7,8,4,4,4,4,4,1
Bahamas,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Bahrain,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Bangladesh,Freshwater crustaceans nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,79315,95008,134300,55132,57688,40338,45928,51717
Bangladesh,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),138325,137347,136345,179318,222262,221180,220070,262931,261762,304563,303333,346071,388776,387448,430086,471000,471253,469781,514000,510723,537134 F,584000 F,664832,664115,665000,475000,467697,460000,449000,445000,439000,435000,462000,484000,375778,379727,343939,312842,328440,320550,317201,345719,331838,354459,445676,443319,445377,451055,457055,575609,591300,613860,620185,646389,661066,781770,878413,924316,890966,1027959,869615,884933,784932,822472,822363,836878
Barbados,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Belarus,Bleak,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,12,...,...,...,...,...,...,...,...,...,...,...,...,...
Belarus,Burbot,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,27,15,15,1,11,28,16,14,17,13,18,20,7,29,0 0,0 0,-,0 0,-,0 0,0 0,0 0,0 0,-,-,-,-,-
Belarus,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,118,59,18,39,39,12,8,5,17,15,44,44,34,30,39,38,42,41,42,40,33,28,31,25
Belarus,Cyprinids nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,233,335,235,111,164,221,122,105,92,61,47,27,19,77,4,139,138,109,100,125,185,188,225,318,228,173,203,249
Belarus,Danube crayfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,1,1,...,...,...,...,...,1,-,2,2,0 0,0 0,...
Belarus,European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,115,114,110,31,110,215,98,93,101,75,49,38,34,86,37,40,23,24,27,28,34,33,38,45,31,25,22,20
Belarus,Freshwater bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,720,634,887,153,360,464,201,145,244,182,130,98,27,198,214,146,109,109,131,162,193,224,212,258,262,175,198,263
Belarus,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,412,1068,209,1,22,2,-,-,-,-,-,-,-,-,0 0,4,3,5,17,1,1,3,1,9,5,4,7,0 0
Belarus,Goldfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,214,227,219,31,188,384,60,64,69,35,106,138,154,188,176,105,44,55,91,72,114,146,135,224,221,141,139,116
Belarus,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,357,315,444,33,60,468,42,29,27,11,9,477,162,171,28,25,28,48,39,45,49,52,59,68,51,38,33,32
Belarus,Orfe(=Ide),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,31,36,27,6,31,45,22,18,19,11,14,11,5,18,1,2,2,1,1,1,1,1,2,2,2,2,1,2
Belarus,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,38,58,52,8,49,67,8,9,6,3,3,10,17,24,19,3,5,4,7,5,6,8,15,21,18,21,22,38
Belarus,Roach,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,264,530,304,388,82,417,62,83,95,42,24,19,9,33,302,277,174,189,173,188,158,108,110,108,83,68,93,111
Belarus,Ruffe,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6,...,...,...,...,...,...,...,...,...,...,...,...,...
Belarus,Silver carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,9,...,...,...,...,...,...,...,...,...,...,...,...,...
Belarus,Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,18,23,15,3,14,23,11,13,8,4,3,90,41,7,7,8,7,7,9,13,16,13,19,17,15,10,10,9
Belarus,Wels(=Som) catfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,4,1,-,-,-,-,1,0 0,0 0,0 0,0 0,1,0 0,1,1,1,0 0,0 0,2,2,0 0,0 0,8,2,2,3,1,1
Belarus,White bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,147,...,...,...,...,...,...,...,...,...,...,...,...,...
Belgium,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,...,...,...,...,...,-,31,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,10,10,10 F,10 F,10 F
Belgium,Crucian carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,1,1,1 F,1 F,1 F
Belgium,Cyprinids nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,50,49,9,9,49,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,10,10,10 F,10 F,10 F
Belgium,European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,24,24,24,24,24,25,25,25,25,25,25,25,25,25,15,25,25,25,25,25,25,25,25,25,25,25,12,12,12 F,12 F,12 F
Belgium,Freshwater bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,50,52,52,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,15,15,15 F,15 F,15 F
Belgium,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Belgium,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,22,21,21,21,21,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,7,7,7 F,7 F,7 F
Belgium,Orfe(=Ide),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,3,3,3 F,3 F,3 F
Belgium,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2,2,2,2,2,15,15,15,15,15,15,15,15,15,10,15,15,15,15,15,15,15,15,15,15,15,83,83,83 F,83 F,83 F
Belgium,Roach,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,156,154,154,160,160,160,160,160,160,160,160,160,160,160,150,160,160,160,160,160,160,160,160,160,160,160,24,24,24 F,24 F,24 F
Belgium,Rudd,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,9,9,9 F,9 F,9 F
Belgium,Signal crayfish,Europe - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,1,1 F,1 F,0 0
Belgium,Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,13,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,...,...,...,15,15,15,15,3,3,3 F,3 F,3 F
Belize,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,25,25,25,25,25,25,25,40,13,2,2,1,4,3,1,1,1,-,1,1,1,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Benin,African bonytongue,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,210,428,625,576 F,526 F,504 F,400 F,349,742,700 F,650 F,600 F,600 F,500 F,550 F,550 F,550 F,510 F,400 F,600 F,650 F,650 F,680 F,700 F,700,677,709,824,598
Benin,African lungfishes,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,22,57,40,37 F,34 F,32 F,100 F,127,121,110 F,105 F,100 F,100 F,100 F,110 F,110 F,110 F,100 F,80 F,120 F,130 F,130 F,140 F,143 F,175,107,113,132,49
Benin,Black catfishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1800 F,1800 F,1800 F,1800 F,1800 F,1800 F,1800 F,1800 F,1800 F,1800 F,2000 F,2000 F,2000 F,2000 F,2000 F,2000 F,2000 F,2710,1528,1222,1126 F,1029 F,987 F,1100 F,1143,1289,1300 F,1400 F,1500 F,1542,1300 F,1500 F,1500 F,1500 F,1400 F,1100 F,1650 F,1750 F,1750 F,1850 F,1900 F,2200,2526,2784,3210,2054
Benin,Freshwater crustaceans nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,4081,2709,3984,3673 F,3357 F,3218 F,3800 F,3794,4503,4600 F,4700 F,4800 F,4924,4100 F,4600 F,4600 F,4600 F,4300 F,3350 F,3100 F,2800 F,2800 F,2250 F,2000 F,2020,1314,89,116,93
Benin,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),10000,10000,10000,10000,15000,15000,20000,20000,20000,21000,21000,22000,24000,22000,22000,16000,15000,30000,30000,30000,23200,21700,20500,20400,20300,20260,20550,20550,20200,20200,20200,20200,20000,17000,17400 F,16000 F,16000 F,4121 F,5638 F,7939 F,7319 F,6689 F,6413 F,7595 F,7464,9552,6563 F,5096 F,3838 F,3733 F,3000 F,3440 F,3433 F,3440 F,3220 F,2400 F,3750 F,4000 F,4000 F,4200 F,4300 F,4200,4423,3862,5623,3587
Benin,Freshwater gobies nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,...,...,180,374,599,552 F,504 F,483 F,1100 F,1302,914,900 F,850 F,800 F,800 F,700 F,800 F,800 F,800 F,750 F,600 F,900 F,950 F,950 F,1000 F,1050 F,1100,1064,845,924,528
Benin,Penaeus shrimps nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,2238,2144,3729,3438 F,3142 F,3011 F,3800 F,3739,3117,3000 F,2850 F,2700 F,2574,2100 F,2400 F,2400 F,2400 F,2250 F,1750 F,1600 F,1450 F,1450 F,1150 F,1000 F,1200,1073,1121,1135,67
Benin,River prawns nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,37,67,140,129 F,118 F,113 F,120 F,139,188,150 F,130 F,120 F,120 F,100 F,110 F,110 F,110 F,100 F,80 F,120 F,130 F,130 F,130 F,133 F,133,53,60,83,52
Benin,Tilapias nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,8000 F,8000 F,8000 F,8000 F,8000 F,8000 F,8000 F,8000 F,8000 F,8000 F,10000 F,10000 F,10000 F,10000 F,9985 F,9989 F,9985 F,10234,8364,9152,8436 F,7710 F,7390 F,10200 F,10235,11713,11500 F,11500 F,11500 F,11648,9600 F,10900 F,10900 F,10900 F,10200 F,7950 F,12100 F,12750 F,12750 F,13400 F,13700 F,13700,10858,12158,16201,10230
Benin,Torpedo-shaped catfishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1800 F,1800 F,1800 F,1800 F,1800 F,1800 F,1800 F,1800 F,1800 F,1800 F,2000 F,2000 F,2000 F,2000 F,2000 F,2000 F,2000 F,2228,3957,2107,1942 F,1775 F,1701 F,1600 F,1399,2325,2100 F,1900 F,1700 F,1537,1300 F,1500 F,1500 F,1500 F,1400 F,1100 F,1650 F,1750 F,1750 F,1850 F,1900 F,2000,2542,2166,2256,2225
Benin,Upsidedown catfishes,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,252,563,300,277 F,253 F,243 F,130 F,21,125,120 F,110 F,110 F,110 F,100 F,110 F,110 F,110 F,100 F,80 F,120 F,130 F,130 F,140 F,143 F,130,139,133,154,62
Bermuda,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Bhutan,Copper mahseer,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1
Bhutan,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),50,50,60,60,80,80,100,100,100,100,100,100,100,150,150,150,150,150,150,150,150 F,150 F,150 F,150 F,150 F,150 F,150 F,150 F,150 F,150 F,150 F,145 F,140 F,135 F,130 F,125 F,120 F,115 F,110 F,105 F,100 F,95 F,90 F,85 F,80 F,75 F,70 F,65 F,60 F,55 F,50 F,45 F,40 F,35 F,30 F,25 F,20 F,15 F,10 F,8 F,6 F,4 F,2,3,5 F,0 0
Bhutan,Snowtrouts nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6
Bolivia (Plurinat.State),Common carp,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,-,-,606,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Bolivia (Plurinat.State),Freshwater fishes nei,"America, South - Inland waters",Quantity (tonnes),500,500,500,600,600,600,800,800,800,500,700,500,1000,1100,1500,1600,1500,1300,1200,1100,1000,1200,1400,1400,1000,1000,1200,1500,1500,3600,4129,5367,3835 F,3845 F,3855 F,3720,2744,3075,3050,3000,2987,3003,3036,4742,4452,4726,4800,4850,4865,4860,4911,4900,5303 F,5615,5548,5510,5200 F,4851,5787,6568,6196,6510,6670,7171,6990,7000 F
Bosnia and Herzegovina,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,200 F,200 F,200 F,200 F,250 F,250 F,250 F,250 F,250 F,250 F,250 F,250 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F
Botswana,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),300,300,300,350,350,350,350,400,400,400,400,400,500,500,500,500,600,600,300,300,300,400,400,400,400,400,600,500,600,600,600,700,650,550,650,700,900,1000,1000,800 F,700 F,500 F,400 F,300 F,200 F,100 F,33,80,103,64,74,30,38,50,59,49,4,3,2,2 F,1,17,21,10,6,15
Botswana,Tilapias nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,500,500,500,700,800,800,800,800,1000,1000,400,400,650,750,750,700,850,800,800,900,900,800 F,600 F,500 F,400 F,300 F,200 F,100 F,48,80,88,93,92,88,101,72,102,83,52,82,61,52 F,43,166,283,388,1081,52
Botswana,Torpedo-shaped catfishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,25,37,23,19 F,16,51,74,33,81,14
Brazil,[Schizodon fasciatus],"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5430,4977,5173,4914,4952,4994,4931,4730 F
Brazil,[Leporellus vittatus],"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1418,1300,1351,1274,1284,1295,1279,1230 F
Brazil,[Brycon orbignyanus],"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,9,10,9,9,9,8,9,8,8,8,8,8,8,8 F
Brazil,[Hoplias aimara],"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,7404,8189,9232,10038,9865,9205,10309,9450,9821,9261,9334,9413,9293,8880 F
Brazil,[Curimata cyprinoides],"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,4972,4810,5068,5358,5101,4977,5468,5012,5209,4912,4951,4993,4929,4730 F
Brazil,[Triportheus angulatus],"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3454,3081,3024,2940,3402,3634,3533,3239,3366,3174,3199,3226,3185,3050 F
Brazil,[Brachyplatystoma rousseauxii],"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,13560,13665,13781,13606,13000 F
Brazil,[Lophiosilurus alexandri],"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,599,549,571,538,542,547,540,515 F
Brazil,[Loricaria cataphracta],"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,618,567,589,555,560,564,557,530 F
Brazil,[Pimelodus maculatus],"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,32,29,30,29,29,29,29,27 F
Brazil,Aimara,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,330,302,314,296,298,301,297,280 F
Brazil,Amazon sailfin catfish,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1442,1453,1465,1447,1390 F
Brazil,Arapaima,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,427,411,413,1228,1237,1249,1315,1206,1253,1182,1191,1201,1186,1140 F
Brazil,Arawana,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1791,1621,1644,1622,1679,1817,1813,1662,1727,1629,1642,1656,1635,1570 F
Brazil,Banded astyanax,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,427,461,901,1032,953,938,1153,1056,1098,1035,1043,1052,1039,1000 F
Brazil,Barred sorubim,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1090,999,1038,979,987,995,982,945 F
Brazil,Cachama,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,11379,4298,2838,2760,2905,4965,3789,4096,3206,3372,3342,4562,4565,4413,4045,4204,3964,3995,4029,3978,3820 F
Brazil,Characins nei,"America, South - Inland waters",Quantity (tonnes),12600,12600,14700,14700,14700,16800,16800,16800,18900,15200,21800,24200,26700,24900,36300,40000,36300,36200,36500,39500,38500,37200,41800,44500,80735,80726,60808,66882,62139,50079,72155,85168,97271,85998,103026,97787,97731,105502,93232 F,95423 F,95400 F,92500 F,85000 F,83000 F,81000 F,41962,43525,33628,29804,31605,45309,49491,21519,22094,19460,20569,23584,23760,9222,8454,14725,15828,15952,16087,15883,15200 F
Brazil,Cichlids nei,"America, South - Inland waters",Quantity (tonnes),1200,1200,1400,1400,1400,1600,1600,1600,1800,2000,2100,2300,1600,2800,2700,2800,3400,3400,3400,3700,4200,3700,3400,3800,3155,8359,6220,8766,10946,6064,7784,8695,9571,10411,9976,11233,14583,16323,14424 F,14763 F,14700 F,15028 F,14720 F,15100 F,15450 F,12045,8565,8356,7785,7375,8435,13534,12029,11921,13733,14371,16921,15085,14365,13168,13693,12912,13013,13123,12956,12400 F
Brazil,Cyprinids nei,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,12,10,12,44,55,29,65,128,105,174,175,214,146,109,96 F,99 F,100 F,102 F,100 F,100 F,100 F,119,284,212,258,302,355,390,406,430,441,447,440,440,470,430,448,422,425,429,423,400 F
Brazil,Dorado,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3319,3042,3162,2981,3005,3030,2992,2870 F
Brazil,Duckbill catfish,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,242,222,231,217,219,221,218,210 F
Brazil,Freshwater crustaceans nei,"America, South - Inland waters",Quantity (tonnes),500,500,700,700,1000,1000,1000,1500,1800,1300,1800,1500,1500,1000,1000,700,300,800,1500,1100,1100,1200,700,600,1879,2385,2151,2896,789,323,...,...,9,-,-,-,15,9,8 F,9 F,9 F,9 F,9 F,10 F,10 F,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Brazil,Freshwater fishes nei,"America, South - Inland waters",Quantity (tonnes),7200,7200,8400,8400,8400,9600,9600,9600,10800,19700,12400,13800,15200,16800,23900,22200,19500,17900,20300,24300,5600,4100,6600,5900,18154,20473,19481,13527,15614,22603,33659,29394,24785,26438,24263,21505,28979,30504,23538 F,31898 F,15499 F,12961 F,14550 F,18698 F,18849 F,40372,39421,34667,34887,34074,15473,18852,20152,17964,19022,15425,14413,14491,20870,19129,25926,5074,5114,5157,5092,4880 F
Brazil,Freshwater siluroids nei,"America, South - Inland waters",Quantity (tonnes),9000,9000,10500,10500,10500,12000,12000,12000,13500,6700,15500,17200,20000,21000,24900,25500,25600,30600,37400,36000,35400,33400,20800,23300,53405,52630,47247,66215,67965,33385,51314,50619,51881,56647,47339,50165,51897,47322,41818 F,42801 F,42800 F,43754 F,42853 F,43900 F,44900 F,25663,19518,19825,20137,20647,39799,35067,38065,38238,40214,43428,44578,40080,38832,35596,30015,15965,16091,16227,16021,15300 F
Brazil,Gilded catfish,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,4288,10612,11218,8272,14280,12229,12553,16607,16946,20057,19556,11599,11377,15094,13835,14379,788,794,801,791,760 F
Brazil,Kissing prochilodus,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,12941,11924,16529,15067,16153,17474,17252,15813,16435,15498,15619,15751,15551,14900 F
Brazil,Kumakuma,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3099,3123,3149,3109,2980 F
Brazil,Laulao catfish,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,10097,17172,21558,21457,22087,18642,23126,24149,19698,22547,21284,28195,23557,25830,23676,24607,23204,23385,23584,23284,22200 F
Brazil,Loweye catfishes nei,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,9027,9098,9175,9058,8660 F
Brazil,Manduba,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2116,2132,2150,2123,2030 F
Brazil,Marbled swamp eel,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,36,33,34,32,33,33,33,31 F
Brazil,Oscar,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2040,1870,1943,1832,1847,1862,1839,1770 F
Brazil,Pati,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1,0 0,1,0 0,0 0,0 0,0 0,0 0
Brazil,Piranhas nei,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,11661,11485,11153,10858,10766,11090,11591,10624,11042,3438,3465,3494,3450,3300 F
Brazil,Pirapatinga,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2344,1493,2016,1999,2130,2304,2279,2089,2238,2047,2063,2081,2054,1970 F
Brazil,Porthole shovelnose catfish,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,16,16,15,14,12,11,13,12,12,12,12,12,12,11 F
Brazil,Prochilods nei,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,39471,37073,31645,31179,33544,33148,40741,30839,30792,29091,27258,28706,28301,29845,27356,28432,26811,27020,27249,26903,25500 F
Brazil,Raphael catfish,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,486,177,364,268,196,185,230,211,219,206,208,210,207,200 F
Brazil,Redtail catfish,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,758,695,723,681,687,692,684,655 F
Brazil,River prawns nei,"America, South - Inland waters",Quantity (tonnes),100,100,100,100,100,200,200,200,300,300,400,600,600,1000,3100,2800,1800,2700,7600,7300,8400,8000,4200,5600,9962,6719,6786,7062,9742,6574,9854,10118,10394,10513,8416,9751,9578,7562,6524 F,6592 F,6600 F,6810 F,6560 F,6700 F,6900 F,1412,2677,2157,1506,3235,2437,3671,2820,3648,6317,5242,5127,6612,6022,5520,5737,5410,5452,5498,5428,5200 F
Brazil,Sorubims nei,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,8193,8257,8327,8221,7900 F
Brazil,South American silver croaker,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,2864,5841,8701,8801,10335,10326,13611,10142,12270,12792,12244,12030,13132,12037,...,18372,18515,18672,18435,17500 F
Brazil,Spotted sorubim,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2145,1966,8688,1927,1942,1958,1934,1860 F
Brazil,Tilapias nei,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,200,100,200,200,300,803,2025,1871,2540,2584,6318,9442,7897,6848,6571,7724,9875,10226,12331,10897 F,11153 F,11100 F,11348 F,9115 F,8400 F,7700 F,6234,7300,6927,7444,6616,7893,8146,8734,8238,8461,9164,9328,9978,10088,9247,9610,9062,9133,9210,9093,8690 F
British Virgin Islands,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Brunei Darussalam,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,60,70,83,83,83,83,86,91,89,86,11,6,96,87,87,84,84,85,10,14,1,2,1,0 0,0 0,0 0,1,3,1,0 0,3,...,...,...,...,...,...,...,...,0 0,0 0,0 0
Brunei Darussalam,Giant river prawn,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,17,31,29,20,73,89,65,31,19,44,20,20,15,11,3,5,14,17,35,26,22,16,13,5,8,...,...,...,...,...,...,...,...,0 0,0 0,0 0
Bulgaria,[Barbus cyclolepis],Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1,1,-,18,2,0 0,0 0,...,0 0,0 0,-,-,-,-
Bulgaria,Asp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,3,4,5,7,8,9,7,1,3,18,19,19,3,2,3,3,2,2,3,3,2
Bulgaria,Barbel,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,92,120,142,113,93,43,3,4,1,47,34,33,10,11,10,12,28,19,15,12,9
Bulgaria,Bighead carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,223,233,427,374,472,199,334,381,259,365,430,27,39,12
Bulgaria,Black carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2,4,1,2,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-
Bulgaria,Bleak,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,2,6,62,67,92,24,3,19,23,45,29,24,5,5,9,6,6,5,4,3,3
Bulgaria,Burbot,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,1,2,5,1,1,1,5,0 0,0 0,0 0,1,1,0 0,0 0,0 0,0 0
Bulgaria,Channel catfish,Europe - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,26,18,11,18,8,57,0 0,2,1,1,0 0,0 0,-,-,-
Bulgaria,Chub,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,92,121,150,43,4,17,13,6,4,2,0 0,0 0,2,1,1,1,0 0,0 0,0 0
Bulgaria,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,569,-,3,-,-,-,-,-,-,-,19,16,281,251,302,143,880,521,752,999,736,723,540,464,804,502,641,610,17,21,13
Bulgaria,Common nase,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3,3,4,8,7,17,14,17,20,13,2,3,3,2,3,3,4,3,2
Bulgaria,Crucian carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6,35,23,13,94,4,0 0,0 0,0 0
Bulgaria,Cyprinids nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,100,116,91,120,...,...,...,...,...,...,...,1,251,250,102,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Bulgaria,Danube bleak,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2,3,7,6,8,2,1,1,2,3,2,2,6,1
Bulgaria,Euro-American crayfishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,13,15,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,1,8,4,6,4,5,4,1,1,2,1,1,-,-,-
Bulgaria,European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,63,81,102,26,6,23,42,20,13,5,2,4,7,2,3,1,0 0,0 0,0 0
Bulgaria,Freshwater bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,-,0 0,0 0,0 0,54,47,36,54,44,41,39,56,-,-,-,50,70,63,60,...,...,...,...,70 F,74,91,90,82,71,25,4,6,30,65,41,40,9,11,9,8,17,17,13,9,6
Bulgaria,Freshwater breams nei,Europe - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,2,2,3,2,1,2,1,0 0,0 0,0 0,0 0,0 0,0 0
Bulgaria,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),200,200,300,300,400,200,300,300,300,300,200,200,200,200,1400,700,700,1600,600,1600,1900,100,1800,2000,1400,1442,1500,788,608,620,744,312,650,668,1050,775,2149,1083,921,1200,1534,1364,1521,1576,590 F,39,182,0 0,1,-,-,74,5,-,16,12,11,6,2,3,-,-,-,-,0 0,0 0
Bulgaria,Freshwater gobies nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,-,-,-,-,-,-,8,13,12,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,2,1,-,0 0,-,-,-,-,-,-,-,-,-
Bulgaria,Freshwater molluscs nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,100,100,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Bulgaria,Goldfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,328,392,360,179,138,247,307,304,208,135,100,127,132,129,192,168,13,10,10
Bulgaria,Grass carp(=White amur),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,3,8,8,17,20,12,18,23,30,40,47,51,23,27,21,19,18,30,5,5,4
Bulgaria,Mediterranean barbel,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,10,5,1,1,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-
Bulgaria,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,0 0,0 0,19,41,74,14,2,6,7,13,20,25,8,8,8,8,10,10,2,2,1
Bulgaria,Orfe(=Ide),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,7,8,10,12,14,...,0 0,0 0,1,5,7,11,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-
Bulgaria,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,100,100,0 0,100,0 0,0 0,0 0,0 0,0 0,100,0 0,36,32,20,42,67,86,40,48,-,-,-,5,18,1,10,10,15,34,29,30 F,22,26,45,54,68,27,5,18,25,48,31,25,5,11,14,18,20,22,4,4,4
Bulgaria,Roach,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,10,40,...,...,14,10,13,9,12,0 0,0 0,1,1,0 0,0 0,0 0,0 0,0 0
Bulgaria,Rudd,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,71,90,39,3,45,35,41,33,19,7,17,19,4,6,3,1,0 0,0 0
Bulgaria,Sichel,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1,1,1,0 0,0 0,0 0,-,0 0,0 0,-,-,-,-
Bulgaria,Silver carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,250 F,415,488,471,553,488,42,403,85,156,100,197,122,114,109,100,55,21,31,5,11,10
Bulgaria,Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2,3,4,1,5,1,0 0,2,0 0,0 0,0 0,0 0,0 0,-,-
Bulgaria,Vimba bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,84,15,50,4,1,2,2,23,19,13,3,2,4,5,8,5,4,4,3
Bulgaria,Wels(=Som) catfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,100,27,29,15,23,15,12,10,13,-,-,-,5,8,2,10,10,12,21,18,20 F,30,27,34,44,106,59,4,34,26,88,68,41,20,15,22,21,25,34,9,8,6
Burkina Faso,Characins nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,779,900 F,1050 F,1200,1624,1640,1656,1660
Burkina Faso,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),800,800,900,900,1000,1000,1300,1300,1500,1500,2000,2500,2500,3000,3500,3500,4000,4500,4500,4500,5000,5000,4000,5000,5000 F,5000 F,6000 F,6000 F,7000 F,7000,6500,7500,7000,7100 F,7300 F,7400 F,7600 F,7800 F,7900 F,8000,7000,7000,7500,7000,8000,8000,8000,8000,8335,7600,8500,8500,8500,9000,9000 F,9000,9500,10200,3943,3500 F,5020 F,4350,5887,5945,6003,6018
Burkina Faso,Freshwater siluroids nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2329,2700 F,3100 F,3450,4669,4715,4761,4772
Burkina Faso,Tilapias nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,4042,4700 F,5350 F,6000,8120,8200,8280,8300
Burundi,[Limnotilapia dardennii],Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,87,66,120,32,140,14,63,35,24,72
Burundi,[Hemibates stenosoma],Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,54,37,166,82,101,78,145,106,181,443
Burundi,[Mastacembelus cunningtoni],Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,8,12,2,1,1,3,5,5,15
Burundi,[Bathybates minor],Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2,1,3,72,36,5,108,37,51,153
Burundi,[Chrysichthys stappersii],Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6,24,20,1,0 0,3,7,6,8,24
Burundi,[Chrysichthys sianenna],Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,45,47,97,7,1,38,24,22,28,84
Burundi,[Chrysichthys platycephalus],Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6,2,2,2,0 0,3,1,1,4,12
Burundi,African bullhead,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1,3,1,0 0,0 0,0 0,4,6,19,45
Burundi,Bigeye lates,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,13,10,3,10,6,48,31,12,10,12
Burundi,Bubu,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2,0 0,2,3,3,1,3,4,12,36
Burundi,Dagaas (=Kapenta),Africa - Inland waters,Quantity (tonnes),1000,1200,2100,2200,2600,2600,2400,6000,6500,6000,5200,3300,5000,7600,6700,15200,10000,10000,10000,11000,11200,16200,6300,7100,9687,12022,14327,13320,11169,8181,9303,4820,5690,4460,4450,3760,5548,3379,5169,5200,14453,17745,19990,14100 F,18200 F,18163,1508,17868,8646,7030,10839,6138,8400 F,13080,8876,750 F,952,1427,1912,1043,2208,866,630,2548,3589,4925
Burundi,Electric catfish,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,4,0 0,0 0,0 0,4,4,16,48
Burundi,Forktail lates,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,9,6,8,1,6,31,34,6,90,124
Burundi,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5000,4000,5000,5000,6000,5000,7000,5000,4062,1000,1046,1146,870 F,1100 F,...,278,...,805,596,3286,1049,1000 F,294,276,860 F,541,644,853,357,392,291,450,287,234,602
Burundi,Freshwater perches nei,Africa - Inland waters,Quantity (tonnes),700,1000,2000,2000,3000,3000,3000,3700,5000,5000,4000,2000,2200,3000,3000,5000,6600,2300,5000,4600,2100,700,600,1000,1152,2243,4980,4630,4513,2964,5464,2060,2441,1906,1911,1609,1190,1485,1417,1400,1922,2143,2897,2000 F,2650 F,2888,1205,2378,3925,1523,3070,1657,1500 F,1323,4643,3150 F,-,-,-,-,-,-,-,-,-,-
Burundi,Giant cichlid,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,22,12,18,30,30,17,107,55,36,108
Burundi,Kibonde,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1,3,1,1,1,2,1,1,9,27
Burundi,Lake Tanganyika sardine,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,124,21,81,86,159,117,61,77,189,132
Burundi,Lake Tanganyika sprat,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,8600 F,9422,6141,11510,8346,11650,7264,9731,7410,8833,8027
Burundi,Marbled lungfish,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,5,0 0,0 0,0 0,0 0,0 0,14,42
Burundi,Nile tilapia,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,600,400,143,282,1026,950,-,105,-,-,-,-,-,-,102,145,91,100,20,60,40,30 F,50 F,50,50,50,50,50,120,120,100 F,...,60,40 F,12,10,20,23,41,24,44,28,15,57
Burundi,North African catfish,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6,2,4,1,2,1,8,58,10,30
Burundi,Sleek lates,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1671,2841,3420,2515,2499,1849,843,2518,2673,5094
Burundi,Tanganyika lates,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2,4,3,1,29,1,7,6,4,8
Cabo Verde,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Cambodia,Freshwater crustaceans nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,100,100,100,100 F,100 F,100 F,100 F,100 F,100 F,100,200,200,200,67,30,23,3,45,23,19,28,19,20 F,40 F,80 F,70 F,100 F,100 F,300 F,300 F,500 F,500 F,500 F,400 F,500 F,600 F,500 F,400,300,400 F,500 F,500 F,600 F,575 F,485 F
Cambodia,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),16600,16600,19100,19900,20700,23200,24900,24900,26600,26600,29100,29100,31500,33200,33200,37400,37400,41500,41500,43200,32000,55000,66000,73800,73800 F,73800 F,73800 F,73800 F,30000 F,21900 F,18300,50340,65036,57583,55026,56370,64181,62154,61155,50477,65081,74672,68881,67880,64960,72420,63440,72900,75600,230700,245300,384500,359800,308250,249600,323500,421400,394500,364600,389700,404600,444500,448500,527400,504430,487420
Cameroon,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),10000,10000,10000,10000,20000,20000,20000,30000,30000,30000,30000,30000,30000,30000,30000,35000,35000,35000,35000,35000,30000 F,25000 F,20000 F,20000 F,20000 F,20000 F,20000 F,20000 F,20000 F,20000 F,20000 F,20000,20000,20000,20000,20000,20000,20000,20000 F,21000,22000 F,22000 F,22000,23000,27000 F,30000 F,35000 F,40000 F,45000 F,50000 F,55000,52500 F,65000,55000,65000 F,75000,75000,74380,74700 F,75000,75000 F,75000 F,75000 F,75000 F,75000 F,75000 F
Canada,American yellow perch,"America, North - Inland waters",Quantity (tonnes),1500,2000,1900,2600,4100,3100,5800,5900,7800,9400,6300,8900,10300,8800,4800,9700,10100,10600,11600,14100,10100,7300,8000,9000,6268,4497,2983,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1439,1282,1440,2073,2083,1884,1847,2524,3622,3507,3588,4034,5307,4188,3713,2813,4270,4241,4675,3781,3518,3055
Canada,Catfishes nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,500,600,700,400,500,400,600,400,500,300,200,400,400,639,565,598,723,660,649,585,689,513,530,424,56,0 0,70,62,71,70,54,54,39,43,37,37,29,27,35,19,344,338,342,297,297,327,327,326,337,220,217,177,204,222,209
Canada,Common carp,"America, North - Inland waters",Quantity (tonnes),500,500,600,800,800,800,1100,800,800,900,700,700,500,800,800,900,1200,900,900,500,300,400,400,300,286,329,293,911,711,798,1522,1284,703,643,741,436,440,600,526,339,753,801,494,222,649,619,687,543,354,741,516,506,878,507,480,502,431,362,259,305,33,10,6,211,731,594
Canada,Cyprinids nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,100,0 0,100,100,100,100,100,100,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Canada,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),10600,9800,12100,15100,18000,18100,16600,14100,10400,10700,11700,9800,11600,10600,9200,11900,9500,7800,9700,9500,9500,10700,11000,10300,9196,7395,4465,11320,11141,11677,15009,12004,15165,15446,13804,15115,14470,14135,15995,16481,13839,16737,13422,5809,6707,8445,9649,8089,8914,9317,10756,8247,10568,7998,6125,4657,4031,3568,4344,7516,4853,2943,4030,4631,4450,4484
Canada,Northern pike,"America, North - Inland waters",Quantity (tonnes),2800,3300,3000,2400,2700,3200,3200,3400,3300,3500,3600,3600,4100,3800,3700,3500,3600,3500,4300,3700,3200,3000,3400,3300,3336,3365,3383,3888,3920,4162,4301,3742,4666,3352,3233,3429,3353,3720,3695,3853,2633,3172,3266,3424,1787,2496,2406,2334,2568,2615,2808,2464,2684,2323,1938,1417,1572,1697,1951,1955,1890,1646,2102,1886,2106,1946
Canada,Sauger,"America, North - Inland waters",Quantity (tonnes),2500,2200,2100,1200,1200,2000,2000,2500,2500,1800,2100,1500,1700,2400,2000,1900,2200,1300,1800,1200,300,300,1700,1900,1788,1931,1652,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Canada,Walleye,"America, North - Inland waters",Quantity (tonnes),6300,7700,7500,7300,7600,9000,9500,8700,7000,5900,6300,6000,6800,7300,5300,4400,5100,3900,3900,3500,3100,2900,3200,3500,3315,3766,4612,4595,4706,6090,6526,5042,5223,3787,5413,5026,5870,5600,8155,8491,7201,7290,7708,8160,7543,7832,7718,7751,8206,8782,9160,6949,7007,7352,6945,8855,10245,8984,8288,7660,7725,7418,8287,7738,6869,6648
Cayman Islands,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Central African Republic,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),1000,1000,1000,1000,1500,1500,1500,1500,2000,2000,2000,2000,2000,2500,2500,3000,4000,5000,5000,6000,7000,8000,8000,10000,11883,8044,10465,13000,13000,13000,13000,13000,13000,13000,13000,13000,13000,13000,13000,13000,13000,13500,13000,13250 F,13500 F,13750 F,14000 F,14250 F,14500 F,15000,15000 F,17000 F,19000 F,21000 F,23000 F,25000 F,27000 F,29000 F,31000 F,33000 F,35000 F,35000 F,32000,30000 F,29000 F,28000 F
Chad,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),30000,30000,30000,35000,35000,35000,38000,38000,40000,40000,40000,45000,45000,45000,50000,55000,60000,60000,65000,65000,70000 F,70000 F,70000 F,70000 F,75000 F,75000 F,75000 F,80000 F,75000 F,70000 F,60000 F,55000 F,30000 F,40000 F,50000 F,55000 F,60000 F,70000 F,58000,64400,70000,60000,80000,87300,80000,90000,100000,85000,51300,59600,83200,75000 F,70000 F,71000,74000,77000,79000,82000,85000,88000,91000,95000,100000,120000,120020,110000 F
Channel Islands,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Chile,Common carp,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,4,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Chile,Freshwater fishes nei,"America, South - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Chile,"Freshwater prawns, shrimps nei","America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,0 0,0 0,0 0,0 0,1,0 0,0 0,9,21,32,5,14,7,5,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
China,Chinese mitten crab,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,34540 F,32603 F,38564 F,38875,44119,46323,52495,53832,48630,61281,55578,52351,52587
China,Freshwater crustaceans nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,21400,17300,22100,28882,38594,36092,32271,38101,43546,51625,51337,56482,56175,51928,55411,62021,80626,84740,95544,94730,107180,123818,154891,203372,270536,364441,447561 F,541566 F,402409 F,463549 F,510910 F,670942 F,-,-,-,-,-,-,-,-,-,-,-,-,-
China,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),164039,232807,293999,448000,482040,520942,351093,135193,146145,103690,200354,350822,385124,340000,299758,285548,275201,299833,314207,253236,321679,259737,254377,312439,261048,250196,257992,251189,234794,239478,261828,275686,271909,330126,356849,385622,412002,453770,510658,578725,608018,709440,650385,738015,794129,894855,994971,963770 F,1095926 F,1231357 F,1069570 F,899384 F,802492 F,1501030 F,1494274 F,1586017 F,1542684,1574051,1615339,1526285,1614675,1582468,1636016,1661230,1673452,1682968
China,Freshwater molluscs nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,74100,74500,56400,58198,50221,46308,51802,50151,41644,53237,68908,56464,55964,63538,72382,119749,112911,125704,155222,161396,182341,223825,289484,330284,441994,403448,349413 F,413958 F,384072 F,420015 F,461001 F,478455 F,310241 F,297681 F,287548 F,301637,298518,268267,284331,286980,286576,280775,272272,263297,254084
China,Oriental river prawn,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,123332 F,117288 F,130471 F,143362,151478,141413,137659,144744,137675,141313,142515,137677,129200
China,Siberian prawn,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,123332 F,117288 F,130471 F,143362,151477,141412,137659,144744,137674,141312,142514,137676,129199
"China, Hong Kong SAR",Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),150,130,100,150,150,120,100,80,60,100,80,30,20,30,50,1,32,0 0,0 0,10,15,42,103,149,170,208,247,177,289,337,379,365,242,370,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
"China, Macao SAR",Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Colombia,Characins nei,"America, South - Inland waters",Quantity (tonnes),9500,9500,9500,10000,10000,11000,11900,18500,12000,7000,7000,13000,13800,15900,17800,17700,19200,15000,10000,8900,18200,14000,57400,52300,22405,26158,32692,24569,38256,24956,28630,26793,19076,16908,29063,24978,28701,29324,31611,17739,19507,14666,24870,12834,8831,5698,5501,3730,6427,8562,13435,8667,13435,14779,13704,6847,5900 F,7050 F,8200 F,9426,6664,10645,10003 F,10141 F,10006 F,10525 F
Colombia,Freshwater fishes nei,"America, South - Inland waters",Quantity (tonnes),1000,1000,1000,1200,1500,1500,1700,2500,3000,2000,3000,4000,4800,4100,4300,4900,5300,5000,6000,6500,7600,2296,9087,10782,8876,8751,11197,15146,6022,15853,10473,13076,22161,15716,16215,16300,20632,24764,10086,14811,10202,4135,7827,17231,19737,17231,16165,14232,6031,7320,5999,7320,5999,6599,6119,5220,4500 F,3600 F,2700 F,1730,3082,3797,4114,4226,3822,500
Colombia,Freshwater siluroids nei,"America, South - Inland waters",Quantity (tonnes),4000,4000,4000,4000,4000,4500,4700,4800,2400,700,1400,2500,2900,2500,3200,3300,3500,3700,5000,11200,7400,3000,16300,10000,5922,7118,7484,2375,12223,7579,7603,7591,7424,12273,8076,6430,5733,6981,6981,3563,4231,630,1062,473,6414,595,1392,2648,9305,10647,8303,10545,8304,9134,8469,7224,6248 F,8000 F,9750 F,11530,11303,10479,7283 F,3528,3816,7529
Colombia,Giant river prawn,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,...,...,...,-,-,-,-,7,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Comoros,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Congo,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),2000,2000,2500,2500,2500,3000,3000,3000,3000,3500,3500,3500,4000,4000,4000,4500,4500,4500,5000,5000,5000,6000,7000,7000,8000,8000,9000,9000,10000,10000,11000,12000,12000,13500,13500,13539,14000,15263,19423,23890,26017,26964,21049,27850,24752,26811,25873,18987,25455,25268,25438,26101,29494,31182,30338,32500,31000,30120,29362,28385,30500,33390,37870,35990,38090,37320
"Congo, Dem. Rep. of the",Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),42500,37300,48200,65100,64300,83000,92700,118000,131700,147500,70000,68000,70000,60000,65000,70000,72000,80800,114300,134600,121900,111200,111200,144700,115430,100000,110000,104600,107600,114200,101800,102000 F,100000 F,101000 F,146319,146220,153811,159277 F,159241 F,163240 F,159300 F,162050,184040,192589,152117,154751,159037,158367,174087,204503,240586 F,227433 F,233800 F,230365 F,231772 F,230840 F,230588 F,230000,227000 F,224000 F,220000 F,217000 F,214000,223596,225608,227700
Cook Islands,Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Costa Rica,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,40,48,56,52,48,81,323,361,401,452,213,300,300,300 F,300 F,300 F,300,526,406,710,840,900,1090,840,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F
Croatia,Asp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,11,12,12,8,13,10,10
Croatia,Bighead carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,1,-,-,-,-,-,-,-,-,-,-,-,-,-,1,1,1,1,2,1,1
Croatia,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,60,72,97,96,143,126,1 F,1,3,1,2,1,2,3,3,3,2,168,185,185,179,164,165,172
Croatia,Freshwater bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,63,68,64,65,65,53,54
Croatia,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,106,161,184,202,217,213,5 F,5,8,12,17,13,25,26,18,23,8,0 0,0 0,0 0,1,0 0,0 0,1
Croatia,Grass carp(=White amur),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,54,56,57,51,48,52,47
Croatia,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,18,23,22,30,30,30,1 F,1,1,1,1,-,1,1,2,2,1,47,51,48,42,49,49,68
Croatia,Orfe(=Ide),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,9,9,11,11,11,8,10
Croatia,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6,13,12,12,12,14,1 F,1,1,1,1,1,2,1,1,1,1,19,20,19,17,20,21,26
Croatia,Silver carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,3,2,3,2,1,1,1
Croatia,Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,1,1,2,3,0 0,-,-,-,-,-,-,-,-,-,-,-,5,5,3,3,4,4,3
Croatia,Wels(=Som) catfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6,10,20,19,24,20,1 F,1,1,1,2,1,3,2,2,3,2,37,40,40,38,40,40,46
Cuba,Blue tilapia,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,560,1440,2880,4047,6701,8909,9603,11234,11912,12179,12346,10614,12595,14930,13254,13699,9348,9483,8199,9672,7553,5122,4564,2940,1948,2002,2692,2513,1561,1449,3058,2764,2526,2028,1341,1597,1688,1838,1800 F
Cuba,Freshwater crustaceans nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,100,-,700,0 0,0 0,0 0,400,600,158,938,1369,874,1138,1032,1416,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Cuba,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,100,100,200,200,100,200,500,900,700,300,200,500,573,347,312,288,235,124,134,453,104,79,73,63,48,486,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Cyprus,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5,65,64,70,70,70,78,70 F,60 F,50 F,40 F,30 F,20 F,20 F,20 F,20 F,20 F,20 F,20 F,20 F,20 F,20 F
Czechia,Asp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,10,15,16,16,13,17,18,18,21,21,27,18,19,16,16,16,12,15,17,15
Czechia,Bighead carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,8,6,7,7,6,7
Czechia,Burbot,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Czechia,Chub,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,30,19,19,19,20,17,10,13,13,14,12,14
Czechia,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2284,2832,2919,2522,2312,2899,3006,3558,3560,3909,4015,3462,3260,3656,3341,3257,3214,3161,2997,3207,2917,2955,3014
Czechia,European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,39,38,31,33,34,36,37,34,34,30,30,30,26,24,20,17,18,14,18,18,18,16,14
Czechia,Freshwater bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,202,265,286,247,232,253,297,261,247,243,243,213,211,217,190,169,183,170,166,168,170,156,169
Czechia,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,89,153,192,102,121,134,168,151,131,126,128,74,65,59,51,55,55,50,40,42,44,42,41
Czechia,Goldfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,30,49,39,49,40,40,43,35,37,33,31,33,29,26,24,24,23,20,20,21,21,23,23
Czechia,Grass carp(=White amur),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,47,44,51,47,49,53,70,60,60,69,113,89,80,92,96,86,89,89,111,91,93,101,94
Czechia,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,133,173,82,163,159,168,183,180,176,172,167,162,148,156,152,166,154,122,137,124,129,129,117
Czechia,Orfe(=Ide),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,34,42,31,27,0 0,0 0,0 0,0 0,0 0,1,1,...,...,...,...,...,...,...,...,...,...,...,...
Czechia,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,101,164,86,130,157,125,130,134,139,144,133,165,145,147,121,106,107,106,105,89,110,107,79
Czechia,Silver carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,4,3,13,3,5,6,8,10,12,12,16,13,14,15,12,11,13,4,4,4,3,3,4
Czechia,Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,36,29,30,23,21,29,30,27,24,24,25,22,20,22,21,23,24,22,19,22,20,20,20
Czechia,Wels(=Som) catfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,49,38,42,36,44,49,52,53,57,61,76,87,80,78,92,94,89,93,97,105,97,112,126
Czechoslovakia,Asp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,25 F,30 F,30 F,36,13,29,27,30 F,30 F,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Czechoslovakia,Barbel,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,40 F,45 F,50 F,54,29,31,36,40 F,40 F,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Czechoslovakia,Burbot,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5 F,5 F,5 F,6,2,5,3,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Czechoslovakia,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2000 F,2150 F,2315 F,2432,2608,2478,2806,2800 F,2830 F,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Czechoslovakia,Crucian carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,31,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Czechoslovakia,Cyprinids nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,610 F,660 F,710 F,737,131,317,347,350 F,355 F,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Czechoslovakia,European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,20 F,25 F,25 F,28,51,21,23,20 F,20 F,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Czechoslovakia,Freshwater bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,215 F,230 F,245 F,256,272,161,186,190 F,200 F,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Czechoslovakia,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),250,250,446,408,308,404,432,676,323,459,334,497,486,414,433,675,696,691,571,636,629,959,1210,962,945,1113,1061,1053,948,851,853,1168,1043,961,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Czechoslovakia,Grass carp(=White amur),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,15 F,15 F,15 F,16,52,46,52,50 F,50 F,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Czechoslovakia,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,215 F,230 F,245 F,258,295,295,262,260 F,265 F,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Czechoslovakia,Orfe(=Ide),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,120 F,130 F,140 F,148,102,86,90,90 F,90 F,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Czechoslovakia,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,110 F,120 F,130 F,136,189,161,157,150 F,150 F,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Czechoslovakia,Roach,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,174,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Czechoslovakia,Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,45 F,50 F,55 F,58,74,35,27,30 F,30 F,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Czechoslovakia,Wels(=Som) catfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,40 F,45 F,50 F,54,37,32,27,30 F,30 F,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Côte d'Ivoire,Freshwater crustaceans nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,500,500,500,500,600,600,600,600,1000,1000,1000,1000,1000,2400,2400,2400,2400,2400,2400,2400,2400,2400,2400,2400,2400,2400,2400,2400,2400,3000,2200,2200,2200,2000,1500,1500,1000,1000,500,400 F,300 F,200 F,100 F,27,386 F,1843,1000 F,...,...,66,...,...,30,300,156,205,220,777,600 F
Côte d'Ivoire,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),500,500,500,1000,1000,1000,1000,1000,1000,1000,2000,2000,2000,2000,2000,3000,3000,3000,3000,3000,3500,3500,3600,3600,3600,3600,1700,1700,1703,12600,15600,17600,19600,20000,20000,24000,25000,25000,26200,28300,19000,19901,13904,12477,14604,10835,11162 F,11732 F,12301 F,10556 F,10475,10116 F,20157,21000 F,4856,13145,6499,3178,5165,5619,6463,6102,7513,7228,7462,7400 F
Denmark,Burbot,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,2,1,1,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-
Denmark,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,2,2,1,1,2,1,2,1,1,2,1,1,1,0 0,0 0,0 0,0 0,1,0 0,-,-,0 0,0 0,0 0,0 0,-,-,-,-,-
Denmark,Common dace,Europe - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,16
Denmark,Euro-American crayfishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-
Denmark,European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,30,6,7,25,16,36,45,37,32,27,21,16,35,35,24,13,7,3,5,12,9,8,3,2,5,7,11,6,0 0,2
Denmark,Freshwater bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,133,140,159,97,106,102,369,130,90,85,64,93,141,79,47,28,26,49,6,5,5,3,3,2,1,5,3,3,2,1
Denmark,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,100,100,100,100,100,100,0 0,0 0,0 0,0 0,66,51,34,33,28,26,24,175,348,250,354,236,2,1,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,3,-,-,0 0,0 0,1,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-
Denmark,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,18,17,19,18,19,15,17,7,8,6,5,7,11,8,5,7,6,10,9,8,7,4,5,9,2,6,6,2,3,5
Denmark,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,24,27,32,36,25,18,29,12,10,13,11,39,38,13,19,5,7,7,83,11,3,14,11,9,3,24,27,26,27,16
Denmark,Roach,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,71,28,39,35,61,57,43,84,24,44,30,27,64,28,35,19,12,30,6,4,8,2,0 0,1,3,8,4,6,0 0,1
Denmark,Rudd,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,0 0,2,1,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-
Denmark,Ruffe,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,10,61,70,95,22,10,7,2,5,15,13,5,9,3,2,1,1,6,-,-,0 0,-,-,-,-,-,-,-,-,-
Denmark,Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,0 0,0 0,1,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,1,0 0,0 0,0 0,0 0,-,-,0 0,0 0,-,-,-,-,0 0,0 0,-
Djibouti,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Dominica,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Dominican Republic,Common carp,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,13,10,17,13,142,231,777,998,297,434,244,118,112,682,257,640,400 F,135,233,1579,2881,597,62,109,27,180,...,397,585,377,580,494,424,372,489,28,118,199,194,105,118,320
Dominican Republic,Freshwater crustaceans nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,21,-,-,16,1,48,6,113,156,73,118,113,95,...,8,...,3,18,31,69
Dominican Republic,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,36,55,73,152,45,43,192,118,1039,100,47,338,40,312,305,367,300 F,269,536,130,234,315,105,751,990,96,179,183,390,44,45,37,354,195,189,...,42,362,353,190,215,146
Dominican Republic,Largemouth black bass,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,240,303,272,229,42,165,88,24,95,93,50,57,118
Dominican Republic,Tilapias nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,200,200,100,100,100,200,400,400,400,500,200,300,200,100,400,900,200,308,532,528,194,326,766,1490,1720,385,1364,739,821,691,856,638,877,600 F,323,255,328,659,1188,100,207,77,320,...,529,1056,675,887,804,762,757,744,298,139,201,196,106,323,534
Ecuador,[Pseudocurimata boulengeri],"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,42,36 F,30,47,34,56,48,79,45,47
Ecuador,[Brycon dentex],"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,24,20 F,15,45,32,49,35,20,5,6
Ecuador,[Hoplias microlepis],"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,27,32 F,38,57,44,58,47,48,13,14
Ecuador,Freshwater fishes nei,"America, South - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,157,206,326,524,845,994,867,900,900,578,578,600,579,332,372,300,300,300,400,400,400,350 F,350 F,300 F,300 F,250 F,250 F,...,...,...,...,...,...,...,...,...,...
Ecuador,Green terror,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,14,14 F,14,48,39,70,26,38,20,24
Ecuador,Nile tilapia,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,20,19 F,18,27,22,43,5,7,3,6
Ecuador,Red claw crayfish,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,106,95 F,84,114,74,86,45,18,15,8
Egypt,Bayad,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,15472,19026,16437,10228,7900,11952,6668,5647,7202,6902,5747,6035,5957,6059,6582
Egypt,Characins nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3354,4543
Egypt,Cyprinids nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,928,2154,1059,1261,1386,2117,4515,1232,5040,4385,6938,5978,2747,4280,4795,2537,3599,2740,2615,2408,2269,2042,2276
Egypt,Elephantsnout fishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,965,1040,799,977
Egypt,Freshwater crustaceans nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,950,557,838,918,1237,2473,2192,2029,1469,1455,2141,2591,2031,2425,2911,2216,1906,1651,1518,1280,2752
Egypt,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),23300,25200,22100,28200,30600,32650,35200,39100,44200,48500,49200,50000,49800,54400,83700,56700,65900,49400,46400,46100,47700,46200,47000,56700,59700,66000,58624,59722,60000,76650,86546,83810,104102,102693,106989,127952,136813,120711,158049,138973,156865,67728,66145,65814,80906,62895,55738,63547,95924,83715,34196,21810,18931,16393,14393,14632,15421,12544,34845,25685,15014,15027,20023,18749,15409,14836
Egypt,Freshwater molluscs nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,488,530,610,625,598,916,845,1190,1845,1760,2142,2262,1990,1947,1692,1671,1403,927,1634,1493,1621
Egypt,"Freshwater prawns, shrimps nei",Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,680,418,233,300,300,151,54,49,19,11,27,63,1293,931,994,1023,2765,1139,2352,3687,3169,2286,2387,2886,1388,2411,2450,2326,2674,5089,4464,5029,4792,5409,6176,3023,3116,4574,4887,4562,3453
Egypt,Grass carp(=White amur),Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,10000,15343,16553,4233,707,12826,17918,19528,21397,28192,26534,27534,26156,21189,26071,21354,32160,15094,16886,15416,15371
Egypt,Mudfish,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,19538,19610,23680,19895,19608,20370,22433,21618,21511,31506,39535,39208,43109,26833,25821,36771,31195,32357,37806,29156,30117,35128,41495,32478,30459
Egypt,Nile perch,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2495,2730,2551,3255,2572,3278,5328,5775,9985,10341,6548,9666,6860,5039,15735,12294,10804,9084,7042,8313,4327
Egypt,Nile tilapia,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,93113,93495,97679,95819,122207,125307,130992,128446,112811,131276,145291,138450,150182,140561,116461,90127,102574,91272,105041,130330,120220,102186,102802,107956,114093
Egypt,Red swamp crawfish,Africa - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,2520
Egypt,Upsidedown catfishes,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2678,3937,5520,6037,1929,1454,2038,1843,1903,2297,1871,1776,1689,1789,1862,1925
El Salvador,Catfishes nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,228,205,178,250,240,230,213,208,142,169,125,126,113,169,168,134,...,...,...,...,...,...,2,3
El Salvador,Freshwater crustaceans nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,...,...,...,...,...,...,...,30,0 0,12,1,6,1,4,11,24,177,3,5,5,0 0,3,11,9,16,22,24,20,4,32,0 0,3,...,...,...,...,...,...,...
El Salvador,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),800,800,800,800,900,900,1000,1000,1400,1400,1400,1300,1300,1000,900,1600,1300,1300,1000,1000,800,800,800,900,1544,869,1143,1624,1512,1719,1818,983,516,708,1164,1232,1057,515,333,1043,865,1437,627,776,932,967,891,912,863,867,1177,535,1022,1026,928,356,692,895,...,2260 F,2326,2355,1200 F,922,527,291
El Salvador,Freshwater molluscs nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,38,1,-,0 0,2,3,1,8,2,7,4,3,0 0,8,17,...,...,...,...,...,...,...,...
El Salvador,Jaguar guapote,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,394,464,382,608,566,367,344,351,324,410,318,333,274,472,525,609,...,...,...,...,...,...,134,52
El Salvador,Nile tilapia,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,36,35,87,501,1559,793,1164,364,2983,2772,2905,3863,2801,2323,2494,1265,1297,1017,1216,1171,560,1169,1160,867,1050,609,767,3977,940 F,...,...,850 F,790,831,112
Equatorial Guinea,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,400,400,450,400 F,400 F,400 F,400 F,350 F,370 F,600,700,450,900,850,970,1101 F,1076,1000 F,950 F,900 F,850 F,850 F,900 F,900 F,900 F,1000,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F
Eritrea,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Estonia,Bleak,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,0 0,-,-,-,4,0 0,2,0 0,1,0 0
Estonia,Burbot,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,67,60,54,-,-,16,8,29,33,27,18,52,38,37,41,38,50,20,21,38,33,30,29,32,25,29,23,20
Estonia,Crucian carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,1,1,2,4,3,3,2,2,2,43,9,11
Estonia,Euro-American crayfishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,0 0,...,0 0,...,...,...,1,1,1,-,-,1,0 0,-,-,-,-,-,-,-,-,-
Estonia,European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1089,1115,926,-,-,525,672,623,634,887,815,680,561,300,246,621,408,411,563,379,766,826,1237,787,1079,927,803,843
Estonia,Freshwater bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,231,231,225,180,...,318,152,155,167,222,240,181,194,318,385,328,335,425,432,554,774,783,580,674,682,701,863,788
Estonia,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,254,...,1150,3509,247,212,218,123,160,134,168,170,209,28,184,186,198,126,0 0,1,0 0,1,1,1,1,1,1
Estonia,Goldfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,1,1
Estonia,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,228,241,190,170,...,103,47,42,97,82,114,133,156,180,199,169,138,134,194,184,98,111,95,141,205,228,197,155
Estonia,Orfe(=Ide),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,93,9,-,-,3,1,1,1,2,1,2,4,4,4,3,2,2,2,3,2,1,2,2,1,1,3,2
Estonia,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,282,332,250,270,...,554,460,393,393,280,750,655,652,484,938,1786,924,717,1131,932,671,729,537,712,681,674,661,465
Estonia,Roach,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,403,339,227,-,-,50,70,92,209,150,128,167,234,231,464,211,220,303,297,316,306,248,267,281,223,219,271,267
Estonia,Rudd,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,0 0,0 0,0 0,1,1,2,2,1,2,1
Estonia,Ruffe,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,9,147,76,75,39,8,5,1,9,8
Estonia,Sichel,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,8,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Estonia,Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,5,5,11,13,10,9,9,12,5,13,19,13
Estonia,Vimba bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,81,131,81,-,-,0 0,0 0,0 0,1,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,1
Estonia,Wels(=Som) catfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,135,126,91,100,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Estonia,White bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,1,1,4,1,1,6,1,1,8,1,3
Ethiopia,African scraping feeder,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,12,13,27,30,38,51,22,22,57,96,55,96,-
Ethiopia,Common carp,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,74,94,27,62,71,75,74,79,39,63,57,36,284,313,293,182,929,1181,1231,1488,1349
Ethiopia,Crucian carp,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,47,61,191,88,101,110,108,103,119,119,119,48,16,151,179,100,25,32,442,266,257
Ethiopia,Cyprinids nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,362,387,639,768,878,860,843,759,394,415,427,1084,1651,1672,1936,1949,1843,1830,12866,10405,3478
Ethiopia,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,588,86,-,-,-,-,-,-,91,91,160,291,420,766,1169,571,742,824,745,1473,1961
Ethiopia,Naked catfishes,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,94,107,120,119,98,407,163,163,...,...,10,11,57,43,35,132,154,432
Ethiopia,Nile perch,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,908,270,230,191,75,65,63,37,168,919,2260,1221,2597,3243,2740,1017,844,744,3928,4527,5428
Ethiopia,North African catfish,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,643,812,1200,1677,1917,4000,3926,4318,2662,2532,2366,2252,2823,3384,3143,2050,3279,5225,6242,6945,7238
Ethiopia,Rhinofishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1994,2007,3168,3621,3451,3387,2303,668,100,267,...,...,...,...,...,...,...,...,342,342
Ethiopia,Tilapias nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,400,500,500,500,500,500,900,300,1000,1000 F,1000 F,1500 F,2000 F,2300 F,2500 F,2800 F,3100 F,3500 F,3400 F,3500 F,3700 F,3500 F,3500 F,3500 F,3343,2679,3773,4109,4485,4175,5285,3703,5066,6076,7952,9088,7000,6870,4603,4653,5590,3604,4928,5425,7180,7554,12110,16279,18985,12730,24405,25032
Faroe Islands,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
"Fiji, Republic of",Freshwater crustaceans nei,Oceania - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,10,6,10,10,10,13,19,16,31,20,159,113,90,80,73,264,349,370,260,102,104 F,1011,327,315,323,332,340 F,343,300 F,211,466,500 F,548,458,340 F,225 F,100,150,140 F,140 F,140 F,140 F
"Fiji, Republic of",Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,200 F,120,75,25,30 F,30 F,30 F,30 F
"Fiji, Republic of",Freshwater molluscs nei,Oceania - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,60,161,206,1150,733,618,609,848,2000,2100,2200,2250,3005,4643,4346,3771,4150,3670,3812,2798,2852 F,2569,2670,3970,4500,5000,5080 F,5300,3300 F,1052,2527,2500 F,2530,1500,1500 F,1500,1500,2500,2420 F,2420 F,2420 F,2420 F
"Fiji, Republic of",Nile tilapia,Oceania - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,4,5,5,7,10,46,14,14,10,12,19,20,22,25,25,19,3,-,12,7,8 F,6,37,40,288,290,280 F,278,200 F,...,...,...,...,230,60,5,5,6,10 F,10 F,10 F,10 F
Finland,Burbot,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1159,1109,1286,1261,2727,2716,2745,2771,2810,2830,2161,2182,2146,2010,1665,1677,1763,1765,1384,1384,1227,1227,679,679,831,831,794,794,1075,1075,563,563,592,592,715,715,528,528,423,423
Finland,Cyprinids nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,98,193,277,277,15,15,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Finland,Euro-American crayfishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,294,294,294,294,294,294,363,363,366,366,458,458,362,362,191,191,227,227,144,144,80,80,156,156,143,143,-,-,-,-,-,-,-,-,-,-
Finland,European perch,Europe - Inland waters,Quantity (tonnes),2500,2500,2000,2000,2000,2000,2000,2000,3500,4000,3000,3500,4000,5000,3600,3600,4200,4400,4500,3900,4400,4300,4500,4400,4528,5221,5330,5157,8120,8018,18539,18537,18572,18577,18496,18494,15301,15321,13698,13735,12778,12844,13774,13754,13043,13028,12634,12634,9470,9470,9599,9599,9389,9389,9687,9687,10407,10407,7431,7431,6252,6252,5281,5281,6890,6890
Finland,Freshwater bream,Europe - Inland waters,Quantity (tonnes),2500,2500,2000,2000,2000,2000,2000,2000,3000,3000,2000,2500,2700,2300,1800,1700,1600,1800,1700,1400,1300,1400,1300,1100,1413,1481,1481,1456,1976,1930,3298,3254,3265,3259,3255,3251,2788,2786,2510,2507,2553,2565,3451,3449,3266,3239,2334,2334,1590,1590,1660,1660,2169,2169,2030,2030,1908,1908,1369,1369,1555,1555,1161,1161,1754,1754
Finland,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),2500,2400,2800,2600,2400,2200,2100,2100,4000,4000,4000,4000,4800,3700,2600,2700,2600,2900,2900,2600,2800,2400,2700,2700,3052,4489,3108,2927,4558,567,715,817,914,823,777,803,1108,1227,1819,1814,796,789,834,696,640,517,476,476,444,444,393,393,532,532,559,559,652,652,352,352,710,710,203,203,377,377
Finland,Noble crayfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,80,80,76,76,41,41,24,24,40,40
Finland,Northern pike,Europe - Inland waters,Quantity (tonnes),3000,3000,2000,2000,2000,2000,2000,2000,4000,5000,4000,4000,5100,4000,3300,2900,2900,3200,4100,3300,3300,3300,3300,3400,3649,4734,4761,4608,5304,5219,15869,15897,15961,16036,16022,16026,12229,12219,11370,11239,12801,12785,13320,13334,9704,9681,9763,9763,7621,7621,7887,7887,8023,8023,8272,8272,7887,7887,7030,7030,6558,6558,4819,4819,6496,6496
Finland,Orfe(=Ide),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,221,211,201,201,540,533,559,557,546,544,388,296,351,348,317,317,311,311,442,442,229,229,158,158,181,181,175,175,214,214,177,177,185,185,210,210,191,191,288,288
Finland,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,900,300,...,600,500,400,400,500,500,500,400,400,400,400,500,521,332,323,335,349,327,681,670,664,684,690,687,720,719,732,696,759,760,1441,1454,978,994,1128,1128,985,985,759,759,1575,1575,1981,1981,2309,2309,1928,1928,2853,2853,2874,2874,3425,3425
Finland,Roach,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,4157,7500,7529,7465,7448,7400,7406,6690,6646,6034,6103,5513,5612,5721,5793,6850,6915,6775,6775,5362,5362,3999,3999,4166,4166,4039,4039,4447,4447,2659,2659,3474,3474,2518,2518,2968,2968
Finland,Signal crayfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,259,259,218,218,189,189,163,163,119,119
France,Barbel,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3,1,2,3
France,Bleak,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3,0 0,1,0 0
France,Burbot,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5,5,6,5
France,Chub,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1,0 0,1,1
France,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5,5,2,3
France,Crucian carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1,0 0,0 0,0 0
France,Cyprinids nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,26,8,7,6
France,Euro-American crayfishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,24,19,14,17
France,European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,188,99,65,65 F,65 F,65 F,70 F,70 F,70 F,70 F,70 F,70 F,70 F,69,79,61,63
France,Freshwater bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,7,5,4,5
France,Freshwater crustaceans nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,19,9,21,5
France,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),800,800,800,800,800,1000,1000,1000,1000,1000,1200,1200,1200,1200,1200,1400,1400,1400,1400,1400,1500,1500,1500,1500,1500,1800,1800,1800,1800,1800,2000,2000,2000,2000,2000,2000,2000,1500 F,1500 F,2000 F,2500 F,3000 F,3200 F,3400 F,3450 F,3500 F,3400 F,3250 F,3155 F,1139,1074,1071,1050 F,1015 F,990 F,950 F,930 F,900 F,880 F,850 F,830 F,800 F,246,17,1,3
France,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,18,17,14,14
France,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3,5,3,3
France,Roach,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,12,10,7,9
France,Ruffe,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,8,6,5,6
France,Signal crayfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,7,8
France,Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1,0 0,0 0,0 0
France,Wels(=Som) catfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,121,17,12,12
France,White-clawed crayfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2,-
French Guiana,Freshwater fishes nei,"America, South - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
French Polynesia,Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,50,50,50,50,50,50,50 F,50 F,50,50,50,50,50,50,50,50,50,50,50 F
French Polynesia,Giant river prawn,Oceania - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,1,-,-,-,0 0,0 0,0 0,3,3,3,3,3,3,2 F,1 F,0 0,3,3,3,3,3,3,3,3,3,3 F
French Southern Terr,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Gabon,[Xenocharax spilurus],Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,233 F,220 F
Gabon,African obscure snakehead,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1427 F,1340 F
Gabon,Black catfishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1000 F,1500 F,2000 F,2124,1131,1950,380,887,797,797,783,785,1194,1068,1000 F,955 F,915 F,875 F,835 F,795 F,755 F,707 F,660 F
Gabon,Freshwater crustaceans nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,30,36,44,50,6,4,9,4,6,15,25,12,5 F,5 F,5 F,5 F,5 F,5 F,5 F,...,...
Gabon,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),300,300,300,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,600,600,600,600,600,600,600,600,600,600,600,600,600,600,600,600,749,700 F,700 F,700 F,750 F,750 F,750 F,1000 F,1500 F,3018,4251,4636,3500,5814,5726,5922,5121,5219,3986,5056,4799,4800 F,5600 F,6400 F,7200 F,8000 F,8800 F,9600 F,313 F,290 F
Gabon,Freshwater siluroids nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,627 F,590 F
Gabon,Sampa,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,7779 F,7280 F
Gabon,Tilapias nei,Africa - Inland waters,Quantity (tonnes),300,300,300,500,500,500,500,500,500,500,500,500,800,800,800,800,800,1000,1000,1000,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200 F,1200,1200,1200,1200,1200,1200,1230,1200 F,1200 F,1200 F,1250 F,1250 F,1250 F,1500 F,1500 F,2600 F,3022,3630,3500,3800,3800,3122,3478,3499,3507,3425,3480,3695,3240 F,2780 F,2320 F,1860 F,1400 F,940 F,473 F,440 F
Gambia,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),500,500,500,500,600,600,800,800,800,1000,1000,1000,1000,1000,1000,1200,1200,1200,1200,1200,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1400,1400,1400,1400,1450,1450,1450,1450,1450 F,1450 F,1450 F,1450 F,2000 F,2550 F,3100 F,3650 F,3840,3089,3308,3500 F,3750 F,4021,3321,2726,2650 F
Gambia,Tilapias nei,Africa - Inland waters,Quantity (tonnes),300,300,300,400,400,400,500,500,500,500,500,800,800,800,800,1000,1000,1000,1000,1000,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1100,1100,1000,1000,1050,1050,1050,1050,1050 F,1050 F,1050 F,1050 F,1000 F,950 F,900 F,850 F,719,1077,1153,1154,1050 F,950,1250,1228 F,1250 F
Georgia,Common carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,91,499,0 0,49,0 0,0 0,2,11,12,5,5,1,3,2 F,...,...,...,...,-,-,0 0,-,-,-
Georgia,Crucian carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,227,11,-,-,...,...,...,...,...,...,...,...,...,...,...,31,22,25 F,33 F,41,28 F,15 F,2,19,17,16 F,16 F,16 F
Georgia,Cyprinids nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,18,42,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Georgia,Freshwater bream,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,27,22,34,16,16,18,11,27,3,1,2,1,3,1,2,1,2,2 F,2 F,...,...,...,-,-,-,-,-,-
Georgia,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,5,7,2,3,6,24,22 F,15 F,5 F,5 F,5 F,10 F,0 0,0 0,0 0,0 0,0 0
Georgia,Northern pike,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,18,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Georgia,Pike-perch,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,12,5,9,2,3,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Georgia,Roaches nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3,98,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Georgia,Seven khramulya,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,0 0,2,3,3 F,3 F,3 F
Georgia,Wels(=Som) catfish,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,173,1,5,3,4,1,0 0,2,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Germany,Asp,Europe - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,5,5,5,5,4,3,4,4
Germany,Bighead carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,12,12,12,12,12,6,6,6,4,10,10,20,23,23,27,53,10,1,-,-,-,-
Germany,Burbot,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,2,2,2,2,2,2,2,2,2,2,2,2,-,-,-,-,3,1,-,-,-,-
Germany,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,1000,67,66,66,386,386,386,386,386,386,386,386,386,386,386,139,108,108,114,84,76,61,70,71,72,86
Germany,Cyprinids nei,Europe - Inland waters,Quantity (tonnes),400,400,400,500,500,500,500,500,1000,1000,1000,1000,1000,1000,1000,1400,1500,1400,1600,1600,1700,2000,500,300,281,512,572,480,658,717,698,724,791,920,1027,1109,1188,1112,1127,1071,1836,1242,1280,1156,1653,1653,1653,1653,1653,1653,1653,1653,1653,1653,1653,1182,1083,1083,1058,952,1232,968,1228,1261,1284,1423
Germany,European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,200,200,200,200,200,100,100,100,100,73,117,124,117,101,106,114,103,132,120,134,117,124,119,118,120,258,333,293,277,215,215,215,215,215,215,215,215,215,215,215,120,96,96,181,138,122,145,163,161,117,108
Germany,Freshwater bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,35,35,133,139,121,119,136,156,140,162
Germany,Freshwater crustaceans nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,0 0,1,12,12,12,12,12,12,12,12,12,12,12,12,11,11,5,3,3,3,6,6,5,5
Germany,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),5200,5200,5200,8400,8200,10400,10900,10700,11000,11000,11000,11000,11000,10300,11700,10400,10300,10300,10300,10400,15500,15600,17200,15600,15425,15468,15365,15795,15274,15782,18364,20645,3534,2542,4039,3828,4331,4129,5237,3991,4060,3500,3880,6103,7000,19079,19079,19008,18473 F,17938 F,17403 F,16868 F,16328 F,15788 F,15248 F,14500 F,14000 F,13500 F,13000 F,12500 F,12000,13000,13000,13000,13000,18428
Germany,Grass carp(=White amur),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,10,10,10,10,10,5,5,5,3,10,10,20,23,23,26,53,10,1,-,-,-,-
Germany,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,400,500,500,400,400,400,400,400,300,329,293,263,233,228,222,211,261,316,283,274,231,221,241,303,299,302,483,476,480,205,205,205,205,205,205,205,205,205,205,205,166,165,165,212,194,206,211,231,232,207,239
Germany,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,100,200,200,200,200,300,300,300,300,282,287,311,251,219,181,174,146,145,163,176,188,196,180,174,170,501,578,580,582,251,251,251,251,251,251,251,251,251,251,251,131,158,158,126,137,102,121,123,136,125,123
Germany,Roaches nei,Europe - Inland waters,Quantity (tonnes),400,400,400,500,500,500,500,500,1000,1000,1000,1000,1000,1000,1000,1200,800,700,700,600,800,700,200,0 0,75,287,236,277,310,319,329,371,417,436,438,476,537,522,568,570,570,490,...,...,...,...,...,...,...,...,...,...,...,-,-,-,148,148,154,203,162,172,92,187,111,157
Germany,Silver carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,76,76,76,76,76,39,39,39,23,10,10,20,23,23,27,53,10,1,20,42,25,18
Germany,Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,7,35,34,33,36,36,36,36,36,36,36,36,36,36,36,34,41,41,24,24,41,60,52,53,50,56
Germany,Wels(=Som) catfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,55,50,55,12,12,12,12,12,12,12,12,12,12,12,10,9,9,11,9,21,14,15,19,21,25
Ghana,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),1000,1000,1000,1000,1000,1000,2000,2000,2000,2000,2000,2000,3000,3000,3400,4000,4496,6290,7180,21354,30000,38000,4800,30900,37300,41945,40704,40704,36261,39368,40000,40000,42000,43000,41000,43000,53000,55000,57630,57660,58000,57000,56000,52000,54700,60000,73580,70000,74500,74500,74500,74500,74500,75000,75000 F,75000,83168,84756,85000,88700 F,90000 F,90000 F,90000 F,90000 F,90000 F,90000 F
Ghana,Nile perch,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,8000,600,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Ghana,Tilapias nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2000,19200,9800,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Greece,Barbel,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,5,17,15,10,9,9,7,3,3,2,2,2,1,1 F,1 F,1 F,1 F,1 F,1 F
Greece,Bleak,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,12,15,10,15,10,9,5,30,35,30,30,30,25,5,5 F,5 F,5 F,5 F,5 F,5 F
Greece,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,208,256,279,247,220,198,263,265,275,262,260,265,259,202,202 F,202 F,202 F,202 F,202 F,202 F
Greece,Cyprinids nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1514,1509,...,...,...,...,...,...,112,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Greece,Euro-American crayfishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,20,...,...,...,...,...,...,...,15,23,28,23,27,25,22,15,15,4,21,21,21,21 F,21 F,21 F,21 F,21 F,21 F
Greece,European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,50,50,...,...,...,...,...,...,24,15,19,24,15,23,20,35,30,30,20,20,21,17,17 F,17 F,17 F,17 F,17 F,17 F
Greece,Freshwater bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,16,17,11,6,10,9,10,8,4,4,2,2,1,-,-,-,-,-,-,-
Greece,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),5000,5000,6500,5500,7200,8000,10000,10600,10400,10200,10000,10000,9000,9000,9000,8000,8000,8000,7000,7000,7000 F,6000 F,7000 F,8000 F,6400,8271,8409,9262,9595,8985,9305,9483,9056,9173,7755,6516,8302,8070,1970,1955,3650,2274,2370,2960,3452,3606,1730,1624,1410,1592,1803,1663,1451,1539,280,263,250,250,264,177,177 F,177 F,177 F,177 F,177 F,177 F
Greece,Goldfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,530,296,235,548,448,415,350,348,450,400,300,330,318,210,210 F,210 F,210 F,210 F,210 F,210 F
Greece,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,70,50,...,...,...,...,...,...,12,9,5,8,10,9,10,12,8,14,20,18,17,8,8 F,8 F,8 F,8 F,8 F,8 F
Greece,Roaches nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,164,81,252,310,345,324,334,335,312,290,205,185,179,54,54 F,54 F,54 F,54 F,54 F,54 F
Greece,Rudd,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3,70,69,30,50,45,50,46,34,20,10,8,9,5,5 F,5 F,5 F,5 F,5 F,5 F
Greece,Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,33,...,...,7,10,8,8,8,3,3,2,2,2,1,1 F,1 F,1 F,1 F,1 F,1 F
Greece,Wels(=Som) catfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,35,10,...,...,...,...,...,...,11,13,20,14,15,18,20,22,23,27,53,53,51,18,18 F,18 F,18 F,18 F,18 F,18 F
Greenland,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Grenada,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Guadeloupe,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Guadeloupe,Giant river prawn,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,-,-,11,6,21,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Guam,Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Guam,Philippine catfish,Oceania - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,7,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Guam,Tilapias nei,Oceania - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,6,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Guatemala,Cichlids nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,2,5,0 0,21,157,173,192,180 F,165 F,150 F,135 F,120 F,110 F,110 F,110 F,110 F,110 F,110 F,110 F,110 F,110 F,110 F
Guatemala,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,100,100,100,200,200,200,200,300,300,200,200,300,300,200,400,400,500,400,500,528,550,574,600,580,615,400,410,721,40,54,47,120,523,473,534,2599,2779,3702,4228,3774,4020,4000,5100,6366,6803,7109,6300 F,5500 F,4700 F,3900 F,3000 F,2250 F,2250 F,2250,2250 F,2250 F,2250 F,2250 F,2250 F,2250 F,2250 F
Guinea,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),100,100,100,100,200,200,200,400,400,400,600,600,600,600,800,800,800,1000,1000,1000,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000,1100 F,1300 F,1400 F,1600 F,1800 F,2000 F,2500 F,3000 F,3000 F,3000 F,3000 F,3500 F,4000 F,4600,3800,3100,2780,3600,4000,4000,4000,4000,5000 F,6000 F,7000 F,8000 F,9000 F,10000 F,12000 F,14000 F,16000 F,18000 F,20000 F,22000 F,24000 F,26000 F
Guinea-Bissau,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,10,10,10,10,10,10,20,40,50,50,80 F,80 F,100 F,150 F,200 F,200 F,200 F,200 F,250 F,250 F,250 F,250 F,200 F,200 F,150 F,150 F,150 F,150 F,150 F,150 F,150 F,150 F,150 F,150 F,150 F,150 F,150 F,150 F,150 F,150 F,150 F
Guyana,Freshwater fishes nei,"America, South - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,875,681,681,681,800,800,800,800,800,800,800,800,800,800,800,800,700 F,800,625,625,603,800,800,800,800,800,800,800 F,800,800,800 F,800,800,800,800,800,700
Haiti,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,100,100,100,100,100,100,100,200,200,200,200,200,200,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,350 F,400 F,500 F,600 F,500 F,500 F,500 F,500 F,500 F,460 F,420 F,380 F,340 F,300,350 F,400 F,450 F,500 F,550 F,600,500 F,600 F,600 F,600 F,600 F,600 F
Honduras,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,100,100,100,100,100,100,0 0,100,172,170,170,78,84,75,41,41,41,30,65,-,-,-,50,36,45,41,85,86,92,127,98,126,119,102,61,111,102 F,100 F,100 F,100 F,100 F,100 F,100 F,100 F,100 F,100 F,100 F,100 F,100 F,100 F
Honduras,Giant river prawn,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,18,27,31,35,187,18,15,19,32,77,8,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Hungary,Asp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,39,52,20,22,44,38,42,38,21,20,38,43,44,44,45,45,37,33,54,49,46,39,78
Hungary,Barbel,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,39,66,32,37,64,46,50,30,52,41,44,45,38,33,32,36,31,24,32,32,25,24,53
Hungary,Bighead carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,153,-,467,109,513,291,45,127,74,83,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Hungary,Burbot,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,7,12
Hungary,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,9865,4144,3699,3103,3265,2856,2717,2255,3373,3279,3212,2470,2787,2930,3502,3475,3737,3554,3913,3238,3247,3855,3688,3390,5602,7307
Hungary,Crucian carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,9,15
Hungary,Cyprinids nei,Europe - Inland waters,Quantity (tonnes),2350,2320,2100,2420,2580,2850,3000,2630,2610,2730,2500,3700,3850,3350,3000,3520,3610,4370,5300,3100,2300,2000,4500,1574,1871,1031,953,1280,827,1174,1262,1444,1417,1495,19731,17552,17957,16789,18507,13358,2398,1530,1623,1342,1557,1744,1731,1730,1510,1666,1710,2155,2418,2057,1931,1900,1385,1344,1340,1257,1113,1219,1223,1337,1105,1245
Hungary,Freshwater crustaceans nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,200,100,0 0,0 0,0 0,0 0,200,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Hungary,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),600,600,800,1000,1300,1500,1700,2000,2100,2300,2400,3100,3400,3500,3600,4000,4200,4500,4800,4400,4200,4800,1600,5900,6497,7807,8979,11492,9975,10045,9901,11545,14555,14752,2973,1060,1098,1976,1664,1611,458,655,695,595,703,733,733,776,648,714,718,89,15,26,12,12,461,447,446,419,371,407,408,446,-,283
Hungary,Grass carp(=White amur),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,46,-,-,461,293,358,343,381,366,346,305,301,318,356,309,400,372,356,359,393,407,437,404,338,356,376,280,142,309
Hungary,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,-,10,-,-,-,234,180,168,165,190,37,46,203,158,241,280,191,190,183,196,199,275,213,182,172,182,238,177,138,91,119
Hungary,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,-,-,-,-,-,275,227,213,212,243,226,224,199,156,169,200,196,190,197,209,194,198,192,189,176,149,222,208,188,151,261
Hungary,Sichel,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,4,6
Hungary,Silver carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,1697,1018,846,1354,1136,521,862,1483,731,676,365,997,525,534,767,1143,754,583,578,367,350,455,336,370,...,...
Hungary,Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,-,-,-,-,-,12,5,9,-,-,-,-,5,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,4,7
Hungary,Volga pikeperch,Europe - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,18
Hungary,Wels(=Som) catfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,-,-,-,-,-,-,216,158,133,126,153,205,201,121,113,145,104,120,134,136,155,160,163,164,169,167,170,179,198,180,124,203
Iceland,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-
India,Cyprinids nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,152000,167000,182000,213000,243000,274000,274810,348436,195074,258502,314939,339828,220994,194608,167186,177394,152350,148622,195300,201215,159633,293916,296145,284274,339610,326547,575773,373293,614927,499851,511500 F,548500 F
India,Freshwater crustaceans nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,33,26,803,71,114,85,112,183,202,381,376,508,356,456,364,354,...,...,874,...,850 F,920 F
India,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),192090,195441,194320,214112,214591,215240,262828,323829,271609,197832,236857,228041,275232,330473,393804,434153,396939,447778,523229,583879,548849,553553,511952,574770,591424,570649,562480,600387,524121,522598,526267,597363,492556,490018,368302,303115,351050,241836,202982,131050,317539,123130,73642,195021,88484,92964,224990,245595,225100,330448,549760,598798,343742,308152,225711,334503,372803,317211,313344,317532,510483,452650,574927,474038,485000 F,520000 F
India,Freshwater molluscs nei,Asia - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,1610,1610,-,-,8915,669,492,892,790,690,3101,3200 F,3450 F
India,Freshwater siluroids nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,63724,71152,64179,57999,60549,61309,34743,82279,82326,84750,118257,113108,200391,108665,136784,65520,67000 F,71800 F
India,Natantian decapods nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6083,7746,13186,17396,7836,7630,15835,14569,90514,90621,26108,31094,31124,34712,37938,36317,35325,28353,18873,23390,24000 F,25750 F
India,Penaeus shrimps nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,10421,18564,14645,20558,8783,7830,10873,14772,4150,9242,12793,15913,15908,15259,20397,15107,17254,17252,25652,19248,19800 F,21300 F
India,Snakeheads(=Murrels) nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,65273,75127,90762,93933,94944,105496,159065,50349,58669,58856,35966,40375,37632,60521,60767,58428,81674,82924,87236,66164,76776,127953,130000 F,139700 F
Indonesia,[Thynnichthys vaillanti],Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,157,204,263,453,594,564,1727,3405,4030,2057,2090,2150
Indonesia,[Puntioplites waandersi],Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,25,49,601,545,1678,1741,2923,3246,3650,2455,2530,2490
Indonesia,[Pangasius djambal],Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,13630,13203,13721,10303,8902,8475,9010,10839,9724,12611,14524,14152,14837,16812,17090,16730
Indonesia,[Mystus nigriceps],Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,172,148,708,449,571,1016,1121,1606,1506,1691,1710,7350
Indonesia,[Mystacoleucus padangensis],Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,34,136,19,1036,2742,13121,19205,15870,14673,11364,11770,10860
Indonesia,[Barbodes balleroides],Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,7,28,30,26,131,56,941,264,307,320,460
Indonesia,[Cyclocheilichthys armatus],Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,39,0 0,4,0 0,0 0,2,9,1,0 0,8,10,0 0
Indonesia,Asian bonytongue,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1,841,3,0 0,0 0,2,11,8,10,10
Indonesia,Asian redtail catfish,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,7502,8229,8943,11853,12350,11336,14439,20005,21521,23718,24510,28040
Indonesia,Beardless barb,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,34,24,1280,2450,591,488,605,599,798,810,220
Indonesia,Butter catfish,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,20,718,579,352,317,507,5668,4960,4704,4897,4980,5200
Indonesia,"Clams, etc. nei",Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,107,131,172,174,196,222,12,243,444,181,143,247,512,196,104,143,478,1369,1775,763,835,844,956,914,304,303,792,220,148,170,75,243,223,197,565,79,700,409,607,680,670
Indonesia,Climbing perch,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6175,9545,9719,11054,11372,11116,14234,15743,17301,16825,17620,17720
Indonesia,Clown loach,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2,3,1,29,2814,2834,41,20,148,181,200,80
Indonesia,Common carp,Asia - Inland waters,Quantity (tonnes),10000,10000,9600,11300,9000,9000,8810,10800,8900,12970,11460,14940,16030,12610,15500,13900,21770,20000,15440,13930,12714,12500,12686,4217,3139,2860,3276,3274,2843,1906,4235,3211,2567,3589,4831,3834,5437,3970,4293,5737,4086,5774,5613,5287,5490,5613,7081,6644,7082,7127,7035,8228,9460,8917,9951,9012,9013,9096,8183,6361,8941,11960,12985,12462,13040,13480
Indonesia,Cyprinids nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6,7,11,88,58,550,705,789,741,743,770,1340
Indonesia,Fire eel,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,71,74,93,143,18,21,86,199,277,212,220,170
Indonesia,Freshwater crustaceans nei,Asia - Inland waters,Quantity (tonnes),1000,1000,1200,1300,1300,1400,1600,1800,1500,2000,1900,2100,2200,2100,2300,2200,2700,2800,2400,2400,2900,2800,2900,2500,266,2,385,81,63,197,264,159,1054,826,620,555,811,767,798,706,691,402,244,164,242,86,223,49,93,132,132,337,194,737,334,366,413,213,138,355,312,333,342,292,340,690
Indonesia,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),54659,55172,62685,74397,69311,79624,92437,100849,81763,111776,109188,122201,127815,119128,130240,127153,154467,161480,138592,135805,136019,136731,139544,115597,102155,95350,103389,87176,83483,84968,82186,92706,89959,90814,88518,86458,95507,95825,88947,91835,105944,101128,113110,110071,125078,122559,115323,103812,96597,110347,112554,107609,101516,114020,82443,76495,69964,79870,70889,57926,55080,58442,61880,68695,67840,85310
Indonesia,Freshwater molluscs nei,Asia - Inland waters,Quantity (tonnes),300,300,400,400,400,400,500,500,500,600,600,700,700,600,700,700,800,900,700,700,800,800,800,700,360,301,493,295,112,544,778,983,556,826,1053,1152,587,911,1302,678,1827,944,578,605,2398,1257,1823,961,971,670,900,2312,1120,1029,1533,1056,2249,885,967,1461,674,1179,1494,1207,1250,1400
Indonesia,"Freshwater prawns, shrimps nei",Asia - Inland waters,Quantity (tonnes),400,400,400,500,500,500,600,700,500,700,700,800,800,800,800,800,1000,1000,900,900,700,700,700,600,1478,1972,2243,3257,2981,2700,2474,2271,2229,2449,2397,3891,2937,3939,3527,3139,2849,3105,3625,3336,3738,3944,3356,3242,3871,3900,4210,3898,5115,4013,3790,2892,2915,3162,2256,1812,4088,4028,5630,4497,5310,6360
Indonesia,Freshwater siluroids nei,Asia - Inland waters,Quantity (tonnes),1900,1900,2100,2500,2400,2700,3100,3300,2800,3700,3600,4000,4200,3900,4200,4200,5000,5200,4500,4400,2500,2500,2600,2300,11240,6375,3485,11558,10383,10865,13335,12257,12118,13151,13509,13912,12561,13827,13849,12858,12449,12818,11658,11941,13451,13215,13508,10117,12466,13854,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Indonesia,Giant featherback,Asia - Inland waters,Quantity (tonnes),1600,1600,1800,2100,1900,2200,2500,2700,2300,3000,3000,3300,3400,3200,3500,3400,4100,4300,3700,3700,3100,3100,3100,2700,5488,5324,5700,4746,5911,5786,5770,6054,5698,6104,5575,5443,5762,5478,5222,5231,5440,8106,6342,4256,3866,4790,3880,3455,3599,3845,4255,3820,3303,2501,2786,3427,3491,2295,1880,2489,4240,3185,2916,3837,4000,4600
Indonesia,Giant gourami,Asia - Inland waters,Quantity (tonnes),150,150,141,300,156,311,465,516,165,614,559,703,744,483,619,553,885,914,539,363,183,199,113,-,26,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,389,865,704,602,1339,1403,1689,2007,2341,2395,2470,4580
Indonesia,Giant river prawn,Asia - Inland waters,Quantity (tonnes),2000,2000,2200,2600,2400,2800,3200,3400,2800,3800,3700,4100,4300,4000,4400,4300,5200,5400,4700,4600,4800,4800,4900,4300,3065,2516,1940,2759,4193,3691,3746,3139,3427,3649,4320,3483,3747,4010,5086,6196,5442,5888,6163,4923,5393,5524,6126,5208,5362,5937,5449,5185,4685,4947,4646,8408,4906,5130,6860,8643,9398,9528,9345,10386,11800,13290
Indonesia,Glass catfishes,Asia - Inland waters,Quantity (tonnes),5100,5200,5800,6800,6400,7200,8300,9000,7500,9900,9700,10800,11300,10600,11500,11300,13500,14100,12300,12100,11700,11700,11900,10400,11650,9664,11069,9388,10168,10933,11195,11865,12832,12885,14723,13860,14032,14009,14628,15680,16683,14985,16185,16466,15602,15283,17560,15938,13943,15927,13110,13522,12271,13433,11815,11952,12666,14296,13318,13035,13592,12236,11338,15270,15600,14950
Indonesia,Grass carp(=White amur),Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,369,802,814,901,1005,12,0 0,9,2,0 0,0 0,70
Indonesia,"Gudgeons, sleepers nei",Asia - Inland waters,Quantity (tonnes),400,400,500,600,500,600,700,800,600,800,800,900,900,900,1000,900,1100,1200,1000,1000,1000,1000,1000,800,1008,358,586,512,767,833,893,776,809,856,1158,1342,1177,1479,1842,2279,1758,5309,1483,1080,1207,1514,1109,1290,1078,1243,1125,2604,2401,4213,2726,1405,1471,1617,1670,1628,1996,2382,2515,3172,3190,3190
Indonesia,Hampala barb,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,75,181,124,404,160,1630,805,981,878,1116,1140,810
Indonesia,Hoven's carp,Asia - Inland waters,Quantity (tonnes),3400,3400,3900,4500,4200,4800,5500,6000,5000,6600,6500,7200,7500,7000,7600,7500,9000,9400,8100,8000,8100,8200,8400,7400,5962,6948,5637,5319,6633,5004,5136,5096,5016,5387,5688,6394,7761,6308,5077,4905,4348,4937,3702,4606,5376,5454,6892,5836,3241,4608,3382,2362,3980,3341,2682,2862,3199,3257,3662,4062,4902,5433,5338,3837,3850,4500
Indonesia,Indonesian snakehead,Asia - Inland waters,Quantity (tonnes),2100,2100,2400,2800,2600,3000,3400,3700,3100,4100,4000,4500,4600,4400,4700,4600,5600,5800,5000,5000,4900,4800,4900,4300,4716,5036,9946,9513,8145,8189,8801,8482,7619,8866,9599,10103,9024,10071,10424,9554,8523,10128,7910,7908,13236,9021,11614,10117,8253,8787,8149,6357,6586,6996,16757,8371,7460,6679,7506,8233,7811,8128,8178,17891,18310,12480
Indonesia,Kissing gourami,Asia - Inland waters,Quantity (tonnes),7065,7120,8074,9626,8976,10224,11870,13014,10455,14295,13932,15566,16298,15127,16554,16078,19598,20416,17430,16941,17448,17552,17852,15552,10872,13021,15052,17948,13034,11490,13065,12529,14697,11914,14690,14566,14024,15067,18277,16076,18170,18795,18500,18954,16675,19166,12611,18376,16598,23320,18771,19429,18980,14741,19734,14816,13052,13011,12703,11615,12914,12063,11766,14701,15120,14240
Indonesia,Long pectoral-fin minnow,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,20,17,85,62,109,170,13,44,34,33,40,40
Indonesia,Malayan leaffish,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1,-,33,258,78,162,141,110,235,244,250,630
Indonesia,Mozambique tilapia,Asia - Inland waters,Quantity (tonnes),7200,7300,8200,9600,9000,10200,11700,12700,10500,14000,13700,15300,15900,14900,16200,15900,19090,19858,17132,16684,15109,14534,14058,7711,10121,12786,9232,14533,12038,11374,9150,6929,8269,7059,7530,6767,7244,7985,7980,11720,9281,9256,9749,15849,15337,13293,16943,17715,17865,21172,19831,20210,17724,18059,18289,13759,14390,11209,8548,10677,14615,13500,13216,10914,11110,13530
Indonesia,Natantian decapods nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1311,1342,4106,4050,3450,4529,6585,4603,3922,3919,4766,4728,5179,6564,7169,6665,...,6338,6323,8965,6768,6565,6330,7281,7905,7478,7721,5611,5653,5540,5000,6033,6320,6098,5905,4538,4548,5492,5429,5730,6230
Indonesia,Nile tilapia,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,4343,6678,8344,11865,15492,12765,17345,22534,28484,27332,28480,28670
Indonesia,Nilem carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3986,3918,4829,6082,5833,4878,5328,5853,6113,6079,6100,7200
Indonesia,Semah mahseer,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,60,599,779,708,1116,988,919,569,332,537,560,510
Indonesia,Signal barb,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,196,184,167,156,214,335,752,1227,1280,980
Indonesia,Silver barb,Asia - Inland waters,Quantity (tonnes),8451,8445,9530,11205,10370,11823,13663,14790,11703,16199,15578,17439,18079,16397,17891,17059,20998,21708,17784,16924,15525,15084,14996,10105,12767,8652,12598,12346,18663,16550,19431,22826,21882,17941,17677,20836,21647,18747,22633,19203,15380,14964,16082,15027,19084,18102,19622,19469,20189,17939,17791,17425,18346,17695,20413,13896,14426,12881,7576,10972,9962,12574,12012,17891,13380,12800
Indonesia,Silver rasbora,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,33,248,1064,2245,713,776,1347,1367,1476,2178,2180,1990
Indonesia,Smallscale archerfish,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,210,13,3,4,204,29,186,179,437,440,570
Indonesia,Snakeskin gourami,Asia - Inland waters,Quantity (tonnes),10036,10217,11498,13379,12558,14337,16515,17892,14668,19743,19317,21491,22463,20934,22804,22373,26940,28106,24271,23735,23197,23258,23717,20698,21611,18755,23123,22897,19641,21288,20399,21691,26959,25803,24671,23182,20454,22972,24512,24332,25444,23399,24670,26911,23587,24904,30407,21375,20936,23265,21733,20857,21609,21194,20075,19761,18626,17919,17588,15896,22306,21888,21705,21950,22750,26780
Indonesia,Spotted barb,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,23,3,18,54,49,83,56,76,80,110
Indonesia,Striped snakehead,Asia - Inland waters,Quantity (tonnes),15900,16100,18100,21100,19800,22500,25800,27900,23200,30800,30200,33500,35000,32800,35700,35000,41900,43700,38000,37400,36000,36500,37200,32600,35488,28934,29148,35115,35869,37155,36579,35385,32216,35321,36281,35986,33879,31999,32163,27923,30155,27907,27052,31407,31634,31940,32365,31326,26108,36309,33368,31274,29423,30627,41014,32784,31194,30300,29842,27930,34017,36837,40790,36205,37510,40470
Indonesia,Three spot gourami,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6466,6867,6793,7104,8461,7483,12716,12771,13514,12704,13030,15170
Indonesia,Tinfoil barb,Asia - Inland waters,Quantity (tonnes),4600,4700,5300,6100,5800,6500,7500,8100,6700,9000,8800,9700,10200,9500,10400,10200,12200,12700,11100,10900,10400,10600,10800,9500,10398,7990,6895,8173,8891,9560,10896,10689,11235,11925,11277,10752,9561,10983,11024,15127,12850,11711,10489,10523,12113,12344,13253,11976,12131,11263,12406,11649,14300,9095,6847,6043,7452,6296,4540,3488,699,694,813,1104,1120,1350
Indonesia,Torpedo-shaped catfishes nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,257,172,595,13654,2126,4552,5962,7603,7485,9911,8385,7257,7535,6413,5496,7609,10246,12204,14865,12235,12867,12395,14323,12713,14259,16739,21205,19982,20710,19780
Iran (Islamic Rep. of),Bighead carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,496,580,666,819,866,1414,1751,1391,1550,1440,1020,1031,520,738,800,887,999,1396,1156,1100,1254,1524,1695,1822,2067,2217
Iran (Islamic Rep. of),Common carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,9738,10854,10080,7135,7220,3643,5170,5600,6210,6292,9769,8091,7700,8775,10665,11862,12754,14466,15520
Iran (Islamic Rep. of),Cyprinids nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,400,200,0 0,100,115,68,133,44,1038,1006,1032,2000,2000,1880,2000,2000,2500,2500,2500,5000,9067,14455,9783,7748,8001,7802,12364,8695,9642,9000,6373,6446,3253,4615,5230,5545,6242,8722,7224,6878,7835,9522,10590,11388,12916,13858
Iran (Islamic Rep. of),Freshwater breams nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,100,0 0,0 0,100,1,1,1,4,1,1,-,-,-,-,-,-,-,-,-,-,-,-,20,17,29,5,3,7,20,9,20,10,38,33,27,92,13,11,9,1,8,35,3,10,7,6
Iran (Islamic Rep. of),Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),500,500,2000,2000,2000,2000,2000,2000,2000,500,500,500,500,500,500,500,700,900,300,900,200,100,100,0 0,72,50,60,45,72,18,6,6,10,10,10,10,10,10,10,10,4966,6124,3767,7005,851,157,1845,2983,2578,1637,1575,2060,1091,2108,3518,5524,3302,1528,1699,1625,1095,1089,1623,705,927,1020
Iran (Islamic Rep. of),Grass carp(=White amur),Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,3135,3300,3455,3935,3727,4392,4205,3479,3876,3600,2550,2579,1301,1846,2000,2218,2497,3489,2890,2750,3134,3809,4236,4555,5167,5543
Iran (Islamic Rep. of),Kutum,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1000,900,200,200,277,204,547,1210,507,223,71,60,100 F,206,168,170,1500,5265,5850,6500,8500,12000,12000,12727,9277,8435,9210,7650,6624,6905,10120,7199,6417,8984,7036,9631,16118,17196,14835,12495,11573,10692,11883,13839,11724,8130
Iran (Islamic Rep. of),Pike-perch,Asia - Inland waters,Quantity (tonnes),500,500,1000,1000,1000,1000,1000,1000,1000,500,500,500,500,500,500,500,500,600,200,800,800,100,0 0,0 0,4,2,14,12,8,4,0 0,0 0,0 0,12,13,10,8,3,4,5,10,100,100,16,95,10,6,4,105,19,20,26,32,33,23,309,115,82,114,92,278,137,160,16,136,67
Iran (Islamic Rep. of),Roaches nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,100,0 0,0 0,150,50,70,180,50,4,0 0,0 0,0 0,121,347,350,250,114,127,130,100,120,120,714,1366,1178,878,203,607,626,1515,1316,787,215,129,92,49,57,60,49,134,90,40,52,32,38
Iran (Islamic Rep. of),Silver carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,2363,3300,4242,4225,8246,16965,17510,11477,12792,11880,8412,8509,4293,6092,6600,7319,8240,11513,9536,9075,10342,12569,13980,15032,17050,18292
Iran (Islamic Rep. of),Wels(=Som) catfish,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,20,15,4,4,4,2,2,2,0 0,2,3,0 0,5,0 0,0 0,0 0,1000,1000,1000,670,28,5,22,6,32,24,25,1,21,16,20,311,21,32,3,2,7,103,2,4,2,1
Iraq,Common carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,9321,1971,3485,4677,7703,5394,5691,5538,4163,2336,...,...,...,...,...,...,...,...,...,...,...,...,11053,13500,37500,45576,15397
Iraq,Cyprinids nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,5433,5642,9516,5819,7455,4836,10213,9981,7694,4782,1703,5723,4013,7200,6500,7500,7628,9740,10795,14286,14363,10000,1230,10549,6715,7899,199,133
Iraq,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),7500,6500,6500,5000,5000,5000,7500,7500,7500,7500,8000,8000,7900,9800,17800,16300,12800,8700,17600,21000,30590,24800,30800,20400,12346,12332,16254,14500,14262 F,14057 F,13878 F,13726 F,13101 F,12503 F,11524 F,11500 F,11000 F,11000 F,10500 F,2502,6883,3607,4603,4769,3981,5867,4381,9836,4361,2205,3412,6000,4600,5000,2422,9000 F,31547,29800,13577,9550,8000,3601,18802,4954,966,3135
Iraq,Freshwater siluroids nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,528,473,505,449,795,500,1338,1416,1436,1738,711,1402,953,900,800,700,531,4830,3958,1374,2046,2709,3000,1094,2364,2514,1933,2041
Ireland,European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,180,401,200,200,200,200,...,...,...,...,200,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Ireland,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Ireland,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1500,3302,1500,1500,1500,1493,2000,2000,2000,2000,2000,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Isle of Man,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Israel,Blue tilapia,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,21,81,67,89,100,147,216,188,160,228,69,32,101,88,66,67,33,18,19,42,21,29,...,...,...,...,...,...,1,2,7
Israel,Cichlids nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,1,64,75,20,22,46,60,95,97,90,64,40,48,58,57,52,24,23,13,22,6,1,6,1,3,3,3,7,1,2,1
Israel,Common carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,12,12,11,15,9,47,87,111,108,147,89,35,38,150,165,189,97,98,98,115,88,108,50,30,59,59,41,60,5,22,11
Israel,Cyprinids nei,Asia - Inland waters,Quantity (tonnes),700,900,1000,800,900,900,1100,1300,1000,1000,1500,1400,1400,1000,1000,900,1600,2000,2100,1800,2300,2600,2300,2600,2700,3500,4400,4600,4200,4050,3266,3177,3321,1761,1667,82,67,38,21,22,10,37,59,48,52,49,12,15,64,80,60,70,47,39,43,42,37,27,14,58,58,44,66,8,25,13
Israel,Kinneret bleak,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,904,957,1028,882,1217,979,1025,1287,967,300,434,1155,626,1171,1048,1052,811,1123,641,422,558,847,439,88,98,98,44,266,38,21,37
Israel,Mango tilapia,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,256,316,415,249,445,581,503,248,215,362,316,350,462,391,405,262,110,93,91,237,316,151,51,8,20,45,62,166,116,275,308
Israel,Silver carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,75,61,114,48,59,51,100,103,103,181,40,40,17,11,9,32,16,31,23,60,114,167,119,32,79,79,129,171,75,63,65
Italy,Cyprinids nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2800,2800,3400,3000,2610,2512,2247,2462,2497,2874,2734,2411,2344,2495,2540,2173,2102,2831,2776,1875,2625,2536,2503,2450,2628,2540,1146,2378,1155,1900,725,1821,799,1114,1465,374,500,322,339,369,380,360 F,360 F,360 F,360 F,360 F
Italy,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),9000,9000,9000,9000,9000,8990,8950,8900,10300,9700,9310,7730,6280,5430,10170,7000,7090,8300,5300,4700,5000,4700,4000,4900,4565,4312,3911,3931,4046,4477,5683,5256,4922,5266,4563,4746,4735,5322,4937,12584,8825,2754,2952,3250,3518,3900,3647,2895,2346,2316,2819,2643,2341,2149,2541,2554,2507,2797,2490,3771,2752,2750 F,2750 F,2750 F,2750 F,2750 F
Jamaica,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,150 F,200 F,200 F,250 F,270 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,450 F,450 F,450 F,450 F,450 F,450 F,450 F,450 F,450 F,400 F,400 F,400 F,400 F,400 F,400 F,400 F,400 F,400 F,430 F,460 F,500 F,540 F,582,836,698,698
Jamaica,Nile tilapia,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,7,25,30,28,50 F,78,111,156,150 F,150 F,150 F,132,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Japan,Common carp,Asia - Inland waters,Quantity (tonnes),2097,928,1166,1664,2899,3087,3052,6751,6865,7195,7074,7299,6625,7108,7869,4100,4100,3400,4290,4113,4177,4645,4380,5357,5892,7569,6960,6760,7376,7856,8479,8108,8208,7545,7594,7830,7732,7507,6913,6616,6302,6182,6178,5338,4968,4896,4771,4607,4477,4259,4079,3558,3359,2883,1843,1484,579,528,468,434,401,357,334,303,258,225
Japan,Crucian carp,Asia - Inland waters,Quantity (tonnes),2000,1500,2500,2490,3490,4380,5670,7050,5430,4510,4056,4235,4161,5537,13587,14366,11859,11018,11582,11464,10443,10410,10402,10208,9347,9890,10113,10316,10751,10948,10066,9138,8441,8005,8034,7987,8016,7432,6870,6250,5853,5514,5321,4921,4402,4286,4205,4008,3881,3493,3423,2948,2706,2534,2258,2021,1079,1006,917,847,778,700,644,591,596,555
Japan,Cyprinids nei,Asia - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,3458,3216,3068,3094,2891,2672,2467,2192,2104,1776,2619,2264,1941,722,688,649,640,655,655,626,467,468,486
Japan,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),14845,14888,15925,14362,27007,31931,38878,36555,35896,34118,34613,38211,42576,42979,21545,22028,22327,21326,25824,25520,26778,26938,26682,28662,28533,30918,32250,32139,37266,33261,29336,29790,30297,24593,21654,22598,21347,50096,18533,18269,17532,17469,16898,4168,3983,3695,3473,3843,3446,3247,3111,3030,3004,2693,1866,2113,2247,2366,2392,2354,2266,1827,1028,946,879,782
Japan,Freshwater gobies nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1338,1338,1132,1489,1208,925,737,718,520,493,341,694,629,339,383,265,202,162,158,147,132,173,172
Japan,Freshwater minnow,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1801,1672,1701,1693,1578,1490,1319,1284,1190,1037,941,792,674,...,...,...,...,...,...,...,...,...,...
Japan,Freshwater molluscs nei,Asia - Inland waters,Quantity (tonnes),3400,3700,3500,2800,3600,3200,2600,2400,2300,1600,1900,1200,1300,3400,...,...,...,...,...,...,-,-,-,-,-,-,-,-,1221,1907,1576,1702,1373,1154,1797,1359,1832,861,664,1751,1082,1628,777,705,787,847,1305,1361,1132,900,628,583,338,444,563,740,1202,1488,1336,4698,3266,3471,3183,2272,2632,2879
Japan,"Freshwater prawns, shrimps nei",Asia - Inland waters,Quantity (tonnes),2000,2000,2000,2400,2400,1600,3200,3300,2500,3200,3200,4200,3600,1900,1000,1100,1200,2300,2300,2800,3300,5000,5300,6400,5739,6840,5301,6151,9276,7639,5846,6004,5850,5292,4096,4783,4001,3913,3862,4235,3917,4544,3280,3013,3140,2717,2222,2413,1872,1942,1676,1158,1002,793,1157,1035,928,976,761,555,676,655,448,464,409,371
Japan,Japanese corbicula,Asia - Inland waters,Quantity (tonnes),...,...,...,11800,10600,10900,13553,21809,23900,24821,23178,26775,28777,30173,33526,54689,48823,40477,42681,48992,56144,33981,44278,42934,43153,47035,47330,48296,51119,49159,41491,38870,37685,35612,31599,30839,29080,27259,26525,28411,37017,34032,29820,27134,23988,26938,26714,21822,19932,20009,19295,17295,17779,16940,16234,13455,13412,10942,9831,10432,11189,9241,7839,8454,9804,9810
Japan,Pond loach,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,245,223,220,189,171,155,134,129,115,84,69,68,59,...,...,...,...,...,...,...,...,...,...
Jordan,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,100,150,200,250,300,350,350,350,350,350,350,350,350,350,350,350,400,350,350,350,350,350,350,350,350,350,350,350,430 F,510 F,596,596 F
Kazakhstan,Asp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,375,192,3000,265,565,313,314,415,380 F,270 F,195 F,250 F,350 F,476,673,956,852,1326,1011,1009,5219,1417,1560,1539,1095,1022,835,994
Kazakhstan,Burbot,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,3,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Kazakhstan,Caspian roach,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6324,6767,5164,3050,3409,3702,2251,2650,2420 F,1740 F,1260 F,1000 F,850 F,579,1682,1235,1571,1445,2039,2326,4788,4162,4980,2800,2548,1785,1149,1362
Kazakhstan,Common carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,168,431,537,477,440 F,320 F,230 F,500 F,650 F,710,23,99,78,1625,160,184,191,152,146,133,223,113,140,181
Kazakhstan,Crucian carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2015,2209,1775,5995,5800,4500,4000,4317,3950 F,2840 F,2060 F,1900 F,1800 F,1707,1474,1368,943,2371,2169,2656,3774,2296,2650,3132,1581,2008,1290,1911
Kazakhstan,Cyprinids nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,294,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,1849,-,-,2213,2582,2835,3030
Kazakhstan,European perch,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,650,933,685,1167,1043,817,728,736,670 F,480 F,350 F,450 F,500 F,547,422,283,375,...,...,...,...,628,...,...,668,1103,670,678
Kazakhstan,Freshwater bream,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,23129,21749,24521,22152,20872,20420,19302,20520,18770 F,11000 F,9800 F,11000 F,12000 F,12630,14110,15959,21907,20508,17162,18801,21324,17085,22104,13476,13328,11373,12402,13131
Kazakhstan,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,82,-,-,-,116,64,8,6,269 F,358 F,364 F,10809 F,13715 F,2740,2444,1660,2720,4429,...,...,...,1383,5188,5518,6819,5659,8235,8711
Kazakhstan,Grass carp(=White amur),Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,6,1,-,2,2 F,1 F,1 F,1 F,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Kazakhstan,Northern pike,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1495,3827,1425,1227,1044,733,564,637,580 F,420 F,300 F,550 F,700 F,819,919,646,726,791,753,1156,1938,1334,1406,390,818,638,679,881
Kazakhstan,Orfe(=Ide),Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,19,32,10,90,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Kazakhstan,Pike-perch,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6750,8203,5373,4213,5156,5983,5436,6089,5570 F,4000 F,2900 F,2500 F,2000 F,1628,1718,1449,2669,2940,3515,4876,9811,4099,5525,5123,3716,3761,4492,5513
Kazakhstan,Roaches nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,486,...,...,1223,1793,2191,2679
Kazakhstan,Sichel,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,111,581,493,98,-,-,-,27,25 F,20 F,15 F,10 F,10 F,8,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Kazakhstan,Silver carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,387,362,272,267,240 F,170 F,120 F,70 F,30 F,...,...,...,...,...,424,262,196,261,231,192,133,132,132,131
Kazakhstan,Snakeheads(=Murrels) nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,4,12,9,10,10 F,7 F,5 F,10 F,10 F,12,8,17,33,...,...,...,...,...,...,...,...,...,...,...
Kazakhstan,Tench,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,427,457,539,52,-,-,-,-,-,-,-,-,-,-,183,150,207,...,...,...,...,...,...,...,...,...,...,...
Kazakhstan,Wels(=Som) catfish,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3362,4458,3209,2025,2155,1855,1496,1513,1380 F,990 F,700 F,750 F,750 F,780,607,1086,911,1835,1902,2218,3376,2527,2429,2045,1566,1694,1300,1487
Kenya,African lungfishes,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,914,782,653,472,581,323,239,374,95,150,216,114,110,107,103,123,1544,146,398,408,164,1704,1717,1600,1608,1822,1707,867,685,777,2914,3143,3077,2560,3891,3537,3258,1318,1303,1482
Kenya,Common carp,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,16,11,20,8,13,129,171,284,191,436,-,132,148,131,189,279,305,360,334,216,48,52,47,49,50,271,280,377,589,564,592,1238,1146,1328,1201,1920,2076,2302
Kenya,Cyprinids nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,300,300,300,500,500,800,1300,600,500,700,397,204,192,207,435,421,451,682,155,110,153,104,147,159,172,167,...,145,136,127,118,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-
Kenya,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),12000,12000,12000,12200,10800,24500,27000,19200,14000,14300,5000,4300,11100,12500,12600,15300,19000,19000,19100,21700,22000,16900,14500,16400,21465,20714,17689,18493,16762,17344,13447,11282,13975,3426,4703,6862,7113,6914,8267,9899,24583,19086,12001,9103,2015,1215,3059,745,5960,4221,4886,5237,4984,1800,1760,1907,1349,1862,3873,2186,3487,2405,2563,3470,5092,4210
Kenya,Mouthbrooding cichlids,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6368,5378,6621,6599,3636,916,2549,612,41,6,3,183,1336,4759,3802,3615,3018,3506,4196,4822,3914,2453,2577,2731,2699,1195,1259,1020,1066,4832,5198,5687,5423,822,21,527,715,1126,929,2120
Kenya,Naked catfishes,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1025,1141,1396,1769,642,430,2532,1243,88,61,62,40,526,140,510,174,78,34,37,127,157,158,107,147,161,178,183,63,71,69,88,76,59,306,101,173,185,105,101,203
Kenya,Nile perch,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,97,203,1066,4286,4310,22834,33134,55572,44698,53011,58806,69545,62612,56945,71930,57262,77599,100037,104102,102546,97145,73555,76663,103014,109815,78534,58432,55175,57235,52368,55706,47558,45026,43650,39045,46612,53023,44319,43399,38656
Kenya,Nile tilapia,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,402,425,922,902,1114,1778,2461,2687,6024,7460,7619,8903,16846,12685,37900,27024,16300,12196,11319,11827,10765,13953,14652,17524,19347,7292,16252,15982,17507,22231,19038,10125,12732,17274,24572,38153,25261,25071,25999,20784
Kenya,Red swamp crawfish,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,0 0,58,116,43,39,36,92,14,94,87,32,35,41,40,20,13,24,19,21,22,3,14,19,21,20,18,19,19,16,20,18,22,24,27,24
Kenya,Rhinofishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,123,939,148,443,598,114,918,2437,1325,2487,1479,1780,1073,249,650,704,212,175,143,605,1462,355,207,219,221,222,203,117,139,497,790,423,1900,1900,1144,1243,480,573,622,886
Kenya,Silver cyprinid,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5652,6704,8710,9321,9443,7635,10419,16444,19437,25866,34518,30345,36525,45463,46738,58098,35414,42505,69134,56827,49670,40315,42336,48816,49618,41384,35455,31659,34679,54019,57929,49472,46966,49326,47716,72314,52948,66717,69561,76134
Kenya,Tilapias nei,Africa - Inland waters,Quantity (tonnes),3000,3000,3000,3000,2700,2900,2900,1800,3400,4000,3300,4100,2100,3100,3200,2000,2000,2000,2500,3000,3000,3100,7200,8100,3000,1699,1501,1863,3023,2523,5669,3744,4273,6209,6836,2363,2415,4086,1656,6630,3614,21845,8395,7886,6354,7568,7635,19329,19732,18203,19853,19121,17418,4478,3916,1371,3316,3009,5092,5041,3626,3008,2907,2359,2555,1810
Kenya,Torpedo-shaped catfishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2686,1973,2047,3041,1832,1328,2062,1336,877,590,583,1331,481,596,645,2115,589,254,581,574,339,1724,1532,1570,1592,1611,1581,1525,1442,1353,4387,1632,2269,2736,6916,3945,6596,6918,7164,5850
Kenya,Upsidedown catfishes,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,191,310,155,482,388,127,232,47,75,-,1,-,0 0,0 0,0 0,0 0,37,25,37,28,24,408,418,506,443,48,142,216,258,342,374,710,20,930,136,872,773,141,136,1796
Kiribati,Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,0 0,0 0,-,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
"Korea, Dem. People's Rep",Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),5960,5910,6850,7780,14700,18330,17550,16960,17370,17280,17190,23100 F,23000 F,22900 F,23000 F,23000 F,23000 F,23000 F,23000 F,23000 F,17000 F,26000 F,30000 F,34000 F,38000 F,38000 F,43000 F,46000 F,46000 F,50000 F,53000 F,54000 F,57000 F,60000 F,59000 F,56000 F,55000 F,50000 F,46000 F,41000 F,30000 F,27000 F,26000 F,23000 F,20000,20000,20000,20000,16000 F,12000 F,8000 F,4928,5000 F,5000 F,5000 F,5000 F,5000 F,5000 F,5000 F,5000 F,5100 F,5100 F,5100 F,5000 F,5300 F,5200 F
"Korea, Republic of",Common carp,Asia - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,...,...,...,...,300,100,97,94,177,71,106,619,442,944,1364,1847,1766,2322,2453,2749,2843,4379,2308,-,-,-,-,-,-,-,1469,1684,1979,842,874,438,...,...,...,...,...,1211,320,825,1379,1777,1802,1775,1897,1032,1138,1206
"Korea, Republic of",Cyprinids nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,98,95,295,292,248,1171,1186,3901,4564,7669,6946,9648,10461,11253,13035,14260,12788,11984,6600,6517,5856,4742,4219,6262,4626,3311,1010,2221,1977,2294,...,...,...,...,...,...,745,1342,2560,2718,2893,2959,2986,1736,1919,1467
"Korea, Republic of",Freshwater crustaceans nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,7,361,163,120,246,364,405,463,632,807,388,489,605,371,179,157,107,147,76,138,181,216,248,-,2,111,93,48,61,111,32,66,...,145,714,485,316,249,301,190,268,436
"Korea, Republic of",Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),300,300,300,300,200,700,600,400,700,1000,1400,268,469,561,61,70,76,67,478,385,98,188,393,387,417,663,1777,5192,7752,9888,12452,12138,16691,17315,14933,14801,19694,20218,14957,14723,18753,14709,19023,4049,2891,3309,3418,2633,2755,1681,6402,5254,4993,4504,6288,3545,446,2025,3306,3599,2339,2089,2233,1454,2473,2301
"Korea, Republic of",Freshwater molluscs nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,...,...,...,...,...,...,100,200,0 0,100,64,232,258,2402,1192,1500,721,1061,1359,1438,759,534,588,315,443,381,609,1212,806,832,404,245,200,290,409,255,645,669,636,1465,3981,774,...,688,776,1031,806,714,505,485,725,673
"Korea, Republic of",Freshwater siluroids nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,279,251,...,136,...,...,...,99,...,229,2771,218,323,375,263,295,474,261,275,606
"Korea, Republic of",Japanese corbicula,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,5208,10726,12636,15653,18053,15165,12501,10881,10474,15513,13801,14890,13838,6660,1682,1443,1544,1153,755,713,659,600,387,677,1006,-,-,-,798,...,626,...,141,292,362,704,1060,771,1291,1157,1457
"Korea, Republic of",Snakehead,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,169,120,...,28,...,...,...,6,...,13,287,28,46,42,50,77,68,25,55,26
Kuwait,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Kyrgyzstan,Common carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,36,28 F,17 F,17 F,9 F,10 F,34 F,29 F,12 F,...,5 F,8 F,7 F,6,6 F,15,31 F,48 F,64 F,80,...
Kyrgyzstan,Cyprinids nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,158,175,234,187,111,49,30,39,30 F,18 F,18 F,11 F,12 F,42 F,35 F,14 F,1 F,3 F,4 F,...,...,2 F,6,-,-,-,-,-
Kyrgyzstan,Freshwater bream,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,9,8,6,13,-,20,19,11,9 F,5 F,5 F,3 F,3 F,11 F,9 F,4 F,2 F,5 F,7 F,1,0 0,0 0,...,1 F,1 F,2 F,3,3
Kyrgyzstan,Goldfish,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2,1,3,2,2 F,1 F,1 F,1 F,1 F,3 F,2 F,1,1 F,3 F,4 F,3,1,1 F,3,6 F,10 F,14 F,17,8
Kyrgyzstan,Grass carp(=White amur),Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1,1,-,-,3,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5 F,10 F,15 F,20,...
Kyrgyzstan,Northern pike,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3,...
Kyrgyzstan,Pike-perch,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,44,47,42,25,21,15,17,7,6 F,4 F,4 F,2 F,2 F,7 F,6 F,3 F,2 F,4 F,6 F,...,...,...,...,...,...,...,1,16
Kyrgyzstan,Roach,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,15,1
Kyrgyzstan,Sattar snowtrout,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,2
Kyrgyzstan,Silver carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,28,22 F,13 F,13 F,7 F,8 F,28 F,24 F,10 F,...,3 F,4 F,2,1,1 F,3,7 F,11 F,15 F,20,...
Kyrgyzstan,Snakehead,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,30,0 0
Lao People's Dem. Rep.,Cyprinids nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2500 F,2500 F,3200 F,4000 F,3500 F,2800 F,3000 F,4500 F,4400 F,4650 F,5000 F,4500 F,4500 F,4000 F,4100 F,4300 F,4500 F,4850 F,4900,5400 F,6100 F,6300 F,9600 F,10000 F
Lao People's Dem. Rep.,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),8000,8000,8000,8000,10000,10000,10000,10000,12000,12000,12000,12000,15000,14984,14976,14968,17952,17928,17904,17872,19840 F,19784 F,19728 F,19656 F,19568 F,21464 F,21336 F,21192 F,21016 F,22816 F,22592 F,22320 F,22016 F,23672 F,23500 F,22000 F,21000 F,22000 F,21000 F,20000 F,18000 F,18500 F,16740 F,17000 F,20600 F,23370 F,19500 F,16057 F,16642 F,25541 F,24850 F,26350 F,28440 F,25300 F,25300 F,22560 F,22825 F,24110 F,24700 F,25950 F,26000,28705 F,32846 F,33865 F,50637 F,52636 F
Latvia,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,5,5,3,3,6,5,3,5,5,4,2,2,1,1,2,1,1,1,1,1,1,0 0
Latvia,Crucian carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,8,-,-,-,-,-,5,7,7,11,10,14,15,24,36,36,12,15,11,8,10,10,11,10,7,9,8,8
Latvia,Cyprinids nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,119,-,-,-,-,-,30,36,34,42,26,27,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Latvia,European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,48,-,-,-,15,16,20,27,22,29,34,34,34,34,36,28,18,15,12,12,14,16,15,17,13,13,11,9
Latvia,Freshwater bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,96,205,95,100,193,233,145,156,151,172,135,158,155,152,141,134,82,55,63,54,54,67,71,69,60,64,62,58
Latvia,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,385,83,89,9,8,9,9,9,13,41,40,38,27,17,20,11,7,8,10,8,9,9,9,9,8
Latvia,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,13,8,4,19,25,30,41,55,56,47,55,72,72,73,88,71,48,39,45,36,48,44,39,41,32,39,37,28
Latvia,Orfe(=Ide),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,28,-,-,-,7,7,1,2,-,1,1,1,-,1,1,1,1,-,-,0 0,0 0,0 0,0 0,0 0,-,0 0,-,-
Latvia,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,38,-,-,-,-,-,17,22,19,20,21,33,35,38,44,41,26,24,21,22,32,26,31,28,29,40,32,22
Latvia,Roach,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,65,26,8,...,100,59,42,47,36,52,45,53,60,49,47,38,33,18,15,16,14,17,17,17,13,12,10,9
Latvia,Ruffe,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,5,4,5,5,-,1,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Latvia,Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1,-,-,-,3,5,16,15,15,24,22,41,29,35,40,47,28,29,42,27,37,38,47,41,30,36,37,34
Latvia,Vimba bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,1,8,14,13,13,19,20,15,17,7,9,2,2,3,2,3,3,4,3,4,5
Latvia,Wels(=Som) catfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6,-,26,40,...,...,1,1,1,2,1,2,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Lebanon,Cyprinids nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,100,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,10,10 F,10,10,10,10,10,10,10,10,10,25,20,20,25,25,15 F,10 F,10 F,5 F,5 F,5 F,5 F,5 F,5 F
Lebanon,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,10,10 F,10,10,10,10,10,10,10,10,10,272,265,245,250,245,215 F,190 F,160 F,135 F,105 F,75 F,45 F,15 F,15 F
Lesotho,Common carp,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5 F,10 F,10 F,13 F,15 F,15 F,16 F,16 F,18 F,18 F,18 F,20,8,10,12,15,15,12,16,16,15,15,15,19,15,14,14 F
Lesotho,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,3 F,5 F,5 F,8 F,10 F,10 F,10 F,10 F,10,14,26,25,25,25,30,30,32,25,25,25,25,25,28,28 F
Lesotho,North African catfish,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2 F,2 F,2 F,2 F,2 F,2 F,2 F,2,2,4,5,5,5,3,2,2,5,5,5,6,10,10,10 F
Liberia,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),1000,1000,1500,1500,1500,1800,1800,2000,2000,2000,2000,2500,2500,2500,2500,2500,3000,3000,3000,3500,4000 F,4000 F,4000 F,4000 F,4000 F,4000 F,4000 F,4000 F,4000,4000,4000,4000,4000,4000,4000,4000,4000,4000,4000,4000,4000,4000,4000,4000,4000,4000,4000,4000,4000,4000,4000,4000,4000 F,3600 F,3200 F,2800 F,2400 F,1743,763,2200 F,2200 F,2200 F,2200 F,2200 F,2200 F,2200 F
Libya,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Liechtenstein,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Lithuania,Asp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,7,12,-,-,0 0,5,3,4,6,9,6,6,5,2,11,8,5,4,5,4,3,2,2,3,3,3,3
Lithuania,Bleak,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,3,4,6,4,1,-,1,0 0,0 0,0 0,-,-,0 0,0 0,0 0,-
Lithuania,Burbot,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,3,33,35,14,4,3,5,5,14,10,13,13,9,3,13,8,10,12,15,20,18,14,15,15,17,15,25
Lithuania,Chub,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,3,3,10,3,3,0 0,-,0 0,0 0,0 0,0 0,-,-,-,0 0,-
Lithuania,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,52,41,27,31,14,13,12,16,16,18,18,10,3,1,2,1,2,2,6,9,6,1,-
Lithuania,Cyprinids nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,54,67,16,9,5,1,3,1,2,-,-,-,-,0 0,59,0 0,-,1,-,-,-,-,-,-,-,0 0,-
Lithuania,Euro-American crayfishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2,-,-,-,-,0 0,1,1,1,1,0 0,1,1,0 0,0 0,1,-,0 0,0 0,-,0 0,-,-,-,-,-,-,-
Lithuania,European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,11,49,52,160,60,92,115,114,83,114,104,116,115,114,84,112,87,64,75,60,65,51,34,75,58,55,35,49
Lithuania,Freshwater bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,840,820,978,740,377,276,324,420,397,448,454,466,467,470,86,453,460,382,366,455,366,323,400,480,429,512,482,494
Lithuania,Freshwater breams nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,5,4,7,10,12,11,13,24,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Lithuania,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,129,2146,131,19,2,17,50,45,90,88,10,6,2,0 0,10,5,8,14,3,1,1,6,1,0 0,0 0,1,24
Lithuania,Goldfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,39,4,-,-,13,26,41,41,30,30,38,32,45,38,33,44,34,19,20,25,27,19,20,23,22,12,14,9
Lithuania,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,11,73,590,25,18,62,78,78,66,71,56,62,71,68,66,70,47,17,17,20,18,14,13,14,19,15,10,11
Lithuania,Orfe(=Ide),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,24,11,-,-,1,1,3,1,1,-,-,1,1,1,2,1,0 0,-,0 0,-,0 0,-,-,-,-,-,-
Lithuania,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,114,86,125,96,110,73,55,44,56,65,51,60,78,87,11,121,125,112,104,101,92,75,83,98,68,85,108,106
Lithuania,Roach,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,291,699,480,708,569,353,318,314,431,593,645,647,635,643,229,763,734,545,484,561,492,354,323,373,309,279,298,307
Lithuania,Rudd,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,11,16,17,14,18,14,13,17,20,23,21,13,1,-,1,2,2,2,1,1,0 0,0 0,-
Lithuania,Ruffe,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,52,97,64,0 0,10,4,8,16,11,6,11,28,26,16,12,20,1
Lithuania,Sichel,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,4,3,8,12,-,-,9,5,8,15,14,11,2,4,4,13,7,14
Lithuania,Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1,26,15,-,-,6,9,10,9,12,9,11,13,15,16,16,9,3,2,2,3,3,4,5,6,5,5,-
Lithuania,Vimba bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,1,3,2,3,3,11,48,40,-,-,55,76,82,178,161,73,61,73,57,84,65,57
Lithuania,Wels(=Som) catfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,825,240,853,250,-,-,0 0,0 0,0 0,-,-,-,0 0,0 0,0 0,1,0 0,0 0,-,0 0,0 0,0 0,0 0,-,-,-,1,-
Lithuania,White bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,23,38,68,49,37,52,72,84,71,63,77,34,24,10
Luxembourg,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
"Macedonia, Fmr Yug Rp of",Bleak,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,4,12,3,...,2,3,-,-,-,-,-
"Macedonia, Fmr Yug Rp of",Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,11,9,13,32,10,9,...,...,25,6,22,24,10,14,1,2,2,33,19,19,18,20,20,2
"Macedonia, Fmr Yug Rp of",European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,21,2,29,39,38,34,22,23,21
"Macedonia, Fmr Yug Rp of",Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6,70,46,146,31,68,107,113,52,7,6,8,78,84,87,90,84,47,6,49,50,65,4,111
"Macedonia, Fmr Yug Rp of",Grass carp(=White amur),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,18,12,9,11,12,16,12,11,10,20,10
"Macedonia, Fmr Yug Rp of",Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,2,1,2,2,3,3,2,2,2,2
"Macedonia, Fmr Yug Rp of",Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1,2,1,2,2,3,3,2,8,10,2
"Macedonia, Fmr Yug Rp of",Wels(=Som) catfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2,4,1,2,3,41,40,38,45,45,43
Madagascar,Cichlids nei,Africa - Inland waters,Quantity (tonnes),8000,8000,8000,9000,9000,10000,10000,13000,13000,14000,14000,15000,15000,15000,20000,19000,20000,22000,22000,18000,20000,20000,21000,21600,22300,23000,23000,23000,23000,23000,22837,23100,22500 F,21600,19396,20296,23844,23842,23838,18000,18000,18000,18000,21100,21500,21600,21500 F,21500 F,21500 F,21500 F,21500 F,21500 F,21500 F,21500 F,22500 F,22800 F,22150 F,21330 F,20580 F,19828 F,20200 F,16500 F,10100 F,7600 F,8270 F,8953
Madagascar,Cyprinids nei,Africa - Inland waters,Quantity (tonnes),3000,3000,3000,4000,4000,5000,5000,4000,4000,4000,5000,5000,6000,8000,10000,10000,10000,11000,12000,10000,10000,11900,12000,12500,13000,13000,13000,13000,13000,13000,10277,9620,9400 F,9200,9044,9480,11215,11204,11173,8390,8800,6700,6000,5100,4313,4123,4000 F,4000 F,4000 F,4000 F,4000 F,4000 F,4000 F,4000 F,4000 F,4050 F,4000 F,3900 F,3850 F,3800 F,4100 F,3500 F,2216 F,1700 F,2200 F,2700
Madagascar,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),4000,4000,4000,5000,5000,5000,5000,5000,5500,5500,5000,5000,6000,8900,9000,7000,7000,8000,11800,5900,5100,5000,5000,5000,5000,5500,5500,5500,5500,5500,4850,5780,5100 F,4500,3870,4060,4760,4760,4760,3595,3160,2800,3500,3800,4187,4277,4500 F,4500 F,4500 F,4500 F,4500 F,4500 F,4500 F,4500 F,5000 F,5800 F,6600 F,7400 F,8200 F,9200 F,11200 F,10831,14684,13863,11530,14287
Malawi,Cichlids nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,18841,22000 F,20533,20892,29774,23549,22646,37382,4380,11462,12048,14301,11451,9036,14324,16420,15100
Malawi,Cyprinids nei,Africa - Inland waters,Quantity (tonnes),1000,1000,1000,2000,2000,2000,2000,2000,3000,3000,2000,3000,3000,3000,3000,5000,5000,5000,5000,5000,6000 F,6500 F,14000,6200,2334,3000,12098,15541,10235,18680,6860,1834,9913,6492,13949,9464,12631,13216,4530,9922,15768,2944,3142,6775,7265,538,505,522,299,8302,8500 F,6291,6401,6719,4925,4491,2362,16510,11940,8811,9258,6124,2948,1080,748,854
Malawi,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),6000,6000,6000,9000,9000,9000,9000,12300,14800,11400,7600,6300,11500,13700,13200,18900,17500,14300,17900,23200,31000 F,42100 F,23300,35000,56340,55992,45771,33329,34338,22143,34004,30871,23258,40932,26904,29413,38833,59566,55814,45625,42905,45286,52762,50957,44679,49263,53428,51346,31773,2970,3500 F,2274,2314,3121,5455,4098,4811,4069,5024,4930,3531,2645,3895,3214,5608,2149
Malawi,Lake Malawi sardine,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2160,2711,1814,13821,15301,18975,54860,37183,86082,76840,71969,99370
Malawi,Lake Malawi utaka,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,7850,13447,12816,8213,10564,8139,7964,6817,13816,9570,11734,12805
Malawi,Tilapia shiranus,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,986,1322,2183,4617,3111,2871,3271,5677,2253,311,220,2572
Malawi,Tilapias nei,Africa - Inland waters,Quantity (tonnes),3000,3000,3000,4000,4000,4000,4000,6000,7000,5000,4000,5000,5000,5000,5000,10000,10000,10000,10000,10000,10000 F,11400 F,32700,28100,11601,11994,17024,19316,23195,19130,24830,18614,25151,19439,24092,23015,21206,15611,18258,15007,15230,15276,13357,10219,6635,3863,5080,4472,5104,6808,7200 F,5154,5244,5717,5043,4651,7510,9690,7944,9496,3646,5249,4215,3156,4116,2591
Malawi,Torpedo-shaped catfishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,4556,...,3935,8471,8800 F,6367,6478,8212,6495,6229,3909,5200,4673,4055,1467,7269,3147,3753,5314,6202
Malaysia,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,2000,2000,2000,2000,2000,2000,2000,3900,4300,4100,3007,2381,2288,2496,2597,2931,2786,11230,2614,2586,2800,3959,4144,737,996,1079,1276,1458,1773,1971,2064,3939,3683,3949,4626,3366,3549,3446,3185,3605,4119,4281,3874,3981,3945,4086,4150,5283,4611,5296,6132,5520
Malaysia,"Freshwater prawns, shrimps nei",Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,100,300,321,30,56,79,91,113,86,10,25,55,19,27,37,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,265,223,...,301,291,299,408,383,395,411,431,345,388,404
Maldives,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Mali,African bonytongue,Africa - Inland waters,Quantity (tonnes),600,600,600,600,700,700,700,700,800,800,800,800,900,900,900,900,1100,1000,1060,1080,1100,900,800,850,750,750 F,750 F,750 F,750 F,836,882,756,734,613,547,542,610,557,559,718,705,688,685,643,629,1328,453,329,397,399,1099,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000 F,1000,1000 F,1148,1240 F,817 F,1135 F,740,868
Mali,Black catfishes nei,Africa - Inland waters,Quantity (tonnes),2400,2400,2400,2400,2800,2800,2800,2800,3200,3200,3200,3200,3600,3600,3600,3600,4400,4000,4240,4320,4400,3600,3200,3400,3000,3000 F,3000 F,3000 F,3000 F,3343,3529,3022,2938,2452,2188,2167,2440,2228,2234,2873,2821,2750,2739,2572,2514,5320,4172,3982,3650,3670,4395,4000 F,4000 F,4000 F,4000 F,4000 F,4000 F,4000 F,4000,4000 F,4000 F,4330 F,2852 F,3982 F,1805,2760
Mali,Characins nei,Africa - Inland waters,Quantity (tonnes),3000,3000,3000,3000,3500,3500,3500,3500,4000,4000,4000,4000,4500,4500,4500,4500,5500,5000,5300,5400,5500,4500,4000,4250,3750,3750 F,3750 F,3750 F,3750 F,4179,4412,3778,3673,3064,2736,2709,3050,2785,2793,3591,3527,3437,3423,3215,3142,6650,9504,6969,8316,8362,5493,5000 F,5000 F,5000 F,5000 F,5000 F,5000 F,5000 F,5000,5000 F,5000 F,5400 F,3557 F,4968 F,604,644
Mali,Elephantsnout fishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,7691,7000 F,7000 F,7000 F,7000 F,7000 F,7000 F,7000 F,7000,7000 F,7000 F,7570 F,4986 F,6869 F,6602,7360
Mali,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),15600,15600,15600,15600,18200,18200,18200,18200,20800,20800,20800,20800,23400,23400,23400,23400,28600,26000,27560,28080,28600,23400,20800,22100,19500,19500 F,19500 F,19500 F,19500 F,21732,22939,19647,19097,15935,14224,14085,15859,14482,14521,18675,18339,17875,17801,16718,16341,34580,39833,60667,34854,35044,20875,19000 F,19000 F,19000 F,19000 F,19000 F,19000 F,19000 F,19000 F,19000 F,18852 F,20444 F,13467 F,18815 F,18815,21980
Mali,Nile perch,Africa - Inland waters,Quantity (tonnes),3600,3600,3600,3600,4200,4200,4200,4200,4800,4800,4800,4800,5400,5400,5400,5400,6600,6000,6360,6480,6600,5400,4800,5100,4500,4500 F,4500 F,4500 F,4500 F,5015,5294,4534,4407,3677,3283,3251,3660,3342,3351,4310,4232,4125,4108,3858,3771,7980,5712,4978,5024,5052,6592,6000 F,6000 F,6000 F,6000 F,6000 F,6000 F,6000 F,6000 F,6000 F,6000 F,6500 F,4282 F,5983 F,7211,9668
Mali,Nile tilapia,Africa - Inland waters,Quantity (tonnes),18000,18000,18000,18000,21000,21000,21000,21000,24000,24000,24000,24000,27000,27000,27000,27000,33000,30000,31800,32400,33000,27000,24000,25500,22500,22500 F,22500 F,22500 F,22500 F,25076,26468,22669,22035,18387,16412,16254,18302,16711,16758,21547,21161,20625,20540,19290,18855,39842,30450,1719,26675,26821,32961,30000 F,30000 F,30000 F,30000 F,30000 F,30000 F,30000 F,30000,30000 F,30000 F,32400 F,21342 F,29826 F,22415,24760
Mali,North African catfish,Africa - Inland waters,Quantity (tonnes),15000,15000,15000,15000,17500,17500,17500,17500,20000,20000,20000,20000,22500,22500,22500,22500,27500,25000,26500,27000,27500,22500,20000,21250,18750,18750 F,18750 F,18750 F,18750 F,20897,22057,18891,18363,15322,13677,13545,15251,13925,13966,17956,17634,17187,17117,16075,15712,33210,17129,14933,15009,15091,27468,25000 F,25000 F,25000 F,25000 F,25000 F,25000 F,25000 F,25000,25000 F,25000 F,27000 F,17785 F,24788 F,18821,21480
Mali,Upsidedown catfishes,Africa - Inland waters,Quantity (tonnes),1800,1800,1800,1800,2100,2100,2100,2100,2400,2400,2400,2400,2700,2700,2700,2700,3300,3000,3180,3240,3300,2700,2400,2550,2250,2250 F,2250 F,2250 F,2250 F,2508,2647,2267,2204,1839,1641,1625,1830,1671,1676,2155,2116,2062,2054,1929,1886,3990,4657,5973,4075,4097,3296,3000 F,3000 F,3000 F,3000 F,3000 F,3000 F,3000 F,3000,3000 F,3000 F,3250 F,2141 F,2987 F,2987,2960
Malta,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Marshall Islands,Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Martinique,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Martinique,Giant river prawn,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3,-,-,7,-,-,-,-,-,3,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Mauritania,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),5000,5000,5000,5000,6000,6000,6000,8000,8000,8000,8000,8000,8000,8000,8000,8000,8000,8000,8000,8000,6000,6000,6000,6000,6000,6000,6000,6000,6000,6000,6000,6000,6000,6000,6000,6000,6000,6000,6000,6000,6000 F,6000 F,5000 F,5000 F,7000 F,8000 F,8000 F,9000 F,9000 F,10000 F,10000 F,10000 F,12000 F,12000 F,12000 F,13000 F,15000 F,15000 F,15000 F,15000 F,15000 F,15000 F,15000 F,15000 F,15000 F,15000 F
Mauritius,Tilapias nei,Africa - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,1,1,-,1,2,-,0 0,0 0,3,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-
Mexico,[Atractosteus spp],"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,406,424,539,384,448,453,471,351,437,574,474
Mexico,[Chirostoma spp],"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,590,617,2005,1936,2372,3552,3381,2621,3438,4743,6889
Mexico,Bigmouth sleeper,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,125,131,...,...,...,...,498,421,891,1127,557
Mexico,Catfishes nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,100,100,100,200,200,400,500,586,400,200,300,500,600,800,500,500,270,200,400,670,266,238,302,371,320,503,793,2951,1547,906,1112,926,2169,1475,1717,1837,2664,2827,3469,3815,3165,4423,5358,4691,4027,4232,3845,3135,2263,2020,1722,1557,1622,2321,2399,1619,4046,3028,2670,3394,3596,5402
Mexico,Cichlids nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1625,1698,987,721,955,502,900,1996,506,470,561
Mexico,Common carp,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,150,900,520,600,700,1113,1815,380,380,220,220,300,450,450,450,600,650,650,800,727,542,893,1032,1515,2311,3332,9006,6584,5037,8111,9079,17873,20608,21410,17275,19614,20220,20393,18171,16187,22677,21237,16787,14345,10945,15300,14700,13706,16013,16075,15545,16288,19205,20930,24450,29793,22881,22186,29456,31350,35779
Mexico,Cyprinids nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,300,300,500,500,400,400,300,400,100,400,300,400,500,700,600,200,300,200,300,414,144,80,522,128,173,84,54,47,72,1000,1000,1000,3000,3000,3000,3240,3361,2886,3086,3255,1739,3732,4838,3982,6805,3988,3806,1711,5771,5754,5200,5400,1325,1321,2119,2254,1324,3444,2112,3661,4816
Mexico,Euro-American crayfishes nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,157,170,198,101,99,163,108,17,94,44,27,64,66,55,73,91,88,70,...,...,...,...
Mexico,Fat sleeper,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,253,264,15,113,28,42,147,519,294,77,112
Mexico,Freshwater drum,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,102,107,131,120,131,140,79,87,74,98,106
Mexico,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,2800,2600,2400,2400,1500,1000,900,2100,1300,3300,2100,1900,2800,3900,4600,4900,3700,3700,5600,5500,5365,5772,6790,5705,5701,7211,8572,21300,15768,28410,31574,27426,22994,61968,56739,60618,7111,11233,5919,4850,8166,10724,9766,5185,6482,3284,8716,3911,4280,7454,9278,11021,11482,7964,7506,4681,3534,10239,13785,1792,1358,8411
Mexico,Freshwater molluscs nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,2500,1000,1000,1400,1800,1100,1100,1000,1000,1100,1300,1508,1556,1631,1517,...,...,1183,1360,1766,1048,1942,678,711,122,195,244,264,72,115,120,95,198,240,120,177,239,557,1027,1045,1145,1109,1099,1148,1038,1651,1723,1657,1869,...,...,...,...
Mexico,Largemouth black bass,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,996,1212,1014,1058,684,784,903,693,766,845,864,1143,1358,1028,958,945,848,805,677,473,570,909
Mexico,Marine crabs nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2,2,...,...,...,...,...,...,...,...,...
Mexico,River prawns nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,400,500,500,600,800,800,200,300,400,700,697,1017,1398,840,...,...,1930,3799,3328,2306,3463,3014,2744,2863,3257,2798,1731,2028,2244,4456,3226,4202,4261,3580,3244,4161,3478,3112,3051,2936,2782,3595,3754,2967,3025,3083,2759,1554,2455,2333,3345,3625
Mexico,South American catfish,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,10,10,17,13,16,18,14,23,21,14,8
Mexico,Tilapias nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,400,300,400,500,400,400,200,200,100,200,200,200,300,200,200,500,400,700,500,2850,2855,4764,4240,5079,5928,11452,11700,38343,55618,46925,50857,42994,52458,60073,59873,59016,78815,70674,72364,75835,75024,74646,74354,74814,65178,59343,68772,60336,54901,62421,68683,65706,66285,70554,61751,62947,62433,64945,55795,69977,71952,83476
"Micronesia, Fed.States of",Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,3,3,3,3,3,3,3,3,3 F,3 F,5 F,5 F,5 F,4 F,4 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F
"Moldova, Republic of",Asp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3,8,8,11,8,6,7,-,-,1,0 0,0 0,0 0,0 0,0 0,-,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-
"Moldova, Republic of",Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,23,18,11,9,10,2,0 0,0 0,-,-,3,3,8,10,4,3,1,2,1,2,2 F,2 F,2 F,2 F,2 F
"Moldova, Republic of",Crucian carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,28,40,24,22,14,10,8,8,3,1,5,1,1,4,5,7,11,6,7,6,6,4,9,10 F,10 F,10 F,10 F,10 F
"Moldova, Republic of",Cyprinids nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,403,521,726,2,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
"Moldova, Republic of",European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,8,47,14,-,-,-,-,-,-,-,-,-,-,-,0 0,1,-,1,1,1,1,0 0,0 0,0 0,0 0,0 0,0 0,0 0
"Moldova, Republic of",Freshwater bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,60,84,99,30,27,27,39,35,17,13,10,4,13,9,11,16,19,21,19,6,11,10,14,14 F,14 F,14 F,14 F,14 F
"Moldova, Republic of",Freshwater breams nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,187,138,203,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
"Moldova, Republic of",Freshwater crustaceans nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,25,6,10,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
"Moldova, Republic of",Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,497,451,550,41,18,11,37,50,-,5,3,3,6,5,9,10,26,13,10,4,10,6,8,13 F,13 F,13 F,13 F,13 F
"Moldova, Republic of",Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,51,124,133,-,-,-,1,-,-,-,-,-,-,-,1,1,1,-,1,0 0,0 0,0 0,1,1 F,1 F,1 F,1 F,1 F
"Moldova, Republic of",Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,16,46,35,11,7,6,6,4,0 0,1,0 0,0 0,0 0,1,2,2,3,4,3,2,2,2,3,3 F,3 F,3 F,3 F,3 F
"Moldova, Republic of",Roaches nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,59,137,375,31,21,16,8,14,4,5,1,1,4,5,5,11,13,5,5,5,3,3,7,7 F,7 F,7 F,7 F,7 F
"Moldova, Republic of",Sichel,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1,7,4,-,-,-,-,1,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
"Moldova, Republic of",Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,24,12,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
"Moldova, Republic of",Vimba bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,14,5,-,1,5,-,-,0 0,0 0,1,0 0,0 0,0 0,1,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-
"Moldova, Republic of",Wels(=Som) catfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,16,67,78,10,6,3,2,1,-,-,-,0 0,0 0,1,1,1,1,1,1,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-
"Moldova, Republic of",White bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,1,1,-,1,1,1,1,0 0,-,0 0,0 0,0 0,0 0,0 0
Mongolia,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,250,250,280,280,290,290,290,300,300,300,300 F,300 F,300 F,300 F,300 F,300 F,265,494,537,346,262,184,347,370,374,412,383,281,254,124,100,120 F,165,184,158,221,180,311,524,425,290,263,382,305,366,326,185,88,90,100,80,61,55 F,49,63
Montenegro,Bleak,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,30,88,112,100,1,50,31,31,36,...
Montenegro,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,410,82,452,350,234,287,225,240,69,145
Montenegro,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,87,70,64,168,83,96,142,194,53,-
Montserrat,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Morocco,Cyprinids nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,200,200,200,200,200,200,200,200,200,200,200,200,300,350,250,230,500,1000,900,800,800,900,1200,1000,900,1100,850,600,2400,2800,3400,3800,5200,6200,7800,11500,13000,13000,13000
Morocco,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,400,400,300,400,400,300,300,300,300,300,300,300,300,300,300,300,300,300,300,300,300,800,1000,1000,1000,1000,1000,1000,1500,1000,1000,1500,1000,600,500,600,900,500,700,500,600,800,700,200,460,500,580,600,780,1000,1200,1500,2000,2000,2000
Morocco,Freshwater molluscs nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,8,5,6,7,2,-,-,-,-,-,-,-,-,-,-,-,-
Morocco,"Freshwater prawns, shrimps nei",Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,3,2,1,1,0 0,0 0,0 0,0 0,0 0,0 0,2,5,3,4,5,3,-,-,-,-,-,-,-,-,-,-,-,-
Mozambique,Dagaas (=Kapenta),Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,689,925,3173,5574,9921,7313,9044,12192,7076,9500,10978,18760,12991,16243,8595,9615,12442,11518,18330,13707,16645,13714,16615
Mozambique,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),500,500,500,500,500,1000,1000,1000,1000,1000,1500,1500,1500,1500,1500,2000,2000,2000,2000,2000,2500,2500,2500,3000,3000,3000,3000,3000,3000,3500,3500,3500,3500,3500,3500,3500,3767,3267,3248,3500,3500,3800,3800,4000,4000,6000 F,6000 F,6000 F,7000 F,7000 F,7000 F,8000 F,8000 F,9000 F,9000 F,10000 F,10000 F,15199,18331,31256,33318,55094,53515,68215,70137,76405
Myanmar,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),12100,12800,28000,28000,56000,56000,103000,103000,103000,103000,103000,103000,103000,103000,103000,103000,103000,108100,112400,115300,120270,122040,123200,124140,124910,128480,132640,136930,141530,149570,148440,145930,130380,139030,144010,146800,145560,139498,139147,136287,137500,138687,141281,142065,146365,148440,146590,149160,149370,159850,196060,238210,254880,290140,454260,503540,631120,718190,739140 F,757810 F,785550 F,798130 F,830730 F,838090 F,852530 F,863450 F
Namibia,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,...,...,...,...,0 0,0 0,0 0,0 0,50,50,50,50,50,50,50,50,50,100,400,700,923,951,979,1009,1039,1070,1102,1200,1200,1200,1200,1500,1500 F,1500 F,1500 F,2000 F,2000 F,2500 F,2500 F,2800 F,2800 F,2800,2800 F,2800 F,2800 F,2800 F,2800 F,2800 F,2800 F,2800 F
Nepal,Bighead carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5,25,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Nepal,Common carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,8,25,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Nepal,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),500,500,500,500,1000,1000,1000,1000,1300,1300,1300,1500,1500,1500,1600,1600,1600,1800,1800,1900,1832,1982,2003,1886 F,1799 F,1985 F,2138 F,2189 F,2315 F,2308 F,2221,2154,2359,2429,2863,5811,5281,5281,6975,5686,5288,5281,5871,7320,7340,11230,11230,11230,12000,12752,16700,16700,17900,18888,19947,19983,20016,20100,21500,21500,21500,21500,21500,21500,21500,21500
Nepal,Grass carp(=White amur),Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2,6,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Nepal,Silver carp,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,9,42,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Netherlands,Common carp,Europe - Inland waters,Quantity (tonnes),600,400,200,200,200,400,200,500,300,400,300,200,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,1,1,1,1,0 0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Netherlands,European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,200,300,200,300,200,100,100,100,200,100,200,400,600,788,846,745,545,344,372,625,848,711,631,442,622,559,545,250,708,761,322,360,340,136,219,376,336,155,177,170 F,150 F,131,140 F,140 F,140 F,140 F,140 F,140 F,140 F,140 F,140 F,130 F,120 F,120 F,120 F
Netherlands,Freshwater bream,Europe - Inland waters,Quantity (tonnes),500,500,400,200,100,200,200,200,300,300,400,300,300,100,300,100,100,100,100,100,200,200,100,100,162,159,252,297,100,48,83,94,177,430,534,626,739,1405,864,572,175,433,316,229,30,...,75,65,399,355,350 F,300 F,282,280 F,280 F,280 F,280 F,280 F,280 F,280 F,280 F,280 F,270 F,260 F,260 F,260 F
Netherlands,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),10500,10500,9200,9100,10700,9000,10800,9500,10000,10900,7900,9900,7600,7900,10200,10700,12800,12300,7100,5300,100,200,200,400,1239,994,154,177,-,-,248,-,51,299,184,140,77,85,58,1,5,18,17,22,228,410,350,362,176,154,150 F,150 F,134,140 F,140 F,140 F,140 F,140 F,140 F,140 F,140 F,140 F,130 F,120 F,120 F,120 F
Netherlands,Freshwater molluscs nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,451,...,...,-,-,-,-,-,-,-,-,-,-,-
Netherlands,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,1,1,0 0,0 0,1,1,-,1,1,0 0,1,1,1,1,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Netherlands,Pike-perch,Europe - Inland waters,Quantity (tonnes),1700,800,1000,900,600,500,300,300,300,300,600,300,200,100,100,100,200,100,300,400,200,1300,800,700,213,1209,462,974,585,554,139,65,73,167,333,159,60,129,178,137,55,143,42,44,185,79,100,89,61,104,160 F,250 F,295,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,300 F,290 F,270 F,270 F,270 F
Netherlands,Roaches nei,Europe - Inland waters,Quantity (tonnes),500,400,600,400,300,400,400,400,600,500,400,200,400,300,200,300,200,100,100,200,200,200,100,100,59,57,123,66,39,22,24,55,71,112,275,162,89,33,29,31,35,44,11,10,20,54,100,123,107,100,90 F,80 F,64,70 F,70 F,70 F,70 F,70 F,70 F,70 F,70 F,70 F,70 F,64 F,64 F,64 F
Netherlands Antilles,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-
New Caledonia,Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
New Zealand,Brown bullhead,Oceania - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,0 0,0 0,0 0,0 0,0 0,0 0,1,1,5,12,14,10,8,7,13,13,8,12,5,7,0 0,4,13,13,14,15,15
New Zealand,Common carp,Oceania - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,0 0,0 0,28,2,3,4,6,7,6,2,4,6,3,5,0 0,4,7,8,7,9,10
New Zealand,Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,100,100,100,200,500,500,400,300,200,200,700,1300,500,700,500,500,500,300,200,200,200,200,200,450,600,750,600,500,500,550,500,500,600,600,400,400,400,300,300,301,300,300,300,300,300,300,300,300,300,300,300,300
New Zealand,Goldfish,Oceania - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,1,1,1,-,1,2,3,3,3,3
Nicaragua,Cichlids nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,499,529,356,364,331,266,240,220,564,806,142,330,350,401,564,421,219,234,262,128
Nicaragua,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),100,100,100,200,200,200,400,400,400,400,600,600,600,900,900,1100,1200,1300,1300,1200,1300,1300,1200,2600,460,359,458,393,178,126,79,193,486,378,118,84,55,170,114,114,150,256,348,547,824,538,95,29,76,41,84,93,62,54,182,76,2,60,313,19,10,7,11,19,18,34
Nicaragua,Jaguar guapote,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,111,126,94,73,96,64,123,93,109,124,44
Nicaragua,Machaca,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,52,52,102,95,71,139,141,171,170,81
Nicaragua,River prawns nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,7,0 0,2,0 0,1,0 0,...,0 0,1,1,6,5,12,4,1,0 0,...
Nicaragua,Tilapias nei,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,200,57,180,113,114,132,114,222,182
Nicaragua,Tropical gar,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,26,43,19,64,85,14,30,59,73
Niger,Elephantsnout fishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5977,4600 F,3403,3450,3200,4342,820
Niger,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),2000,2000,2000,2500,2500,2500,3000,3000,3000,3000,3400,4200,6000,9000,6300,5000,5000,3700,4300,3000,2400,5400,16400,16200,15050,9142,4715,7372,8783,8934,8892,8208,6840,3251,2991,1993,2337,2269,2479,4626,3192,3120,2454,2162,2516,3616,4156,6328,7013,11000,16250,20800,23560,55860,51466,50018,29835,29728,29960,4483,6000 F,8173,...,7500,...,18000
Niger,Naked catfishes,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2988,3800 F,4770,6450,1300,3191,1676
Niger,Nile perch,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2988,7700 F,12700,5493,5577,8825,584
Niger,Tilapias nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,96,126,4,2,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,8965,13000 F,18500,20202,12200,14742,13000
Niger,Torpedo-shaped catfishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,4483,4900 F,5627,10905,15223,15900,1172
Nigeria,Aba,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3179,1108,3952,7685,5887,...,...,9097,11358,11764,16084,11496,13914,20205,13363,12744,11993,12697,11868,11955,11044
Nigeria,African bonytongue,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,4286,2484,4533,4375,2897,4832,3298,4737,7388,8873,7915,8577,6832,10118,10314,11884,11233,10554,16451,14889,15392,14903,15499,19913,20230,18405
Nigeria,African lungfishes,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,300,400,500,300,500,400,700,3800,4100,4200,4422,4413,3058,3132,3181,3297,2422,1880,1939,1714,4002,76,2784,1769,1769 F,1880 F,617,512,587,798,436,678,1284,3950,1679,536,1364,2183,520,2747,3383,1543,2172,4816,3494,3577,3662,4469,5579,6370,7523,6595
Nigeria,Bagrid catfish,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,2000,4000,8505,5814,15538,10679,7311,12413,5678,12537,10859,12519,13161,16287,11110,17541,18795,18988,18880,17821,18736,15871
Nigeria,Characins nei,Africa - Inland waters,Quantity (tonnes),1100,1100,1100,1200,1200,1200,1200,1500,1500,1500,1500,1500,1800,1800,1800,2400,3000,3200,3200,3300,4600,4300,4700,4800,4575,5011,9009,9303,9457,9713,5683,5193,5357,10000 F,14128,10486,14164,11006,11006 F,11710 F,6811,1254,337,4309,7169,8802,7141,7646,19835,11883,12500,10274,6989,14573,13874,17449,19808,21259,25857,15987,11457,12770,12835,14817,15321,12465
Nigeria,Citharinus nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5654,10754,9581,15468,13031,9130,17035,11395,13764,14378,13980,11970,13350,11425
Nigeria,Cyprinids nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,80,70,60,50,5179,5000,5445,5543,5609,5828,6260,5759,5922,12242,5091,4336,6071,5485,2948 F,1602 F,3392,2775,2054,3293,3021,4476,4460,6199,5006,6296,4823,5901,6004,7430,7401,9883,12697,10317,15242,14261,15949,16855,18365,19984,20235,15405
Nigeria,Elephantsnout fishes nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6439,...,4481,18781,16030,...,17509,5567,15400,19494,18617,18710,26141,22380,22564,22976,23624,25292,27901,28541,23813
Nigeria,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),2700,2700,2700,3000,3000,3000,3000,3700,3700,3700,3700,3700,4500,4500,4200,5600,7000,7400,7400,7700,10530,14810 F,14800 F,14780 F,14760 F,14740 F,19710 F,19670 F,19640 F,19630 F,19600 F,19560 F,19510 F,19460 F,19836,22612,31409,16755,23776,21285,26685,29102,40627,38738,42959,33708,29776,11375,2093,16589,48445,36986,96034,4531,18880,26817,22198,3223,10409,12867,10654,11493,12207,14989,15257,53347
Nigeria,Glass schilbid,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,9,...,28,97,106,1048,540,761,802,1915,1983,1782,1782,1803
Nigeria,Grass-eaters nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,4765,7662,6836,5500,11662,5760,8760,9351,9463,8940,8968,9052
Nigeria,Kafue pike,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1288,2345,1009,2090,2284,2372,7837,1941,2634,2551,2530,2983,3045,3067
Nigeria,Knifefishes,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,231,231,173,180 F,867,611,633,...,703,383,10,1,144,33,39,22,19,34,18,169,69,203,136,242,239,406,488,423,490,491
Nigeria,Naked catfishes,Africa - Inland waters,Quantity (tonnes),1800,1800,1800,2000,2000,2000,2000,2500,2500,2500,2500,2500,3000,3000,3000,4000,5000,5300,5300,5500,7600,10000 F,10000 F,10000 F,10000 F,10000 F,6827,6919,7034,7360,8910,8465,8733,10000 F,13793,4365,11111,16848,16848 F,17930 F,6955,7032,3461,8903,5944,6531,3594,4726,5463,5421,4539,4902,920,5183,5239,5501,6914,8534,7701,7788,7860,7063,7816,8091,9003,9052
Nigeria,Nile perch,Africa - Inland waters,Quantity (tonnes),4300,4300,4300,4800,4800,4800,4800,6000,6000,6000,6000,6000,7200,7200,7200,9600,12000,12600,12700,13200,18300,25000 F,25000 F,25000 F,25000 F,25000 F,25000 F,25000 F,25000 F,25000 F,24770,25624,26437,14050,9452,3357,...,9389,9389 F,9990 F,2066,5809,7939,9062,6118,4993,3746,4224,5250,6366,4447,6139,3030,6442,7760,9336,8223,8941,16705,11542,11800,11394,11921,13177,14025,11192
Nigeria,North African catfish,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,2658,8568,5268,9994,4474,10419,7375,11363,10988,18938,14027,15813,10836,23146,22879,23112,24034,26897,27320,21849
Nigeria,Snakeheads(=Murrels) nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,2096,2096 F,1842 F,238,171,1235,1073,185,368,921,86,2589,2038,2990,2951,3313,4571,6170,5470,3504,5960,10388,5515,4596,5676,6235,8881,9754,9819
Nigeria,Tilapias nei,Africa - Inland waters,Quantity (tonnes),2292,2146,2018,2200,2088,1982,1880,2481,2385,2292,2201,2112,2724,2638,2554,3870,5189,5508,5428,5649,8571,12794 F,12718 F,12641 F,12559 F,12475 F,12395 F,12313 F,12229 F,12140 F,12048 F,11951 F,11846 F,11733 F,13018 F,11931,13879,12890,12530 F,8242 F,10119,10025,11046,8003,7874,9060,10074,12614,16300,19662,13402,18332,17218,31205,22910,31756,30476,38878,47571,54241,56632,57984,59945,65560,68763,57423
Nigeria,Torpedo-shaped catfishes nei,Africa - Inland waters,Quantity (tonnes),3395,3380,3340,3661,3581,3502,3422,4343,4263,4184,4104,4025,4845,4765,4686,6506,8327,8747,8768,8988,13009,18429 F,18349 F,18270 F,18190 F,18111 F,18031 F,17952 F,17872 F,17793 F,18927,18617,19203,20916,16840 F,17537,8761,16277,14625 F,9489 F,25955,14966,13985,13292,13585,20745,8480,10202,17220,10963,14012,10925,7640,15656,9582,16193,14916,14302,32844,35172,37792,38309,38214,41267,44268,35723
Nigeria,Upsidedown catfishes,Africa - Inland waters,Quantity (tonnes),2200,2200,2200,2400,2400,2400,2400,3000,3000,3000,3000,3000,3600,3600,3600,4800,6000,6300,6400,6600,9100,11500,12500,12900,13501,13501,10544,10633,10724,11368,8910,8483,8752,10309,8030,5441,13482,5112,5112 F,5440 F,3626,3178,6844,3781,10909,9709,4466,5069,8781,8143,6054,6642,4055,8721,8245,10575,11534,9915,16010,13219,13995,14047,14046,15865,15900,10033
Niue,Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Norfolk Island,Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Northern Mariana Is.,Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,1,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Norway,Burbot,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1,1,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Norway,European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,9,3,...,...,...,...,...,...,...,10,-,-,-,-,-,-,-,-,-
Norway,Noble crayfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,10,10,10,...,...,...,...,...,...,0 0,0 0,...,...,...,...,...,...,...,...
Norway,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,13,7,...,...,...,...,...,...,...,11,-,-,-,-,-,-,-,-,-
Norway,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5,3,...,...,...,...,...,...,...,3,-,-,-,-,-,-,-,-,-
Norway,Roach,Europe - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,1,-,-,-,-,-,-,-,-,-
Oman,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Pakistan,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),3940,3900,7950,14500,15550,16090,16030,18160,18190,18510,18330,20330,20440,20730,20920,20900,20760,21320,25870,25900,24200,23500,23400,23500,22892,23615,24591,28938,30723,35919,41120,50710,53140,53859,62106,66588,75493,83131,89748,95299,103158,103153,109087,109185,118703,121405,142092,167530,163524,179865,176468,122468,114030,92794,93687,94644,140000,100000,108000,112355,115348,118223,120240,123155,128235,132456
Palau,Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
"Palestine, Occupied Tr.",Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Panama,Peacock cichlid,"America, North - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,56,54,37,...,15,50,80,28,285,120,65,35,12,7,4,8 F,13 F,18,12,8,10,6,19,23,11,11,17,16,9,11
Panama,Tilapias nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,-,-,...,...,...,...,50,50,146,194,-,-,-,-,-,-,-,10,15,56,11,13,16,12 F,10 F,8,394,2942,3545,3236,3124,1886,2002,1583,1397,622,355,394
Papua New Guinea,Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,...,...,...,...,...,...,...,...,...,5000,5000,10000 F,6190 F,6190 F,6190 F,7190 F,7190 F,7190 F,7190 F,7190 F,7130 F,6560 F,6650 F,6652 F,6644 F,6645 F,6649 F,6649 F,6641 F,6649 F,6655 F,6654 F,6654 F,6654 F,6654 F,6654 F,6654 F,6654 F,6654 F,6654 F,6654 F,6654 F,6654 F,6654 F,6654 F,6654 F
Papua New Guinea,"Gudgeons, sleepers nei",Oceania - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2000 F,2000 F,2000 F,2000 F,2000 F,2000 F,2000 F,2000 F,1980 F,1820 F,1850 F,1850 F,1850 F,1850,1850 F,1850 F,1850 F,1850 F,1850 F,1850 F,1850 F,1850 F,1850 F,1850 F,1850 F,1850 F,1850 F,1850 F,1850 F,1850 F,1850 F,1850 F,1850 F,1850 F
Papua New Guinea,Mozambique tilapia,Oceania - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,10,11,12,15,22,40,2500 F,2500 F,2500 F,2500 F,2500 F,2500 F,2500 F,2500 F,2500 F,2505 F,2480 F,2280 F,2310 F,2310 F,2310 F,2310,2310 F,2310 F,2310 F,2310 F,2310 F,2310 F,2310 F,2310 F,2310 F,2310 F,2310 F,2310 F,2310 F,2310 F,2310 F,2310 F,2310 F,2310 F,2310 F,2310 F
Papua New Guinea,Oceanian crayfishes nei,Oceania - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,3,12,0 0,0 0,5,5,5,5,5,5,5,5,5,5,5 F,5 F,5 F,5 F,3,11,10,6,6,14,6,0 0,1,1 F,1 F,1 F,1 F,1 F,1 F,1 F,1 F,1 F,1 F,1 F,1 F,1 F,1 F
Papua New Guinea,River prawns nei,Oceania - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,100,100,100,100,100,0 0,0 0,5,5,5,5,5,5,5,5,5,5,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F,5 F
Paraguay,Characins nei,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,700,1000,2000,4000,3100,3100,3400,3990,4490,6500,7000 F,7350 F,7700 F,8000 F,10000 F,10000 F,10000 F,10000 F,9000 F,8700 F,8400 F,8100 F,7800 F,7500 F,7200 F,6900 F,6600 F,6300 F,6000 F,6000 F,6000 F,6000 F,6000 F
Paraguay,Freshwater fishes nei,"America, South - Inland waters",Quantity (tonnes),400,400,400,400,400,500,500,500,500,600,600,600,600,700,700,700,700,800,1000,1400,1800 F,2200 F,2500 F,2700,2700 F,2800 F,2900 F,3000 F,3100 F,3200 F,3300 F,3350 F,3400 F,1400,2000,2500,3000,2300,2300,2500,2500,2500,3425,3500 F,3650 F,3800 F,4000 F,5000 F,5000 F,5000 F,5000 F,4000 F,3900 F,3800 F,3700 F,3600 F,3500 F,3400 F,3300 F,3200 F,3100 F,3000 F,3000 F,3000 F,3000 F,3000 F
Paraguay,Freshwater siluroids nei,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1400,2000,3000,6000,4600,4600,5100,6000,6000,8000,8500 F,9000 F,9500 F,10000 F,13000 F,13000 F,13000 F,13000 F,12000 F,11600 F,11200 F,10800 F,10400 F,10000 F,9600 F,9200 F,8800 F,8400 F,8000 F,8000 F,8000 F,8000 F,8000 F
Peru,Arapaima,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,420,457,465,210,338,273,204,155,225,169,171,374,246,232,326,258,227,287,303,298,1092
Peru,Cachama,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6,...,...,...,...,693,762,254,1016,963,904,675,605,900,315,381,403,461,423,425,346,149,144,120,231
Peru,Freshwater fishes nei,"America, South - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,1000,1000,1000,1000,1000,1000,3000,2000,2000,4000,3000,3000,3000,3000,3000,2000,2500,3000,5400,5514,6671,6280,12597,14064,14426,12538,16974,17357,33019,29732,27791,32548,36378,39427,33799,28321,42376,32734,37987,48837,44452,19524,27941,28522,24018,19344,22568,17941,20577,23800,27569,30613,28727,31438,31130,32816,26412,21901,18617,15579,22803
Peru,Netted prochilod,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5088,7448,2007,6117,9768,10942,11220,10133,10461,11705,10957,5130,12150,12323,12474,9635,8719,10140,7197,7858,12078
Peru,Pirapatinga,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,62,...,...,...,...,397,...,166,648,324,487,471,419,440,551,363,309,298,510,290,211,339,216,180,433
Peru,Velvety cichlids,"America, South - Inland waters",Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,320,308,177,141,251,188,183,213,186,218,273,254,430,394,574,653,452,391,385,318,571
Philippines,Blue swimming crab,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,1232,732,73,55,34,32,1,5,67,69,216,353,264,226,258,286,259,279,224,287,210,317,310
Philippines,Climbing perch,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1005,1225,1206,498,1389,1444,1104,1401,1084,1996,2147,1970,1193,1900,2335,1534,1629,1825,2330,2321,2022,2566,2308,2307,2393,2169
Philippines,Cyprinids nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,4555,5741,20579,9709,16493,13549,8287,29188,10091,5356,16162,11031,12055,11329,12072,11622,11444,7117,5568,8880,6497,5717,6453,4677,5032,5562,9127,9007,10462,9726,10085,15435,18465,21650,22236,24799,26808,28458,32236,30688
Philippines,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),500,8000,16200,18000,18000,19000,19000,19000,20300,20300,20300,20300,20300,20300,20300,20300,20300,20300,45400,48700,58580,63230,65400,66300,76710,86020,3050,7246,439,8322,9303,9211,11733,40083,31548,22550,25881,19558,15742,19923,15722,13442,13237,8264,5093,6796,5419,6947,3920,3694,3917,3878,7854,7744,8421,9035,8100,10867,8704,8059,7847,7882,8501,9035,9217,12280
Philippines,Freshwater gobies nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,4385,4873,1332,7587,13401,9651,9951,19405,9370,7809,7308,6129,8006,7428,7915,7370,7257,9160,4466,3431,3585,4300,3803,4027,4563,4280,5920,5871,5649,5415,5688,5450,6111,5906,5619,5611,5412,5334,5676,3988
Philippines,Freshwater molluscs nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,62999,63344,103244,159406,179754,158537,194571,209101,193449,165170,149980,164769,153128,140615,149840,151451,149134,134891,147076,120547,122636,101841,90154,87259,85575,68958,52571,49832,53191,56718,63314,61775,62781,60722,60898,63205,64527,63654,59428,57690
Philippines,Giant river prawn,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,7,6,6,2025,281,422,711,514,397,200,252,262,291,414,688,836,877,1456,1440,1544,1400,1616,1475,1664,1673,1480
Philippines,Indo-Pacific swamp crab,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,301,224,62,188,179,158,156,321,145,329,363,267,42,46,67,150,219,421,376,483,479,719,767,788,821,896,987,888,1046,897
Philippines,Natantian decapods nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,27500,29600,29200,27500,29900,30200,22658,16251,16002,16242,8152,8493,8481,5632,10805,9329,12937,15977,18997,10854,7377,8394,8938,8886,8750,1326,3657,4159,4503,3768,1617,3715,3768,4245,4811,5125,5414,5429,5460,5925,6268,5982,5793,6340,6293,6359,6430,6363
Philippines,Snakeskin gourami,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1274,1430,1408,369,1150,1185,620,2065,1628,2619,3736,3536,2830,3279,4831,3832,5063,5343,6108,6352,6153,7272,6608,6840,6431,5666
Philippines,Striped snakehead,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1308,3228,8728,2946,7025,7863,7609,25751,11420,12009,10508,7521,6933,7199,7671,7331,7219,13104,5619,6018,5457,4547,4856,5789,6386,6698,7388,7476,8261,8126,8298,8875,10000,10470,9906,10678,10703,10865,11199,11754
Philippines,Tilapias nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,7347,5973,10142,8219,5326,9849,10549,34277,22295,10063,13975,17824,19960,19972,21282,19760,19458,19071,17649,21244,17663,20935,23477,25278,28874,28881,30586,32136,31922,32501,39734,37648,42704,43463,44896,45784,47439,48938,54180,50474
Philippines,Torpedo-shaped catfishes nei,Asia - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1006,1624,5574,1015,4137,2905,2588,1892,4406,5740,7681,5220,4271,4542,4840,4718,4646,6574,2100,2669,2696,2396,1628,2058,2200,2366,2601,2629,3205,3314,3687,4607,5517,5685,5137,5491,5768,6202,6211,6263
Pitcairn Islands,Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Poland,Asp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,6,5,6,6,11,13,10,10,10,11,10,18,19,16,12,12
Poland,Barbel,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,2,1,1,1,1,1,0 0,1,0 0,0 0,0 0,1,1,1,0 0,1
Poland,Bleak,Europe - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,2,2,4,8,3,6,2,5,1
Poland,Burbot,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,0 0,0 0,1,0 0,0 0,0 0,0 0,1,1,1,1
Poland,Chub,Europe - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,0 0,1,0 0,0 0,1,1,1,1,1,2,1,2,2,2,2
Poland,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,77,82,78,37,45,50,54,48,62,112,41,51,43,44,33,47,47,30,28,17
Poland,Common nase,Europe - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,0 0,-,0 0,0 0,0 0,0 0,0 0,1,0 0,0 0,0 0,0 0,0 0
Poland,Crucian carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,9,14,16,34,34,30,30,30,30,30,60,46,49,47,46,92,84,111,119,100,108,102,91,111,115,85,110,99,95,90,90
Poland,Cyprinids nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,2,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,395,330,-,0 0,1,1,1,0 0,-,-,-,-,-,-,-,-,-,-,-
Poland,Euro-American crayfishes nei,Europe - Inland waters,Quantity (tonnes),-,-,-,100,0 0,0 0,0 0,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,13,5,4,6,4,1,-,-,1,-,1,3,5,9,7,7,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,0 0,-,-,-,-
Poland,European perch,Europe - Inland waters,Quantity (tonnes),-,-,-,200,100,100,100,100,200,100,100,200,200,200,200,200,400,400,500,200,200,100,100,100,127,293,172,176,138,166,124,146,121,147,180,106,107,102,119,119,120,120,120,120,120,224,601,179,163,186,297,245,267,224,218,175,165,171,174,147,138,160,165,169,162,138
Poland,Freshwater bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,1000,1000,1000,1600,1700,1600,2700,3000,2800,1700,1600,1800,1700,1900,1800,1900,1800,1900,2100,2249,2117,3289,2509,2214,2570,1925,1677,2342,1981,2210,1914,2588,2113,2290,2290,2300,2500,2500,2400,2400,1043,3053,1498,1013,1291,1883,1859,1797,1962,1776,1240,1068,1051,1004,861,766,1047,892,988,929,847
Poland,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),400,400,500,800,600,1600,1600,1700,1800,2800,2600,2800,2700,2900,3300,2500,2400,2000,2100,2700,2300,2600,2500,2400,2175,2479,3417,3070,4483,3995,4593,4499,6681,6438,5739,2265,3583,3600,1621,1621,11978,11688,14138,24769,20898,20871,13345,9500,10000,10200,12120,13035,14035,15038,16039,16045,16059,16030,16014,16024,16022,16017,16012,16007,16011,16014
Poland,Grass carp(=White amur),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,1,2,2,2,2,2,2,0 0,3,4,11,4,2,4,4,5,5,3,8,3,2,2,3,1,3,2,2,2,2
Poland,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,800,800,800,800,600,800,900,600,700,700,700,700,700,800,600,700,600,500,600,600,600,467,475,363,358,254,324,271,287,408,413,551,251,247,296,349,349,350,350,350,350,350,245,1076,280,226,262,363,302,345,354,316,264,252,322,319,281,255,325,293,294,300,253
Poland,Orfe(=Ide),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,9,18,18,20,20,20,20,20,0 0,0 0,-,-,-,9,7,7,7,7,8,5,6,5,7,8,7,7,6,7,7
Poland,Pike-perch,Europe - Inland waters,Quantity (tonnes),-,-,-,200,100,100,100,100,200,200,200,600,500,400,200,200,200,200,300,200,200,200,200,200,221,205,214,185,160,198,148,145,227,221,350,219,220,184,225,225,230,230,230,230,230,208,289,150,128,136,203,162,214,201,162,126,136,145,138,102,95,132,123,138,149,129
Poland,Roach,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,1500,1500,1400,1800,1800,1600,1900,2200,2300,2200,2000,2000,2100,2200,2000,2100,2000,2000,2000,2121,2337,1587,2486,1862,2334,1898,2091,2976,2631,2990,2364,2452,2461,1989,1989,2000,2000,2000,2000,2000,1050,2185,792,593,653,947,837,800,830,680,518,489,416,374,412,349,390,339,332,296,263
Poland,Silver carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,0 0,6,6,6,6,6,6,0 0,198,211,180,106,136,185,120,198,203,115,154,87,83,58,83,66,40,30,27,28,30
Poland,Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,...,...,...,...,...,247,258,199,149,157,103,111,111,100,100,100,100,100,70,97,101,91,102,160,113,141,145,108,117,131,132,138,141,134,160,155,159,173,137
Poland,Vimba bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5,2,1,0 0,2,2,0 0,1,2,1,1,1,5,3,0 0,1
Poland,Wels(=Som) catfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,...,...,...,...,...,...,...,2,6,6,6,6,6,6,0 0,0 0,0 0,0 0,1,1,7,4,4,7,5,9,9,9,8,9,9,11,10,10,11,9
Poland,White bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,18,14,27,46,46,50,50,50,50,50,267,373,...,...,235,490,400,398,316,325,227,212,181,178,172,125,124,154,129,149,163
Portugal,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,0 0,-,-,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Portugal,Crucian carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,6,1,0 0,0 0,0 0,2,3,4,2,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-
Portugal,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),200,200,300,200,300,300,300,300,400,300,300,200,200,200,400,0 0,0 0,0 0,200,0 0,-,-,-,-,-,17,18,30,6,-,-,-,-,-,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,1,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,1,12,1,4,6,1,0 0,0 0,0 0,1,0 0,1,1,3,1
Portugal,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,1,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Portugal,Tench,Europe - Inland waters,Quantity (tonnes),-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,...,1,...,...,...,...,...,0 0,0 0,-,-
Puerto Rico,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Qatar,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Romania,Asp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,11,7,17,4,7,2,3,4,10,10,22,27,23,24,22 F,21 F,20 F,19
Romania,Barbel,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,32,11,17,34,12,10,22,22,21,23,62,45,33,29,26 F,23 F,20 F,17
Romania,Bighead carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,1925,573,200,8,64,353,2123,2260,2372,1521,1385,1148,1047,1103,700,449,299,369,396,356,313,278,1,5,4,37,21,14,19,13,21,45 F,70 F,95 F,119
Romania,Bleak,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,24,16,30,60,27,0 0,0 0,11,15,10,35,30,13,15,14 F,12 F,10 F,8
Romania,Chub,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,45,17,24,...,...,...,...,...,...,...,7,-,-,-,-,-,-,-
Romania,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,601,632,2344,2614,1722,1317,964,678,562,560,577,441,173,147,310,458,566,486,342,227,204,187,175,321,192,106,117,142 F,167 F,192 F,217
Romania,Common nase,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,20,20,9,10,5,7,4,4 F,3 F,2 F,2
Romania,Crucian carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,107,51,2,-,-,-,1,-,-,-,-,-,-,-,-,-,33,2,23,128,97,87,0 0,0 0,-,-,-,-,4,-,49,-,-,-,-
Romania,Cyprinids nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,9291,1618,...,1830,1059,1355,1200,1035,500,300,274,337,153,112,16,396,126,39,298,282,242,30,-,16,9,42,35,-,2,3 F,4 F,5 F,6
Romania,Euro-American crayfishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,300,200,...,...,200,72,53,57,55,19,29,37,58,32,62,18,25,30,11,-,0 0,-,-,-,-,-,-,-,181,65,56,32,...,3,0 0,0 0,1,1,-,-,-,-,-,-,-,-,-
Romania,European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,364,353,347,356,326,491,524,558,-,-,-,-,-,-,39,38,8,40,60,28,42,32,87,50,28,68,44,31,25,21,25,35 F,45 F,55 F,65
Romania,Freshwater bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1124,2136,1962,1940,1223,1580,2394,2405,1261,1204,836,711,468,1090,1604,827,328,951,1052,936,800,911,1828,615,581,1278,1090,988,705,339,267,300 F,340 F,380 F,415
Romania,Freshwater breams nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,3,1,-,-,7,190,-,-,-,-,-,-,-,-,-,-,-,-
Romania,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),10000,10000,15000,15000,15000,17000,17000,16000,15800,16000,15300,14500,11000,15900,9790,7350,8000,15800,13500,13000,14050,8700 F,4590,12550,6276,12234,10577,17981,9506,13540,16937,2065,2970,624,1473,1862,2065,3123,955,1393,1601,500,326,369,313,27,67,5,-,-,169,188,230,1327,38,162,604,133,15,9,4,1,7 F,13 F,19 F,25
Romania,Goldfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,5640,4121,2948,1643,7688,6959,6782,7418,5151,1673,2282,2368,2135,2130,2320,1954,817,1113,1199,1212,1149,1097,2348,1447,1917,2507,2907,1642,1246,851,1105,1360 F,1610 F,1860 F,2121
Romania,Grass carp(=White amur),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,74,28,100,230,56,68,881,940,697,678,589,544,397,360,170,124,12,46,21,83,73,10,0 0,3,5,36,12,1,1,-,4,10 F,16 F,22 F,28
Romania,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,680,266,115,110,190,331,214,114,21,-,19,27,8,10,11,8,4,40,47,47,95,83,173,44,105,210,136,58,76,80,95,140 F,185 F,230 F,273
Romania,Orfe(=Ide),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,1,5,1,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Romania,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,502,464,569,375,606,475,318,221,190,272,255,182,361,859,353,94,30,78,154,155,92,118,141,79,114,203,252,227,219,169,83,110 F,135 F,160 F,184
Romania,Roaches nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2069,2222,1394,1663,1812,2097,2326,2675,2376,825,937,709,670,1295,693,301,125,292,234,174,278,276,579,159,177,250,354,360,265,174,167,190 F,215 F,240 F,268
Romania,Rudd,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2,3,1,8,23,14,11,16 F,20 F,24 F,28
Romania,Silver carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,350,555,80,114,302,606,3771,4045,2840,2758,2368,1982,1779,1708,1950,1272,1940,428,1308,634,644,411,3,16,39,29,29,129,88,74,62,88 F,110 F,133 F,151
Romania,Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,251,104,27,3,6,32,35,28,-,-,-,-,-,-,-,-,-,2,7,4,31,19,29,10,22,51,27,7,11,13,27,32 F,37 F,42 F,47
Romania,Vimba bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,26,10,31,3,2,2,1,-,4,14,9,13,7,6,22,26 F,29 F,32 F,35
Romania,Wels(=Som) catfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,432,393,366,263,277,281,325,160,88,92,53,49,66,113,72,22,9,58,87,73,116,120,277,103,103,233,236,212,144,131,132,160 F,188 F,215 F,240
Romania,White bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,20,26,13,7,8,10,32,30 F,27 F,24 F,21
Russian Federation,Asp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,553,190,298,20,141,177,333,262,216,103,116,140,171,130,133,120,97,123,293,244,212,308,462,414,729,540,424,190
Russian Federation,Burbot,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,3713,3222,3055,3036,2106,1746,881,993,1531,1533,2121,1763,1765,1628,1683,2422,2034,2112,2455,1740,1572,2300,2373,2862,2513,2438,2381,2213
Russian Federation,Common carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,36104,1196,-,-,4403,1645,2637,752,3933,2713,3212,3507,4007,2698,2614,2525,1917,2257,2302,3564,2643,2436,3430,2377,3280,5159,5211,3522
Russian Federation,Crucian carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,18710
Russian Federation,Cyprinids nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,15788,17172,14557,8227,17741,19550,12453,14217,14103,17070,23346,20496,20390,18082,19855,19708,20428,20324,20945,27585,25467,26192,38688,33287,25295,25851,24857,3113
Russian Federation,Euro-American crayfishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,214
Russian Federation,European perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5428,3695,2738,2993,4564,2652,2376,3236,3922,3342,4459,3655,4026,3824,6649,7702,6370,4913,6158,7183,7658,8565,11351,14674,12880,14906,14788,11045
Russian Federation,Freshwater bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,32158,43048,30755,34195,29089,28006,28154,29142,29050,29507,31715,25360,23794,27263,27670,24678,20174,21937,21062,30443,31101,27886,30626,23694,26115,22418,20629,20116
Russian Federation,Freshwater breams nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2972,3570,2605,6003,2692,2711,1870,2175,2298,1539,2060,1940,2162,2153,1886,2010,1679,1505,1667,1696,1641,1852,1963,2157,2168,3169,2379,2177
Russian Federation,Freshwater crustaceans nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,19,19,22,10,40,8,5,13,36,34,33,41,957,1733,1754,3107,3392,3175,2631,3748,7254,3349,3459,4564,3224,2538,3611,4037
Russian Federation,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,49388,33376,43158,3580,63,1825,12282,1057,836,2454,1217,1818,13111,3887,5078,11291,6602,4520,5640,7353,13440,791,5551,1117,7865,10676,11031,7675
Russian Federation,Freshwater molluscs nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,201,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Russian Federation,Goldfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,231,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Russian Federation,Grass carp(=White amur),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,142,334,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,1,1,-,11,73,319,85
Russian Federation,Northern pike,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,14816,9328,7963,9699,6062,5721,4367,4938,5708,4676,5567,6325,8863,8387,9741,10167,8606,7978,8693,9396,9278,15988,10348,11008,10801,11966,10893,12435
Russian Federation,Orfe(=Ide),Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5728,5255,4529,2439,2263,2560,2093,1977,2914,3037,3280,2604,2378,2257,2492,4021,3511,4596,2896,2972,3379,4837,5143,5095,4597,5765,5930,5004
Russian Federation,Pike-perch,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,5459,8439,8654,10088,7615,4975,3212,3271,3994,4082,3161,3644,3863,3427,4036,4116,3291,3121,3372,3432,2835,2515,3483,3350,3697,5598,5986,3970
Russian Federation,Roaches nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,41945,33619,35274,26028,28443,25557,22180,19630,21888,15864,15950,10355,13973,14545,16300,15028,10942,10122,10671,11512,13202,12527,15745,16573,17026,17726,17189,13510
Russian Federation,Rudd,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,7967,9258,8868,7415
Russian Federation,Ruffe,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,988
Russian Federation,Sichel,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2759,1113,1722,1591,1375,1343,1728,1047,881,762,1645,1430,1198,1022,928,870,601,521,535,507,643,719,1279,1158,1285,2771,2396,1233
Russian Federation,Silver carp,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,22975,...,...,...,...,...,...,...,...,...,31,11,8,11,8,12,19,2,6,16,41,47,39,42,51,458,1952,909
Russian Federation,Tench,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1572,766,558,1808,1398,879,1501,1300,1042,1647,1379,1475,1904,1409,1456,1417,1367,1488,1686,1601,1503,2622,3729,2094,1916,1329,1104,987
Russian Federation,Water fleas,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,25
Russian Federation,Wels(=Som) catfish,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,10320,11105,11670,13511,5820,4107,3915,4590,5864,7026,9305,7031,7199,6540,5978,6010,4782,5381,6174,7167,6631,11732,10980,7051,7993,7380,7393,7326
Russian Federation,White bream,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,4624,7645,7155,4786
Rwanda,Cichlids nei,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2233,2640,2646,2650,2750 F,2800,3120,-,-,-,-,-,-,-,-,-,-,-
Rwanda,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),200,200,200,300,300,300,300,400,400,400,500,500,500,500,700,700,700,800,800,800,900,900,800,1000,1368,1198,1008,1325,715,954,1200,955,1210,1212,786,906,1485,1630,1290,1472,2350,3503,3644,3500 F,3400 F,3300 F,2952,4428,4408,3793,4080,4178,4250 F,4600,4706,-,-,-,-,-,-,-,-,-,-,-
Rwanda,Lake Tanganyika sardine,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,4625,4849,5976,8063,7879,9113,12489,13524,16254,16896,17920
Rwanda,Marbled lungfish,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,10 F,36 F,40,57,96,123,254,306,539,787,951
Rwanda,Mouthbrooding cichlids,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,1576 F,2367 F,2695,2827,2668,2768,2568,2824,3238,3529,4206
Rwanda,Nile tilapia,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,500 F,317 F,293,301,437,443,938,1377,1173,2002,3980
Rwanda,North African catfish,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,70,89,113,218,341,405,613,762,986,1637,1867
Rwanda,Silver cyprinid,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,35,53,69,121,131,148,132,187,200,308,410
Réunion,Bichique,Africa - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,2,2,2,1,2,1,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Réunion,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,...,...,...,...,...,...,...,...,...,...,...,...,...,...
Saint Helena,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-
Saint Kitts and Nevis,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Saint Lucia,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Saint Vincent/Grenadines,Freshwater fishes nei,"America, North - Inland waters",Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,2,1,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Samoa,Freshwater fishes nei,Oceania - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,1,1 F,1 F,1 F,1 F,1 F,1,1 F,1 F,1 F,1 F,1 F,1 F,1 F,1 F,1 F
San Marino,Freshwater fishes nei,Europe - Inland waters,Quantity (tonnes),...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,...,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Sao Tome and Principe,Freshwater fishes nei,Africa - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0
Saudi Arabia,Freshwater fishes nei,Asia - Inland waters,Quantity (tonnes),0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0