File size: 55,180 Bytes
f025b80 |
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 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<title>AUSTRALIA’S NATIONALLY DETERMINED CONTRIBUTION</title>
</head>
<body>
<h1><a>AUSTRALIA’S NATIONALLY DETERMINED CONTRIBUTION</a></h1>
<p>COMMUNICATION 2022</p>
<h3>© Commonwealth of Australia 2022 Creative Commons</h3>
<h3>Attribution 4.0 International Licence CC BY 4.0</h3>
<p>Unless otherwise noted, copyright (and any other intellectual property rights, if any) in this publication is owned by the Commonwealth of Australia.</p>
<p>All material in this publication is licensed under a Creative Commons Attribution 4.0 International Licence, save for content supplied by third parties, logos, any material protected by trademark or otherwise noted in this publication, and the Commonwealth Coat of Arms.</p>
<p>Creative Commons Attribution 4.0 International Licence is a standard form licence agreement that allows you to copy, distribute, transmit and adapt this publication provided you attribute the work. A summary of the licence terms is available from https://creativecommons.org/licenses/by/4.0/.</p>
<p>The full licence terms are available from https://creativecommons.org/licenses/by/4.0/legalcode</p>
<p>Content contained herein should be attributed as:</p>
<p>Australia’s Nationally Determined Contribution Communication 2022,</p>
<p>Australian Government Department of Industry, Science, Energy and Resources.</p>
<h3>Disclaimer</h3>
<p>The Australian Government as represented by the Department of Industry, Science, Energy and Resources has exercised due care and skill in the preparation and compilation of the information and data in this publication. Notwithstanding, the Commonwealth of Australia, its officers, employees, or agents disclaim any liability, including liability for negligence, loss howsoever caused, damage, injury, expense or cost incurred by any person as a result of accessing, using or relying upon any of the information or data in this publication to the maximum extent permitted by law. No representation expressed or implied is made as to the currency, accuracy, reliability or completeness of the information contained in this publication. The reader should rely on their own inquiries to independently confirm the information and comment on which they intend to act. This publication does not indicate commitment by the Australian Government to a particular course of action.</p>
<h2>I. Australia’s strengthened climate ambition</h2>
<p>This submission communicates Australia’s updated Nationally Determined Contribution (NDC) under Article 4 of the Paris Agreement.</p>
<p>In this updated NDC, Australia is increasing the ambition of its 2030 target, committing to reduce greenhouse gas emissions 43% below 2005 levels by 2030.</p>
<p>Australia also reaffirms its target to achieve net zero emissions by 2050. Both targets are economy-wide emissions reduction commitments, covering all sectors and gases included in Australia’s national inventory.</p>
<p>Australia’s new 2030 target is a significant increase in ambition. It is a 15 percentage point increase on the upper end of the previous 2030 target of 26 – 28% below 2005 levels – or half as much again as the previous target. The revised 2030 commitment is both a single-year target to reduce emissions 43% below 2005 levels by 2030 and a multi-year emissions budget from 2021-2030.</p>
<p>The updated 2030 target puts Australia on track to achieve net zero emissions by 2050.</p>
<p>It reflects the Australian Government’s resolve to urgently step up action and work alongside global partners to tackle the climate crisis, achieve the goals of the Paris Agreement, and keep 1.5°C within reach. Our aspiration is that the commitments of our industry, states and territories and the Australian people will yield even greater emissions reductions in the coming decade.</p>
<p>Australia will not carry over any overachievement on its 2020 target or its Kyoto Protocol targets to meet its Paris Agreement targets.</p>
<p>The Australian Government is implementing a substantial and rigorous suite of new policies across the economy to drive the transition to net zero. Australia’s new 2030 target is based on the modelled impact of these policies. The Australian Government is working to urgently implement these policies to maximise their emissions reduction impact and economic benefits and to provide Australian industry with a comprehensive and consistent policy framework. Australia’s new policies include:</p>
<ul>
<li>
<p>A $20 billion investment in Australia’s electricity grid to unlock greater penetration of renewable energy and accelerate decarbonisation of the grid.</p>
<ul>
<li>
<p>Complemented by an additional $300 million to deliver community batteries and solar banks across Australia.</p>
</li>
</ul>
<li>
<p>Investment of up to $3 billion from the new National Reconstruction Fund to support renewables manufacturing and the deployment of low emissions technologies, broadening Australia’s industrial base, bolstering regional economic development, and boosting private investment in abatement.</p>
</li>
<li>
<p>A Powering the Regions Fund to support the development of new clean energy industries and the decarbonisation priorities of existing industry.</p>
<ul>
<li>
<p>The Fund will also prioritise building the workforce skills and capability required for the clean energy transition. The Australian Government will invest a further $100 million to train 10,000 New Energy Apprentices in the jobs of the future and establish a $10 million New Energy Skills Program to provide additional training pathways.</p>
</li>
</ul>
</li>
<li>
<p>The introduction of declining emissions baselines for Australia’s major emitters, under the existing Safeguard Mechanism, providing a predictable policy framework for industry, consistent with a national trajectory to net zero and supporting international competitiveness.</p>
</li>
<li>
<p>Australia’s first National Electric Vehicle Strategy, to reduce emissions and accelerate the uptake of electric vehicles, including by establishing a new Driving the Nation Fund and doubling the Commonwealth’s investment in charging and refuelling infrastructure to $500 million. The Australian Government will also introduce an electric car tax discount and establish a real-world emissions testing program to help consumers make more informed choices about the fuel efficiency of their vehicles.</p>
</li>
<li>
<p>The application of new standardised and internationally-aligned reporting requirements for climate risks and opportunities for large businesses.</p>
</li>
<li>
<p>A commitment to reduce the emissions of Commonwealth Government agencies to net zero by 2030 (excluding defence and security agencies).</p>
</li>
</ul>
<p>These new measures will build on existing emissions reduction and low emissions technology accelerator policies and programs including the Australian Renewable Energy Agency, the Clean Energy Finance Corporation, crediting under the Carbon Credits (Carbon Farming Initiative) Act 2011, and a range of investments to accelerate and facilitate low emissions and clean energy technologies, such as green hydrogen, energy storage, and low emissions steel and aluminium, to bring their costs down to make them competitive with higher emitting alternatives.</p>
<p>The Australian Government will introduce a new annual statement to Parliament on climate policy, progress against national targets and international developments and will seek to formalise its targets in legislation. The annual statement and other climate policy will be informed by Australia’s Climate Change Authority, which the Government will restore as an independent source of advice.</p>
<p>Australia is committed to working closely with our Pacific family to achieve an ambitious international response to the climate crisis, including talking with them about jointly hosting a future UNFCCC Conference of the Parties meeting.</p>
<p>As a federation, Australian States, Territories and local government also implement significant policies and programs to reduce greenhouse gas emissions and support clean energy technologies. Australian households, communities and businesses are increasingly playing their part in addressing climate change and embracing the opportunities presented by the transition to net zero.</p>
<p>The details of Australia’s new 2030 target, and its 2050 net zero target are provided in Table 1. Australia will track progress towards both targets in its Biennial Transparency Reports under the Paris Agreement, on the basis of national emissions reported in its annual National Inventory Report. Australia will also provide detailed information on each of its policies and measures in its Biennial Transparency Reports.</p>
<h2>II. Australia’s action to advance adaptation and resilience</h2>
<p>Climate change is already having significant impacts in Australia and our region. The Australian Government is taking concerted action to adapt to climate change and ensure the resilience and disaster readiness of our communities and natural environment in the context of its impacts.</p>
<p>This includes:</p>
<ul>
<li>
<p>Leading the development of an urgent climate risk assessment of the implications of climate change for national security, which will be an enduring feature of Australia’s climate action.</p>
</li>
<li>
<p>Making sure Australia is disaster ready by spending up to $200 million every year on disaster preparation and resilience projects.</p>
</li>
<li>
<p>Protecting Australia’s unique environment by fixing Australia’s urban rivers and catchments, and doubling the number of Indigenous Rangers, recognising the importance of employing Indigenous People’s knowledge and experience to address the climate crisis.</p>
</li>
<li>
<p>Investing in the health and resilience of our ocean ecosystems, including by strengthening the management of our national network of Marine Parks and spending an additional $194.5 million on top of existing investments to protect the Great Barrier Reef.</p>
</li>
<li>
<p>Establishing a Department of Climate Change, Energy, the Environment and Water, so that climate mitigation and adaptation, as well as the climate and biodiversity crises, can be addressed holistically.</p>
</li>
</ul>
<p>Australia looks forward to making even stronger contributions to global climate science and sharing our expertise, experiences and skills across the globe toward stronger adaptation and resilience outcomes.</p>
<h3>Table 1: Australia’s Nationally Determined Contribution</h3>
<table>
<tr>
<td>
<p>1.1</p>
</td>
<td colspan="4">
<p>Quantifiable information on the reference point</p>
</td>
</tr>
<tr>
<td rowspan="2"></td>
<td rowspan="2">
<p>Commitment</p>
</td>
<td colspan="2">
<p>43% below 2005 levels by 2030</p>
</td>
<td rowspan="2">
<p>Net zero emissions by 2050</p>
</td>
</tr>
<tr>
<td>
<p>Implemented as an emissions budget covering the period 2021-2030</p>
</td>
<td>
<p>Implemented as a point target</p>
</td>
</tr>
<tr>
<td>
<p>1.1.1</p>
</td>
<td>
<p>Reference year or other starting point</p>
</td>
<td>
<p>Emissions budget for the period 2021-2030.</p>
</td>
<td>
<p>Base year: 2005</p>
</td>
<td>
<p>Australia’s net emissions in the most recently available year, published in the annual National Inventory Report.</p>
</td>
</tr>
<tr>
<td>
<p>1.1.2</p>
</td>
<td>
<p>Quantifiable information on the reference indicators</p>
</td>
<td>
<p>The indicative value of the emissions budget is 4381 million tonnes CO<sub>2</sub>-e, corresponding to the 43% target.</p>
</td>
<td>
<p>The indicative value of the 2005 base year is 621.1 million tonnes CO<sub>2</sub>-e net national emissions, as reported in the National Inventory Report submitted on 27 May 2022 (Table A3.1, Annex 3, Volume 3).</p>
</td>
<td>
<p>Australia’s net emissions in 2020, were 497.7 million tonnes CO<sub>2</sub>-e, as reported in the National Inventory Report submitted on 27 May 2022 (Table A3.1, Annex 3, Volume 3).</p>
<p>According to the latest Quarterly Update of Australia’s Greenhouse Gas Inventory, emissions in the year to December 2021 were 488.0 million tonnes CO<sub>2</sub>-e.</p>
</td>
</tr>
<tr>
<td>
<p>1.1.3</p>
</td>
<td>
<p>If a Least Developing Country (LDC) or Small Island Developing State (SIDS) info on strategies, actions</p>
</td>
<td colspan="3">
<p>Not applicable.</p>
</td>
</tr>
<tr>
<td>
<p>1.1.4</p>
</td>
<td>
<p>Value of target relative to the reference indicator</p>
</td>
<td>
<p>Australia’s 2030 target is a 43% reduction below 2005 levels by 2030, implemented as an emissions budget (reference indicator) covering the period 2021-2030.</p>
</td>
<td>
<p>Australia’s 2030 target is a 43% reduction below 2005 levels (reference indicator) by 2030, implemented as a single-year point target.</p>
</td>
<td>
<p>Net zero emissions by 2050.</p>
</td>
</tr>
<tr>
<td>
<p>1.1.5</p>
</td>
<td>
<p>Data used in quantifying the reference point</p>
</td>
<td colspan="2">
<p>Quantification of the reference indicator is based on data reported in Australia’s emissions projections, and in its annual National Inventory Report, up until the end of the period. Following the end of the period quantification will be based on data reported in the National Inventory Report for the year 2030.</p>
</td>
<td>
<p>Quantification of the reference indicator is based on data reported in Australia’s annual National Inventory Report.</p>
</td>
</tr>
<tr>
<td rowspan="2">
<p>1.1.6</p>
</td>
<td rowspan="2">
<p>Updates to the values of the reference indicators</p>
</td>
<td colspan="3">
<p>Estimates apply the 100 year Global Warming Potentials (GWPs) as contained in the IPCC Fifth Assessment Report.</p>
</td>
</tr>
<tr>
<td colspan="2">
<p>The value will be updated to reflect inventory improvements, including additional sources and recalculations resulting from continuous methodological improvements, and updates to Australia’s projections.</p>
</td>
<td>
<p>The value will be updated to reflect inventory improvements, including additional sources and recalculations resulting from continuous methodological improvements.</p>
</td>
</tr>
<tr>
<td>
<p>1.2</p>
</td>
<td colspan="4">
<p>Time frames</p>
</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>
<p>1.2.1</p>
</td>
<td>
<p>Time frame for implementation</p>
</td>
<td>
<p>2021 – 2030</p>
</td>
<td>
<p>2021 – 2030</p>
</td>
<td>
<p>2021 – 2050</p>
</td>
</tr>
<tr>
<td>
<p>1.2.2</p>
</td>
<td>
<p>Single-year or multi-year target</p>
</td>
<td>
<p>Multi-year budget</p>
</td>
<td>
<p>Single-year</p>
</td>
<td>
<p>Single-year</p>
</td>
</tr>
<tr>
<td>
<p>1.3</p>
</td>
<td colspan="4">
<p>Scope and coverage</p>
</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>
<p>1.3.1</p>
</td>
<td>
<p>General description of the target</p>
</td>
<td>
<p>Absolute economy-wide emissions reduction, as an emissions budget covering 2021-2030.</p>
</td>
<td>
<p>Absolute economy-wide emissions target expressed as a single-year target.</p>
</td>
<td>
<p>Absolute economy-wide emissions target expressed as a single-year target.</p>
</td>
</tr>
<tr>
<td>
<p>1.3.2</p>
</td>
<td>
<p>Sectors, gases, categories and pools covered by the target</p>
</td>
<td colspan="3">
<p>Carbon dioxide (CO<sub>2</sub>); Methane (CH<sub>4</sub>); Nitrous oxide (N<sub>2</sub>O); Hydrofluorocarbons (HFCs); Perfluorocarbons (PFCs); Sulphur hexafluoride (SF<sub>6</sub>); Nitrogen trifluoride (NF<sub>3</sub>).</p>
<p>All sectors, categories and carbon pools, as defined by the IPCC 2006 guidelines, and additional sources reported in the annual National Inventory Report.</p>
</td>
</tr>
<tr>
<td>
<p>1.3.3</p>
</td>
<td>
<p>Complete and continuous coverage</p>
</td>
<td colspan="3">
<p>Australia has included all categories of anthropogenic emissions or removals in its NDC. No source, sink, or activity that was included in Australia’s 2020 target under the Convention has been excluded.</p>
</td>
</tr>
<tr>
<td>
<p>1.3.4</p>
</td>
<td>
<p>Mitigation co-benefits</p>
</td>
<td colspan="3">
<p>Not applicable.</p>
</td>
</tr>
<tr>
<td>
<p>1.4</p>
</td>
<td colspan="3">
<p>Assumptions and methodological approaches for emissions estimates and accounting</p>
</td>
<td></td>
</tr>
<tr>
<td rowspan="2">
<p>1.4.1</p>
</td>
<td rowspan="2">
<p>Accounting for emissions and removals</p>
</td>
<td>
<p>Australia assesses progress towards its 2030 target by comparing cumulative net emissions over the period 2021–2030 with the emissions budget for the period.</p>
</td>
<td>
<p>Australia will account for its 2030 single-year target on the basis of total net national emissions reported in its National Inventory Report for the year 2030, submitted under the Paris Agreement.</p>
</td>
<td>
<p>Australia will account for its 2050 commitment on the basis of total net national emissions reported in its National Inventory Report for the year 2050, submitted under the Paris Agreement.</p>
</td>
</tr>
<tr>
<td colspan="3">
<p>Australia will make corresponding adjustments for any internationally transferred mitigation outcomes, consistent with guidance adopted under Article 6 of the Paris Agreement, should the Australian Government authorise any for use towards NDCs.</p>
</td>
</tr>
<tr>
<td>
<p>1.4.2</p>
</td>
<td>
<p>Accounting for the implementation of policies and measures or strategies</p>
</td>
<td colspan="3">
<p>Not applicable.</p>
</td>
</tr>
<tr>
<td>
<p>1.4.3</p>
</td>
<td>
<p>IPCC methodologies and metrics used and existing approaches</p>
</td>
<td colspan="3">
<p>Australia intends to apply 100 year Global Warming Potentials (GWPs) as contained in inventory reporting guidelines, currently IPCC Fifth Assessment Report 100 year GWPs, or as otherwise agreed by the CMA.</p>
<p>The estimates of emissions and removals used in accounting for the NDC will be those reported in the Inventory, which will apply the IPCC 2006 Guidelines, or subsequent version or refinement as agreed by the CMA, and nationally appropriate methods consistent with that guidance and informed inter alia by the IPCC 2019 Refinement and IPCC 2013 Wetlands Supplement.</p>
</td>
</tr>
<tr>
<td>
<p>1.4.4</p>
</td>
<td>
<p>Natural disturbances</p>
</td>
<td colspan="3">
<p>Australia will address emissions and subsequent removals from natural disturbances in accounting for its NDC. The carbon stock changes from natural disturbances are included in the national emissions totals, as described in Australia’s National Inventory Report (May 2022) consistent with approaches set out in the IPCC 2006 Guidelines and the IPCC 2019 Refinement. Australia will continue to provide information on its approach to addressing emissions and subsequent removals from natural disturbances in its annual National Inventory Report.</p>
</td>
</tr>
<tr>
<td>
<p>1.4.5</p>
</td>
<td>
<p>Harvested wood products</p>
</td>
<td colspan="3">
<p>Australia will use a stock-change approach consistent with the IPCC 2006 Guidelines to estimate emissions from Harvested Wood Products, consistent with the 2006 IPCC Guidelines and paragraph 56 of the Annex to decision 18/CMA.1. The methodology will be described in detail in Australia’s annual National Inventory Report.</p>
</td>
</tr>
<tr>
<td>
<p>1.4.6</p>
</td>
<td>
<p>Effects of age-class structure in forests</p>
</td>
<td colspan="3">
<p>Not applicable.</p>
</td>
</tr>
<tr>
<td>
<p>1.4.7</p>
</td>
<td>
<p>Other assumptions and methodological approaches used including:</p>
<p>Construction of the reference indicators</p>
</td>
<td>
<p>The emissions budget for the 2030 target is calculated using a straight-line trajectory which takes a linear decrease from 2020 to 2030. This trajectory begins from Australia’s 2020 target (5% below 2000 levels), and finishes at 43% below 2005 levels in 2030. The area under the trajectory for the period 2021–2030 is the emissions budget for the 2030 target.</p>
</td>
<td>
<p>The reference indicator for the 2030 single-year target is net national greenhouse gas emissions for the year 2005, as published in the National Inventory Report annually. The definitions, data sources and models used to estimate net emissions are those described in the National Inventory Report.</p>
</td>
<td>
<p>The reference indicator for the 2050 commitment is net national greenhouse gas emissions in the most recently available year, as published in the National Inventory Report annually. The definitions, data sources and models used to estimate net emissions are those described in the National Inventory Report.</p>
</td>
</tr>
<tr>
<td>
<p>1.4.8</p>
</td>
<td>
<p>Non greenhouse-gas components</p>
</td>
<td colspan="3">
<p>Not applicable.</p>
</td>
</tr>
<tr>
<td>
<p>1.4.9</p>
</td>
<td>
<p>Climate forcers, as applicable</p>
</td>
<td colspan="3">
<p>Not applicable.</p>
</td>
</tr>
<tr>
<td>
<p>1.4.10</p>
</td>
<td>
<p>Further technical information, as necessary</p>
</td>
<td colspan="3">
<p>Not applicable.</p>
</td>
</tr>
<tr>
<td>
<p>1.4.11</p>
</td>
<td>
<p>Intended use of voluntary cooperation under Article 6 of the Paris Agreement</p>
</td>
<td colspan="3">
<p>Should Australia decide to use cooperative approaches under Article 6 of the Paris Agreement towards achievement of its NDC or to authorize the use of internationally transferred mitigation outcomes towards the NDCs of other Parties, it would report on such use or authorization through its Biennial Transparency Reports and consistent with guidance adopted under Article 6.</p>
</td>
</tr>
</table>
<h3>Table 2: Fair and Ambitious Contribution, Contribution to Article 2, Planning Processes Information and Article 4.</h3>
<table>
<tr>
<td>
<p>2.1</p>
</td>
<td colspan="2">
<p>How the Party considers that its nationally determined contribution is fair and ambitious in the light of its national circumstances:</p>
</td>
</tr>
<tr>
<td>
<p>2.1.1</p>
</td>
<td>
<p>A fair and ambitious contribution</p>
</td>
<td>
<p>Australia’s updated Nationally Determined Contribution represents a significant increase in Australia’s ambition and reflects a strong commitment to urgent ambitious action on climate change.</p>
<p>Australia’s enhanced NDC is underpinned by a robust policy framework that will deliver on our emissions reduction commitments while driving economic growth, making electricity more affordable and creating new jobs. Australia is implementing a substantial and rigorous suite of new policies that will drive the uptake of existing technology, encourage innovation in existing industries and invest in the technology and industries of the future to achieve our 2030 target and support Australia’s transition to net zero.</p>
</td>
</tr>
<tr>
<td>
<p>2.1.2</p>
</td>
<td>
<p>Fairness considerations, including reflecting on equity</p>
</td>
<td>
<p>Australia’s plan to achieve its 2030 and 2050 emissions reduction targets has the wellbeing and prosperity of all Australians, including regional communities, at its core. It recognises the global transition to a clean energy economy is underway, creating impacts and opportunities for Australia’s industries. The Australian Government will support and partner with communities and industry on decarbonisation priorities, the development of new clean energy industries and skills and training programs to support workforce development. This will ensure that Australia is well-positioned to capitalise on clean economy opportunities to drive growth and support job creation.</p>
<p>The Australian Government has committed to reduce the emissions of Commonwealth Government agencies to net zero emissions by 2030 (excluding defence and security agencies). Emissions reductions across non-Defence (Australian Public Service) agencies is a strong commitment to lead by example on emissions reductions and contribute to the decarbonisation of Australia’s economy.</p>
<p>The Australian Government will also improve integrity in decision-making around climate change with a new annual statement to Parliament as a matter of transparency and accountability. This will report on climate policy and progress towards national targets. The Government will also restore the role of Australia’s Climate Change Authority as an independent source of advice.</p>
</td>
</tr>
<tr>
<td>
<p>2.1.3</p>
</td>
<td>
<p>How the NDC is a progression and reflects highest possible ambition</p>
</td>
<td>
<p>Australia’s updated NDC is a progression on our previous 2030 target and a significant increase in ambition, committing Australia to reduce greenhouse gas emissions by 43% below 2005 levels by 2030 — half as much again as the previous target of 26 – 28% — and achieve net zero emissions by 2050.</p>
</td>
</tr>
<tr>
<td>
<p>2.1.4</p>
</td>
<td>
<p>Economy-wide absolute emissions reduction targets</p>
</td>
<td>
<p>Australia’s 2030 and 2050 targets are economy-wide absolute emissions reduction targets.</p>
</td>
</tr>
<tr>
<td>
<p>2.1.5</p>
</td>
<td>
<p>Special circumstances of LDCs and SIDS</p>
</td>
<td>
<p>Not applicable.</p>
</td>
</tr>
<tr>
<td>
<p>2.2</p>
</td>
<td colspan="2">
<p>How the nationally determined contribution contributes towards achieving the objective of the Convention as set out in its Article 2:</p>
</td>
</tr>
<tr>
<td>
<p>2.2.1</p>
</td>
<td>
<p>How the NDC contributes towards achieving the objective of the Convention as set out in its Article 2</p>
</td>
<td>
<p>Achievement of Australia’s 2030 and 2050 emissions reduction targets will contribute towards stabilisation of greenhouse gas concentrations in the atmosphere at a level that would prevent dangerous anthropogenic interference with the climate system. Both targets will also be achieved in a manner which will ensure economic growth and will be complemented by measures to advance adaptation, ensure security of food production and to enable sustainable economic development.</p>
</td>
</tr>
<tr>
<td>
<p>2.2.2</p>
</td>
<td>
<p>How the NDC contributes towards the Paris Agreement’s temperature and mitigation goals</p>
</td>
<td>
<p>Achievement of Australia’s 2030 and 2050 emissions reduction targets will contribute towards holding the increase in the global average temperature to well below 2°C above pre-industrial levels and pursuing efforts to limit the temperature increase to 1.5°C above pre-industrial levels, recognising that this would significantly reduce the risks and impacts of climate change.</p>
<p>The Australian Government is implementing a series of new policies across the economy to support the uptake of existing technology, encourage innovation in existing industries and invest in the technology and industries of the future. These measures will support the achievement of the 2030 target and put Australia on the path to net zero emissions by 2050.</p>
</td>
</tr>
<tr>
<td>
<p>2.3</p>
</td>
<td>
<p>Planning Processes:</p>
</td>
<td></td>
</tr>
<tr>
<td>
<p>2.3.1</p>
</td>
<td>
<p>Information on planning processes and implementation plans for the preparation of the NDC including, as appropriate:</p>
<p>Domestic institutional arrangements, public participation and engagement with local communities and indigenous peoples, in a gender- responsive manner</p>
</td>
<td>
<p>The Commonwealth Government of Australia is responsible for policy making at the national level.</p>
<p>The Australian Government will improve integrity in decision-making around climate change through annual statements to Parliament on climate policy, including progress against national targets, and by restoring Australia’s Climate Change Authority. This will provide transparency and ensure accountability on climate action.</p>
<p>The Australian Government is implementing a broad suite of new policies across the economy to drive the transition to a net zero economy, and is improving and strengthening existing policies.</p>
<p>The Australian Government will build on the 2019 King Review, by undertaking a review into Australian Carbon Credit Units (ACCUs) to ensure their integrity and consistency with agricultural and other objectives, and contribution to environmental, economic and other benefits like biodiversity. The Australian Government will also improve the Safeguard Mechanism by introducing mandatory emissions baselines for facilities already covered by the Mechanism over time. This will align policy with recommendations from the private sector and will provide a supportive policy framework that will encourage industry investment in low emissions technologies.</p>
<p>Australia provides information on its climate change policies and measures in each Biennial Report and National Communication and will continue to provide updated information through each Biennial Transparency Report.</p>
</td>
</tr>
<tr>
<td>
<p>2.3.2</p>
</td>
<td>
<p>Contextual matters, including, inter alia, as appropriate:</p>
<p>National circumstances, such as geography, climate, economy, sustainable development and poverty eradication</p>
</td>
<td>
<p>Australia’s unique national circumstances shape its response to climate change. Australia’s system of government, vast size, diverse landscapes, predisposition to climate variability, resource-based economy and small but growing population living mostly in coastal regions pose challenges and opportunities to managing the impacts of climate change.</p>
<p>Australia operates under a federal system of government in which legislative powers are distributed between the Commonwealth, the six states and two territories. Under this system, the Commonwealth Government of Australia is responsible for policy making at the national level. National targets and federal emissions reductions policies are complemented by targets and measures implemented at the State and Territory level, which make a leading contribution to the decarbonisation of Australia’s economy.</p>
<p>Climate change holds serious ramifications for all Australians, playing a part in extreme weather events and their intensity and frequency. The Australian Government’s policy measures recognise these impacts and provide the framework to support Australians on the pathway to net zero transition. These policies will accelerate decarbonisation of industry and support the development of new clean energy industries through investment to drive renewables manufacturing and the deployment of low emissions technologies.</p>
<p>Australia is transforming its electricity market, from an electricity grid dominated by large scale, fossil fuel-fired generators to a grid with increasing penetration of renewables, storage and demand management technologies.</p>
</td>
</tr>
<tr>
<td>
<p>2.3.3</p>
</td>
<td>
<p>Best practices and experience related to NDC preparation</p>
</td>
<td>
<p>Australia’s NDC follows the rules for transparency and understanding set out in decision 4/CMA.1. A range of Commonwealth Government agencies were involved in the development of the NDC, reflecting shared policy responsibility.</p>
</td>
</tr>
<tr>
<td>
<p>2.3.4</p>
</td>
<td>
<p>Other priorities acknowledged when joining the Paris Agreement</p>
</td>
<td>
<p>Not applicable.</p>
</td>
</tr>
<tr>
<td>
<p>2.3.5</p>
</td>
<td>
<p>Information applicable to Parties acting jointly</p>
</td>
<td>
<p>Not applicable.</p>
</td>
</tr>
<tr>
<td>
<p>2.3.6</p>
</td>
<td>
<p>Global stocktake consideration</p>
</td>
<td>
<p>Not applicable. The first global stocktake will occur in 2023. Australia will take its outcomes into account in the preparation of future NDC communications.</p>
</td>
</tr>
<tr>
<td>
<p>2.3.7</p>
</td>
<td>
<p>Each Party with a nationally determined contribution under Article 4 of the Paris Agreement that consists of adaptation action and/ or economic diversification plans resulting in mitigation co – benefits consistent with Article 4, paragraph 7, of the Paris Agreement to submit information on:</p>
<p>Economic and social consequences of response measures</p>
</td>
<td>
<p>Not applicable.</p>
</td>
</tr>
<tr>
<td>
<p>2.3.8</p>
</td>
<td>
<p>Projects, measures and activities to be implemented to contribute to mitigation co – benefits</p>
</td>
<td>
<p>Not applicable.</p>
</td>
</tr>
</table>
<h3>Table 3: Information to facilitate transparency, clarity transparency and understanding of nationally determined contributions, decision references.</h3>
<table>
<tr>
<td colspan="2">
<p>Numbers and terms used in tables 1-2</p>
</td>
<td>
<p>Corresponding paragraph of decision 4/CMA.1, Annex I</p>
</td>
</tr>
<tr>
<td>
<p>1.1</p>
</td>
<td>
<p>Quantifiable information on reference point</p>
</td>
<td>
<p>(1) Quantifiable information on the reference point (including, as appropriate, a base year):</p>
</td>
</tr>
<tr>
<td>
<p>1.1.1</p>
</td>
<td>
<p>Reference year or other starting point</p>
</td>
<td>
<p>(1a) Reference year(s), base year(s), reference period(s) or other starting point(s);</p>
</td>
</tr>
<tr>
<td>
<p>1.1.2</p>
</td>
<td>
<p>Quantifiable information on the reference indicators</p>
</td>
<td>
<p>(1b) Quantifiable information on the reference indicators, their values in the reference year(s), base year(s), reference period(s) or other starting point(s), and, as applicable, in the target year;</p>
</td>
</tr>
<tr>
<td>
<p>1.1.3</p>
</td>
<td>
<p>If a Least Developing Country (LDC) or Small Island Developing State (SIDS) info on strategies, actions</p>
</td>
<td>
<p>(1c) For strategies, plans and actions referred to in Article 4, paragraph 6, of the Paris Agreement, or polices and measures as components of nationally determined contributions where paragraph 1(b) above is not applicable, Parties to provide other relevant information;</p>
</td>
</tr>
<tr>
<td>
<p>1.1.4</p>
</td>
<td>
<p>Value of target relative to the reference indicator</p>
</td>
<td>
<p>(1d) Target relative to the reference indicator, expressed numerically, for example in percentage or amount of reduction;</p>
</td>
</tr>
<tr>
<td>
<p>1.1.5</p>
</td>
<td>
<p>Data used in quantifying the reference point</p>
</td>
<td>
<p>(1e) Information on sources of data used in quantifying the reference point(s);</p>
</td>
</tr>
<tr>
<td>
<p>1.1.6</p>
</td>
<td>
<p>Updates to the values of the reference indicators</p>
</td>
<td>
<p>(1f) Information on the circumstances under which the Party may update the values of the reference indicators.</p>
</td>
</tr>
<tr>
<td>
<p>1.2</p>
</td>
<td>
<p>Time frames</p>
</td>
<td>
<p>(2) Timeframes and/or periods for implementation:</p>
</td>
</tr>
<tr>
<td>
<p>1.2.1</p>
</td>
<td>
<p>Time frame for implementation</p>
</td>
<td>
<p>(2a) Time frame and/or period for implementation, including start and end date, consistent with any further relevant decision adopted by the Conference of the Parties serving as the meeting of the Parties to the Paris Agreement (CMA);</p>
</td>
</tr>
<tr>
<td>
<p>1.2.2</p>
</td>
<td>
<p>Single-year or multi-year target</p>
</td>
<td>
<p>(2b) Whether it is a single-year or multi-year target, as applicable.</p>
</td>
</tr>
<tr>
<td>
<p>1.3</p>
</td>
<td>
<p>Scope and coverage</p>
</td>
<td>
<p>(3) Scope and coverage:</p>
</td>
</tr>
<tr>
<td>
<p>1.3.1</p>
</td>
<td>
<p>General description of the target</p>
</td>
<td>
<p>(3a) General description of the target;</p>
</td>
</tr>
<tr>
<td>
<p>1.3.2</p>
</td>
<td>
<p>Sectors, gases, categories and pools covered by the target</p>
</td>
<td>
<p>(3b) Sectors, gases, categories and pools covered by the nationally determined contribution, including, as applicable, consistent with Intergovernmental Panel on Climate Change (IPCC) guidelines;</p>
</td>
</tr>
<tr>
<td>
<p>1.3.3</p>
</td>
<td>
<p>Complete and continuous coverage</p>
</td>
<td>
<p>(3c) How the Party has taken into consideration paragraphs 31(c) and (d) of decision 1/CP.21;</p>
</td>
</tr>
<tr>
<td>
<p>1.3.4</p>
</td>
<td>
<p>Mitigation co-benefits</p>
</td>
<td>
<p>(3d) Mitigation co-benefits resulting from Parties’ adaptation actions and/or economic diversification plans, including description of specific projects, measures and initiatives of Parties’ adaptation actions and/or economic diversification plans.</p>
</td>
</tr>
<tr>
<td>
<p>1.4</p>
</td>
<td>
<p>Assumptions and methodological approaches for emissions estimates and accounting</p>
</td>
<td>
<p>(5) Assumptions and methodological approaches, including those for estimating and accounting for anthropogenic greenhouse gas emissions and, as appropriate, removals:</p>
</td>
</tr>
<tr>
<td>
<p>1.4.1</p>
</td>
<td>
<p>Accounting for emissions and removals</p>
</td>
<td>
<p>(5a) Assumptions and methodological approaches used for accounting for anthropogenic greenhouse gas emissions and removals corresponding to the Party’s nationally determined contribution, consistent with decision 1/CP.21, paragraph 31, and accounting guidance adopted by the CMA;</p>
</td>
</tr>
<tr>
<td>
<p>1.4.2</p>
</td>
<td>
<p>Accounting for the implementation of policies and measures or strategies</p>
</td>
<td>
<p>(5b) Assumptions and methodological approaches used for accounting for the implementation of policies and measures or strategies in the nationally determined contribution;</p>
</td>
</tr>
<tr>
<td>
<p>1.4.3</p>
</td>
<td>
<p>IPCC methodologies and metrics used for emissions estimation and existing approaches</p>
</td>
<td>
<p>(5c) If applicable, information on how the Party will take into account existing methods and guidance under the Convention to account for anthropogenic emissions and removals, in accordance with Article 4, paragraph 14, of the Paris Agreement, as appropriate;</p>
<p>(5d) IPCC methodologies and metrics used for estimating anthropogenic greenhouse gas emissions and removals;</p>
</td>
</tr>
<tr>
<td>
<p>1.4.4</p>
</td>
<td>
<p>Natural disturbances</p>
</td>
<td>
<p>(5e) Sector-, category – or activity-specific assumptions, methodologies and approaches consistent with IPCC guidance, as appropriate, including, as applicable;</p>
<p>(5ei) Approach to addressing emissions and subsequent removals from natural disturbances on managed lands;</p>
</td>
</tr>
<tr>
<td>
<p>1.4.5</p>
</td>
<td>
<p>Harvested wood products</p>
</td>
<td>
<p>(5eii) Approach used to account for emissions and removals from harvested wood products;</p>
</td>
</tr>
<tr>
<td>
<p>1.4.6</p>
</td>
<td>
<p>Effects of age-class structure in forests</p>
</td>
<td>
<p>(5eiii) Approach used to address the effects of age-class structure in forests;</p>
</td>
</tr>
<tr>
<td>
<p>1.4.7</p>
</td>
<td>
<p>Other assumptions and methodological approaches used including:</p>
<p>Construction of the reference indicators</p>
</td>
<td>
<p>(5f) Other assumptions and methodological approaches used for understanding the nationally determined contribution and, if applicable, estimating corresponding emissions and removals, including:</p>
<p>(5fi) How the reference indicators, baseline(s) and/or reference level(s), including, where applicable, sector-, category – or activity-specific reference levels, are constructed, including, for example, key parameters, assumptions, definitions, methodologies, data sources and models used;</p>
</td>
</tr>
<tr>
<td>
<p>1.4.8</p>
</td>
<td>
<p>Non greenhouse-gas components</p>
</td>
<td>
<p>(5fii) For Parties with nationally determined contributions that contain non greenhouse-gas components, information on assumptions and methodological approaches used in relation to those components, as applicable;</p>
</td>
</tr>
<tr>
<td>
<p>1.4.9</p>
</td>
<td>
<p>Climate forcers, as applicable</p>
</td>
<td>
<p>(5fiii) For climate forcers included in nationally determined contributions not covered by IPCC guidelines, information on how the climate forcers are estimated;</p>
</td>
</tr>
<tr>
<td>
<p>1.4.10</p>
</td>
<td>
<p>Further technical information, as necessary</p>
</td>
<td>
<p>(5fiv) Further technical information, as necessary;</p>
</td>
</tr>
<tr>
<td>
<p>1.4.11</p>
</td>
<td>
<p>Intended use of voluntary cooperation under Article 6 of the Paris Agreement</p>
</td>
<td>
<p>(5g) The intention to use voluntary cooperation under Article 6 of the Paris Agreement, if applicable.</p>
</td>
</tr>
<tr>
<td>
<p>2.1</p>
</td>
<td>
<p>How the Party considers that its nationally determined contribution is fair and ambitious in the light of its national circumstances</p>
</td>
<td>
<p>(6) How the Party considers that its nationally determined contribution is fair and ambitious in the light of its national circumstances:</p>
</td>
</tr>
<tr>
<td>
<p>2.1.1</p>
</td>
<td>
<p>A fair and ambitious contribution</p>
</td>
<td>
<p>(6a) How the Party considers that its nationally determined contribution is fair and ambitious in the light of its national circumstances;</p>
</td>
</tr>
<tr>
<td>
<p>2.1.2</p>
</td>
<td>
<p>Fairness considerations, including reflecting on equity</p>
</td>
<td>
<p>(6b) Fairness considerations, including reflecting on equity;</p>
</td>
</tr>
<tr>
<td>
<p>2.1.3</p>
</td>
<td>
<p>How the NDC is a progression and reflects highest possible ambition</p>
</td>
<td>
<p>(6c) How the Party has addressed Article 4, paragraph 3, of the Paris Agreement;</p>
</td>
</tr>
<tr>
<td>
<p>2.1.4</p>
</td>
<td>
<p>Economy-wide absolute emissions reduction targets</p>
</td>
<td>
<p>(6d) How the Party has addressed Article 4, paragraph 4, of the Paris Agreement;</p>
</td>
</tr>
<tr>
<td>
<p>2.1.5</p>
</td>
<td>
<p>Special circumstances of LDCs and SIDS</p>
</td>
<td>
<p>(6e) How the Party has addressed Article 4, paragraph 6, of the Paris Agreement.</p>
</td>
</tr>
<tr>
<td>
<p>2.2</p>
</td>
<td>
<p>How the nationally determined contribution contributes towards achieving the objective of the Convention as set out in its Article 2</p>
</td>
<td>
<p>(7) How the nationally determined contribution contributes towards achieving the objective of the Convention as set out in its Article 2:</p>
</td>
</tr>
<tr>
<td>
<p>2.2.1</p>
</td>
<td>
<p>How the NDC contributes towards achieving the objective of the Convention as set out in its Article 2</p>
</td>
<td>
<p>(7a) How the nationally determined contribution contributes towards achieving the objective of the Convention as set out in its Article 2;</p>
</td>
</tr>
<tr>
<td>
<p>2.2.2</p>
</td>
<td>
<p>How the NDC contributes towards the Paris Agreement’s temperature and mitigation goals</p>
</td>
<td>
<p>(7b) How the nationally determined contribution contributes towards Article 2, paragraph 1(a), and Article 4, paragraph 1, of the Paris Agreement.</p>
</td>
</tr>
<tr>
<td>
<p>2.3</p>
</td>
<td>
<p>Planning Processes</p>
</td>
<td>
<p>(4) Planning Processes:</p>
</td>
</tr>
<tr>
<td>
<p>2.3.1</p>
</td>
<td>
<p>Information on planning processes and implementation plans for the preparation of the NDC including, as appropriate:</p>
<p>Domestic institutional arrangements, public participation and engagement with local communities and indigenous peoples, in a gender-responsive manner</p>
</td>
<td>
<p>(4a) Information on the planning processes that the Party undertook to prepare its nationally determined contribution and, if available, on the Party’s implementation plans including, as appropriate:</p>
<p>(4ai) Domestic institutional arrangements, public participation and engagement with local communities and indigenous peoples, in a gender-responsive manner;</p>
</td>
</tr>
<tr>
<td>
<p>2.3.2</p>
</td>
<td>
<p>Contextual matters, including, inter alia, as appropriate:</p>
<p>National circumstances, such as geography, climate, economy, sustainable development and poverty eradication</p>
</td>
<td>
<p>(4aii) Contextual matters, including, inter alia, as appropriate:</p>
<p>(4aiia) National circumstances, such as geography, climate, economy, sustainable development and poverty eradication;</p>
</td>
</tr>
<tr>
<td>
<p>2.3.3</p>
</td>
<td>
<p>Best practices and experience related to NDC preparation</p>
</td>
<td>
<p>(4aiib) Best practices and experience related to the preparation of the nationally determined contribution;</p>
</td>
</tr>
<tr>
<td>
<p>2.3.4</p>
</td>
<td>
<p>Other priorities acknowledged when joining the Paris Agreement;</p>
</td>
<td>
<p>(4aiic) Other contextual aspirations and priorities acknowledged when joining the Paris Agreement;</p>
</td>
</tr>
<tr>
<td>
<p>2.3.5</p>
</td>
<td>
<p>Information applicable to Parties acting jointly</p>
</td>
<td>
<p>(4b) Specific information applicable to Parties, including regional economic integration organizations and their member States, that have reached an agreement to act jointly under Article 4, paragraph 2, of the Paris Agreement, including the Parties that agreed to act jointly and the terms of the agreement, in accordance with Article 4, n/a 16 paragraphs 16 18, of the Paris Agreement;</p>
</td>
</tr>
<tr>
<td>
<p>2.3.6</p>
</td>
<td>
<p>Global stocktake consideration</p>
</td>
<td>
<p>(4c) How the Party’s preparation of its nationally determined contribution has been informed by the outcomes of the global stocktake, in accordance with Article 4, paragraph 9, of the Paris Agreement;</p>
</td>
</tr>
<tr>
<td>
<p>2.3.7</p>
</td>
<td>
<p>Each Party with a nationally determined contribution under Article 4 of the Paris Agreement that consists of adaptation action and/or economic diversification plans resulting in mitigation co – benefits consistent with Article 4, paragraph 7, of the Paris Agreement to submit information on:</p>
<p>Economic and social consequences of response measures</p>
</td>
<td>
<p>(4d) Each Party with a nationally determined contribution under Article 4 of the Paris Agreement that consists of adaptation action and/or economic diversification plans resulting in mitigation co-benefits consistent with Article 4, paragraph 7, of the Paris Agreement to submit information on:</p>
<p>(4di) How the economic and social consequences of response measures have been considered in developing the nationally determined contribution;</p>
</td>
</tr>
<tr>
<td>
<p>2.3.8</p>
</td>
<td>
<p>Projects, measures and activities for mitigation co – benefits</p>
</td>
<td>
<p>(4dii) Specific projects, measures and activities to be implemented to contribute to mitigation co – benefits, including information n/a 17 on adaptation plans that also yield mitigation co-benefits, which may cover, but are not limited to, key sectors, such as energy, resources, water resources, coastal resources, human settlements and urban planning, agriculture and forestry; and economic diversification actions, which may cover, but are not limited to, sectors such as manufacturing and industry, energy and mining, transport and communication, construction, tourism, real estate, agriculture and fisheries.</p>
</td>
</tr>
</table>
</body>
</html>
|