480/642
What is this check, and why should you care
Having a cache hit ensures the fastest possible delivery of content to end users.
The response header X-Cache had a value of TCP_MEM_HIT from a23-39-111-5.deploy.akamaitechnologies.com (AkamaiGHost/22.4.2-1edda81bef43cb1c10d4898543aeed8e) (-).
Akamai has documentation on how to interpret the X-Cache and X-Cache-Remote headers.
Maximum possible points
100
What is this check, and why should you care
Using a CDN is extremely useful for caching purposes.
Maximum possible points
50
What is this check, and why should you care
The time that it takes for a user's browser to receive the first byte of page content.
The lower the TTFB, the faster your site will be perceived by the end user.
To get maximum points, your TTFB must be less than or equal to 30ms. If your TTFB is more than 1 second then you get no points here.
Maximum possible points
50
What is this check, and why should you care
Using Last-Modified headers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-Modified-Since with a value of Sun, 15 Feb 2026 14:43:28 GMT was sent, and an HTTP 304 was responded with.
Maximum possible points
30
What is this check, and why should you care
Having tiered caching can help improve the cache hit ratio of your site because it provides an additional layer of caching in front of your origin.
Maximum possible points
25
What is this check, and why should you care
Caching HTTP 404s is a great way to offload requests from your origin.
To get maximum points, you need to have the ability to cache an HTTP 404 for any amount of time.
This check requested the URL https://www.finance.gov.au/cachingscorebrokenurltest.
Maximum possible points
20
What is this check, and why should you care
The purpose of HTTP compression is to reduce the size of the files sent by a CDN/web server by eliminating redundant information in those files. The smaller the size of the files, the more quickly they can be served over the World Wide Web.
On top of faster delivery, compression also reduces the amount of bandwidth used by the CDN/web server. This is especially important for mobile devices, where the bandwidth is often limited.
The response header Content-Encoding had a value of br.
Akamai has documentation on how to enable Brotli compression.
See the Wikipedia page on HTTP compression for more background.
To get maximum points, you need to use Brotli or Zstandard compression.
Maximum possible points
20
What is this check, and why should you care
CSS aggregation reduces the number of assets your site needs to download. The filename contains a hash of all the file contents, meaning you can cache these files for an extremely long time with no negative consequences.
Maximum possible points
10
What is this check, and why should you care
Javascript aggregation reduces the number of assets your site needs to download. The filename contains a hash of all the file contents, meaning you can cache these files for an extremely long time with no negative consequences.
Maximum possible points
10
What is this check, and why should you care
Drupal 9.5+ introduces a new debug setting to make it easier to debug render caching. This setting will add cache debugging output for each rendered element.
The main issue with this is that this slows down your page loads (on top increasing your page weight).
To get maximum points, you must disable the render cache debug.
Maximum possible points
10
What is this check, and why should you care
Drupal 7+ provides a Statistics module to which records content view statistics in Drupal's database.
The main issue with this module is that it sends an un-cacheable HTTP POST request to your site to record a 'content view' statistic. This does not scale well as you Drupal site gets more traffic.
To get maximum points, you must disable the statistics module.
Maximum possible points
10
What is this check, and why should you care
Drupal 8+ uses Twig for templating, and the Twig template engine offers a debug tool to which emits out a list of template filenames in the HTML source.
The main issue with this is that you often also have other Twig related performance issues as well, e.g. automatic reloading.
To get maximum points, you must disable Twig debug.
Maximum possible points
10
What is this check, and why should you care
You can increase the cache hit rate of your site by stripping certain query parameters from the cache key.
FBCLID is one such parameter that can be stripped by your caching server. This query parameter only really serves a purpose for Javascript to read, and Javascript can still read it from the browser URL.
This check requested the URL https://www.finance.gov.au/publications/executive-remuneration-reporting?fbclid=1771166611.
Maximum possible points
10
What is this check, and why should you care
You can increase the cache hit rate of your site by stripping certain query parameters from the cache key.
GCLID and GCLSRC are two such parameters that can be stripped by your caching server. These query parameters only really serve a purpose for Javascript to read, and Javascript can still read it from the browser URL.
This check requested the URL https://www.finance.gov.au/publications/executive-remuneration-reporting?gclsrc=1771166611&gclid=1771166611.
Maximum possible points
10
What is this check, and why should you care
You can increase the cache hit rate of your site by stripping certain query parameters from the cache key.
TTCLID is one such parameter that can be stripped by your caching server. This query parameter only really serves a purpose for Javascript to read, and Javascript can still read it from the browser URL.
This check requested the URL https://www.finance.gov.au/publications/executive-remuneration-reporting?ttclid=1771166611.
Maximum possible points
10
What is this check, and why should you care
You can increase the cache hit rate of your site by stripping certain query parameters from the cache key.
UTM is a collection of parameters that can be stripped by your caching server. These query parameters only really serve a purpose for Javascript to read, and Javascript can still read them from the browser URL.
This check requested the URL https://www.finance.gov.au/publications/executive-remuneration-reporting?utm_source=1771166611&utm_medium=1771166611&utm_campaign=1771166611&utm_id=1771166611.
Maximum possible points
10
What is this check, and why should you care
There is a SPAM protection module in Drupal called Honeypot.
The honeypot module has a feature that adds a time based hidden form field to forms to protect against bots filling them in too quickly. This is a nice feature, however it happens to disable caching for the entire page. This is terrible for high traffic sites.
It is recommended to disable this time based feature, and only use the core honeypot feature of a hidden input field.
Maximum possible points
5
What is this check, and why should you care
The language_cookie module breaks proxy caching because it makes Drupal’s response vary by a cookie, which most HTTP caches don’t handle efficiently.
The module also has a side effect of breaking Drupal’s page_cache system as well - see the issue #3512070.
To get maximum points, you must disable the language_cookie module.
Maximum possible points
5
What is this check, and why should you care
There are 2 filesystems in Drupal - public files and private files.
Private files force Drupal to bootstrap in order to serve the file, and access control is checked every single time. This is useful for sensitive files, but a hindrance when your site is under high load.
It is recommended to use Drupal's public file system for static, non-sensitive files, and reserve the use of private files for dynamic, or sensitive files.
Maximum possible points
5
What is this check, and why should you care
Using a long cache lifetime helps to ensure a high cache hit rate.
To get maximum points, your cache lifetime must be greater than or equal to 4 weeks. If your cache lifetime is less, then you will get some proportion of the score based on how close to 4 weeks you are.
The current cache lifetime is 900 seconds (15 minutes).
Maximum possible points
100
What is this check, and why should you care
Using ETag identifiers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. This mechanism allows caches to be more efficient and saves bandwidth, as a Web server does not need to send a full response if the content has not changed. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-None-Match with a value of W/"1771166608" was sent, but an HTTP 304 was not responded with. So you have Etags, but they are not doing anything.
Akamai has documentation on how to enable Etag support (requires login).
See the Wikipedia page on ETag for more background.
To get maximum points, you need to have ETag identifiers and an HTTP 304 response must be received when using a valid If-None-Match request header.
Maximum possible points
30
What is this check, and why should you care
Drupal 8+ provides an Internal Page Cache module recommended for small to medium-sized websites.
There is value in using this module, even when you are using Akamai, due to the low cache lifetime of 15 minutes.
To get maximum points, you must enable the page_cache module, and have a HIT on Drupal's page cache.
See Drupal's documentation on the Internal Page Cache module. Also, Wim Leers wrote a really awesome blog post on the release of this module with important background.
Maximum possible points
20
What is this check, and why should you care
Akamai has very strict controls around cache tag lengths, counts and characters. If you exceed or break these controls then you risk your content not being invalidated when you issue a cache tag purge.
The response header X-Akamai-Cache-Tag-Error had a value of TAGSCNT 2ed2f.
Too many cache tags. The current number of cache tags found was 1,024.
See the Akamai technical documentation on how to interpret this header.
Maximum possible points
10
Performed on the asset: https://www.finance.gov.au/themes/custom/finance/logo-black.png
See the HTTP headers for this image file.
What is this check, and why should you care
Having a cache hit ensures the fastest possible delivery of content to end users.
The response header X-Cache had a value of TCP_MEM_HIT from a23-39-111-5.deploy.akamaitechnologies.com (AkamaiGHost/22.4.2-1edda81bef43cb1c10d4898543aeed8e) (-).
Akamai has documentation on how to interpret the X-Cache and X-Cache-Remote headers.
Maximum possible points
10
What is this check, and why should you care
Using ETag identifiers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. This mechanism allows caches to be more efficient and saves bandwidth, as a Web server does not need to send a full response if the content has not changed. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-None-Match with a value of "695f0364-824e" was sent, and an HTTP 304 was responded with.
Akamai has documentation on how to enable Etag support (requires login).
See the Wikipedia page on ETag for more background.
To get maximum points, you need to have ETag identifiers and an HTTP 304 response must be received when using a valid If-None-Match request header.
Maximum possible points
3
What is this check, and why should you care
Using Last-Modified headers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-Modified-Since with a value of Thu, 08 Jan 2026 01:07:48 GMT was sent, and an HTTP 304 was responded with.
Maximum possible points
3
What is this check, and why should you care
Using a long cache lifetime helps to ensure a high cache hit rate.
To get maximum points, your cache lifetime must be greater than or equal to 4 weeks. If your cache lifetime is less, then you will get some proportion of the score based on how close to 4 weeks you are.
The current cache lifetime is 684649 seconds (1 week and 22 hours).
Maximum possible points
10
Performed on the asset: https://www.finance.gov.au/sites/default/files/css/css_ZPysz_u9htG2s1M9NOuVqGsNbeIQtDpFnI36OnvxeEk.css?delta=0&language=en&theme=finance&include=eJxlisEOhCAMBX8I5ZPMK1SDKdS0oOvfb2Kyl_Uyh5kh1e7dcCwEs6KRfiLQKxkjJxuV3m0TJcjk_ZbStpDUOGYbB2TGjk9YS0NL_P_57Z1rJDiHs_Dl8eFcNQ_hL1fMPfI
See the HTTP headers for this CSS file.
What is this check, and why should you care
Having a cache hit ensures the fastest possible delivery of content to end users.
The response header X-Cache had a value of TCP_MEM_HIT from a23-39-111-5.deploy.akamaitechnologies.com (AkamaiGHost/22.4.2-1edda81bef43cb1c10d4898543aeed8e) (-).
Akamai has documentation on how to interpret the X-Cache and X-Cache-Remote headers.
Maximum possible points
10
What is this check, and why should you care
Using a long cache lifetime helps to ensure a high cache hit rate.
To get maximum points, your cache lifetime must be greater than or equal to 4 weeks. If your cache lifetime is less, then you will get some proportion of the score based on how close to 4 weeks you are.
The current cache lifetime is 2559830 seconds (1 month and 1 day).
Maximum possible points
10
What is this check, and why should you care
Using Last-Modified headers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-Modified-Since with a value of Sun, 21 Dec 2025 22:57:52 GMT was sent, and an HTTP 304 was responded with.
Maximum possible points
3
What is this check, and why should you care
The purpose of HTTP compression is to reduce the size of the files sent by a CDN/web server by eliminating redundant information in those files. The smaller the size of the files, the more quickly they can be served over the World Wide Web.
On top of faster delivery, compression also reduces the amount of bandwidth used by the CDN/web server. This is especially important for mobile devices, where the bandwidth is often limited.
The response header Content-Encoding had a value of br.
Akamai has documentation on how to enable Brotli compression.
See the Wikipedia page on HTTP compression for more background.
To get maximum points, you need to use Brotli or Zstandard compression.
Maximum possible points
2
What is this check, and why should you care
Using ETag identifiers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. This mechanism allows caches to be more efficient and saves bandwidth, as a Web server does not need to send a full response if the content has not changed. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-None-Match with a value of W/"69487b70-12ac" was sent, but an HTTP 304 was not responded with. So you have Etags, but they are not doing anything.
Akamai has documentation on how to enable Etag support (requires login).
See the Wikipedia page on ETag for more background.
To get maximum points, you need to have ETag identifiers and an HTTP 304 response must be received when using a valid If-None-Match request header.
Maximum possible points
3
Performed on the asset: https://www.finance.gov.au/sites/default/files/js/js_NelHS6hNLdWXeCdJSlqvlARb21HwG4-pCyEqZ67Cayg.js?scope=header&delta=0&language=en&theme=finance&include=eJxdjEEOgCAMBD-E8iTSItSaSk3pQX8vFz1wmWRnN4uq3t3gSghmrBE_EXCuSBRBlu6PcKNQuUHLJQ7salw5_2pakipJSQ4UaWDOKxxwh1O38VGsR27sLwL7O3Q
See the HTTP headers for this Javascript file.
What is this check, and why should you care
Having a cache hit ensures the fastest possible delivery of content to end users.
The response header X-Cache had a value of TCP_MEM_HIT from a23-39-111-5.deploy.akamaitechnologies.com (AkamaiGHost/22.4.2-1edda81bef43cb1c10d4898543aeed8e) (-).
Akamai has documentation on how to interpret the X-Cache and X-Cache-Remote headers.
Maximum possible points
10
What is this check, and why should you care
Using a long cache lifetime helps to ensure a high cache hit rate.
To get maximum points, your cache lifetime must be greater than or equal to 4 weeks. If your cache lifetime is less, then you will get some proportion of the score based on how close to 4 weeks you are.
The current cache lifetime is 2558646 seconds (1 month and 1 day).
Maximum possible points
10
What is this check, and why should you care
Using Last-Modified headers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-Modified-Since with a value of Sun, 21 Dec 2025 22:57:39 GMT was sent, and an HTTP 304 was responded with.
Maximum possible points
3
What is this check, and why should you care
The purpose of HTTP compression is to reduce the size of the files sent by a CDN/web server by eliminating redundant information in those files. The smaller the size of the files, the more quickly they can be served over the World Wide Web.
On top of faster delivery, compression also reduces the amount of bandwidth used by the CDN/web server. This is especially important for mobile devices, where the bandwidth is often limited.
The response header Content-Encoding had a value of br.
Akamai has documentation on how to enable Brotli compression.
See the Wikipedia page on HTTP compression for more background.
To get maximum points, you need to use Brotli or Zstandard compression.
Maximum possible points
2
What is this check, and why should you care
Using ETag identifiers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. This mechanism allows caches to be more efficient and saves bandwidth, as a Web server does not need to send a full response if the content has not changed. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-None-Match with a value of W/"69487b63-1a2" was sent, but an HTTP 304 was not responded with. So you have Etags, but they are not doing anything.
Akamai has documentation on how to enable Etag support (requires login).
See the Wikipedia page on ETag for more background.
To get maximum points, you need to have ETag identifiers and an HTTP 304 response must be received when using a valid If-None-Match request header.
Maximum possible points
3
| Name | Value |
|---|---|
| Status Code | HTTP 200 |
| Alt-Svc | h3=":443"; ma=93600 |
| Cache-Control | public, max-age=900 |
| Connection | keep-alive |
| Content-Encoding | br |
| Content-Language | en |
| Content-Length | 27996 |
| Content-Type | text/html; charset=UTF-8 |
| Date | Sun, 15 Feb 2026 14:43:30 GMT |
| ETag | W/"1771166608" |
| Edge-Cache-Tag | 0ltda 100q3 10h71 10p8c 10pe4 12c64 1343o 139fd 13lib 14054 147g4 14ap0 14ieg 14j2u 14ubt 14vj9 154f5 159eq 15dpq 160dh 166q3 1681t 16g6m 16vjp 171r3 17v39 1848q 187ad 18dfp 18g28 194as 194r2 19ahi 19bgl 19kcs 19ri7 19s9e 1ahc5 1bng2 1cbha 1cd3f 1ceod 1cmut 1cvv8 1d48u 1d59u 1d94f 1dc9o 1dn6k 1e09o 1e55i 1e7ab 1e8vm 1ec6v 1esef 1ev0i 1f515 1f667 1f9k7 1fkts 1frmt 1fvqi 1gdv6 1ggen 1gnsr 1h1s3 1h80a 1hmg9 1i9f1 1ilkr 1j4l7 1j6bg 1jb1u 1jhdg 1jj2c 1jk3c 1jm27 1jmh2 1jn18 1ju1a 1kdlb 1kloq 1l0lb 1l5ck 1l9ld 1lftd 1m0b3 1m53p 1n73n 1ne2i 1nesq 1o293 1o31s 1ommm 1pli1 1pu9i 1q7h1 1q7r3 1qhqc 1qtk1 1rfij 1rkc2 1rl4m 1rtvb 1s0g8 1s442 1seiu 1sj6v 1sjob 1sosq 1ss2b 1st1c 1ta89 1tb0m 1tnqg 1tpfg 1u64r 1ua46 1uds7 1uge7 1um7v 1uu3u 1vauu 1vqut 1vupl 20bdk 20bko 20eor 20go2 21ldq 21nq9 21svj 21vpl 22358 226oo 22a10 22hcu 22hld 24gkr 24mq7 24qhu 25771 25j3b 25kae 25p1p 266n5 2686d 268q5 26f8s 26sa3 26th1 276h8 2791o 27ct3 27efn 27ttf 28ad8 28vr1 28vr7 2916o 29hht 29u0g 29u23 29ueh 29vs1 2a08u 2a0vh 2anaf 2av9k 2bdfr 2bdss 2bmdj 2bq3f 2brp2 2ck44 2cv63 2d23g 2dctf 2dj5i 2djl1 2dk4t 2dpik 2dvam 2ecrf 2egvp 2ektc 2ev6j 2f2m3 2fdji 2ffh7 2fhre 2g198 2g7lt 2gelf 2gnd5 2gt4o 2gtnm 2gvfv 2h672 2hbnc 2hcmh 2hgat 2hk74 2hnve 2hp9d 2hrmk 2i2a7 2i9hf 2i9rl 2iaa7 2ilh5 2j1hv 2j4hh 2joj4 2jpao 2jvdo 2ki83 2l68c 2lmgp 2lnjd 2lqi0 2lsf9 2m2af 2m2vj 2mkbg 2n8lm 2ni4q 2nq1i 2o144 2o35h 2oaat 2ool7 2op94 2oq33 2p6ph 2p7t6 2pa1k 2pa9n 2pi5j 2q3ve 2q4ur 2qccu 2qfer 2qklo 2qo5b 2rd6f 2rdsc 2rltr 2ro18 2si7q 2sjfv 2sk70 2sogv 2sppn 2ta8s 2tfod 2tsv0 2u0ee 2u39u 2u9ea 2ut82 2v7gg 2vdbo 2veto 2vpgb 30eg6 30nsp 31el8 31hrm 32cei 3337l 336f5 336fe 33bt7 33ef8 33n5n 33ptp 343d0 348qp 34ae3 3515c 354ga 3582u 35f9n 364iu 369ek 36eih 36ml2 370p7 377g3 37a0h 37oqm 37spq 37up6 3870f 38b70 38h1l 394h7 394nm 39g74 39lug 3a6ul 3a81q 3ag5o 3ak7b 3akve 3bmdi 3bsdv 3c080 3c2bb 3c8fk 3c8nf 3c908 3ct2f 3d6og 3d8vc 3dnqp 3du6l 3e1v5 3e7sn 3ek54 3elq3 3emsk 3eq8c 3ero9 3f9nh 3fpkm 3fueh 3g48i 3gcch 3h4hu 3hfaq 3hjtg 3htrt 3i2p4 3i78u 3im83 3j86j 3jgtu 3ji5f 3jlpl 3jp0h 3jpsd 3kisa 3l0ug 3l84j 3lqp8 3lt8n 3mafe 3mfdf 3mih2 3min6 3n3ge 3ndt6 3nqnv 3oaln 3p31n 3pf56 3phsd 3pt54 3q33o 3q95h 3qdle 3qtob 3rc55 3rial 3s1d7 3s2l7 3s3e2 3sd95 3sjrr 3sut2 3t6qk 3t9j1 3tgre 3tldp 3tlve 3tr2a 3u8jr 3uuqg 3uvao 3v1nk 3v4hn 3v8bj 3vf55 3vf9c 3vvq4 400c2 401st 403af 405n4 40ddi 410eo 4149l 41ara 41pvc 420pe 42cll 42rr4 42ubp 4344e 438n4 43d76 43el5 43f67 43u8q 444gl 44b75 44mu8 44ofh 44osq 44q78 453fo 45ess 45jvk 45kua 45t9n 4639k 465kq 46bis 46f32 46t9r 471gr 47bgq 47i8v 47nfi 47uk0 480mj 48ns2 48oo5 490an 49p28 49t16 4a51h 4a8td 4ab5f 4adsg 4b0gp 4bg0u 4c2sk 4c5i5 4cb1d 4ckpm 4d24v 4dfb4 4dhil 4e917 4erjp 4f2ls 4f53r 4f5fd 4f646 4fb77 4fis6 4fnj5 4fqq6 4ga1v 4gqro 4h125 4hbi9 4hi83 4hsch 4htsq 4hvmq 4i58c 4ig7h 4in39 4j1jr 4j4p4 4jh5b 4jraq 4jvv1 4k0u5 4kjaf 4kqml 4l6jq 4limi 4ll96 4m77r 4m9fs 4mps8 4n8b5 4nfgs 4nmab 4nnhm 4nv7s 4o5vq 4o7aa 4oomu 4oqj8 4pbr9 4q9lp 4qd6o 4qdg1 4qgdo 4qhjf 4r4ci 4rc2s 4rd63 4s7od 4sbr5 4sc6m 4sfs7 4shmo 4tbe0 4tg15 4ts8g 4tsmh 4ttn0 4u3u6 4ulv5 4v6ca 4v7jh 4vj45 4vun4 501cs 506og 508q7 50ec7 50lph 5161f 51l2u 51la1 51m43 51qfi 527od 52ff0 52hqj 52jr3 532oh 534cl 534eg 53837 53ac6 53ep6 53h8o 53q5r 54fo3 55ceh 560jg 566q9 569cl 56fcm 56l66 56os3 5759f 57gib 57j1i 57uk2 57upq 57vnp 58692 58d44 58pd5 58s6t 58vgr 592u3 594l8 59bkc 59esj 59jv5 5a58s 5a7a2 5aag4 5acep 5af39 5ajan 5bmb7 5butq 5c0vj 5c199 5d1qv 5deip 5dhte 5dj4f 5dj6f 5dlms 5dlsf 5e0om 5e1b4 5e1m0 5ebv6 5eh77 5ejjt 5ejl7 5em0k 5eo3d 5eo6n 5evlt 5fdvu 5fho0 5g61v 5gc4m 5gngr 5go3s 5h7c6 5h7hj 5h9rd 5hv0b 5i8m0 5i902 5ivcq 5j8nk 5jd6o 5jj3s 5jl9v 5ket9 5ksbe 5kshv 5ksu7 5l50r 5m1le 5m3b5 5mqq9 5n0or 5n1pt 5n33r 5n5ko 5nfuv 5nh22 5niaq 5nl5r 5nlqn 5nn8l 5out0 5pf54 5pglq 5pohg 5q0et 5qp4m 5qv2a 5rdba 5rk8v 5rkpa 5snt6 5suhd 5tqcp 5tqto 5u6bq 5ua1c 5ufq1 5urqr 5v1ej 5vm0e 5vo5j 5vp92 60440 6075t 60l28 60qga 611fg 61hj8 61s38 62d64 62k35 636oe 637p9 63flj 63p95 644nt 648vn 64an6 64v6v 64vmo 650tl 65269 656ea 65bkd 65jn2 65n6l 65ota 65tcb 65ti3 666d7 66shk 67ea4 67gre 67kfp 67vm9 684j1 68jl0 68spu 68vdv 692s6 69a64 69hb4 69i54 69osd 6a3uv 6ar8o 6as22 6b2ef 6b307 6baa7 6bei6 6bt7e 6cdte 6crbs 6csuq 6d7o4 6de34 6decm 6dmmp 6dqir 6dukp 6ebat 6ejss 6ep4r 6f86j 6fi92 6fr46 6gajn 6gifa 6gpa7 6h8qc 6hegv 6hfeb 6hlkh 6idua 6ig9d 6j4bs 6jbaj 6jjg3 6jlp7 6k1hc 6k8o9 6kaer 6kboo 6ke3g 6ksbq 6lc6r 6m1ui 6m20a 6m4h4 6ma6e 6mau2 6md8r 6mm44 6mpvq 6mus6 6n2qn 6n7fd 6n7l4 6ng76 6nqrv 6nshc 6o0cd 6o35n 6o7cu 6oagt 6oaqc 6ob45 6ol9c 6oq9q 6p890 6p93g 6pl1q 6qc0e 6qk67 6qqhh 6qrtj 6r3in 6r962 6rcnn 6rg8e 6ro6m 6rs7d 6rsbd 6slr9 6svoa 6tdhb 6totv 6tulq 6tvhg 6u789 6ua6d 6unp4 6v5m7 6v6t8 6vd7n 6virp 6vnrs 6vp63 6vs20 70hjh 70kh4 70rf7 70rho 717tt 71kll 72b06 72dcb 72fib 72gmf 72iga 73dgo 73iqh 73juc 73puo 73slk 73t2h 74f9e 74g74 74kfj 75048 754da 758rg 75sv5 75vk5 765f0 765md 767l9 76is0 76ren 779pk 77bk9 77gu3 77hk8 783sk 78nv9 78t8j 7977d 7994f 79emj 79fkg 79gsj 79js1 7a6e2 7aa2l 7acbh 7aehq 7aiqj 7at9u 7avsi 7b0rc 7b1dm 7bego 7bgen 7bhfo 7bkeq 7br2a 7bt3g 7c8ka 7ccuc 7cee1 7co2p 7d0d9 7d3vb 7d5ln 7e607 7e9o3 7eob1 7er7t 7etr4 7f2g5 7f87u 7ff8g 7fmpu 7fppd 7fstp 7ge3n 7ghd8 7gkfi 7gvi9 7h3g2 7hc8l 7hp20 7i35r 7i377 7ibn1 7igq6 7isnn 7j4tr 7j5ae 7j7v0 7jhkp 7k8jn 7kbm2 7kc1m 7kd73 7krr9 7l16r 7lgvu 7lkdo 7m2n6 7mbjk 7mh2d 7mkrj 7mn4g 7muqc 7n0e1 7ndln 7nhfi 7nmhm 7nopb 7np9f 7npeb 7nv0h 7ogo7 7oqa9 7puah 7q5f8 7qt4r 7r8ch 7r94v 7rg7s 7rhu0 7rnco 7rq23 7rqdt 7rrlk 7ruvc 7sdq7 7sp1s 7sv8u 7t777 7te3c 7tkpa 7tmbt 7tq67 7ttfj 7u3o9 7u4od 7u8qn 7u95i 7vec0 7veof 7vg5u 7vj13 7vjed 7vntl 7vuvl 8k19f 8t1eh 91u4f 94ssg 9a9vn 9c52n 9h77k 9p7o3 akqsd anvf3 b89l1 b9av8 bir7c cec2k ceiq7 d3f23 d4jqb d8e0a dftld dnu9j druk4 dtapf e84d4 ebk1d ec713 edide evhcd f1l5q f36h5 f7m1j f9n13 fke7f fquko g0rfq g32b0 gide1 gmjir gtdim hqreg hrsje hu6c6 ih8rr is8qk j8on5 jiteu k4vj7 kfp7n kobvn l68p4 lecid lmc7t lrruh mfdtb mqdtp n8d5i na5ip ngnde ngu72 nut3p nv5sh o1274 o227a o7u46 oedc7 pkjjd psljf qqh8d qqi8p re4eh rmg0p rmnhe s1n7o sgsj3 snqt6 ss0av t79bs t8fk9 t9ve8 tkk0s tmocp tqbd2 trcre u05ca u06ft u947k uk2v6 uqus5 ut6f9 vakhd vqpv6 vsotl vv0em |
| Expires | Sun, 15 Feb 2026 14:58:30 GMT |
| Last-Modified | Sun, 15 Feb 2026 14:43:28 GMT |
| X-Akamai-Cache-Tag-Error | TAGSCNT 2ed2f |
| X-Cache | TCP_MEM_HIT from a23-39-111-5.deploy.akamaitechnologies.com (AkamaiGHost/22.4.2-1edda81bef43cb1c10d4898543aeed8e) (-) |
| X-Cache-Key | S/L/84451/628835/1d/www.finance.gov.au/publications/executive-remuneration-reporting |
| X-Cache-Key-Extended-Internal-Use-Only | S/L/84451/628835/1d/www.finance.gov.au/publications/executive-remuneration-reporting vcd=6147 |
| X-Check-Cacheable | YES |
| X-Lagoon | amazeeio-govcms5>sigsci-ingress-nginx>finance-master:nginx> |
You can use the following cURL command:
curl -sLIXGET -H 'Pragma: akamai-x-cache-on, akamai-x-cache-remote-on, akamai-x-check-cacheable, akamai-x-get-cache-key, akamai-x-get-cache-tags' -H 'Accept-Encoding: br, zstd, gzip, deflate' 'https://www.finance.gov.au/publications/executive-remuneration-reporting' | sort