File size: 120,624 Bytes
21626e7 | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 | [
{
"id": "H-3.3-s1",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "1",
"marginal_note": "Short title",
"part": "",
"division": "",
"heading": "Short Title",
"text": "1 This Act may be cited as the Health of Animals Act.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 1",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-1.html"
},
{
"id": "H-3.3-s2",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "2",
"marginal_note": "Definitions",
"part": "",
"division": "",
"heading": "Interpretation",
"text": "2\n(1) In this Act,\nanalyst means a person designated as an analyst pursuant to section 32; (analyste)\nanimal includes an embryo and a fertilized egg or ovum; (animal)\nanimal by-product includes blood or any of its components, bones, bristles, feathers, flesh, hair, hides, hoofs, horns, offal, skins and wool, and any thing containing any of those things; (sous-produit animal)\nanimal deadyard means a place where animal carcasses, animal by-products or disabled or diseased animals are brought when they are not to be prepared for human consumption; (atelier d’équarrissage)\nanimal food means any thing that is capable of being a nutriment for animals and includes any of the constituent elements of an animal ration; (aliments pour animaux)\nanimal product includes cream, eggs, milk, non-fertilized ova and semen; (produit animal)\nAssessor means the Assessor or any Deputy Assessor appointed under Part II of the Pesticide Residue Compensation Act; (évaluateur)\nconveyance means any aircraft, carriage, motor vehicle, trailer, railway car, vessel, cargo container or other contrivance used to move persons, animals or things; (véhicule)\ncustoms officer means a person employed in the administration and enforcement of the Customs Act and includes any member of the Royal Canadian Mounted Police; (agent des douanes)\ndisease includes\n(a) a reportable disease and any other disease that may affect an animal or that may be transmitted by an animal to a person, and\n(b) the causative agent of any such disease; (maladie)\ndispose includes slaughter or otherwise destroy, bury or render; (Version anglaise seulement)\ndocument means anything on which information that is capable of being understood by a person, or read by a computer or other device, is recorded or marked; (document)\nhatchery means, subject to any regulations made under subsection (2), a place where eggs are incubated or chicks are hatched; (couvoir)\ninfected place means a place that is constituted to be an infected place under section 22 or 23 or under the regulations; (lieu contaminé)\ninspector means a person designated as an inspector pursuant to section 32; (inspecteur)\njustice means a justice as defined in section 2 of the Criminal Code; (juge de paix)\nMinister means the Minister of Agriculture and Agri-Food; (ministre)\nofficer means a person designated as an officer pursuant to section 32, but does not include an analyst; (agent d’exécution)\npeace officer means a peace officer as defined in section 2 of the Criminal Code; (agent de la paix)\npenalty means an administrative monetary penalty imposed under the Agriculture and Agri-Food Administrative Monetary Penalties Act for a violation; (sanction)\nplace includes a conveyance; (lieu)\nprescribed means prescribed by regulation; (Version anglaise seulement)\nrendering plant means a place\n(a) where animal by-products are prepared or treated for use in, or converted into, fertilizers, animal food, fats or oils, other than fats or oils used for human consumption,\n(b) where a substance resulting from a process mentioned in paragraph (a) is stored, packed or marked, or\n(c) from which a substance resulting from a process mentioned in paragraph (a) is shipped; (usine de traitement)\nreportable means prescribed as reportable by the Minister; (déclarable)\ntoxic substance means a substance prescribed as toxic by the Minister; (substance toxique)\nTribunal means the Review Tribunal continued by subsection 27(1) of the Agriculture and Agri-Food Administrative Monetary Penalties Act; (Commission)\nvector means an animal that has the potential to transmit a disease, directly or indirectly, from one animal or its excreta to another animal; (vecteur)\nveterinary biologic means a thing that is manufactured, sold or represented for use in restoring, correcting or modifying organic functions in animals or for use in the diagnosis, treatment, mitigation or prevention of a disease, disorder or abnormal physical state — or its symptoms — in animals and that is\n(a) a helminth, protozoa or micro-organism,\n(b) a substance or mixture of substances derived from animals, helminths, protozoa, micro-organisms or plants, or\n(c) a substance of synthetic origin; (produit biologique vétérinaire)\nveterinary inspector means a veterinarian designated as an inspector pursuant to section 32; (vétérinaire-inspecteur)\nviolation means\n(a) any contravention of any provision of this Act or of a regulation made under this Act, or\n(b) any refusal or neglect to perform any duty imposed by or under this Act,\nthat may be proceeded with in accordance with the Agriculture and Agri-Food Administrative Monetary Penalties Act. (violation)\n(2) [Ministerial regulations] The Minister may make regulations excluding places from the definition hatchery and prescribing reportable diseases and toxic substances.\n(3) [Incorporation by reference] Toxic substances may be prescribed\n(a) in terms of the quantity or concentration in which substances are contained in other substances; and\n(b) by reference to substances specified in any published document, as amended from time to time.",
"history": "1990, c. 21, s. 2; 1994, c. 38, s. 25; 1995, c. 40, s. 54; 1997, c. 6, s. 67; 2001, c. 4, s. 173(F); 2012, c. 24, s. 93; 2015, c. 2, s. 84",
"last_amended": "2019-01-15",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 2",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-2.html"
},
{
"id": "H-3.3-s3",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "3",
"marginal_note": "Binding on Her Majesty",
"part": "",
"division": "",
"heading": "Application",
"text": "3 This Act is binding on Her Majesty in right of Canada or a province.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 3",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-3.html"
},
{
"id": "H-3.3-s4",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "4",
"marginal_note": "Limits of ports, etc.",
"part": "",
"division": "",
"heading": "Application",
"text": "4 The Governor in Council may, by order, define the limits of ports and of other places for the purposes of this Act.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 4",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-4.html"
},
{
"id": "H-3.3-s5",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "5",
"marginal_note": "Notification by owner, etc.",
"part": "",
"division": "",
"heading": "Notification and Samples",
"text": "5\n(1) A person who owns or has the possession, care or control of an animal shall notify the nearest veterinary inspector of the presence of a reportable disease or toxic substance, or any fact indicating its presence, in or around the animal, immediately after the person becomes aware of the presence or fact.\n(2) [Notification by veterinarian, etc.] Immediately after a person who is a veterinarian or who analyses animal specimens suspects that an animal is affected or contaminated by a reportable disease or toxic substance, the person shall so notify a veterinary inspector.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 5",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-5.html"
},
{
"id": "H-3.3-s6",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "6",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Notification and Samples",
"text": "6 [Repealed, 2015, c. 2, s. 85]",
"history": "",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 6",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-6.html"
},
{
"id": "H-3.3-s7",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "7",
"marginal_note": "Notice forbidding entry",
"part": "",
"division": "",
"heading": "Notification and Samples",
"text": "7\n(1) Where\n(a) there exists in an area a disease or toxic substance that is capable of affecting animals, and\n(b) reasonable steps have been taken by the Minister to\n(i) bring the existence of the disease or toxic substance to the attention of persons having the possession, care or control of animals in the area, and\n(ii) make those persons aware of the requirements of this subsection,\nevery person in that area who owns or has the possession, care or control of an animal shall affix at the entrance to the building or other enclosed place in which the animal is kept a notice forbidding entry without the person’s permission.\n(2) [Notice forbidding entry without permission] A person who owns or has the possession, care or control of an animal shall affix at the entrance to the building or other enclosed place in which the animal is kept a notice forbidding entry without the permission of an inspector or officer where there exists in the area a disease or toxic substance that is capable of affecting the animal and the inspector or officer requires such a notice to be so affixed.\n(3) [Prohibition] No person shall knowingly enter a building or other enclosed place in contravention of a notice affixed under this section, unless the person has a right of entry or way into the building or place or any part thereof or an inspector or officer has authorized the entry.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 7",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-7.html"
},
{
"id": "H-3.3-s8",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "8",
"marginal_note": "Concealment",
"part": "",
"division": "",
"heading": "Prohibitions",
"text": "8 No person shall conceal the existence of a reportable disease or toxic substance among animals.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 8",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-8.html"
},
{
"id": "H-3.3-s9",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "9",
"marginal_note": "Keeping diseased animals",
"part": "",
"division": "",
"heading": "Prohibitions",
"text": "9 No person shall turn out, keep or graze on any undivided or unenclosed land any animal that the person knows is affected or contaminated by, or has been exposed to, any reportable disease or toxic substance.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 9",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-9.html"
},
{
"id": "H-3.3-s10",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "10",
"marginal_note": "Bringing diseased animals to market",
"part": "",
"division": "",
"heading": "Prohibitions",
"text": "10 No person shall, without a licence issued by an inspector or officer, bring into any market, fair or other place any animal that is known by the person to be affected or contaminated by, or has been exposed to, any reportable disease or toxic substance.",
"history": "1990, c. 21, s. 10; 2015, c. 3, s. 100(F)",
"last_amended": "2015-02-26",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 10",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-10.html"
},
{
"id": "H-3.3-s11",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "11",
"marginal_note": "Selling or disposing of diseased animals",
"part": "",
"division": "",
"heading": "Prohibitions",
"text": "11 No person shall, without a licence issued by an inspector or officer, sell or offer or expose for sale or otherwise transfer the ownership of\n(a) any animal or any part of an animal that the person knows is affected or contaminated by, or has been exposed to, any reportable disease or toxic substance, or\n(b) any animal product or animal by-product that the person knows was obtained from an animal that was affected or contaminated by, or was exposed to, any reportable disease or toxic substance at the time of its death,\nwhether or not the person is the owner of the animal, animal product or animal by-product.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 11",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-11.html"
},
{
"id": "H-3.3-s11.1",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "11.1",
"marginal_note": "Recall order — Canadian Food Inspection Agency Act",
"part": "",
"division": "",
"heading": "Prohibitions",
"text": "11.1 No person shall sell an animal or thing regulated under this Act that is the subject of a recall order referred to in subsection 19(1) of the Canadian Food Inspection Agency Act.",
"history": "2015, c. 2, s. 86",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 11.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-11.1.html"
},
{
"id": "H-3.3-s12",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "12",
"marginal_note": "Throwing carcasses into water",
"part": "",
"division": "",
"heading": "Prohibitions",
"text": "12 No person shall throw or place in any body of water the carcass or any part of an animal that at the time of its death was to the person’s knowledge affected or contaminated by, or was exposed to, any disease or toxic substance, or that was destroyed because it was, or was suspected of being, affected or contaminated by a disease or toxic substance.",
"history": "1990, c. 21, s. 12; 2015, c. 2, s. 87(F)",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 12",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-12.html"
},
{
"id": "H-3.3-s13",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "13",
"marginal_note": "Digging up carcasses",
"part": "",
"division": "",
"heading": "Prohibitions",
"text": "13\n(1) No person shall, without lawful authority or excuse, dig up all or any part of the buried carcass of an animal that died or is suspected of having died as a result of being affected or contaminated by a disease or toxic substance, or that was destroyed because it was, or was suspected of being, affected or contaminated by a disease or toxic substance.\n(2) [Experimentation and examination] The Minister may\n(a) reserve for experimentation an animal required to be destroyed under this Act or the carcass of an animal destroyed under this Act; and\n(b) authorize an inspector or officer to perform a post mortem examination of the carcass of an animal that has died or is suspected of having died from a disease or toxic substance and, if the carcass is buried, to dig it up for the purpose of the examination.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 13",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-13.html"
},
{
"id": "H-3.3-s14",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "14",
"marginal_note": "Regulations prohibiting importation",
"part": "",
"division": "",
"heading": "Importation",
"text": "14 The Minister may make regulations prohibiting the importation of any animal or other thing into Canada, any part of Canada or any Canadian port, either generally or from any place named in the regulations, for such period as the Minister considers necessary for the purpose of preventing a disease or toxic substance from being introduced into or spread within Canada.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 14",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-14.html"
},
{
"id": "H-3.3-s15",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "15",
"marginal_note": "Prohibition of possession or disposition",
"part": "",
"division": "",
"heading": "Importation",
"text": "15\n(1) No person shall possess or dispose of an animal or thing that the person knows was imported in contravention of this Act or the regulations.\n(2) [Presumption] In any prosecution for an offence under subsection (1), an accused who is found to have been in possession of an animal or thing that was imported in contravention of this Act or the regulations shall be considered, in the absence of evidence to the contrary, to have known that the thing was so imported.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 15",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-15.html"
},
{
"id": "H-3.3-s16",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "16",
"marginal_note": "Importation into Canada",
"part": "",
"division": "",
"heading": "Importation",
"text": "16\n(1) Where a person imports into Canada any animal, animal product, animal byproduct, animal food or veterinary biologic, or any other thing used in respect of animals or contaminated by a disease or toxic substance, the person shall, either before or at the time of importation, present the animal, animal product, animal by-product, animal food, veterinary biologic or other thing to an inspector, officer or customs officer who may inspect it or detain it until it has been inspected or otherwise dealt with by an inspector or officer.\n(2) [Regulations] The Minister may make regulations for exempting animals or things from the application of this section and respecting the manner of presenting things for inspection.",
"history": "1990, c. 21, s. 16; 2015, c. 2, s. 88(F)",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 16",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-16.html"
},
{
"id": "H-3.3-s17",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "17",
"marginal_note": "Forfeiture of imports",
"part": "",
"division": "",
"heading": "Importation",
"text": "17 Subject to section 18, if the Minister determines that an animal or thing has been imported — or an attempt has been made to import an animal or thing — in contravention of this Act or the regulations or that a requirement imposed by or under the regulations in respect of an imported animal or thing has not been met, it is forfeited to Her Majesty in right of Canada and may be disposed of as the Minister may direct.",
"history": "1990, c. 21, s. 17; 2015, c. 2, s. 89",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 17",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-17.html"
},
{
"id": "H-3.3-s18",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "18",
"marginal_note": "Removal or destruction of unlawful imports",
"part": "",
"division": "",
"heading": "Importation",
"text": "18\n(1) An inspector or officer who has reasonable grounds to believe that an imported animal or thing has been imported in contravention of this Act or the regulations, is or could be affected or contaminated by a disease or toxic substance or is a vector or that a requirement imposed by or under the regulations in respect of an imported animal or thing has not been met may, by notice, whether the animal or thing is seized or not, order its owner or importer or the person having possession, care or control of it to remove it from Canada or, if removal is not possible, to dispose of it.\n(2) [Notice] The notice must either be delivered personally to the owner or importer of the animal or thing or to the person having possession, care or control of it or be sent by registered mail to the owner’s, importer’s or person’s address in Canada.\n(3) [Forfeiture] If the animal or thing is not removed from Canada, or disposed of, within the period specified in the notice — or, if no period was specified, within 90 days after the day on which the notice was delivered or sent — it is, despite subsection 45(1), forfeited to Her Majesty in right of Canada and may be disposed of as the Minister may direct.\n(4) [Suspension of application of subsection (3)] An inspector or officer may, for a period that he or she specifies, suspend the application of subsection (3) if he or she is satisfied that\n(a) harm to human or animal health or, in the case of a veterinary biologic, to the environment is unlikely to result;\n(b) the animal or thing will not be sold within that period;\n(c) the measures that should have been taken for the animal or thing not to have been imported in contravention of a provision of this Act or the regulations will be taken within that period; and\n(d) if the animal or thing does not meet the requirements of the regulations, it will be brought into compliance with the regulations within that period.\n(5) [Cancellation] An inspector or officer may cancel the notice if he or she is satisfied that\n(a) harm to human or animal health or, in the case of a veterinary biologic, to the environment is unlikely to result;\n(b) the animal or thing has not been sold within the period referred to in subsection (6);\n(c) the measures referred to in paragraph (4)(c) were taken within that period; and\n(d) if the animal or thing did not meet the requirements of the regulations when it was imported, it was brought into compliance with the regulations within that period.\n(6) [Period] The period for the purposes of subsection (5) is\n(a) if the application of subsection (3) was suspended under subsection (4), the period of the suspension; and\n(b) if the application of subsection (3) was not suspended, the period specified in the notice or, if no period was specified, the period that ends 90 days after the day on which the notice was delivered or sent.\n(7) [Non-forfeiture] Section 17 does not apply to the animal or thing that is required to be removed from Canada.",
"history": "1990, c. 21, s. 18; 2015, c. 2, s. 89",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 18",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-18.html"
},
{
"id": "H-3.3-s19",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "19",
"marginal_note": "Certificate required",
"part": "",
"division": "",
"heading": "Exportation of Animals",
"text": "19\n(1) No person shall export an animal from Canada by vessel or aircraft unless\n(a) prior notice of the export of the animal has been given to a customs officer in charge of the place where the animal is to board the vessel or aircraft and the animal has been presented to a veterinary inspector in accordance with subsection (2) at that place; and\n(b) a certificate of the veterinary inspector has been received by the person certifying that all the prescribed requirements respecting the health, protection and transportation of the animal have been complied with.\n(2) [Presentation of animal] An animal that is required to be inspected shall be presented in such manner and under such conditions as the veterinary inspector considers necessary to carry out the inspection.\n(3) [Copy of certificate] A copy of the certificate referred to in paragraph (1)(b) shall be delivered to\n(a) the master or agent of the vessel or the pilot in command or operator of the aircraft; and\n(b) the chief officer of customs of the port or airport from which the vessel or aircraft is to depart.\n(4) [No departure without certificate] Where a vessel or aircraft that is to depart from Canada has an animal on board,\n(a) no person shall send the vessel to sea or the aircraft on its flight, and\n(b) no person in charge of the vessel or aircraft shall take the vessel to sea or the aircraft on its flight,\nunless a copy of a certificate in respect of the animal has been delivered in accordance with subsection (3).\n(5) [Detention] The chief officer of customs referred to in paragraph (3)(b) shall detain animals until a copy of the certificate referred to in paragraph (1)(b) has been delivered to that officer.\n(6) [Exemptions] The Minister may make regulations exempting animals or categories of animals and shipments and categories of shipments from the application of this section.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 19",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-19.html"
},
{
"id": "H-3.3-s20",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "20",
"marginal_note": "Certain Acts not affected",
"part": "",
"division": "",
"heading": "Exportation of Animals",
"text": "20 Nothing in this Act affects\n(a) the provisions of the Canada Shipping Act, 2001 respecting inspections authorized under paragraph 11(2)(e) of that Act to be carried out,\n(b) chapter 33 of the Statutes of Canada, 1871, entitled An Act to provide for the appointment of a Port Warden for the Harbor of Quebec,\n(c) chapter 11 of the Statutes of Canada, 1873, entitled An Act to amend the Acts relating to Port Wardens at Montreal and Quebec, or\n(d) chapter 45 of the Statutes of Canada, 1882, entitled An Act to amend and consolidate the Acts relating to the office of Port Warden for the Harbour of Montreal,\nand this Act shall, with respect to the ports to which the Acts referred to in paragraphs (a) to (d) apply, be construed as having been enacted in addition to and not in derogation from those Acts.",
"history": "1990, c. 21, s. 20; 2001, c. 26, s. 304",
"last_amended": "2007-07-01",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 20",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-20.html"
},
{
"id": "H-3.3-s21",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "21",
"marginal_note": "Assistance",
"part": "",
"division": "",
"heading": "International Assistance",
"text": "21 The Minister may provide assistance, both financial and technical, to any person or government outside Canada in controlling or eradicating a disease or toxic substance that affects or could affect persons or animals in Canada.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 21",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-21.html"
},
{
"id": "H-3.3-s22",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "22",
"marginal_note": "Declaration of infected place",
"part": "",
"division": "",
"heading": "Infected Places and Control Zones",
"text": "22\n(1) Where an inspector or officer suspects or determines that a disease or toxic substance exists in a place and is of the opinion that it could spread or that animals or things entering the place could become affected or contaminated by it, the inspector or officer may in writing declare that the place is infected and identify the disease or toxic substance that is believed to exist there, and such a declaration may subsequently be amended by the inspector or officer.\n(2) [Delivery of declaration] When the declaration is delivered to the occupier or owner of the place to which it relates, the place, together with all contiguous lands, buildings and other places occupied or owned by the occupier or owner, constitutes an infected place.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 22",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-22.html"
},
{
"id": "H-3.3-s23",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "23",
"marginal_note": "Further declaration",
"part": "",
"division": "",
"heading": "Infected Places and Control Zones",
"text": "23\n(1) For the purpose of preventing the spread of a disease or toxic substance, an inspector or officer may in writing declare that any land, building or other place, any part of which lies within five kilometres of the limits of a place declared to be infected under section 22, is infected and identify the disease or toxic substance that could spread there.\n(2) [Delivery of declaration] When the declaration has been delivered to the occupier or owner of any land, building or other place mentioned in subsection (1), the land, building or other place, together with all contiguous lands, buildings and other places occupied or owned by the same occupier or owner, constitutes an infected place.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 23",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-23.html"
},
{
"id": "H-3.3-s24",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "24",
"marginal_note": "Where occupier or owner not found",
"part": "",
"division": "",
"heading": "Infected Places and Control Zones",
"text": "24 Where an inspector or officer cannot, after the exercise of due diligence, find the occupier or owner of any land, building or other place, delivery of a declaration may be effected by posting it on the building or on any building or conspicuous object on the land or at the place.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 24",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-24.html"
},
{
"id": "H-3.3-s25",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "25",
"marginal_note": "Prohibition — infected place",
"part": "",
"division": "",
"heading": "Infected Places and Control Zones",
"text": "25\n(1) No person shall, without a licence issued by an inspector or officer, remove from or take into an infected place any animal or thing.\n(2) [Return] Where an inspector or officer believes on reasonable grounds that any animal or thing has been removed from or taken into an infected place in contravention of subsection (1), the inspector or officer may, whether or not the animal or thing is seized,\n(a) return it to or remove it from the infected place, or move it to any other place; or\n(b) require its owner or the person having the possession, care or control of it to return it to or remove it from the infected place, or move it to any other place.\n(3) [Notice] A requirement under paragraph (2)(b) shall be communicated by personal delivery of a notice to the owner or person having the possession, care or control of the animal or thing or by sending the notice to the owner or person, and the notice may specify the period within which and the manner in which the animal or thing is to be returned or removed.",
"history": "1990, c. 21, s. 25; 2012, c. 19, s. 507; 2015, c. 3, s. 101(F)",
"last_amended": "2015-02-26",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 25",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-25.html"
},
{
"id": "H-3.3-s26",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "26",
"marginal_note": "Declaration that place no longer infected",
"part": "",
"division": "",
"heading": "Infected Places and Control Zones",
"text": "26 A place, or any part of a place, that has been constituted to be an infected place by the delivery of a declaration under section 22 or 23 ceases to be an infected place when an inspector or officer declares in writing that\n(a) the disease or toxic substance described in the declaration\n(i) does not exist in, or will not spread from, the place or the part of the place, or\n(ii) is not injurious to the health of persons or animals; or\n(b) the infected place is located in an area that the Minister has declared to be a primary control zone in respect of that disease or toxic substance.",
"history": "1990, c. 21, s. 26; 2012, c. 19, s. 508",
"last_amended": "2013-01-01",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 26",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-26.html"
},
{
"id": "H-3.3-s27",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "27",
"marginal_note": "Primary control zone",
"part": "",
"division": "",
"heading": "Infected Places and Control Zones",
"text": "27\n(1) If the Minister believes that a disease or toxic substance exists in an area, he or she may, by order, declare the area to be a primary control zone, in which case the Minister shall describe the zone and identify the disease or toxic substance.\n(2) [Designated animal or thing] The Minister may, by order, designate any animal or thing that is capable of being affected or contaminated by the disease or toxic substance in respect of which the primary control zone is declared.\n(3) [Prohibition — primary control zone] No person shall remove from, move within or take into the primary control zone a designated animal or thing except in accordance with a permit issued by the Minister.",
"history": "1990, c. 21, s. 27; 2012, c. 19, s. 508",
"last_amended": "2013-01-01",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 27",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-27.html"
},
{
"id": "H-3.3-s27.1",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "27.1",
"marginal_note": "Secondary control zone",
"part": "",
"division": "",
"heading": "Infected Places and Control Zones",
"text": "27.1\n(1) If the Minister makes an order under subsection 27(1), he or she may — for the purpose of preventing the spread of the disease or toxic substance identified in the order or monitoring that disease or toxic substance — by order, declare any area that he or she considers necessary to be a secondary control zone, in which case the Minister shall describe the zone.\n(2) [Disease outside Canada] If the Minister believes that a disease or toxic substance exists in an area outside Canada, he or she may — for the purpose of preventing the spread of that disease or toxic substance into Canada or monitoring that disease or toxic substance — by order, declare any area in Canada that he or she considers necessary to be a secondary control zone, in which case the Minister shall describe the zone and identify that disease or toxic substance.\n(3) [Designated animal or thing] The Minister may, by order, designate any animal or thing that is capable of being affected or contaminated by the disease or toxic substance in respect of which the secondary control zone referred to in subsection (2) is declared.\n(4) [Conditions] The Minister may, by order, prohibit or impose conditions on — including requiring a permit for — removing from, moving within or taking into a secondary control zone a designated animal or thing.\n(5) [Compliance] Any person to whom an order made under subsection (4) applies shall comply with it.",
"history": "2012, c. 19, s. 508",
"last_amended": "2013-01-01",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 27.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-27.1.html"
},
{
"id": "H-3.3-s27.2",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "27.2",
"marginal_note": "Permits",
"part": "",
"division": "",
"heading": "Infected Places and Control Zones",
"text": "27.2 A permit referred to in subsection 27(3) or 27.1(4) may be issued as a general permit to owners or persons having the possession, care or control of a designated animal or thing.",
"history": "2012, c. 19, s. 508",
"last_amended": "2013-01-01",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 27.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-27.2.html"
},
{
"id": "H-3.3-s27.3",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "27.3",
"marginal_note": "Order amended",
"part": "",
"division": "",
"heading": "Infected Places and Control Zones",
"text": "27.3 The Minister may, by order, amend or revoke an order made under subsection 27(1) or (2) or one made under any of subsections 27.1(1) to (4).",
"history": "2012, c. 19, s. 508",
"last_amended": "2013-01-01",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 27.3",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-27.3.html"
},
{
"id": "H-3.3-s27.4",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "27.4",
"marginal_note": "Measures",
"part": "",
"division": "",
"heading": "Infected Places and Control Zones",
"text": "27.4 The Minister may take all reasonable measures that are consistent with public safety to remedy any dangerous condition or mitigate any danger to life, health, property or the environment that results, or may reasonably be expected to result, from the existence of a disease or toxic substance in a primary control zone.",
"history": "2012, c. 19, s. 508",
"last_amended": "2013-01-01",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 27.4",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-27.4.html"
},
{
"id": "H-3.3-s27.5",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "27.5",
"marginal_note": "Regulations",
"part": "",
"division": "",
"heading": "Infected Places and Control Zones",
"text": "27.5 The Minister may make regulations prohibiting or regulating the movement of persons or designated animals or things from, within or into a primary or secondary control zone for the purpose of controlling or eliminating a disease or toxic substance, in respect of which the primary control zone or a secondary control zone referred to in subsection 27.1(2) was declared, or preventing its spread.",
"history": "2012, c. 19, s. 508",
"last_amended": "2013-01-01",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 27.5",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-27.5.html"
},
{
"id": "H-3.3-s27.6",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "27.6",
"marginal_note": "Treatment or disposal",
"part": "",
"division": "",
"heading": "Infected Places and Control Zones",
"text": "27.6\n(1) The Minister may, in respect of a designated animal or thing that is or has been in a primary or secondary control zone,\n(a) treat that animal or thing or require its owner or the person having the possession, care or control of it to treat it or to have it treated if the Minister considers that the treatment will be effective in eliminating the disease or toxic substance or preventing its spread; or\n(b) dispose of that animal or thing or require its owner or the person having the possession, care or control of it to dispose of it.\n(2) [Return animal or thing] If an inspector or officer believes on reasonable grounds that a designated animal or thing has been removed from, moved within or taken into a primary control zone in contravention of subsection 27(3) — or a secondary control zone in contravention of an order made under subsection 27.1(4) — the inspector or officer may, whether or not that animal or thing is seized, move it to any place or require its owner or the person having the possession, care or control of it to move it to any place.\n(3) [Notice] A requirement under subsection (1) or (2) shall be communicated by the personal delivery of a notice to the owner or person having the possession, care or control of the animal or thing, or by sending the notice to the owner or person. The notice shall specify the period within which and the manner in which the requirement is to be met.",
"history": "2012, c. 19, s. 508",
"last_amended": "2013-01-01",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 27.6",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-27.6.html"
},
{
"id": "H-3.3-s28",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "28",
"marginal_note": "Statutory Instruments Act",
"part": "",
"division": "",
"heading": "Infected Places and Control Zones",
"text": "28\n(1) The Statutory Instruments Act does not apply in respect of a declaration under section 22, 23 or 26, an order made under subsection 27(1) or (2), any of subsections 27.1(1) to (4) or section 27.3 or a permit referred to in subsection 27(3) or 27.1(4) that is issued as a general permit.\n(2) [Accessibility] The Minister shall take any steps that may be reasonable in the circumstances to make the order or general permit accessible to persons likely to be affected by it.",
"history": "1990, c. 21, s. 28; 2012, c. 19, s. 508",
"last_amended": "2013-01-01",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 28",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-28.html"
},
{
"id": "H-3.3-s29",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "29",
"marginal_note": "Operation of services and facilities",
"part": "",
"division": "",
"heading": "Facilities",
"text": "29 The Minister may operate, provide or approve any diagnostic, research, laboratory or other services or facilities required for the purposes of this Act or any regulations.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 29",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-29.html"
},
{
"id": "H-3.3-s30",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "30",
"marginal_note": "Designation of facilities",
"part": "",
"division": "",
"heading": "Facilities",
"text": "30 The Minister may designate areas, offices, laboratories or other facilities inside or outside Canada for a specified purpose or generally for the administration of this Act or the regulations and may at any time amend, cancel or reinstate any such designation.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 30",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-30.html"
},
{
"id": "H-3.3-s31",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "31",
"marginal_note": "Definition of international transportation undertaking",
"part": "",
"division": "",
"heading": "Facilities",
"text": "31\n(1) For the purposes of this section, international transportation undertaking means\n(a) an undertaking that transports persons or things internationally;\n(b) an international road, railway, bridge or tunnel;\n(c) an airport that receives any aircraft operating on an international flight;\n(d) a port that receives any ship sailing on an international voyage; and\n(e) a warehouse or other facility that receives any international air, water, rail or road traffic.\n(2) [Required facilities] The owner or operator of an international transportation undertaking shall, where required in writing by the Minister, provide and maintain adequate areas, offices, laboratories and other facilities, including buildings, accommodation, equipment, furnishings and fixtures, for inspection or for any other purpose related to the administration of this Act or the regulations.\n(3) [Powers of Minister] The Minister may\n(a) cause to be made such improvements as the Minister considers desirable to any area, office, laboratory or other facility provided pursuant to subsection (2);\n(b) post, on or about the area, office, laboratory or other facility, any signs that the Minister considers appropriate for its operation or safe use or for the administration of this Act or the regulations; and\n(c) continue to use the area, office, laboratory or other facility for as long as the Minister requires it for the administration of this Act or the regulations.\n(4) [Construction and repairs] Where an area, office, laboratory or other facility that is provided by an owner or operator pursuant to subsection (2) is not adequate for the purposes mentioned in that subsection, the Minister may require the owner or operator to carry out any construction or repairs in order to render the area, office, laboratory or other facility adequate for those purposes, and if the owner or operator fails to do so, the Minister may cause the construction or repairs to be carried out and the owner or operator shall be liable for all reasonable costs incurred by the Minister and those costs may be recovered by Her Majesty in right of Canada.\n(5) [Notice] A requirement under subsection (4) shall be communicated by personal delivery of a notice to the owner or operator or by sending the notice to the owner or operator, and the notice may specify the period within which or the manner in which the construction or repairs are to be carried out.\n(6) [Arbitration] Subject to subsection (7) and any regulations made under subsection (8), a dispute over the adequacy of any area, office, laboratory or other facility may be resolved by arbitration in accordance with the Commercial Arbitration Act.\n(7) [Canada Labour Code] Any area, office, laboratory or other facility that fails to meet the applicable requirements of Part II of the Canada Labour Code shall be deemed to be not adequate for the purposes mentioned in subsection (2).\n(8) [Regulations] The Governor in Council may make regulations for determining the adequacy of any area, office, laboratory or other facility for the purposes mentioned in subsection (2).",
"history": "1990, c. 21, s. 31; 2015, c. 3, s. 102(F)",
"last_amended": "2015-02-26",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 31",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-31.html"
},
{
"id": "H-3.3-s32",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "32",
"marginal_note": "Designation",
"part": "",
"division": "",
"heading": "Inspectors and Officers",
"text": "32\n(1) The President of the Canadian Food Inspection Agency may designate under section 13 of the Canadian Food Inspection Agency Act analysts, inspectors, veterinary inspectors and officers for the purposes of this Act.\n(1.1) [Designation] The President of the Canada Border Services Agency may designate inspectors under paragraph 9(2)(b) of the Canada Border Services Agency Act for the purposes of enforcing this Act.\n(2) [Certificate to be produced] Inspectors, officers and veterinary inspectors shall be given certificates in a form established by the President of the Canadian Food Inspection Agency or the President of the Canada Border Services Agency, as the case may be, attesting to their designation and, on entering any place under this Act, an inspector, officer or veterinary inspector shall show the certificate to the person in charge of the place if the person requests proof of the designation.",
"history": "1990, c. 21, s. 32; 1997, c. 6, s. 68; 2005, c. 38, s. 117",
"last_amended": "2005-12-12",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 32",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-32.html"
},
{
"id": "H-3.3-s33",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "33",
"marginal_note": "Inspectors and officers may exercise Minister’s powers",
"part": "",
"division": "",
"heading": "Inspectors and Officers",
"text": "33\n(1) An inspector or officer may, subject to any restrictions or limitations specified by the Minister, exercise any of the powers and perform any of the duties or functions of the Minister under this Act, except the powers mentioned in subsections 27(1) and 27.1(1) and (2) and sections 27.4 and 27.5.\n(2) [Minister’s power — section 27.3] An inspector or officer may, subject to any restrictions or limitations specified by the Minister, exercise the Minister’s powers under section 27.3 only in respect of orders made under subsections 27(2) and 27.1(3) and (4).",
"history": "1990, c. 21, s. 33; 2012, c. 19, s. 509",
"last_amended": "2013-01-01",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 33",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-33.html"
},
{
"id": "H-3.3-s34",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "34",
"marginal_note": "Agreements",
"part": "",
"division": "",
"heading": "Inspectors and Officers",
"text": "34 For the purposes of this Act, the Minister may enter into an agreement with any qualified person to perform such duties or functions as the Minister may specify, on such terms and conditions as the Minister may specify.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 34",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-34.html"
},
{
"id": "H-3.3-s35",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "35",
"marginal_note": "Impeding analyst, inspector or officer",
"part": "",
"division": "",
"heading": "Inspectors and Officers",
"text": "35\n(1) No person shall obstruct or hinder or make any false or misleading statement either orally or in writing to an analyst, inspector or officer who is performing duties or functions under this Act or the regulations.\n(2) [Assistance to inspectors and officers] The owner or the person in charge of a place entered by an inspector or officer under section 38 and every person found in the place shall\n(a) give the inspector or officer all reasonable assistance in the owner’s or person’s power to enable the inspector or officer to perform duties and functions under this Act or the regulations; and\n(b) furnish the inspector or officer with such information relevant to the administration of this Act or the regulations as the inspector or officer may reasonably require.\n(3) [Assistance of peace officer] A peace officer shall provide such assistance as an inspector or officer may request for the purpose of enforcing this Act or the regulations.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 35",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-35.html"
},
{
"id": "H-3.3-s36",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "36",
"marginal_note": "Provision of documents, information or samples",
"part": "",
"division": "",
"heading": "Inspectors and Officers",
"text": "36\n(1) An inspector or officer may, for the purpose of detecting diseases or toxic substances or for a purpose related to verifying compliance or preventing non-compliance with this Act, order a person to provide, on the date, at the time and place and in the manner specified by the inspector or officer, any document, information or sample specified by the inspector or officer.\n(2) [Duty to provide document, information or sample] A person who is ordered by an inspector or officer to provide a document, information or a sample has a duty to do so on the specified date, at the specified time and place and in the specified manner.",
"history": "1990, c. 21, s. 36; 2015, c. 2, s. 90",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 36",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-36.html"
},
{
"id": "H-3.3-s37",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "37",
"marginal_note": "Broken seal",
"part": "",
"division": "",
"heading": "Seals",
"text": "37\n(1) Where a seal or other identifying device authorized by the regulations has been affixed to a conveyance, container or other thing and the seal or device is broken, altered, tampered with or removed in contravention of the regulations, an inspector or officer may require that the conveyance, container or other thing, or any animal or thing contained in it, be placed in quarantine, disposed of or returned to its place of origin or to such other place as the inspector or officer may direct.\n(2) [Notice] A requirement under subsection (1) shall be communicated by personal delivery of a notice to the owner or person having the possession, care or control of the conveyance, container or other thing or by sending the notice to the owner or person, and the notice may specify the period within which and the manner in which it is to be quarantined, disposed of or returned.",
"history": "1990, c. 21, s. 37; 2015, c. 3, s. 103(F)",
"last_amended": "2015-02-26",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 37",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-37.html"
},
{
"id": "H-3.3-s38",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "38",
"marginal_note": "Inspection",
"part": "",
"division": "",
"heading": "Inspection",
"text": "38\n(1) For the purpose of detecting diseases or toxic substances or for a purpose related to verifying compliance or preventing non-compliance with this Act, an inspector or officer may\n(a) subject to section 39, at any reasonable time, enter and inspect any place, or stop any conveyance, in which the inspector or officer believes on reasonable grounds there is any animal or thing in respect of which this Act or the regulations apply;\n(b) open any receptacle, baggage, package, cage or other thing that the inspector or officer believes on reasonable grounds contains any animal or thing in respect of which this Act or the regulations apply;\n(c) require any person to present any animal or thing for inspection in such manner and under such conditions as the inspector considers necessary to carry out the inspection;\n(d) examine any animal or thing in respect of which this Act or the regulations apply and take samples of it;\n(e) require any person to produce for inspection or copying, in whole or in part, any record or document that the inspector or officer believes on reasonable grounds contains any information relevant to the administration of this Act or the regulations; and\n(f) conduct any tests or analyses or take any measurements.\n(2) [Operation of data processing systems and copying equipment] In carrying out an inspection at any place under this section, an inspector or officer may\n(a) use or cause to be used any data processing system at the place to examine any data contained in or available to the system;\n(b) reproduce any record or cause it to be reproduced from the data in the form of a print-out or other intelligible output and take the print-out or other output for examination or copying; and\n(c) use or cause to be used any copying equipment at the place to make copies of any record or other document.",
"history": "1990, c. 21, s. 38; 2015, c. 2, s. 91",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 38",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-38.html"
},
{
"id": "H-3.3-s39",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "39",
"marginal_note": "Warrant required to enter dwelling-place",
"part": "",
"division": "",
"heading": "Inspection",
"text": "39\n(1) An inspector or officer may not enter a dwelling-place except with the consent of the occupant of the dwelling-place or under the authority of a warrant.\n(2) [Authority to issue warrant] Where on ex parte application a justice is satisfied by information on oath that\n(a) the conditions for entry described in section 38 exist in relation to a dwelling-place,\n(b) entry to the dwelling-place is necessary for any purpose relating to the administration of this Act or the regulations, and\n(c) entry to the dwelling-place has been refused or there are reasonable grounds to believe that entry will be refused,\nthe justice may at any time sign and issue a warrant authorizing the inspector or officer named in the warrant to enter the dwelling-place, subject to any conditions that may be specified in the warrant.\n(3) [Use of force] The inspector or officer who executes a warrant shall not use force unless the inspector or officer is accompanied by a peace officer and the use of force is specifically authorized in the warrant.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 39",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-39.html"
},
{
"id": "H-3.3-s40",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "40",
"marginal_note": "Seizure",
"part": "",
"division": "",
"heading": "Inspection",
"text": "40 Where an inspector or officer believes on reasonable grounds that a violation, or an offence under this Act, has been committed, the inspector or officer may seize and detain any animal or thing\n(a) by means of or in relation to which the inspector or officer believes on reasonable grounds the violation or offence was committed; or\n(b) that the inspector or officer believes on reasonable grounds will afford evidence in respect of the commission of a violation, or of an offence under this Act.",
"history": "1990, c. 21, s. 40; 1995, c. 40, s. 55",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 40",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-40.html"
},
{
"id": "H-3.3-s41",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "41",
"marginal_note": "Warrant",
"part": "",
"division": "",
"heading": "Search",
"text": "41\n(1) Where on ex parte application a justice is satisfied by information on oath that there are reasonable grounds to believe that there is in any place any animal or thing\n(a) by means of or in relation to which a violation, or an offence under this Act, has been committed or is suspected of having been committed, or\n(b) that there are reasonable grounds to believe will afford evidence in respect of the commission of a violation, or an offence under this Act,\nthe justice may at any time sign and issue a warrant authorizing an inspector or officer to enter and search the place for the animal or thing and, subject to any conditions that may be specified in the warrant, to seize and detain it.\n(2) [Search and seizure powers] The inspector or officer who executes a warrant may exercise the powers described in section 38 and may seize and detain, in addition to any animal or thing mentioned in the warrant, any animal or thing\n(a) by means of or in relation to which the inspector or officer believes on reasonable grounds a violation, or an offence under this Act, has been committed; or\n(b) that the inspector or officer believes on reasonable grounds will afford evidence in respect of the commission of a violation, or an offence under this Act.\n(3) [Execution of search warrant] A warrant shall be executed by day unless the justice authorizes its execution by night.\n(4) [Where warrant not necessary] An inspector or officer may exercise any of the powers mentioned in subsections (1) and (2) without a warrant if the conditions for obtaining a warrant exist but, by reason of exigent circumstances, it would not be practical to obtain a warrant.",
"history": "1990, c. 21, s. 41; 1995, c. 40, s. 56",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 41",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-41.html"
},
{
"id": "H-3.3-s42",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "42",
"marginal_note": "Notice of reason for seizure",
"part": "",
"division": "",
"heading": "Disposition of Animals and Things Seized",
"text": "42 An inspector or officer who seizes and detains an animal or thing under this Act shall, as soon as is practicable, advise its owner or the person having the possession, care or control of it at the time of its seizure of the reason for the seizure.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 42",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-42.html"
},
{
"id": "H-3.3-s43",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "43",
"marginal_note": "Storage and removal",
"part": "",
"division": "",
"heading": "Disposition of Animals and Things Seized",
"text": "43\n(1) An inspector or officer who seizes and detains an animal or thing under this Act, or any person designated by the inspector or officer, may\n(a) store it at the place where it was seized or remove it to any other place for storage; or\n(b) require its owner or the person having the possession, care or control of it at the time of the seizure to remove it to any other place and to store it.\n(2) [Notice] A requirement under paragraph (1)(b) shall be communicated by personal delivery of a notice to the owner or person having the possession, care or control of the thing or by sending a notice to the owner or person, and the notice may specify the period within which and the manner in which the animal or thing is to be removed and stored.\n(3) [Proceeds] An inspector or officer who seizes and detains an animal or a perishable thing under this Act may dispose of it and any proceeds realized from its disposition shall be paid to the Receiver General.",
"history": "1990, c. 21, s. 43; 2015, c. 3, s. 104(F)",
"last_amended": "2015-02-26",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 43",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-43.html"
},
{
"id": "H-3.3-s44",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "44",
"marginal_note": "Interference with seized animals or things",
"part": "",
"division": "",
"heading": "Disposition of Animals and Things Seized",
"text": "44 Except as authorized in writing by an inspector or officer, no person shall remove, alter or interfere in any way with an animal or thing seized and detained under this Act.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 44",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-44.html"
},
{
"id": "H-3.3-s45",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "45",
"marginal_note": "Release of seized animal or thing",
"part": "",
"division": "",
"heading": "Disposition of Animals and Things Seized",
"text": "45\n(1) If an inspector or officer is satisfied that the provisions of this Act and the regulations that apply with respect to an animal or thing seized under this Act have been complied with, the animal or thing must be released.\n(2) [Application for return] If proceedings are instituted in relation to an animal or thing seized under this Act and it has not been disposed of or forfeited under this Act, the owner of the animal or thing or the person having the possession, care or control of it at the time of its seizure may apply for an order that it be returned. The application may be made, in the case of a violation, to the Tribunal or, in the case of an offence, to the court before which the proceedings are being held.\n(3) [Order] The Tribunal or court, as the case may be, may order that the animal or thing be returned to the applicant, subject to such conditions as the Tribunal or court may impose to ensure that it is preserved for any purpose for which it may subsequently be required, where the Tribunal or court is satisfied that sufficient evidence exists or may reasonably be obtained without detaining the animal or thing and that it is not, or is not suspected of being, affected or contaminated by a disease or toxic substance.",
"history": "1990, c. 21, s. 45; 1995, c. 40, s. 57; 2015, c. 2, s. 92",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 45",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-45.html"
},
{
"id": "H-3.3-s46",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "46",
"marginal_note": "Forfeiture",
"part": "",
"division": "",
"heading": "Disposition of Animals and Things Seized",
"text": "46\n(1) Where the Tribunal decides that a person has committed a violation, or a person is convicted of an offence under this Act, the Tribunal or the convicting court, as the case may be, may, on its own motion or at the request of any party to the proceedings, in addition to any penalty or punishment imposed, order that any animal or thing by means of or in relation to which the violation or offence was committed, or any proceeds realized from its disposition, be forfeited to Her Majesty in right of Canada.\n(2) [Forfeiture without conviction] Where the owner of an animal or thing seized and detained under this Act consents to its forfeiture, it is thereupon forfeited to Her Majesty in right of Canada and shall be disposed of as the Minister may direct.",
"history": "1990, c. 21, s. 46; 1995, c. 40, s. 58",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 46",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-46.html"
},
{
"id": "H-3.3-s47",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "47",
"marginal_note": "Disposal of forfeited animals and things",
"part": "",
"division": "",
"heading": "Disposition of Animals and Things Seized",
"text": "47\n(1) If the Tribunal or the court, as the case may be, orders the forfeiture of an animal or thing under subsection 46(1), the animal or thing shall be disposed of as the Minister may direct.\n(2) [Return of seized animals and things where no forfeiture ordered] Where the Tribunal or court, as the case may be, does not order the forfeiture of an animal or thing, it or any proceeds realized from its disposition shall be returned to the owner of the animal or thing or the person having the possession, care or control of it at the time of its seizure.\n(3) [Exception] Where the Tribunal decides that the owner of an animal or thing or the person having the possession, care or control of it at the time of its seizure has committed a violation, or the owner of an animal or thing or the person having the possession, care or control of it at the time of its seizure is convicted of an offence under this Act, and a penalty or fine, as the case may be, is imposed,\n(a) the animal or thing may be detained until the penalty or fine is paid;\n(b) the animal or thing may be sold under execution in satisfaction of the penalty or fine; or\n(c) any proceeds realized from its disposition under paragraph (b) or section 43 may be applied in payment of the penalty or fine.",
"history": "1990, c. 21, s. 47; 1995, c. 40, s. 59; 2015, c. 2, s. 93",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 47",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-47.html"
},
{
"id": "H-3.3-s48",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "48",
"marginal_note": "Disposal of affected or contaminated animals and things",
"part": "",
"division": "",
"heading": "Disposal and Treatment",
"text": "48\n(1) The Minister may dispose of an animal or thing, or require its owner or any person having the possession, care or control of it to dispose of it, where the animal or thing\n(a) is, or is suspected of being, affected or contaminated by a disease or toxic substance;\n(b) has been in contact with or in close proximity to another animal or thing that was, or is suspected of having been, affected or contaminated by a disease or toxic substance at the time of contact or close proximity; or\n(c) is, or is suspected of being, a vector, the causative agent of a disease or a toxic substance.\n(2) [Treatment] The Minister may treat any animal or thing described in subsection (1), or require its owner or the person having the possession, care or control of it to treat it or to have it treated, where the Minister considers that the treatment will be effective in eliminating or preventing the spread of the disease or toxic substance.\n(3) [Notice] A requirement under this section shall be communicated by personal delivery of a notice to the owner or person having the possession, care or control of the thing or by sending a notice to the owner or person, and the notice may specify the period within which and the manner in which the requirement is to be met.",
"history": "1990, c. 21, s. 48; 2015, c. 3, s. 105(F)",
"last_amended": "2015-02-26",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 48",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-48.html"
},
{
"id": "H-3.3-s49",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "49",
"marginal_note": "Disposition of samples",
"part": "",
"division": "",
"heading": "Samples",
"text": "49 A sample taken under this Act or the regulations may be disposed of in such manner as the Minister considers appropriate.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 49",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-49.html"
},
{
"id": "H-3.3-s50",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "50",
"marginal_note": "Her Majesty not liable",
"part": "",
"division": "",
"heading": "Limitation on Liability",
"text": "50 If a person must, under this Act, do anything or permit an inspector or officer to do anything, Her Majesty in right of Canada is not liable\n(a) for any costs, loss or damage resulting from the compliance; or\n(b) to pay any fee, including any rent or charge, for what is done or permitted to be done.",
"history": "1990, c. 21, s. 50; 2015, c. 2, s. 94",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 50",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-50.html"
},
{
"id": "H-3.3-s50.1",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "50.1",
"marginal_note": "No liability",
"part": "",
"division": "",
"heading": "Limitation on Liability",
"text": "50.1 No person who exercises powers or performs duties or functions under this Act is liable in respect of anything done or omitted to be done in good faith in the exercise of those powers or the performance of those duties or functions.",
"history": "2015, c. 2, s. 94",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 50.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-50.1.html"
},
{
"id": "H-3.3-s51",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "51",
"marginal_note": "Compensation to owners of animals",
"part": "",
"division": "",
"heading": "Compensation",
"text": "51\n(1) The Minister may order compensation to be paid from the Consolidated Revenue Fund to the owner of an animal that is\n(a) destroyed under this Act or is required by an inspector or officer to be destroyed under this Act and dies after the requirement is imposed but before being destroyed;\n(b) injured in the course of being tested, treated or identified under this Act by an inspector or officer and dies, or is required to be destroyed, as a result of the injury; or\n(c) reserved for experimentation under paragraph 13(2)(a).\n(2) [Amount of compensation] Subject to subsections (3) and (4), the amount of compensation shall be\n(a) the market value, as determined by the Minister, that the animal would have had at the time of its evaluation by the Minister if it had not been required to be destroyed\nminus\n(b) the value of its carcass, as determined by the Minister.\n(3) [Maximum value] The value mentioned in paragraph (2)(a) shall not exceed any maximum amount established with respect to the animal by or under the regulations.\n(4) [Additional compensation] In addition to the amount calculated under subsection (2), compensation may include such costs related to the disposal of the animal as are permitted by the regulations.",
"history": "1990, c. 21, s. 51; 1997, c. 6, s. 69",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 51",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-51.html"
},
{
"id": "H-3.3-s52",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "52",
"marginal_note": "Compensation to owners of things",
"part": "",
"division": "",
"heading": "Compensation",
"text": "52 The Minister may order compensation to be paid from the Consolidated Revenue Fund to the owner of a thing that is destroyed under this Act and the amount of compensation shall be the market value, as determined by the Minister, that the thing would have had at the time of its evaluation if it had not been required to be destroyed, up to a prescribed amount, less any amount received in respect of it.",
"history": "1990, c. 21, s. 52; 1997, c. 6, s. 70",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 52",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-52.html"
},
{
"id": "H-3.3-s53",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "53",
"marginal_note": "Compensation for costs of treatment",
"part": "",
"division": "",
"heading": "Compensation",
"text": "53 The Minister may order compensation to be paid from the Consolidated Revenue Fund to a person for costs incurred with respect to treatment required under paragraph 27.6(1)(a) or subsection 48(2), and the amount of compensation shall be the costs reasonably incurred by the person, as determined by the Minister.",
"history": "1990, c. 21, s. 53; 1997, c. 6, s. 70; 2012, c. 19, s. 510",
"last_amended": "2013-01-01",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 53",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-53.html"
},
{
"id": "H-3.3-s54",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "54",
"marginal_note": "Compensation withheld",
"part": "",
"division": "",
"heading": "Compensation",
"text": "54\n(1) Compensation may be withheld in whole or in part where, in the opinion of the Minister,\n(a) the owner of, or the person having the possession, care or control of, the animal or thing in respect of which compensation is claimed has committed a violation, or an offence under this Act, by means of or in relation to that thing;\n(b) the animal or thing, at the time it was imported into Canada, was affected or contaminated by a disease or toxic substance; or\n(c) the animal or thing was a vector, the causative agent of a disease or a toxic substance.\n(2) [Compensation forfeited] A person who contravenes section 16 or a regulation made under section 14 or 16, or who breaks, alters, tampers with or removes a seal or other identifying device in contravention of the regulations, forfeits any claim to compensation in respect of an animal or thing by means of or in relation to which the contravention occurred.",
"history": "1990, c. 21, s. 54; 1995, c. 40, s. 60",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 54",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-54.html"
},
{
"id": "H-3.3-s55",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "55",
"marginal_note": "Regulations",
"part": "",
"division": "",
"heading": "Compensation",
"text": "55 The Minister may make regulations\n(a) respecting the method of calculating the market value of animals for which the Minister considers there is no readily available market;\n(b) establishing maximum amounts, or the manner of calculating maximum amounts, for the purpose of subsection 51(3) or section 52; and\n(c) permitting compensation for any costs related to the disposal of animals and things and for determining the amounts of the compensable costs, including maximum amounts, or a manner of calculating them.",
"history": "1990, c. 21, s. 55; 1997, c. 6, s. 71; 2015, c. 3, s. 106(E)",
"last_amended": "2015-02-26",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 55",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-55.html"
},
{
"id": "H-3.3-s56",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "56",
"marginal_note": "Appeal",
"part": "",
"division": "",
"heading": "Compensation",
"text": "56\n(1) A person who claims compensation and is dissatisfied with the Minister’s disposition of the claim may bring an appeal to the Assessor, but the only grounds of appeal are that the failure to award compensation was unreasonable or that the amount awarded was unreasonable.\n(2) [Time limit for bringing appeal] An appeal shall be brought within three months after the claimant receives notification of the Minister’s disposition of the claim, or within such longer period as the Assessor may in any case for special reasons allow.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 56",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-56.html"
},
{
"id": "H-3.3-s57",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "57",
"marginal_note": "Powers of Assessor",
"part": "",
"division": "",
"heading": "Compensation",
"text": "57\n(1) On hearing an appeal, the Assessor may confirm or vary the Minister’s disposition of the claim or refer the matter back to the Minister for such further action as the Assessor may direct.\n(2) [Costs] Costs may be awarded to or against the Minister in an appeal.\n(3) [Decisions final] The decision of the Assessor on an appeal is final and conclusive and not subject to appeal to or review by any court.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 57",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-57.html"
},
{
"id": "H-3.3-s58",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "58",
"marginal_note": "Sittings and hearings",
"part": "",
"division": "",
"heading": "Compensation",
"text": "58\n(1) The Assessor may sit and hear appeals at any place or places and shall arrange for sittings and hearings as may be required.\n(2) [Travel allowances] The Assessor is entitled to be paid such travel allowances as are payable for the attendances of a judge of the Federal Court under the Judges Act.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 58",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-58.html"
},
{
"id": "H-3.3-s59",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "59",
"marginal_note": "Procedure",
"part": "",
"division": "",
"heading": "Compensation",
"text": "59\n(1) Subject to the approval of the Governor in Council, the Assessor may make rules respecting the conduct of appeals and the procedure for the bringing of appeals.\n(2) [Transitional] Subject to any rules made under subsection (1), all rules respecting the conduct of appeals and the procedure for bringing appeals to the Assessor made under section 18 of the Pesticide Residue Compensation Act that are in force at the time this section comes into force shall, to the extent that they are not inconsistent with sections 56 to 58, apply in respect of appeals brought under section 56.\n(3) [Registrar] The functions of the registrar of appeals and any other person necessary to carry out the purposes of sections 56 to 58 shall be carried out by the persons who carry out similar functions under Part II of the Pesticide Residue Compensation Act.",
"history": "1990, c. 21, s. 59; 2001, c. 4, s. 173(F)",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 59",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-59.html"
},
{
"id": "H-3.3-s60",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "60",
"marginal_note": "Fees, charges and costs for inspections, etc.",
"part": "",
"division": "",
"heading": "Fees, Charges and Costs",
"text": "60\n(1) Her Majesty, and any person who has entered into an agreement with the Minister under section 34, may recover from any person referred to in subsection (2) any prescribed fees or charges and any costs incurred by Her Majesty or the other person, as the case may be, in relation to anything required or authorized under this Act or the regulations, including, without restricting the generality of the foregoing,\n(a) the inspection, treatment, segregation, quarantine, testing or analysis of a place, animal or thing, as the case may be, or the identification, storage, removal, disposal or return of an animal or thing, required or authorized under this Act or the regulations; and\n(b) the forfeiture, disposal, seizure or detention of an animal or thing under this Act or the regulations.\n(2) [Persons liable] The fees, charges and costs are recoverable jointly and severally from the owner or occupier of the place or the owner of the animal or thing and from the person having the possession, care or control of it immediately before its inspection, treatment, segregation, detention, forfeiture, quarantine, testing, analysis, identification, storage, removal, return or disposal or, in the case of an animal or thing seized under this Act, immediately before its seizure.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 60",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-60.html"
},
{
"id": "H-3.3-s61",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "61",
"marginal_note": "Fees, charges and costs related to measures",
"part": "",
"division": "",
"heading": "Fees, Charges and Costs",
"text": "61\n(1) Her Majesty may recover from any person mentioned in subsection (2) any prescribed fees or charges and any costs incurred by Her Majesty in relation to taking any measures under section 27.4.\n(2) [Persons liable] The fees, charges and costs are recoverable from any persons who through their fault or negligence, or that of others for whom in law they are responsible, caused or contributed to the causation of the existence or spread of the disease or toxic substance in respect of which a primary control zone was declared.",
"history": "1990, c. 21, s. 61; 2012, c. 19, s. 511; 2015, c. 3, s. 107(F)",
"last_amended": "2015-02-26",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 61",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-61.html"
},
{
"id": "H-3.3-s62",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "62",
"marginal_note": "Fees, charges, and costs for requested services",
"part": "",
"division": "",
"heading": "Fees, Charges and Costs",
"text": "62 Her Majesty may recover from any person who requests a service or the issue, renewal or amendment of a licence, permit, approval, certificate or other document under this Act or the regulations any prescribed fee or charge and any costs incurred by Her Majesty in relation to rendering the service or issuing, renewing or amending the document.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 62",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-62.html"
},
{
"id": "H-3.3-s63",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "63",
"marginal_note": "Unpaid fees, charges or costs",
"part": "",
"division": "",
"heading": "Fees, Charges and Costs",
"text": "63 Any fees, charges or costs that are recoverable by Her Majesty under this Act or the regulations may be recovered as a debt due to Her Majesty.",
"history": "1990, c. 21, s. 63; 1993, c. 34, s. 75",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 63",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-63.html"
},
{
"id": "H-3.3-s64",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "64",
"marginal_note": "Regulations — generally",
"part": "",
"division": "",
"heading": "Regulations",
"text": "64\n(1) The Governor in Council may make regulations for the purpose of protecting human and animal health through the control or elimination of diseases and toxic substances and generally for carrying out the purposes and provisions of this Act, including regulations\n(a) prohibiting or regulating the importation, exportation and possession of animals and things in order to prevent the introduction of any vector, disease or toxic substance into Canada or into another country from Canada;\n(b) for subjecting animals and things that may transmit a disease or toxic substance to quarantine or requiring their destruction on importation into Canada and for requiring the disposal on importation into Canada of things that may transmit a disease or toxic substance;\n(c) requiring proof of the fact that animals imported into or passing through Canada have not been brought from any place where there was, at the time of their embarkation, a disease or toxic substance;\n(d) prohibiting or regulating the importation of garbage into Canada and regulating the handling and disposal of garbage imported into Canada;\n(e) governing the use of food lockers on ships in Canadian waters in order to prevent the introduction of any disease or toxic substance into Canada;\n(f) for controlling or eradicating, or preventing the spread of, vectors, diseases and toxic substances and for quarantining, segregating, treating or disposing of, or for dealing generally with, animals or things that\n(i) are, or are suspected of being, affected or contaminated by a disease or toxic substance,\n(ii) have been in contact with or in close proximity to animals or things that were, or are suspected of having been, affected or contaminated by a disease or toxic substance at the time of contact or close proximity, or\n(iii) are, or are suspected of being, vectors, the causative agents of disease or toxic substances;\n(g) for segregating and confining animals within certain limits, establishing areas of inspection or quarantine and establishing eradication areas where animals may be inspected, segregated and tested for any disease or toxic substance;\n(h) prohibiting or regulating the movement in Canada of\n(i) animals, animal products, animal by-products, vectors, the causative agents of disease, animal food, hay, straw and fodder, and\n(ii) things that are used in respect of animals and that may be affected or contaminated by a disease or toxic substance;\n(i) for the humane treatment of animals and generally\n(i) governing the care, handling and disposition of animals,\n(ii) governing the manner in which animals are transported within, into or out of Canada, and\n(iii) providing for the treatment or disposal of animals that are not cared for, handled or transported in a humane manner;\n(j) for declaring as infected, and constituting as an infected place, any airport, market, pen, railway yard, stockyard, conveyance or wharf on or in which any animal, animal product, animal by-product, animal food, hay, straw or fodder, or any other thing used in respect of animals, is exposed for sale or is placed for the purpose of transit;\n(k) prohibiting or regulating the movement of persons and conveyances within, into or out of infected places;\n(l) for purifying any place or thing that is likely to contain a vector or be contaminated by any disease or toxic substance;\n(m) for causing or requiring notice to be given of the appearance of any disease or toxic substance among animals;\n(n) prohibiting or regulating the holding of markets, fairs, exhibitions or sales of animals;\n(o) for exempting any disease or toxic substance from the operation of any of the provisions of this Act or any regulation, for the imposition of terms and conditions governing the exemption and for otherwise dealing with the disease or toxic substance;\n(o.1) exempting, with or without conditions, any animal or thing, or a person or activity in respect of an animal or thing, from the application of this Act or the regulations or a provision of this Act or the regulations;\n(p) regulating the conduct and operation of zoos and game farms;\n(q) prescribing sanitary and health measures for establishments in which animal semen and animal embryos are collected, stored, frozen or processed and generally regulating the manner in which they are collected, stored and distributed;\n(r) prohibiting or regulating testing for diseases;\n(s) prohibiting or regulating the importation, exportation, preparation, manufacturing, preserving, packaging, labelling, storing, testing, transportation, sale, conditions of sale, advertising for sale, use and disposal of veterinary biologics and regulating their purity, potency, efficacy and safety;\n(s.1) respecting quality management programs, quality control programs, safety programs, preventive control plans or any other similar programs or plans to be implemented by persons who conduct any activity regulated under this Act;\n(t) prohibiting or regulating the feeding to animals of any thing that could introduce or spread any disease or toxic substance to animals;\n(u) regulating the construction, operation and maintenance of animal deadyards, rendering plants and animal food factories;\n(v) regulating the importation, exportation, preparation, manufacturing, preserving, packaging, labelling, storing, distribution, sale, conditions of sale and advertising for sale of products of animal deadyards, rendering plants and animal food factories;\n(w) governing the issue, renewal, amendment, suspension and revocation of licences, permits, approvals, certificates or other documents on such terms and conditions as may be required for the purposes of this Act;\n(w.1) requiring persons to take or keep samples from any animal or thing and to provide the Minister or an inspector or officer with, or with access to, those samples, and respecting the manner in which those samples are to be taken or kept and the manner in which they are to be provided or access to them is to be provided;\n(x) requiring animals and things to be marked or to have affixed to them tags, seals or other devices for the purposes of this Act, authorizing inspectors or officers to mark animals and things or to affix to them tags, seals or other devices for the purposes of this Act, and prohibiting the removal, breaking, tampering with or altering of those marks, tags, seals or other devices;\n(y) establishing and governing a national identification system for animals that provides for standards and means of identification;\n(z) requiring animals to be identified under the system established under paragraph (y) when the ownership or possession of them changes or when they are transported or otherwise dealt with;\n(z.1) governing the manufacture, sale, distribution or use of any means of identification used in the system established under paragraph (y);\n(z.2) governing the collection of information and statistics, the publication of studies and the conduct of surveys on any matter related to this Act or the regulations;\n(z.3) requiring persons to prepare, keep or maintain documents and to provide the Minister or an inspector or officer with, or with access to, those documents, and respecting\n(i) the information in those documents,\n(ii) the manner in which they are to be prepared, kept or maintained,\n(iii) the place where they are to be kept or maintained, and\n(iv) the manner in which they are to be provided or access to them is to be provided;\n(z.31) requiring persons to provide to the Minister or any other person authorized by the Minister, in the form and manner that the Minister or other person, as the case may be, directs, information in relation to animals or things to which this Act or the regulations apply, including information in respect of their movements, events in relation to them and places where they are or were located;\n(z.32) governing the identification of places in respect of which information is to be provided under regulations made under paragraph (z.31);\n(z.33) prohibiting or governing the use or disclosure of information provided under regulations made under any of paragraphs (y) to (z.1) and (z.31);\n(z.4) prescribing any fees or charges, or the manner of calculating any fees or charges, required for carrying out the purposes and provisions of this Act or the regulations; and\n(z.5) prescribing anything required by this Act to be prescribed, other than anything to be prescribed by the Minister.\n(1.1) [Paragraph (1)(a) — designation of disease] Regulations made under paragraph (1)(a) may, among other things, authorize the Minister to designate, by notice, diseases for the purposes of those regulations.\n(1.2) [Non-application of Statutory Instruments Act] The Statutory Instruments Act does not apply in respect of a notice given by the Minister under a regulation made under paragraph (1)(a).\n(1.3) [Paragraph (1)(a) — importation of animals or things] Regulations made under paragraph (1)(a) that regulate the importation of animals or things may regulate those animals or things after their importation.\n(1.4) [Paragraph (1)(z.3)] Regulations made under paragraph (1)(z.3) may, among other things, require persons who conduct any activity regulated under this Act and who become aware that an animal by-product, an animal food, an animal product, a product of a rendering plant or a veterinary biologic presents a risk of harm to human or animal health or the environment or does not meet the requirements of the regulations to provide written notice to that effect to the Minister or an inspector or officer.\n(2) [Regulations respecting birds] The Governor in Council may make regulations for the purposes of maintaining or improving the quality of bird stock and of controlling or eliminating diseases and toxic substances among birds, including regulations\n(a) regulating the production, marketing and distribution of birds and hatching eggs;\n(b) prohibiting or regulating the movement of birds and hatching eggs;\n(c) requiring hatchery operators to register with the Minister annually the names and addresses of persons who act as agents in the marketing of birds produced at the operators’ hatcheries;\n(d) prescribing the types, sizes, specifications and labelling of packages used by hatchery operators for the marketing of chicks; and\n(e) governing sanitation in or about hatcheries.\n(3) [Interpretation] Subsection (2) shall not be construed so as to limit the application of subsection (1) in respect of birds.\n(4) [Definitions of bird and chick] For the purposes of subsections (2) and (3), bird means a bird that is or has been in captivity and chick means a bird that is less than seventy-two hours old.",
"history": "1990, c. 21, s. 64; 1993, c. 34, s. 76; 2012, c. 19, s. 512(F), c. 24, s. 94; 2015, c. 2, s. 95",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 64",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-64.html"
},
{
"id": "H-3.3-s64.1",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "64.1",
"marginal_note": "Incorporation by reference",
"part": "",
"division": "",
"heading": "Incorporation by Reference",
"text": "64.1\n(1) A regulation made under section 64 may incorporate by reference any document, regardless of its source, either as it exists on a particular date or as it is amended from time to time.\n(2) [Accessibility] The Minister must ensure that any document that is incorporated by reference in a regulation made under section 64, including any amendments to the document, is accessible.\n(3) [Defence] A person is not liable to be found guilty of an offence or subjected to an administrative sanction for any contravention in respect of which a document that is incorporated by reference in a regulation made under section 64 is relevant unless, at the time of the alleged contravention, the document was accessible as required by subsection (2) or it was otherwise accessible to the person.\n(4) [No registration or publication] For greater certainty, a document that is incorporated by reference in a regulation made under section 64 is not required to be transmitted for registration or published in the Canada Gazette by reason only that it is incorporated by reference.",
"history": "2015, c. 2, s. 96",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 64.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-64.1.html"
},
{
"id": "H-3.3-s64.2",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "64.2",
"marginal_note": "Consideration of information",
"part": "",
"division": "",
"heading": "General",
"text": "64.2 In considering an application made under the regulations in relation to an animal or thing, the Minister may consider information that is available from a review or evaluation of an animal or thing conducted by the government of a foreign state or of a subdivision of a foreign state or by an international organization, or association, of states.",
"history": "2015, c. 2, s. 96",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 64.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-64.2.html"
},
{
"id": "H-3.3-s64.3",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "64.3",
"marginal_note": "Non-application of Statutory Instruments Act",
"part": "",
"division": "",
"heading": "General",
"text": "64.3 The Statutory Instruments Act does not apply in respect of a notice referred to in section 66.",
"history": "2015, c. 2, s. 96",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 64.3",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-64.3.html"
},
{
"id": "H-3.3-s65",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "65",
"marginal_note": "General offence",
"part": "",
"division": "",
"heading": "Offences and Punishment",
"text": "65\n(1) Every person who contravenes any provision of this Act, other than section 15, or the regulations or who refuses or neglects to perform any duty imposed by or under the Act or the regulations is guilty of\n(a) an offence punishable on summary conviction and liable to a fine not exceeding fifty thousand dollars or to imprisonment for a term not exceeding six months, or to both; or\n(b) an indictable offence and liable to a fine not exceeding two hundred and fifty thousand dollars or to imprisonment for a term not exceeding two years, or to both.\n(2) [Possession and disposal] Every person who contravenes section 15 is guilty of an offence punishable on summary conviction and liable to a fine not exceeding fifty thousand dollars.\n(3) [No imprisonment] Notwithstanding the Criminal Code, no person shall be committed to prison for default of payment of a fine imposed under subsection (2).",
"history": "1990, c. 21, s. 65; 1995, c. 40, s. 61; 2012, c. 19, s. 513(F)",
"last_amended": "2013-01-01",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 65",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-65.html"
},
{
"id": "H-3.3-s66",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "66",
"marginal_note": "Failure to comply with notices",
"part": "",
"division": "",
"heading": "Offences and Punishment",
"text": "66 Every person who fails to comply with a notice delivered to them under section 18, 25, 27.6, 37, 43 or 48 or the regulations is guilty of\n(a) an offence punishable on summary conviction and liable to a fine not exceeding fifty thousand dollars or to imprisonment for a term not exceeding six months, or to both; or\n(b) an indictable offence and liable to a fine not exceeding two hundred and fifty thousand dollars or to imprisonment for a term not exceeding two years, or to both.",
"history": "1990, c. 21, s. 66; 1995, c. 40, s. 62; 2012, c. 19, s. 514",
"last_amended": "2013-01-01",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 66",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-66.html"
},
{
"id": "H-3.3-s67",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "67",
"marginal_note": "Fine of vessel",
"part": "",
"division": "",
"heading": "Offences and Punishment",
"text": "67 Where a person is convicted of an offence arising out of a contravention of subsection 19(3) in relation to a vessel, the vessel is liable to a fine not exceeding fifty thousand dollars.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 67",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-67.html"
},
{
"id": "H-3.3-s68",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "68",
"marginal_note": "Limitation period",
"part": "",
"division": "",
"heading": "Offences and Punishment",
"text": "68 Summary conviction proceedings for an offence under this Act may be instituted no later than two years after the day on which the subject matter of the proceedings arises.",
"history": "1990, c. 21, s. 68; 2015, c. 2, s. 97",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 68",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-68.html"
},
{
"id": "H-3.3-s69",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "69",
"marginal_note": "Ticket offences",
"part": "",
"division": "",
"heading": "Offences and Punishment",
"text": "69 The Governor in Council may make regulations designating the contravention of any provision of this Act or the regulations as an offence with respect to which, notwithstanding the provisions of the Criminal Code,\n(a) an inspector or officer may lay an information and issue and serve a summons by completing a ticket in the prescribed form, affixing the inspector’s or officer’s signature thereto and delivering the ticket to the person alleged to have committed the offence specified therein at the time the offence is alleged to have been committed, or\n(b) the summons may be served on an accused by mailing the summons to the accused at the accused’s latest known address,\nand any regulations made under this section shall establish a procedure for voluntarily entering a plea of guilty and paying a fine in respect of each offence to which the regulations relate and shall prescribe the amount of the fine to be paid in respect of each offence.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 69",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-69.html"
},
{
"id": "H-3.3-s70",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "70",
"marginal_note": "Recovery of fines",
"part": "",
"division": "",
"heading": "Offences and Punishment",
"text": "70 Where a person is convicted of an offence under this Act and a fine that is imposed as punishment is not paid when required, the prosecutor may, by filing the conviction, enter as a judgment the amount of the fine and costs, if any, in the superior court of the province in which the trial was held, and the judgment is enforceable against the convicted person in the same manner as if it were a judgment obtained by Her Majesty in right of Canada against the person in that court in civil proceedings.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 70",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-70.html"
},
{
"id": "H-3.3-s71",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "71",
"marginal_note": "Parties to offence",
"part": "",
"division": "",
"heading": "Offences and Punishment",
"text": "71 If a person other than an individual commits an offence under this Act, any of the person’s directors, officers or agents or mandataries who directs, authorizes, assents to or acquiesces or participates in the commission of the offence is a party to the offence and is liable on conviction to the punishment provided for by this Act, even if the person is not prosecuted for the offence.",
"history": "1990, c. 21, s. 71; 2015, c. 2, s. 98",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 71",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-71.html"
},
{
"id": "H-3.3-s72",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "72",
"marginal_note": "Proof of offence",
"part": "",
"division": "",
"heading": "Offences and Punishment",
"text": "72 In a prosecution for an offence under this Act, it is sufficient proof of the offence to establish that it was committed by an employee or an agent or mandatary of the accused, even if the employee or the agent or mandatary is not identified or prosecuted for the offence, unless the accused establishes that the offence was committed without the knowledge or consent of the accused and that the accused exercised all due diligence to prevent its commission.",
"history": "1990, c. 21, s. 72; 2015, c. 2, s. 98",
"last_amended": "2015-02-27",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 72",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-72.html"
},
{
"id": "H-3.3-s73",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "73",
"marginal_note": "Place of trial",
"part": "",
"division": "",
"heading": "Offences and Punishment",
"text": "73 A prosecution for an offence under this Act may be instituted, heard and determined in the place where\n(a) the offence was committed or the subject-matter of the prosecution arose;\n(b) the accused was apprehended; or\n(c) the accused happens to be, or is carrying on business.",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 73",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-73.html"
},
{
"id": "H-3.3-s74",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "74",
"marginal_note": "Certificates and reports",
"part": "",
"division": "",
"heading": "Evidence",
"text": "74\n(1) In any proceedings for a violation, or for an offence under this Act, a declaration, certificate, report or other document of the Minister or an analyst, inspector or officer, purporting to have been signed by the Minister or the analyst, inspector or officer, is admissible in evidence without proof of the signature or official character of the person appearing to have signed it and, in the absence of evidence to the contrary, is proof of the matters asserted in it.\n(2) [Copies of documents] In any proceedings for a violation, or for an offence under this Act, a copy of or an extract from any record or other document that is made by the Minister or an analyst, inspector or officer under this Act or the regulations and that appears to have been certified under the signature of the Minister or the analyst, inspector or officer as a true copy or extract is admissible in evidence without proof of the signature or official character of the person appearing to have signed it and, in the absence of evidence to the contrary, has the same probative force as the original would have if it were proved in the ordinary way.\n(3) [Presumed date of issue] Any document referred to in subsection (1) or (2) shall, in the absence of evidence to the contrary, be deemed to have been issued on the date that it bears.\n(4) [Notice] No declaration, certificate, report, copy, extract or other document referred to in this section shall be received in evidence unless the party intending to produce it has, before the trial, served on the party against whom it is intended to be produced reasonable notice of that intention, together with a duplicate of the declaration, certificate, report, copy or extract.",
"history": "1990, c. 21, s. 74; 1995, c. 40, s. 63",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 74",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-74.html"
},
{
"id": "H-3.3-s75",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "75",
"marginal_note": "Orders continued as regulations",
"part": "",
"division": "",
"heading": "Transitional",
"text": "75 Any orders made under section 16 of the Animal Disease and Protection Act and in force immediately before the repeal of that Act by section 76 of this Act shall continue in force as if they were regulations made under section 14 of this Act.",
"history": "1990, c. 21, s. 75; 1993, c. 34, s. 77(F)",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 75",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-75.html"
},
{
"id": "H-3.3-s76",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "76",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Consequential Amendments",
"text": "76 [Repeal]",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 76",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-76.html"
},
{
"id": "H-3.3-s77",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "77",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Consequential Amendments",
"text": "77 [Amendment]",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. 77",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-77.html"
},
{
"id": "H-3.3-s*78",
"act_code": "H-3.3",
"act_short": "Health of Animals Act",
"act_name": "Health of Animals Act",
"section": "*78",
"marginal_note": "Coming into force",
"part": "",
"division": "",
"heading": "Coming into Force",
"text": "*78 This Act or any provision thereof shall come into force on a day or days to be fixed by order of the Governor in Council.\n* [Note: Act in force January 1, 1991, see SI/91-2.]",
"history": "",
"last_amended": "2002-12-31",
"current_to": "2019-06-21",
"citation": "Health of Animals Act, s. *78",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-*78.html"
}
] |