wip(growth): fetch|extract|save indicators from WHO

Initial implementation to fetch growth indicators from WHO.

For now, the system merges the measurements for each gender and age
group in a single `csv` file.

The final solution should do this, saving a `dets` file.
This commit is contained in:
João Paulo Dubas 2024-06-04 13:57:32 +00:00
parent ece17e3cf9
commit 58f14c0346
Signed by: joao.dubas
SSH Key Fingerprint: SHA256:V1mixgOGRc/YMhGx/DNkOSmJxgA2vHNrDZEk3wt/kOA
11 changed files with 2551 additions and 1 deletions

View File

@ -0,0 +1,278 @@
defmodule Growth.Indicators.Download do
@moduledoc """
Download, extract, and load indicators to construct z-score for:
* [height for age 0 to 5 years](https://www.who.int/tools/child-growth-standards/standards/length-height-for-age)
* [height for age 5 to 19 years](https://www.who.int/tools/growth-reference-data-for-5to19-years/indicators/height-for-age)
* [weight for age 0 to 5 years](https://www.who.int/tools/child-growth-standards/standards/weight-for-age)
* [weight for age 5 to 10 years](https://www.who.int/tools/growth-reference-data-for-5to19-years/indicators/weight-for-age-5to10-years)
* [weight for height](https://www.who.int/tools/child-growth-standards/standards/weight-for-length-height)
* [body mass index (bmi) for age 0 to 5 years](https://www.who.int/toolkits/child-growth-standards/standards/body-mass-index-for-age-bmi-for-age)
* [body mass index (bmi) for age 5 to 19 years](https://www.who.int/tools/growth-reference-data-for-5to19-years/indicators/bmi-for-age)
* [head circumference for age 0 to 5 years](https://www.who.int/tools/child-growth-standards/standards/head-circumference-for-age)
* [arm circumference for age 3 months to 5 years](https://www.who.int/tools/child-growth-standards/standards/arm-circumference-for-age)
* [subscapular skinfold for age 3 months to 5 years](https://www.who.int/tools/child-growth-standards/standards/subscapular-skinfold-for-age)
* [triceps skinfold for age 3 months to 5 years](https://www.who.int/tools/child-growth-standards/standards/triceps-skinfold-for-age)
"""
NimbleCSV.define(IndicatorParser, separator: ",", escape: "\"")
@urls %{
height_for_age: %{
female: %{
age_tables: ~w[
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx
],
expanded_tables: ~w[
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx
]
},
male: %{
age_tables: ~w[
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx
],
expanded_tables: ~w[
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx
]
}
},
weight_for_age: %{
female: %{
age_tables: ~w[
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx
],
expanded_tables: ~w[
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx
]
},
male: %{
age_tables: ~w[
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx
],
expanded_tables: ~w[
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx
]
}
},
weight_for_height: %{
female: %{
age_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx
),
expanded_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx
)
},
male: %{
age_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx
),
expanded_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx
)
}
},
bmi_for_age: %{
female: %{
age_tables: ~w[
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx
],
expanded_tables: ~w[
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx
]
},
male: %{
age_tables: ~w[
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx
],
expanded_tables: ~w[
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx
]
}
},
head_circumference_for_age: %{
female: %{
age_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx
),
expanded_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx
)
},
male: %{
age_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx
),
expanded_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx
)
}
},
arm_circumference_for_age: %{
female: %{
age_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx
),
expanded_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx
)
},
male: %{
age_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx
),
expanded_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx
)
}
},
subscapular_skinfold_for_age: %{
female: %{
age_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx
),
expanded_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx
)
},
male: %{
age_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx
),
expanded_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx
)
}
},
triceps_skinfold_for_age: %{
female: %{
age_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx
),
expanded_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx
)
},
male: %{
age_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx
),
expanded_tables: ~w(
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx
)
}
}
}
def process_all do
@urls
|> Enum.map(&Task.async(__MODULE__, :process_measure, [&1]))
|> Task.await_many()
end
def process_measure(
{measure,
%{
female: %{age_tables: female_urls, expanded_tables: _},
male: %{age_tables: male_urls, expanded_tables: _}
}}
) do
[{:female, female_urls}, {:male, male_urls}]
|> Enum.map(&Task.async(__MODULE__, :process_gender, [&1]))
|> Task.await_many()
|> merge()
|> as_csv()
|> save(measure)
end
def process_gender({gender, urls}) do
urls
|> Enum.map(&Task.async(__MODULE__, :process, [gender, &1]))
|> Task.await_many()
|> merge()
end
def process(gender, url) do
url
|> fetch!()
|> extract!(url)
|> convert(gender, url)
end
def fetch!(url) do
with {:ok, %{status: 200, body: body}} <- Req.get(url) do
body
else
_ -> raise("fetch failed for url #{url}")
end
end
def extract!(content, url) do
with {:ok, package} <- XlsxReader.open(content, source: :binary),
[sheet_name | _] <- XlsxReader.sheet_names(package),
{:ok, data} <- XlsxReader.sheet(package, sheet_name) do
data
else
_ -> raise("failed to extract excel for #{url}")
end
end
def convert([header | rows], gender, url) do
age = header |> hd() |> String.downcase()
fixed_header = header |> tl() |> Enum.map(&String.downcase/1) |> Enum.map(&String.trim/1)
parsed_header = ["source" | ["gender" | ["age_unit" | ["age" | fixed_header]]]]
parsed_rows =
Enum.map(rows, fn row ->
parsed_row = Enum.map(row, &Decimal.new/1)
[url | [gender | [age | parsed_row]]]
end)
[parsed_header | parsed_rows]
end
def merge(datum) do
Enum.reduce(datum, [], fn data, accum ->
Enum.concat(accum, data)
end)
end
def as_csv(data) do
IndicatorParser.dump_to_iodata(data)
end
def save(data, measurement) do
File.write("priv/growth/indicators/#{measurement}.csv", data)
end
end

View File

@ -33,6 +33,7 @@ defmodule Wabanex.MixProject do
{:absinthe_plug, "~> 1.5.0"},
{:credo, "~> 1.7.0", only: [:dev, :test], runtime: false},
{:crudry, "~> 2.4.0"},
{:decimal, "~> 2.1.0"},
{:dialyxir, "~> 1.4.0", only: [:dev, :test], runtime: false},
{:ecto_sql, "~> 3.11.0"},
{:gettext, "~> 0.24.0"},
@ -40,6 +41,7 @@ defmodule Wabanex.MixProject do
{:junit_formatter, "~> 3.4.0", only: [:test]},
{:lcov_ex, "~> 0.3.0", only: [:dev, :test], runtime: false},
{:mix_audit, "~> 2.1.0", only: [:dev, :test], runtime: false},
{:nimble_csv, "~> 1.2.0"},
{:pg_ranges, "~> 1.1.0"},
{:phoenix, "~> 1.7.0"},
{:phoenix_ecto, "~> 4.6.0"},
@ -48,9 +50,11 @@ defmodule Wabanex.MixProject do
{:plug_cowboy, "~> 2.7.0"},
{:postgrex, "~> 0.18.0"},
{:prom_ex, "~> 1.9.0"},
{:req, "~> 0.5.0"},
{:sobelow, "~> 0.13", only: [:dev, :test], runtime: false},
{:telemetry_metrics, "~> 0.6.0"},
{:telemetry_poller, "~> 1.1.0"}
{:telemetry_poller, "~> 1.1.0"},
{:xlsx_reader, "~> 0.8.0"}
]
end

View File

@ -25,6 +25,7 @@
"mime": {:hex, :mime, "2.0.5", "dc34c8efd439abe6ae0343edbb8556f4d63f178594894720607772a041b04b02", [:mix], [], "hexpm", "da0d64a365c45bc9935cc5c8a7fc5e49a0e0f9932a761c55d6c52b142780a05c"},
"mint": {:hex, :mint, "1.5.2", "4805e059f96028948870d23d7783613b7e6b0e2fb4e98d720383852a760067fd", [:mix], [{:castore, "~> 0.1.0 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:hpax, "~> 0.1.1", [hex: :hpax, repo: "hexpm", optional: false]}], "hexpm", "d77d9e9ce4eb35941907f1d3df38d8f750c357865353e21d335bdcdf6d892a02"},
"mix_audit": {:hex, :mix_audit, "2.1.3", "c70983d5cab5dca923f9a6efe559abfb4ec3f8e87762f02bab00fa4106d17eda", [:make, :mix], [{:jason, "~> 1.1", [hex: :jason, repo: "hexpm", optional: false]}, {:yaml_elixir, "~> 2.9", [hex: :yaml_elixir, repo: "hexpm", optional: false]}], "hexpm", "8c3987100b23099aea2f2df0af4d296701efd031affb08d0746b2be9e35988ec"},
"nimble_csv": {:hex, :nimble_csv, "1.2.0", "4e26385d260c61eba9d4412c71cea34421f296d5353f914afe3f2e71cce97722", [:mix], [], "hexpm", "d0628117fcc2148178b034044c55359b26966c6eaa8e2ce15777be3bbc91b12a"},
"nimble_options": {:hex, :nimble_options, "1.1.0", "3b31a57ede9cb1502071fade751ab0c7b8dbe75a9a4c2b5bbb0943a690b63172", [:mix], [], "hexpm", "8bbbb3941af3ca9acc7835f5655ea062111c9c27bcac53e004460dfd19008a99"},
"nimble_parsec": {:hex, :nimble_parsec, "1.4.0", "51f9b613ea62cfa97b25ccc2c1b4216e81df970acd8e16e8d1bdc58fef21370d", [:mix], [], "hexpm", "9c565862810fb383e9838c1dd2d7d2c437b3d13b267414ba6af33e50d2d1cf28"},
"nimble_pool": {:hex, :nimble_pool, "1.0.0", "5eb82705d138f4dd4423f69ceb19ac667b3b492ae570c9f5c900bb3d2f50a847", [:mix], [], "hexpm", "80be3b882d2d351882256087078e1b1952a28bf98d0a287be87e4a24a710b67a"},
@ -44,6 +45,8 @@
"postgrex": {:hex, :postgrex, "0.18.0", "f34664101eaca11ff24481ed4c378492fed2ff416cd9b06c399e90f321867d7e", [:mix], [{:db_connection, "~> 2.1", [hex: :db_connection, repo: "hexpm", optional: false]}, {:decimal, "~> 1.5 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:table, "~> 0.1.0", [hex: :table, repo: "hexpm", optional: true]}], "hexpm", "a042989ba1bc1cca7383ebb9e461398e3f89f868c92ce6671feb7ef132a252d1"},
"prom_ex": {:hex, :prom_ex, "1.9.0", "63e6dda6c05cdeec1f26c48443dcc38ffd2118b3665ae8d2bd0e5b79f2aea03e", [:mix], [{:absinthe, ">= 1.6.0", [hex: :absinthe, repo: "hexpm", optional: true]}, {:broadway, ">= 1.0.2", [hex: :broadway, repo: "hexpm", optional: true]}, {:ecto, ">= 3.5.0", [hex: :ecto, repo: "hexpm", optional: true]}, {:finch, "~> 0.15", [hex: :finch, repo: "hexpm", optional: false]}, {:jason, "~> 1.2", [hex: :jason, repo: "hexpm", optional: false]}, {:oban, ">= 2.4.0", [hex: :oban, repo: "hexpm", optional: true]}, {:octo_fetch, "~> 0.3", [hex: :octo_fetch, repo: "hexpm", optional: false]}, {:phoenix, ">= 1.5.0", [hex: :phoenix, repo: "hexpm", optional: true]}, {:phoenix_live_view, ">= 0.14.0", [hex: :phoenix_live_view, repo: "hexpm", optional: true]}, {:plug, ">= 1.12.1", [hex: :plug, repo: "hexpm", optional: true]}, {:plug_cowboy, "~> 2.5", [hex: :plug_cowboy, repo: "hexpm", optional: false]}, {:telemetry, ">= 1.0.0", [hex: :telemetry, repo: "hexpm", optional: false]}, {:telemetry_metrics, "~> 0.6", [hex: :telemetry_metrics, repo: "hexpm", optional: false]}, {:telemetry_metrics_prometheus_core, "~> 1.0", [hex: :telemetry_metrics_prometheus_core, repo: "hexpm", optional: false]}, {:telemetry_poller, "~> 1.0", [hex: :telemetry_poller, repo: "hexpm", optional: false]}], "hexpm", "01f3d4f69ec93068219e686cc65e58a29c42bea5429a8ff4e2121f19db178ee6"},
"ranch": {:hex, :ranch, "1.8.0", "8c7a100a139fd57f17327b6413e4167ac559fbc04ca7448e9be9057311597a1d", [:make, :rebar3], [], "hexpm", "49fbcfd3682fab1f5d109351b61257676da1a2fdbe295904176d5e521a2ddfe5"},
"req": {:hex, :req, "0.5.0", "6d8a77c25cfc03e06a439fb12ffb51beade53e3fe0e2c5e362899a18b50298b3", [:mix], [{:brotli, "~> 0.3.1", [hex: :brotli, repo: "hexpm", optional: true]}, {:ezstd, "~> 1.0", [hex: :ezstd, repo: "hexpm", optional: true]}, {:finch, "~> 0.17", [hex: :finch, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}, {:mime, "~> 1.6 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:nimble_csv, "~> 1.0", [hex: :nimble_csv, repo: "hexpm", optional: true]}, {:plug, "~> 1.0", [hex: :plug, repo: "hexpm", optional: true]}], "hexpm", "dda04878c1396eebbfdec6db6f3d4ca609e5c8846b7ee88cc56eb9891406f7a3"},
"saxy": {:hex, :saxy, "1.5.0", "0141127f2d042856f135fb2d94e0beecda7a2306f47546dbc6411fc5b07e28bf", [:mix], [], "hexpm", "ea7bb6328fbd1f2aceffa3ec6090bfb18c85aadf0f8e5030905e84235861cf89"},
"sobelow": {:hex, :sobelow, "0.13.0", "218afe9075904793f5c64b8837cc356e493d88fddde126a463839351870b8d1e", [:mix], [{:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "cd6e9026b85fc35d7529da14f95e85a078d9dd1907a9097b3ba6ac7ebbe34a0d"},
"ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.7", "354c321cf377240c7b8716899e182ce4890c5938111a1296add3ec74cf1715df", [:make, :mix, :rebar3], [], "hexpm", "fe4c190e8f37401d30167c8c405eda19469f34577987c76dde613e838bbc67f8"},
"telemetry": {:hex, :telemetry, "1.2.1", "68fdfe8d8f05a8428483a97d7aab2f268aaff24b49e0f599faa091f1d4e7f61c", [:rebar3], [], "hexpm", "dad9ce9d8effc621708f99eac538ef1cbe05d6a874dd741de2e689c47feafed5"},
@ -52,6 +55,7 @@
"telemetry_poller": {:hex, :telemetry_poller, "1.1.0", "58fa7c216257291caaf8d05678c8d01bd45f4bdbc1286838a28c4bb62ef32999", [:rebar3], [{:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "9eb9d9cbfd81cbd7cdd24682f8711b6e2b691289a0de6826e58452f28c103c8f"},
"websock": {:hex, :websock, "0.5.3", "2f69a6ebe810328555b6fe5c831a851f485e303a7c8ce6c5f675abeb20ebdadc", [:mix], [], "hexpm", "6105453d7fac22c712ad66fab1d45abdf049868f253cf719b625151460b8b453"},
"websock_adapter": {:hex, :websock_adapter, "0.5.5", "9dfeee8269b27e958a65b3e235b7e447769f66b5b5925385f5a569269164a210", [:mix], [{:bandit, ">= 0.6.0", [hex: :bandit, repo: "hexpm", optional: true]}, {:plug, "~> 1.14", [hex: :plug, repo: "hexpm", optional: false]}, {:plug_cowboy, "~> 2.6", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:websock, "~> 0.5", [hex: :websock, repo: "hexpm", optional: false]}], "hexpm", "4b977ba4a01918acbf77045ff88de7f6972c2a009213c515a445c48f224ffce9"},
"xlsx_reader": {:hex, :xlsx_reader, "0.8.5", "38eeee188a0cefcd02de6c3d92dadde86ab6d19c25af8715426fd4371ae578f7", [:mix], [{:decimal, "~> 1.0 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: true]}, {:saxy, "~> 1.5.0", [hex: :saxy, repo: "hexpm", optional: false]}], "hexpm", "7ab63f243750c2b41fada3683ec22fd7d0415f0da54460bd61bef1296c952395"},
"yamerl": {:hex, :yamerl, "0.10.0", "4ff81fee2f1f6a46f1700c0d880b24d193ddb74bd14ef42cb0bcf46e81ef2f8e", [:rebar3], [], "hexpm", "346adb2963f1051dc837a2364e4acf6eb7d80097c0f53cbdc3046ec8ec4b4e6e"},
"yaml_elixir": {:hex, :yaml_elixir, "2.9.0", "9a256da867b37b8d2c1ffd5d9de373a4fda77a32a45b452f1708508ba7bbcb53", [:mix], [{:yamerl, "~> 0.10", [hex: :yamerl, repo: "hexpm", optional: false]}], "hexpm", "0cb0e7d4c56f5e99a6253ed1a670ed0e39c13fc45a6da054033928607ac08dfc"},
}

View File

@ -0,0 +1,118 @@
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,3,-0.17330000000000001,13.0284,0.082629999999999995,10.199999999999999,11.1,12,13,14.2,15.4,16.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,4,-0.17330000000000001,13.3649,0.082979999999999998,10.5,11.3,12.3,13.4,14.5,15.8,17.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,5,-0.17330000000000001,13.6061,0.083250000000000005,10.7,11.5,12.5,13.6,14.8,16.100000000000001,17.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,6,-0.17330000000000001,13.777100000000001,0.083430000000000004,10.8,11.7,12.7,13.8,15,16.3,17.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,7,-0.17330000000000001,13.9018,0.083519999999999997,10.9,11.8,12.8,13.9,15.1,16.5,18
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,8,-0.17330000000000001,13.995200000000001,0.083510000000000001,11,11.9,12.9,14,15.2,16.600000000000001,18.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,9,-0.17330000000000001,14.0665,0.083419999999999994,11,11.9,12.9,14.1,15.3,16.7,18.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,10,-0.17330000000000001,14.121700000000001,0.083260000000000001,11.1,12,13,14.1,15.4,16.7,18.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,11,-0.17330000000000001,14.166700000000001,0.083049999999999999,11.1,12,13,14.2,15.4,16.8,18.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,12,-0.17330000000000001,14.2065,0.082799999999999999,11.1,12.1,13.1,14.2,15.4,16.8,18.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,13,-0.17330000000000001,14.2455,0.082540000000000002,11.2,12.1,13.1,14.2,15.5,16.8,18.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,14,-0.17330000000000001,14.2859,0.082269999999999996,11.2,12.1,13.2,14.3,15.5,16.899999999999999,18.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,15,-0.17330000000000001,14.328900000000001,0.082019999999999996,11.3,12.2,13.2,14.3,15.6,16.899999999999999,18.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,16,-0.17330000000000001,14.3752,0.081790000000000002,11.3,12.2,13.3,14.4,15.6,17,18.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,17,-0.17330000000000001,14.4254,0.081600000000000006,11.4,12.3,13.3,14.4,15.7,17,18.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,18,-0.17330000000000001,14.4795,0.081430000000000002,11.4,12.3,13.4,14.5,15.7,17.100000000000001,18.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,19,-0.17330000000000001,14.5372,0.081309999999999993,11.4,12.4,13.4,14.5,15.8,17.100000000000001,18.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,20,-0.17330000000000001,14.598699999999999,0.081229999999999997,11.5,12.4,13.5,14.6,15.8,17.2,18.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,21,-0.17330000000000001,14.6639,0.081180000000000002,11.6,12.5,13.5,14.7,15.9,17.3,18.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,22,-0.17330000000000001,14.732799999999999,0.081180000000000002,11.6,12.6,13.6,14.7,16,17.399999999999999,18.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,23,-0.17330000000000001,14.8049,0.081210000000000004,11.7,12.6,13.7,14.8,16.100000000000001,17.5,19
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,24,-0.17330000000000001,14.8795,0.081269999999999995,11.7,12.7,13.7,14.9,16.100000000000001,17.5,19.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,25,-0.17330000000000001,14.9559,0.081360000000000002,11.8,12.7,13.8,15,16.2,17.600000000000001,19.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,26,-0.17330000000000001,15.0327,0.081470000000000001,11.8,12.8,13.9,15,16.3,17.7,19.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,27,-0.17330000000000001,15.108499999999999,0.081610000000000002,11.9,12.9,13.9,15.1,16.399999999999999,17.8,19.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,28,-0.17330000000000001,15.181699999999999,0.081780000000000005,11.9,12.9,14,15.2,16.5,17.899999999999999,19.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,29,-0.17330000000000001,15.2514,0.081960000000000005,12,13,14.1,15.3,16.600000000000001,18,19.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,30,-0.17330000000000001,15.316800000000001,0.082170000000000007,12,13,14.1,15.3,16.600000000000001,18.100000000000001,19.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,31,-0.17330000000000001,15.3779,0.082400000000000001,12.1,13.1,14.2,15.4,16.7,18.2,19.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,32,-0.17330000000000001,15.4351,0.082650000000000001,12.1,13.1,14.2,15.4,16.8,18.3,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,33,-0.17330000000000001,15.4895,0.082919999999999994,12.1,13.2,14.3,15.5,16.8,18.3,20
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,34,-0.17330000000000001,15.542299999999999,0.083199999999999996,12.2,13.2,14.3,15.5,16.899999999999999,18.399999999999999,20.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,35,-0.17330000000000001,15.594099999999999,0.083510000000000001,12.2,13.2,14.4,15.6,17,18.5,20.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,36,-0.17330000000000001,15.6456,0.083830000000000002,12.2,13.3,14.4,15.6,17,18.5,20.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,37,-0.17330000000000001,15.696899999999999,0.084159999999999999,12.3,13.3,14.4,15.7,17.100000000000001,18.600000000000001,20.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,38,-0.17330000000000001,15.7483,0.084510000000000002,12.3,13.3,14.5,15.7,17.100000000000001,18.7,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,39,-0.17330000000000001,15.7997,0.084870000000000001,12.3,13.4,14.5,15.8,17.2,18.8,20.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,40,-0.17330000000000001,15.850899999999999,0.085250000000000006,12.3,13.4,14.6,15.9,17.3,18.8,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,41,-0.17330000000000001,15.9016,0.085629999999999998,12.4,13.4,14.6,15.9,17.3,18.899999999999999,20.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,42,-0.17330000000000001,15.9518,0.086019999999999999,12.4,13.5,14.6,16,17.399999999999999,19,20.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,43,-0.17330000000000001,16.0016,0.086419999999999997,12.4,13.5,14.7,16,17.5,19.100000000000001,20.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,44,-0.17330000000000001,16.050899999999999,0.086830000000000004,12.4,13.5,14.7,16.100000000000001,17.5,19.100000000000001,21
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,45,-0.17330000000000001,16.100100000000001,0.087230000000000002,12.5,13.6,14.8,16.100000000000001,17.600000000000001,19.2,21
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,46,-0.17330000000000001,16.149100000000001,0.087650000000000006,12.5,13.6,14.8,16.100000000000001,17.600000000000001,19.3,21.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,47,-0.17330000000000001,16.1983,0.088059999999999999,12.5,13.6,14.8,16.2,17.7,19.399999999999999,21.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,48,-0.17330000000000001,16.247699999999998,0.088480000000000003,12.5,13.6,14.9,16.2,17.8,19.399999999999999,21.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,49,-0.17330000000000001,16.2974,0.088900000000000007,12.6,13.7,14.9,16.3,17.8,19.5,21.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,50,-0.17330000000000001,16.3475,0.089319999999999997,12.6,13.7,15,16.3,17.899999999999999,19.600000000000001,21.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,51,-0.17330000000000001,16.398099999999999,0.08974,12.6,13.7,15,16.399999999999999,18,19.7,21.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,52,-0.17330000000000001,16.449000000000002,0.090160000000000004,12.6,13.8,15,16.399999999999999,18,19.8,21.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,53,-0.17330000000000001,16.5001,0.090569999999999998,12.7,13.8,15.1,16.5,18.100000000000001,19.8,21.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,54,-0.17330000000000001,16.551400000000001,0.090990000000000001,12.7,13.8,15.1,16.600000000000001,18.100000000000001,19.899999999999999,21.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,55,-0.17330000000000001,16.602599999999999,0.091399999999999995,12.7,13.9,15.2,16.600000000000001,18.2,20,22
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,56,-0.17330000000000001,16.653400000000001,0.091810000000000003,12.7,13.9,15.2,16.7,18.3,20.100000000000001,22.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,57,-0.17330000000000001,16.703900000000001,0.09221,12.7,13.9,15.2,16.7,18.3,20.100000000000001,22.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,58,-0.17330000000000001,16.753900000000002,0.092619999999999994,12.8,14,15.3,16.8,18.399999999999999,20.2,22.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,59,-0.17330000000000001,16.8034,0.093009999999999995,12.8,14,15.3,16.8,18.5,20.3,22.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,60,-0.17330000000000001,16.852599999999999,0.093410000000000007,12.8,14,15.4,16.899999999999999,18.5,20.399999999999999,22.5
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,3,0.39279999999999998,13.4817,0.074749999999999997,10.7,11.6,12.5,13.5,14.5,15.6,16.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,4,0.34749999999999998,13.809699999999999,0.075230000000000005,10.9,11.8,12.8,13.8,14.9,16,17.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,5,0.30919999999999997,14.0585,0.075660000000000005,11.1,12,13,14.1,15.2,16.3,17.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,6,0.27550000000000002,14.238899999999999,0.076009999999999994,11.3,12.2,13.2,14.2,15.4,16.5,17.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,7,0.24529999999999999,14.367800000000001,0.076289999999999997,11.4,12.3,13.3,14.4,15.5,16.7,18
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,8,0.21790000000000001,14.459099999999999,0.076499999999999999,11.4,12.4,13.4,14.5,15.6,16.8,18.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,9,0.1925,14.5245,0.076649999999999996,11.5,12.4,13.4,14.5,15.7,16.899999999999999,18.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,10,0.16900000000000001,14.5733,0.076759999999999995,11.5,12.5,13.5,14.6,15.7,17,18.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,11,0.1469,14.6119,0.076829999999999996,11.6,12.5,13.5,14.6,15.8,17,18.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,12,0.12609999999999999,14.6449,0.07689,11.6,12.5,13.6,14.6,15.8,17.100000000000001,18.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,13,0.10639999999999999,14.675800000000001,0.076939999999999995,11.6,12.6,13.6,14.7,15.8,17.100000000000001,18.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,14,0.087599999999999997,14.706300000000001,0.076990000000000003,11.6,12.6,13.6,14.7,15.9,17.100000000000001,18.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,15,0.069699999999999998,14.738,0.077030000000000001,11.7,12.6,13.6,14.7,15.9,17.2,18.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,16,0.052600000000000001,14.7723,0.07707,11.7,12.7,13.7,14.8,16,17.2,18.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,17,0.036200000000000003,14.8095,0.077100000000000002,11.7,12.7,13.7,14.8,16,17.3,18.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,18,0.020400000000000001,14.849600000000001,0.077130000000000004,11.8,12.7,13.7,14.8,16,17.3,18.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,19,0.0051000000000000004,14.8926,0.077170000000000002,11.8,12.8,13.8,14.9,16.100000000000001,17.399999999999999,18.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,20,-0.0097000000000000003,14.938800000000001,0.077210000000000001,11.9,12.8,13.8,14.9,16.100000000000001,17.399999999999999,18.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,21,-0.023900000000000001,14.988300000000001,0.077249999999999999,11.9,12.8,13.9,15,16.2,17.5,18.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,22,-0.0378,15.041,0.077310000000000004,11.9,12.9,13.9,15,16.3,17.600000000000001,19
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,23,-0.051200000000000002,15.096399999999999,0.077380000000000004,12,12.9,14,15.1,16.3,17.600000000000001,19.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,24,-0.064299999999999996,15.153600000000001,0.077460000000000001,12,13,14,15.2,16.399999999999999,17.7,19.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,25,-0.076999999999999999,15.211499999999999,0.077549999999999994,12.1,13,14.1,15.2,16.399999999999999,17.8,19.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,26,-0.089399999999999993,15.269299999999999,0.077670000000000003,12.1,13.1,14.1,15.3,16.5,17.899999999999999,19.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,27,-0.1014,15.325900000000001,0.077799999999999994,12.2,13.1,14.2,15.3,16.600000000000001,17.899999999999999,19.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,28,-0.1132,15.380800000000001,0.077939999999999995,12.2,13.2,14.2,15.4,16.600000000000001,18,19.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,29,-0.12479999999999999,15.4336,0.078100000000000003,12.3,13.2,14.3,15.4,16.7,18.100000000000001,19.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,30,-0.13600000000000001,15.4839,0.078270000000000006,12.3,13.3,14.3,15.5,16.8,18.100000000000001,19.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,31,-0.14699999999999999,15.531700000000001,0.078460000000000002,12.3,13.3,14.4,15.5,16.8,18.2,19.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,32,-0.1578,15.5771,0.078659999999999994,12.4,13.3,14.4,15.6,16.899999999999999,18.3,19.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,33,-0.16839999999999999,15.620100000000001,0.078869999999999996,12.4,13.4,14.4,15.6,16.899999999999999,18.3,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,34,-0.17879999999999999,15.661099999999999,0.079089999999999994,12.4,13.4,14.5,15.7,17,18.399999999999999,20
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,35,-0.189,15.7003,0.079329999999999998,12.4,13.4,14.5,15.7,17,18.399999999999999,20
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,36,-0.19889999999999999,15.738,0.079560000000000006,12.5,13.5,14.5,15.7,17.100000000000001,18.5,20.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,37,-0.2087,15.7745,0.079810000000000006,12.5,13.5,14.6,15.8,17.100000000000001,18.600000000000001,20.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,38,-0.21840000000000001,15.8101,0.080060000000000006,12.5,13.5,14.6,15.8,17.100000000000001,18.600000000000001,20.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,39,-0.2278,15.845000000000001,0.080320000000000003,12.5,13.5,14.6,15.8,17.2,18.7,20.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,40,-0.23719999999999999,15.879300000000001,0.080579999999999999,12.6,13.6,14.7,15.9,17.2,18.7,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,41,-0.24629999999999999,15.9132,0.080850000000000005,12.6,13.6,14.7,15.9,17.3,18.8,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,42,-0.25530000000000003,15.9467,0.081119999999999998,12.6,13.6,14.7,15.9,17.3,18.8,20.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,43,-0.26419999999999999,15.979699999999999,0.081390000000000004,12.6,13.6,14.7,16,17.399999999999999,18.899999999999999,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,44,-0.27300000000000002,16.0124,0.081659999999999996,12.6,13.6,14.8,16,17.399999999999999,18.899999999999999,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,45,-0.28160000000000002,16.044699999999999,0.081939999999999999,12.7,13.7,14.8,16,17.399999999999999,19,20.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,46,-0.29010000000000002,16.076699999999999,0.082220000000000001,12.7,13.7,14.8,16.100000000000001,17.5,19,20.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,47,-0.29849999999999999,16.108499999999999,0.082500000000000004,12.7,13.7,14.8,16.100000000000001,17.5,19.100000000000001,20.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,48,-0.30669999999999997,16.14,0.082780000000000006,12.7,13.7,14.9,16.100000000000001,17.600000000000001,19.100000000000001,20.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,49,-0.31490000000000001,16.171399999999998,0.083070000000000005,12.7,13.8,14.9,16.2,17.600000000000001,19.2,21
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,50,-0.32290000000000002,16.2027,0.083349999999999994,12.7,13.8,14.9,16.2,17.600000000000001,19.2,21
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,51,-0.33090000000000003,16.234000000000002,0.083640000000000006,12.8,13.8,14.9,16.2,17.7,19.3,21.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,52,-0.3387,16.2654,0.083919999999999995,12.8,13.8,15,16.3,17.7,19.3,21.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,53,-0.34639999999999999,16.296800000000001,0.084209999999999993,12.8,13.8,15,16.3,17.8,19.399999999999999,21.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,54,-0.35410000000000003,16.328299999999999,0.084500000000000006,12.8,13.9,15,16.3,17.8,19.399999999999999,21.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,55,-0.36159999999999998,16.3599,0.084790000000000004,12.8,13.9,15,16.399999999999999,17.8,19.5,21.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,56,-0.36909999999999998,16.3916,0.085080000000000003,12.8,13.9,15.1,16.399999999999999,17.899999999999999,19.5,21.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,57,-0.3765,16.423300000000001,0.085370000000000001,12.9,13.9,15.1,16.399999999999999,17.899999999999999,19.600000000000001,21.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,58,-0.38379999999999997,16.455100000000002,0.08566,12.9,13.9,15.1,16.5,18,19.600000000000001,21.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,59,-0.39100000000000001,16.487100000000002,0.085949999999999999,12.9,14,15.2,16.5,18,19.7,21.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,60,-0.39810000000000001,16.519100000000002,0.086239999999999997,12.9,14,15.2,16.5,18,19.8,21.7
1 source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
2 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 3 -0.17330000000000001 13.0284 0.082629999999999995 10.199999999999999 11.1 12 13 14.2 15.4 16.8
3 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 4 -0.17330000000000001 13.3649 0.082979999999999998 10.5 11.3 12.3 13.4 14.5 15.8 17.2
4 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 5 -0.17330000000000001 13.6061 0.083250000000000005 10.7 11.5 12.5 13.6 14.8 16.100000000000001 17.600000000000001
5 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 6 -0.17330000000000001 13.777100000000001 0.083430000000000004 10.8 11.7 12.7 13.8 15 16.3 17.8
6 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 7 -0.17330000000000001 13.9018 0.083519999999999997 10.9 11.8 12.8 13.9 15.1 16.5 18
7 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 8 -0.17330000000000001 13.995200000000001 0.083510000000000001 11 11.9 12.9 14 15.2 16.600000000000001 18.100000000000001
8 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 9 -0.17330000000000001 14.0665 0.083419999999999994 11 11.9 12.9 14.1 15.3 16.7 18.2
9 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 10 -0.17330000000000001 14.121700000000001 0.083260000000000001 11.1 12 13 14.1 15.4 16.7 18.2
10 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 11 -0.17330000000000001 14.166700000000001 0.083049999999999999 11.1 12 13 14.2 15.4 16.8 18.3
11 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 12 -0.17330000000000001 14.2065 0.082799999999999999 11.1 12.1 13.1 14.2 15.4 16.8 18.3
12 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 13 -0.17330000000000001 14.2455 0.082540000000000002 11.2 12.1 13.1 14.2 15.5 16.8 18.3
13 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 14 -0.17330000000000001 14.2859 0.082269999999999996 11.2 12.1 13.2 14.3 15.5 16.899999999999999 18.399999999999999
14 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 15 -0.17330000000000001 14.328900000000001 0.082019999999999996 11.3 12.2 13.2 14.3 15.6 16.899999999999999 18.399999999999999
15 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 16 -0.17330000000000001 14.3752 0.081790000000000002 11.3 12.2 13.3 14.4 15.6 17 18.5
16 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 17 -0.17330000000000001 14.4254 0.081600000000000006 11.4 12.3 13.3 14.4 15.7 17 18.5
17 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 18 -0.17330000000000001 14.4795 0.081430000000000002 11.4 12.3 13.4 14.5 15.7 17.100000000000001 18.600000000000001
18 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 19 -0.17330000000000001 14.5372 0.081309999999999993 11.4 12.4 13.4 14.5 15.8 17.100000000000001 18.7
19 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 20 -0.17330000000000001 14.598699999999999 0.081229999999999997 11.5 12.4 13.5 14.6 15.8 17.2 18.7
20 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 21 -0.17330000000000001 14.6639 0.081180000000000002 11.6 12.5 13.5 14.7 15.9 17.3 18.8
21 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 22 -0.17330000000000001 14.732799999999999 0.081180000000000002 11.6 12.6 13.6 14.7 16 17.399999999999999 18.899999999999999
22 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 23 -0.17330000000000001 14.8049 0.081210000000000004 11.7 12.6 13.7 14.8 16.100000000000001 17.5 19
23 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 24 -0.17330000000000001 14.8795 0.081269999999999995 11.7 12.7 13.7 14.9 16.100000000000001 17.5 19.100000000000001
24 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 25 -0.17330000000000001 14.9559 0.081360000000000002 11.8 12.7 13.8 15 16.2 17.600000000000001 19.2
25 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 26 -0.17330000000000001 15.0327 0.081470000000000001 11.8 12.8 13.9 15 16.3 17.7 19.3
26 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 27 -0.17330000000000001 15.108499999999999 0.081610000000000002 11.9 12.9 13.9 15.1 16.399999999999999 17.8 19.399999999999999
27 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 28 -0.17330000000000001 15.181699999999999 0.081780000000000005 11.9 12.9 14 15.2 16.5 17.899999999999999 19.5
28 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 29 -0.17330000000000001 15.2514 0.081960000000000005 12 13 14.1 15.3 16.600000000000001 18 19.600000000000001
29 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 30 -0.17330000000000001 15.316800000000001 0.082170000000000007 12 13 14.1 15.3 16.600000000000001 18.100000000000001 19.7
30 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 31 -0.17330000000000001 15.3779 0.082400000000000001 12.1 13.1 14.2 15.4 16.7 18.2 19.8
31 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 32 -0.17330000000000001 15.4351 0.082650000000000001 12.1 13.1 14.2 15.4 16.8 18.3 19.899999999999999
32 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 33 -0.17330000000000001 15.4895 0.082919999999999994 12.1 13.2 14.3 15.5 16.8 18.3 20
33 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 34 -0.17330000000000001 15.542299999999999 0.083199999999999996 12.2 13.2 14.3 15.5 16.899999999999999 18.399999999999999 20.100000000000001
34 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 35 -0.17330000000000001 15.594099999999999 0.083510000000000001 12.2 13.2 14.4 15.6 17 18.5 20.100000000000001
35 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 36 -0.17330000000000001 15.6456 0.083830000000000002 12.2 13.3 14.4 15.6 17 18.5 20.2
36 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 37 -0.17330000000000001 15.696899999999999 0.084159999999999999 12.3 13.3 14.4 15.7 17.100000000000001 18.600000000000001 20.3
37 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 38 -0.17330000000000001 15.7483 0.084510000000000002 12.3 13.3 14.5 15.7 17.100000000000001 18.7 20.399999999999999
38 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 39 -0.17330000000000001 15.7997 0.084870000000000001 12.3 13.4 14.5 15.8 17.2 18.8 20.5
39 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 40 -0.17330000000000001 15.850899999999999 0.085250000000000006 12.3 13.4 14.6 15.9 17.3 18.8 20.6
40 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 41 -0.17330000000000001 15.9016 0.085629999999999998 12.4 13.4 14.6 15.9 17.3 18.899999999999999 20.7
41 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 42 -0.17330000000000001 15.9518 0.086019999999999999 12.4 13.5 14.6 16 17.399999999999999 19 20.8
42 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 43 -0.17330000000000001 16.0016 0.086419999999999997 12.4 13.5 14.7 16 17.5 19.100000000000001 20.9
43 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 44 -0.17330000000000001 16.050899999999999 0.086830000000000004 12.4 13.5 14.7 16.100000000000001 17.5 19.100000000000001 21
44 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 45 -0.17330000000000001 16.100100000000001 0.087230000000000002 12.5 13.6 14.8 16.100000000000001 17.600000000000001 19.2 21
45 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 46 -0.17330000000000001 16.149100000000001 0.087650000000000006 12.5 13.6 14.8 16.100000000000001 17.600000000000001 19.3 21.1
46 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 47 -0.17330000000000001 16.1983 0.088059999999999999 12.5 13.6 14.8 16.2 17.7 19.399999999999999 21.2
47 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 48 -0.17330000000000001 16.247699999999998 0.088480000000000003 12.5 13.6 14.9 16.2 17.8 19.399999999999999 21.3
48 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 49 -0.17330000000000001 16.2974 0.088900000000000007 12.6 13.7 14.9 16.3 17.8 19.5 21.4
49 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 50 -0.17330000000000001 16.3475 0.089319999999999997 12.6 13.7 15 16.3 17.899999999999999 19.600000000000001 21.5
50 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 51 -0.17330000000000001 16.398099999999999 0.08974 12.6 13.7 15 16.399999999999999 18 19.7 21.6
51 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 52 -0.17330000000000001 16.449000000000002 0.090160000000000004 12.6 13.8 15 16.399999999999999 18 19.8 21.7
52 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 53 -0.17330000000000001 16.5001 0.090569999999999998 12.7 13.8 15.1 16.5 18.100000000000001 19.8 21.8
53 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 54 -0.17330000000000001 16.551400000000001 0.090990000000000001 12.7 13.8 15.1 16.600000000000001 18.100000000000001 19.899999999999999 21.9
54 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 55 -0.17330000000000001 16.602599999999999 0.091399999999999995 12.7 13.9 15.2 16.600000000000001 18.2 20 22
55 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 56 -0.17330000000000001 16.653400000000001 0.091810000000000003 12.7 13.9 15.2 16.7 18.3 20.100000000000001 22.1
56 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 57 -0.17330000000000001 16.703900000000001 0.09221 12.7 13.9 15.2 16.7 18.3 20.100000000000001 22.2
57 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 58 -0.17330000000000001 16.753900000000002 0.092619999999999994 12.8 14 15.3 16.8 18.399999999999999 20.2 22.3
58 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 59 -0.17330000000000001 16.8034 0.093009999999999995 12.8 14 15.3 16.8 18.5 20.3 22.4
59 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 60 -0.17330000000000001 16.852599999999999 0.093410000000000007 12.8 14 15.4 16.899999999999999 18.5 20.399999999999999 22.5
60 source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
61 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 3 0.39279999999999998 13.4817 0.074749999999999997 10.7 11.6 12.5 13.5 14.5 15.6 16.7
62 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 4 0.34749999999999998 13.809699999999999 0.075230000000000005 10.9 11.8 12.8 13.8 14.9 16 17.2
63 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 5 0.30919999999999997 14.0585 0.075660000000000005 11.1 12 13 14.1 15.2 16.3 17.5
64 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 6 0.27550000000000002 14.238899999999999 0.076009999999999994 11.3 12.2 13.2 14.2 15.4 16.5 17.8
65 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 7 0.24529999999999999 14.367800000000001 0.076289999999999997 11.4 12.3 13.3 14.4 15.5 16.7 18
66 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 8 0.21790000000000001 14.459099999999999 0.076499999999999999 11.4 12.4 13.4 14.5 15.6 16.8 18.100000000000001
67 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 9 0.1925 14.5245 0.076649999999999996 11.5 12.4 13.4 14.5 15.7 16.899999999999999 18.2
68 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 10 0.16900000000000001 14.5733 0.076759999999999995 11.5 12.5 13.5 14.6 15.7 17 18.3
69 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 11 0.1469 14.6119 0.076829999999999996 11.6 12.5 13.5 14.6 15.8 17 18.3
70 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 12 0.12609999999999999 14.6449 0.07689 11.6 12.5 13.6 14.6 15.8 17.100000000000001 18.399999999999999
71 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 13 0.10639999999999999 14.675800000000001 0.076939999999999995 11.6 12.6 13.6 14.7 15.8 17.100000000000001 18.399999999999999
72 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 14 0.087599999999999997 14.706300000000001 0.076990000000000003 11.6 12.6 13.6 14.7 15.9 17.100000000000001 18.5
73 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 15 0.069699999999999998 14.738 0.077030000000000001 11.7 12.6 13.6 14.7 15.9 17.2 18.5
74 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 16 0.052600000000000001 14.7723 0.07707 11.7 12.7 13.7 14.8 16 17.2 18.600000000000001
75 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 17 0.036200000000000003 14.8095 0.077100000000000002 11.7 12.7 13.7 14.8 16 17.3 18.600000000000001
76 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 18 0.020400000000000001 14.849600000000001 0.077130000000000004 11.8 12.7 13.7 14.8 16 17.3 18.7
77 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 19 0.0051000000000000004 14.8926 0.077170000000000002 11.8 12.8 13.8 14.9 16.100000000000001 17.399999999999999 18.8
78 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 20 -0.0097000000000000003 14.938800000000001 0.077210000000000001 11.9 12.8 13.8 14.9 16.100000000000001 17.399999999999999 18.8
79 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 21 -0.023900000000000001 14.988300000000001 0.077249999999999999 11.9 12.8 13.9 15 16.2 17.5 18.899999999999999
80 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 22 -0.0378 15.041 0.077310000000000004 11.9 12.9 13.9 15 16.3 17.600000000000001 19
81 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 23 -0.051200000000000002 15.096399999999999 0.077380000000000004 12 12.9 14 15.1 16.3 17.600000000000001 19.100000000000001
82 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 24 -0.064299999999999996 15.153600000000001 0.077460000000000001 12 13 14 15.2 16.399999999999999 17.7 19.2
83 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 25 -0.076999999999999999 15.211499999999999 0.077549999999999994 12.1 13 14.1 15.2 16.399999999999999 17.8 19.2
84 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 26 -0.089399999999999993 15.269299999999999 0.077670000000000003 12.1 13.1 14.1 15.3 16.5 17.899999999999999 19.3
85 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 27 -0.1014 15.325900000000001 0.077799999999999994 12.2 13.1 14.2 15.3 16.600000000000001 17.899999999999999 19.399999999999999
86 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 28 -0.1132 15.380800000000001 0.077939999999999995 12.2 13.2 14.2 15.4 16.600000000000001 18 19.5
87 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 29 -0.12479999999999999 15.4336 0.078100000000000003 12.3 13.2 14.3 15.4 16.7 18.100000000000001 19.600000000000001
88 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 30 -0.13600000000000001 15.4839 0.078270000000000006 12.3 13.3 14.3 15.5 16.8 18.100000000000001 19.7
89 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 31 -0.14699999999999999 15.531700000000001 0.078460000000000002 12.3 13.3 14.4 15.5 16.8 18.2 19.7
90 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 32 -0.1578 15.5771 0.078659999999999994 12.4 13.3 14.4 15.6 16.899999999999999 18.3 19.8
91 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 33 -0.16839999999999999 15.620100000000001 0.078869999999999996 12.4 13.4 14.4 15.6 16.899999999999999 18.3 19.899999999999999
92 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 34 -0.17879999999999999 15.661099999999999 0.079089999999999994 12.4 13.4 14.5 15.7 17 18.399999999999999 20
93 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 35 -0.189 15.7003 0.079329999999999998 12.4 13.4 14.5 15.7 17 18.399999999999999 20
94 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 36 -0.19889999999999999 15.738 0.079560000000000006 12.5 13.5 14.5 15.7 17.100000000000001 18.5 20.100000000000001
95 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 37 -0.2087 15.7745 0.079810000000000006 12.5 13.5 14.6 15.8 17.100000000000001 18.600000000000001 20.2
96 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 38 -0.21840000000000001 15.8101 0.080060000000000006 12.5 13.5 14.6 15.8 17.100000000000001 18.600000000000001 20.2
97 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 39 -0.2278 15.845000000000001 0.080320000000000003 12.5 13.5 14.6 15.8 17.2 18.7 20.3
98 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 40 -0.23719999999999999 15.879300000000001 0.080579999999999999 12.6 13.6 14.7 15.9 17.2 18.7 20.399999999999999
99 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 41 -0.24629999999999999 15.9132 0.080850000000000005 12.6 13.6 14.7 15.9 17.3 18.8 20.399999999999999
100 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 42 -0.25530000000000003 15.9467 0.081119999999999998 12.6 13.6 14.7 15.9 17.3 18.8 20.5
101 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 43 -0.26419999999999999 15.979699999999999 0.081390000000000004 12.6 13.6 14.7 16 17.399999999999999 18.899999999999999 20.6
102 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 44 -0.27300000000000002 16.0124 0.081659999999999996 12.6 13.6 14.8 16 17.399999999999999 18.899999999999999 20.6
103 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 45 -0.28160000000000002 16.044699999999999 0.081939999999999999 12.7 13.7 14.8 16 17.399999999999999 19 20.7
104 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 46 -0.29010000000000002 16.076699999999999 0.082220000000000001 12.7 13.7 14.8 16.100000000000001 17.5 19 20.8
105 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 47 -0.29849999999999999 16.108499999999999 0.082500000000000004 12.7 13.7 14.8 16.100000000000001 17.5 19.100000000000001 20.8
106 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 48 -0.30669999999999997 16.14 0.082780000000000006 12.7 13.7 14.9 16.100000000000001 17.600000000000001 19.100000000000001 20.9
107 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 49 -0.31490000000000001 16.171399999999998 0.083070000000000005 12.7 13.8 14.9 16.2 17.600000000000001 19.2 21
108 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 50 -0.32290000000000002 16.2027 0.083349999999999994 12.7 13.8 14.9 16.2 17.600000000000001 19.2 21
109 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 51 -0.33090000000000003 16.234000000000002 0.083640000000000006 12.8 13.8 14.9 16.2 17.7 19.3 21.1
110 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 52 -0.3387 16.2654 0.083919999999999995 12.8 13.8 15 16.3 17.7 19.3 21.2
111 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 53 -0.34639999999999999 16.296800000000001 0.084209999999999993 12.8 13.8 15 16.3 17.8 19.399999999999999 21.2
112 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 54 -0.35410000000000003 16.328299999999999 0.084500000000000006 12.8 13.9 15 16.3 17.8 19.399999999999999 21.3
113 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 55 -0.36159999999999998 16.3599 0.084790000000000004 12.8 13.9 15 16.399999999999999 17.8 19.5 21.4
114 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 56 -0.36909999999999998 16.3916 0.085080000000000003 12.8 13.9 15.1 16.399999999999999 17.899999999999999 19.5 21.4
115 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 57 -0.3765 16.423300000000001 0.085370000000000001 12.9 13.9 15.1 16.399999999999999 17.899999999999999 19.600000000000001 21.5
116 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 58 -0.38379999999999997 16.455100000000002 0.08566 12.9 13.9 15.1 16.5 18 19.600000000000001 21.6
117 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 59 -0.39100000000000001 16.487100000000002 0.085949999999999999 12.9 14 15.2 16.5 18 19.7 21.6
118 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 60 -0.39810000000000001 16.519100000000002 0.086239999999999997 12.9 14 15.2 16.5 18 19.8 21.7

View File

@ -0,0 +1,496 @@
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx,female,week,0,-0.063100000000000003,13.3363,0.092719999999999997,10.1,11.1,12.2,13.3,14.6,16.100000000000001,17.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx,female,week,1,0.63190000000000002,13.2113,0.09887,9.5,10.7,11.9,13.2,14.5,15.9,17.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx,female,week,2,0.50819999999999999,13.450100000000001,0.097409999999999997,9.8000000000000007,11,12.2,13.5,14.8,16.2,17.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx,female,week,3,0.42630000000000001,13.9505,0.09647,10.199999999999999,11.4,12.6,14,15.3,16.8,18.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx,female,week,4,0.36370000000000002,14.4208,0.095769999999999994,10.6,11.8,13.1,14.4,15.8,17.399999999999999,19
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx,female,week,5,0.31240000000000001,14.8157,0.095200000000000007,11,12.2,13.5,14.8,16.3,17.8,19.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx,female,week,6,0.26879999999999998,15.138,0.094719999999999999,11.3,12.5,13.8,15.1,16.600000000000001,18.2,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx,female,week,7,0.2306,15.4063,0.094310000000000005,11.5,12.7,14,15.4,16.899999999999999,18.5,20.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx,female,week,8,0.1966,15.6311,0.093939999999999996,11.7,12.9,14.2,15.6,17.2,18.8,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx,female,week,9,0.1658,15.8232,0.093609999999999999,11.9,13.1,14.4,15.8,17.399999999999999,19,20.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx,female,week,10,0.13769999999999999,15.987399999999999,0.09332,12,13.2,14.6,16,17.5,19.2,21
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx,female,week,11,0.1118,16.127700000000001,0.093039999999999998,12.1,13.4,14.7,16.100000000000001,17.7,19.399999999999999,21.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx,female,week,12,0.0877,16.2485,0.092789999999999997,12.3,13.5,14.8,16.2,17.8,19.5,21.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx,female,week,13,0.065199999999999994,16.353100000000001,0.092549999999999993,12.4,13.6,14.9,16.399999999999999,17.899999999999999,19.7,21.5
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,0,-0.063100000000000003,13.3363,0.092719999999999997,10.1,11.1,12.2,13.3,14.6,16.100000000000001,17.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,1,0.3448,14.5679,0.095560000000000006,10.8,12,13.2,14.6,16,17.5,19.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,2,0.1749,15.767899999999999,0.093710000000000002,11.8,13,14.3,15.8,17.3,19,20.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,3,0.064299999999999996,16.357399999999998,0.092539999999999997,12.4,13.6,14.9,16.399999999999999,17.899999999999999,19.7,21.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,4,-0.019099999999999999,16.670300000000001,0.091660000000000005,12.7,13.9,15.2,16.7,18.3,20,22
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,5,-0.086400000000000005,16.8386,0.090959999999999999,12.9,14.1,15.4,16.8,18.399999999999999,20.2,22.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,6,-0.1429,16.908300000000001,0.090359999999999996,13,14.1,15.5,16.899999999999999,18.5,20.3,22.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,7,-0.19159999999999999,16.902000000000001,0.089840000000000003,13,14.2,15.5,16.899999999999999,18.5,20.3,22.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,8,-0.2344,16.840399999999999,0.089389999999999997,13,14.1,15.4,16.8,18.399999999999999,20.2,22.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,9,-0.27250000000000002,16.740600000000001,0.088980000000000004,12.9,14.1,15.3,16.7,18.3,20.100000000000001,22.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,10,-0.30680000000000002,16.618400000000001,0.088609999999999994,12.9,14,15.2,16.600000000000001,18.2,19.899999999999999,21.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,11,-0.33810000000000001,16.487500000000001,0.088279999999999997,12.8,13.9,15.1,16.5,18,19.8,21.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,12,-0.36670000000000003,16.3568,0.087970000000000007,12.7,13.8,15,16.399999999999999,17.899999999999999,19.600000000000001,21.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,13,-0.39319999999999999,16.231100000000001,0.087679999999999994,12.6,13.7,14.9,16.2,17.7,19.5,21.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,14,-0.41770000000000002,16.1128,0.087410000000000002,12.6,13.6,14.8,16.100000000000001,17.600000000000001,19.3,21.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,15,-0.44069999999999998,16.002800000000001,0.087160000000000001,12.5,13.5,14.7,16,17.5,19.2,21.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,16,-0.46229999999999999,15.9017,0.086929999999999993,12.4,13.5,14.6,15.9,17.399999999999999,19.100000000000001,21
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,17,-0.48249999999999998,15.8096,0.086709999999999995,12.4,13.4,14.5,15.8,17.3,18.899999999999999,20.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,18,-0.50170000000000003,15.7263,0.086499999999999994,12.3,13.3,14.4,15.7,17.2,18.8,20.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,19,-0.51990000000000003,15.6517,0.086300000000000002,12.3,13.3,14.4,15.7,17.100000000000001,18.8,20.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,20,-0.53720000000000001,15.5855,0.086120000000000002,12.2,13.2,14.3,15.6,17,18.7,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,21,-0.55369999999999997,15.527799999999999,0.085940000000000003,12.2,13.2,14.3,15.5,17,18.600000000000001,20.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,22,-0.56950000000000001,15.4787,0.085769999999999999,12.2,13.1,14.2,15.5,16.899999999999999,18.5,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,23,-0.58460000000000001,15.438000000000001,0.085599999999999996,12.2,13.1,14.2,15.4,16.899999999999999,18.5,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,24,-0.59889999999999999,15.405200000000001,0.085449999999999998,12.1,13.1,14.2,15.4,16.8,18.399999999999999,20.3
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,24,-0.56840000000000002,15.6881,0.084540000000000004,12.4,13.3,14.4,15.7,17.100000000000001,18.7,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,25,-0.56840000000000002,15.659000000000001,0.084519999999999998,12.4,13.3,14.4,15.7,17.100000000000001,18.7,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,26,-0.56840000000000002,15.630800000000001,0.084489999999999996,12.3,13.3,14.4,15.6,17,18.7,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,27,-0.56840000000000002,15.6037,0.084459999999999993,12.3,13.3,14.4,15.6,17,18.600000000000001,20.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,28,-0.56840000000000002,15.5777,0.084440000000000001,12.3,13.3,14.3,15.6,17,18.600000000000001,20.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,29,-0.56840000000000002,15.552300000000001,0.084430000000000005,12.3,13.2,14.3,15.6,17,18.600000000000001,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,30,-0.56840000000000002,15.5276,0.084440000000000001,12.3,13.2,14.3,15.5,16.899999999999999,18.5,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,31,-0.56840000000000002,15.503399999999999,0.08448,12.2,13.2,14.3,15.5,16.899999999999999,18.5,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,32,-0.56840000000000002,15.479799999999999,0.08455,12.2,13.2,14.3,15.5,16.899999999999999,18.5,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,33,-0.56840000000000002,15.4572,0.084669999999999995,12.2,13.1,14.2,15.5,16.899999999999999,18.5,20.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,34,-0.56840000000000002,15.435600000000001,0.084839999999999999,12.2,13.1,14.2,15.4,16.8,18.5,20.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,35,-0.56840000000000002,15.4155,0.085059999999999997,12.1,13.1,14.2,15.4,16.8,18.399999999999999,20.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,36,-0.56840000000000002,15.396800000000001,0.085349999999999995,12.1,13.1,14.2,15.4,16.8,18.399999999999999,20.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,37,-0.56840000000000002,15.3796,0.085690000000000002,12.1,13.1,14.1,15.4,16.8,18.399999999999999,20.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,38,-0.56840000000000002,15.363799999999999,0.08609,12.1,13,14.1,15.4,16.8,18.399999999999999,20.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,39,-0.56840000000000002,15.349299999999999,0.086540000000000006,12,13,14.1,15.3,16.8,18.399999999999999,20.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,40,-0.56840000000000002,15.335800000000001,0.087040000000000006,12,13,14.1,15.3,16.8,18.399999999999999,20.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,41,-0.56840000000000002,15.3233,0.087569999999999995,12,13,14.1,15.3,16.8,18.399999999999999,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,42,-0.56840000000000002,15.3116,0.08813,12,12.9,14,15.3,16.8,18.399999999999999,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,43,-0.56840000000000002,15.300700000000001,0.088719999999999993,11.9,12.9,14,15.3,16.8,18.399999999999999,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,44,-0.56840000000000002,15.2905,0.08931,11.9,12.9,14,15.3,16.8,18.5,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,45,-0.56840000000000002,15.2814,0.089910000000000004,11.9,12.9,14,15.3,16.8,18.5,20.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,46,-0.56840000000000002,15.273199999999999,0.090509999999999993,11.9,12.9,14,15.3,16.8,18.5,20.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,47,-0.56840000000000002,15.2661,0.0911,11.8,12.8,14,15.3,16.8,18.5,20.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,48,-0.56840000000000002,15.260199999999999,0.091679999999999998,11.8,12.8,14,15.3,16.8,18.5,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,49,-0.56840000000000002,15.255599999999999,0.092270000000000005,11.8,12.8,13.9,15.3,16.8,18.5,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,50,-0.56840000000000002,15.2523,0.092859999999999998,11.8,12.8,13.9,15.3,16.8,18.600000000000001,20.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,51,-0.56840000000000002,15.250299999999999,0.093450000000000005,11.8,12.8,13.9,15.3,16.8,18.600000000000001,20.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,52,-0.56840000000000002,15.249599999999999,0.094030000000000002,11.7,12.8,13.9,15.2,16.8,18.600000000000001,20.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,53,-0.56840000000000002,15.2502,0.094600000000000004,11.7,12.7,13.9,15.3,16.8,18.600000000000001,20.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,54,-0.56840000000000002,15.251899999999999,0.095149999999999998,11.7,12.7,13.9,15.3,16.8,18.7,20.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,55,-0.56840000000000002,15.2544,0.095680000000000001,11.7,12.7,13.9,15.3,16.8,18.7,20.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,56,-0.56840000000000002,15.2575,0.096180000000000002,11.7,12.7,13.9,15.3,16.8,18.7,20.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,57,-0.56840000000000002,15.261200000000001,0.09665,11.7,12.7,13.9,15.3,16.899999999999999,18.7,21
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,58,-0.56840000000000002,15.2653,0.097089999999999996,11.7,12.7,13.9,15.3,16.899999999999999,18.8,21
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,59,-0.56840000000000002,15.2698,0.097500000000000003,11.6,12.7,13.9,15.3,16.899999999999999,18.8,21
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,60,-0.56840000000000002,15.274699999999999,0.097890000000000005,11.6,12.7,13.9,15.3,16.899999999999999,18.8,21.1
source,gender,age_unit,age,l,m,s,sd4neg,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3,sd4
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,61,-0.88859999999999995,15.2441,0.096920000000000006,10.792999999999999,11.77,12.747999999999999,13.891,15.244,16.87,18.858000000000001,21.34,23.821000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,62,-0.90680000000000005,15.243399999999999,0.097379999999999994,10.786,11.763,12.741,13.885,15.243,16.879000000000001,18.885999999999999,21.402999999999999,23.92
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,63,-0.92479999999999996,15.2433,0.09783,10.78,11.757,12.734,13.881,15.243,16.888999999999999,18.914999999999999,21.468,24.02
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,64,-0.94269999999999998,15.2438,0.098290000000000002,10.775,11.752000000000001,12.728,13.875999999999999,15.244,16.899999999999999,18.946000000000002,21.535,24.123000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,65,-0.96050000000000002,15.2448,0.098750000000000004,10.77,11.746,12.723000000000001,13.872,15.244999999999999,16.911000000000001,18.977,21.603000000000002,24.23
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,66,-0.97799999999999998,15.2464,0.099199999999999997,10.765000000000001,11.742000000000001,12.718,13.869,15.246,16.922999999999998,19.009,21.672999999999998,24.337
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,67,-0.99539999999999995,15.248699999999999,0.099659999999999999,10.760999999999999,11.737,12.714,13.866,15.249000000000001,16.936,19.042000000000002,21.745000000000001,24.448
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,68,-1.0125999999999999,15.2516,0.10012,10.757,11.733000000000001,12.71,13.864000000000001,15.252000000000001,16.95,19.077000000000002,21.818999999999999,24.561
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,69,-1.0296000000000001,15.255100000000001,0.10058,10.754,11.73,12.706,13.863,15.255000000000001,16.963999999999999,19.111999999999998,21.895,24.678000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,70,-1.0464,15.2592,0.10104,10.750999999999999,11.727,12.702999999999999,13.862,15.259,16.978999999999999,19.148,21.972999999999999,24.797000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,71,-1.0629999999999999,15.264099999999999,0.10149,10.749000000000001,11.725,12.701000000000001,13.862,15.263999999999999,16.995000000000001,19.184999999999999,22.050999999999998,24.917000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,72,-1.0793999999999999,15.2697,0.10195,10.747,11.723000000000001,12.7,13.862,15.27,17.010999999999999,19.224,22.132999999999999,25.042000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,73,-1.0955999999999999,15.276,0.10241,10.744999999999999,11.722,12.699,13.863,15.276,17.029,19.263999999999999,22.216999999999999,25.17
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,74,-1.1114999999999999,15.283099999999999,0.10287,10.744,11.721,12.698,13.865,15.282999999999999,17.047000000000001,19.305,22.303000000000001,25.300999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,75,-1.1272,15.2911,0.10333000000000001,10.744,11.721,12.699,13.867000000000001,15.291,17.067,19.347000000000001,22.390999999999998,25.434999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,76,-1.1427,15.299799999999999,0.10378999999999999,10.744,11.722,12.7,13.87,15.3,17.087,19.390999999999998,22.481000000000002,25.571999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,77,-1.1578999999999999,15.3095,0.10425,10.744999999999999,11.723000000000001,12.701000000000001,13.874000000000001,15.31,17.108000000000001,19.436,22.574000000000002,25.712
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,78,-1.1728000000000001,15.32,0.10471,10.746,11.725,12.704000000000001,13.879,15.32,17.131,19.481999999999999,22.667999999999999,25.855
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,79,-1.1875,15.3314,0.10517,10.747999999999999,11.727,12.707000000000001,13.885,15.331,17.154,19.529,22.765999999999998,26.001999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,80,-1.2019,15.3439,0.10562000000000001,10.750999999999999,11.731,12.711,13.891999999999999,15.343999999999999,17.178999999999998,19.577999999999999,22.864000000000001,26.15
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,81,-1.216,15.357200000000001,0.10607999999999999,10.754,11.734999999999999,12.715999999999999,13.898999999999999,15.356999999999999,17.204000000000001,19.628,22.966000000000001,26.303999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,82,-1.2298,15.371700000000001,0.10654,10.757999999999999,11.74,12.721,13.907,15.372,17.231000000000002,19.68,23.071000000000002,26.460999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,83,-1.2433000000000001,15.3871,0.107,10.762,11.744999999999999,12.728,13.916,15.387,17.259,19.734000000000002,23.178000000000001,26.620999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,84,-1.2565,15.403600000000001,0.10746,10.766999999999999,11.750999999999999,12.734999999999999,13.927,15.404,17.289000000000001,19.789000000000001,23.286999999999999,26.785
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,85,-1.2693000000000001,15.421099999999999,0.10792,10.773,11.757999999999999,12.743,13.938000000000001,15.420999999999999,17.318999999999999,19.844999999999999,23.399000000000001,26.952999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,86,-1.2819,15.4397,0.10836999999999999,10.779,11.766,12.752000000000001,13.95,15.44,17.350000000000001,19.902999999999999,23.512,27.122
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,87,-1.2941,15.459300000000001,0.10883,10.786,11.773999999999999,12.762,13.962999999999999,15.459,17.382999999999999,19.963000000000001,23.629000000000001,27.295999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,88,-1.306,15.479799999999999,0.10929,10.792999999999999,11.782999999999999,12.772,13.976000000000001,15.48,17.417000000000002,20.023,23.748999999999999,27.474
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,89,-1.3174999999999999,15.5014,0.10974,10.802,11.792999999999999,12.782999999999999,13.991,15.500999999999999,17.452000000000002,20.085000000000001,23.869,27.652999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,90,-1.3287,15.523999999999999,0.11020000000000001,10.81,11.803000000000001,12.795,14.007,15.523999999999999,17.488,20.149000000000001,23.994,27.838000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,91,-1.3394999999999999,15.547599999999999,0.11065,10.82,11.814,12.808,14.023,15.548,17.526,20.213999999999999,24.119,28.023
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,92,-1.3499000000000001,15.5723,0.1111,10.83,11.826000000000001,12.821999999999999,14.041,15.571999999999999,17.564,20.280999999999999,24.245999999999999,28.212
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,93,-1.36,15.597899999999999,0.11156000000000001,10.84,11.837999999999999,12.836,14.058999999999999,15.598000000000001,17.603999999999999,20.349,24.376999999999999,28.405999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,94,-1.3696999999999999,15.624599999999999,0.11201,10.851000000000001,11.851000000000001,12.852,14.077999999999999,15.625,17.645,20.417999999999999,24.51,28.600999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,95,-1.379,15.6523,0.11246,10.862,11.865,12.868,14.099,15.651999999999999,17.687000000000001,20.489000000000001,24.643999999999998,28.798999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,96,-1.3879999999999999,15.680999999999999,0.11291,10.874000000000001,11.879,12.884,14.12,15.680999999999999,17.73,20.561,24.780999999999999,29.001000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,97,-1.3966000000000001,15.710699999999999,0.11335000000000001,10.887,11.895,12.901999999999999,14.141999999999999,15.711,17.774000000000001,20.634,24.917999999999999,29.202999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,98,-1.4047000000000001,15.7415,0.1138,10.9,11.91,12.92,14.164,15.742000000000001,17.82,20.709,25.059000000000001,29.408999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,99,-1.4125000000000001,15.773199999999999,0.11423999999999999,10.914,11.927,12.94,14.188000000000001,15.773,17.866,20.783999999999999,25.2,29.617000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,100,-1.4198999999999999,15.8058,0.11469,10.928000000000001,11.944000000000001,12.959,14.212,15.805999999999999,17.914000000000001,20.861999999999998,25.344999999999999,29.829000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,101,-1.427,15.839399999999999,0.11513,10.943,11.962,12.98,14.238,15.839,17.962,20.94,25.491,30.042000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,102,-1.4336,15.873799999999999,0.11557000000000001,10.958,11.98,13.000999999999999,14.263999999999999,15.874000000000001,18.012,21.018999999999998,25.638000000000002,30.256
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,103,-1.4398,15.909000000000001,0.11601,10.974,11.997999999999999,13.023,14.291,15.909000000000001,18.062000000000001,21.1,25.786000000000001,30.472000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,104,-1.4456,15.9451,0.11644,10.99,12.018000000000001,13.045,14.318,15.945,18.113,21.181000000000001,25.934000000000001,30.687999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,105,-1.4511000000000001,15.9818,0.11688,11.006,12.037000000000001,13.068,14.346,15.981999999999999,18.166,21.263000000000002,26.085000000000001,30.908000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,106,-1.4560999999999999,16.019400000000001,0.11731,11.023,12.057,13.092000000000001,14.375,16.018999999999998,18.219000000000001,21.346,26.236000000000001,31.126999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,107,-1.4607000000000001,16.057500000000001,0.11774,11.04,12.077999999999999,13.115,14.404,16.058,18.271999999999998,21.428999999999998,26.388000000000002,31.346
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,108,-1.4650000000000001,16.096399999999999,0.11816,11.057,12.099,13.14,14.433999999999999,16.096,18.326000000000001,21.513000000000002,26.539000000000001,31.565000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,109,-1.4688000000000001,16.1358,0.11859,11.074999999999999,12.12,13.164999999999999,14.465,16.135999999999999,18.381,21.599,26.692,31.786000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,110,-1.4722999999999999,16.175899999999999,0.11901,11.092000000000001,12.141,13.19,14.496,16.175999999999998,18.437000000000001,21.684000000000001,26.844999999999999,32.006999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,111,-1.4753000000000001,16.2166,0.11942999999999999,11.11,12.163,13.215999999999999,14.526999999999999,16.216999999999999,18.492999999999999,21.77,26.998000000000001,32.226999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,112,-1.478,16.257999999999999,0.11985,11.128,12.185,13.242000000000001,14.558999999999999,16.257999999999999,18.550999999999998,21.856999999999999,27.152000000000001,32.448
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,113,-1.4802999999999999,16.299900000000001,0.12026000000000001,11.147,12.208,13.269,14.592000000000001,16.3,18.608000000000001,21.943999999999999,27.305,32.665999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,114,-1.4823,16.342500000000001,0.12067,11.166,12.231,13.295999999999999,14.625,16.343,18.666,22.030999999999999,27.459,32.886000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,115,-1.4838,16.3858,0.12107999999999999,11.185,12.254,13.323,14.659000000000001,16.385999999999999,18.725000000000001,22.12,27.611999999999998,33.103999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,116,-1.4850000000000001,16.4298,0.12148,11.204000000000001,12.278,13.352,14.694000000000001,16.43,18.785,22.207999999999998,27.765000000000001,33.320999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,117,-1.4859,16.474599999999999,0.12188,11.224,12.302,13.38,14.728999999999999,16.475000000000001,18.846,22.297999999999998,27.917999999999999,33.537999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,118,-1.4863999999999999,16.52,0.12228,11.244,12.327,13.41,14.763999999999999,16.52,18.907,22.388000000000002,28.071000000000002,33.755000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,119,-1.4865999999999999,16.566299999999998,0.12268,11.265000000000001,12.352,13.439,14.801,16.565999999999999,18.969000000000001,22.478999999999999,28.225999999999999,33.972000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,120,-1.4863999999999999,16.613299999999999,0.12307,11.285,12.378,13.47,14.837999999999999,16.613,19.032,22.57,28.378,34.185000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,121,-1.4859,16.661200000000001,0.12346,11.307,12.404,13.500999999999999,14.875999999999999,16.661000000000001,19.096,22.663,28.530999999999999,34.399000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,122,-1.4851000000000001,16.71,0.12384000000000001,11.327999999999999,12.43,13.532999999999999,14.914,16.71,19.161000000000001,22.754999999999999,28.683,34.61
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,123,-1.4839,16.759499999999999,0.12422,11.35,12.458,13.565,14.954000000000001,16.760000000000002,19.225999999999999,22.849,28.834,34.82
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,124,-1.4824999999999999,16.809999999999999,0.1246,11.372999999999999,12.484999999999999,13.598000000000001,14.994,16.809999999999999,19.292999999999999,22.943000000000001,28.986999999999998,35.030999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,125,-1.4806999999999999,16.8614,0.12497,11.396000000000001,12.513999999999999,13.631,15.035,16.861000000000001,19.36,23.038,29.138000000000002,35.238
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,126,-1.4786999999999999,16.913599999999999,0.12534000000000001,11.419,12.542,13.666,15.076000000000001,16.914000000000001,19.428999999999998,23.134,29.29,35.445
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,127,-1.4762999999999999,16.966699999999999,0.12570999999999999,11.443,12.571999999999999,13.7,15.119,16.966999999999999,19.498000000000001,23.231000000000002,29.440999999999999,35.651000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,128,-1.4737,17.020800000000001,0.12606999999999999,11.467000000000001,12.602,13.736000000000001,15.162000000000001,17.021000000000001,19.568000000000001,23.327999999999999,29.591000000000001,35.853999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,129,-1.4708000000000001,17.075700000000001,0.12642999999999999,11.492000000000001,12.632,13.772,15.206,17.076000000000001,19.638999999999999,23.425999999999998,29.742000000000001,36.057000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,130,-1.4677,17.131599999999999,0.12678,11.516999999999999,12.663,13.81,15.250999999999999,17.132000000000001,19.712,23.524999999999999,29.890999999999998,36.256999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,131,-1.4641999999999999,17.188300000000002,0.12712999999999999,11.542999999999999,12.695,13.847,15.297000000000001,17.187999999999999,19.785,23.623999999999999,30.039000000000001,36.454000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,132,-1.4605999999999999,17.245899999999999,0.12748000000000001,11.569000000000001,12.727,13.885,15.343,17.245999999999999,19.859000000000002,23.725000000000001,30.189,36.652999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,133,-1.4567000000000001,17.304400000000001,0.12781999999999999,11.595000000000001,12.76,13.925000000000001,15.39,17.303999999999998,19.933,23.824999999999999,30.335999999999999,36.847000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,134,-1.4525999999999999,17.363700000000001,0.12816,11.622,12.792999999999999,13.964,15.438000000000001,17.364000000000001,20.009,23.927,30.484000000000002,37.042000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,135,-1.4481999999999999,17.4238,0.12848999999999999,11.65,12.827,14.004,15.487,17.423999999999999,20.085999999999999,24.029,30.63,37.231000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,136,-1.4436,17.4847,0.12881999999999999,11.677,12.861000000000001,14.045,15.536,17.484999999999999,20.163,24.131,30.776,37.42
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,137,-1.4389000000000001,17.546399999999998,0.12914,11.706,12.896000000000001,14.087,15.586,17.545999999999999,20.241,24.234000000000002,30.92,37.606000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,138,-1.4339,17.608799999999999,0.12945999999999999,11.734,12.930999999999999,14.129,15.637,17.609000000000002,20.32,24.338000000000001,31.064,37.79
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,139,-1.4288000000000001,17.671900000000001,0.12978000000000001,11.763,12.967000000000001,14.170999999999999,15.688000000000001,17.672000000000001,20.399999999999999,24.442,31.209,37.975000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,140,-1.4235,17.735700000000001,0.13009000000000001,11.792,13.003,14.214,15.74,17.736000000000001,20.48,24.545999999999999,31.350999999999999,38.155000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,141,-1.4179999999999999,17.8001,0.13039999999999999,11.821999999999999,13.04,14.257999999999999,15.792999999999999,17.8,20.561,24.651,31.492999999999999,38.335000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,142,-1.4123000000000001,17.865100000000002,0.13070000000000001,11.852,13.077,14.302,15.846,17.864999999999998,20.641999999999999,24.756,31.632999999999999,38.509
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,143,-1.4065000000000001,17.930599999999998,0.13099,11.882,13.114000000000001,14.346,15.898999999999999,17.931000000000001,20.724,24.861000000000001,31.77,38.68
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,144,-1.4006000000000001,17.996600000000001,0.13128999999999999,11.912000000000001,13.151,14.391,15.952999999999999,17.997,20.806000000000001,24.966999999999999,31.91,38.853999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,145,-1.3945000000000001,18.062999999999999,0.13158,11.942,13.189,14.436,16.007999999999999,18.062999999999999,20.888999999999999,25.071999999999999,32.046999999999997,39.023000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,146,-1.3883000000000001,18.1297,0.13186,11.973000000000001,13.227,14.481,16.062000000000001,18.13,20.972000000000001,25.177,32.182000000000002,39.186999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,147,-1.3818999999999999,18.1967,0.13214000000000001,12.003,13.265000000000001,14.526,16.117000000000001,18.196999999999999,21.055,25.282,32.316000000000003,39.35
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,148,-1.3754999999999999,18.2639,0.13241,12.034000000000001,13.303000000000001,14.571999999999999,16.172000000000001,18.263999999999999,21.138000000000002,25.387,32.448,39.509
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,149,-1.3689,18.331199999999999,0.13267999999999999,12.065,13.340999999999999,14.618,16.227,18.331,21.222000000000001,25.491,32.579000000000001,39.665999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,150,-1.3621000000000001,18.398599999999998,0.13295000000000001,12.095000000000001,13.379,14.663,16.282,18.399000000000001,21.305,25.596,32.707999999999998,39.82
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,151,-1.3552999999999999,18.466000000000001,0.13321,12.125999999999999,13.417999999999999,14.709,16.338000000000001,18.466000000000001,21.388000000000002,25.699000000000002,32.835000000000001,39.97
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,152,-1.3483000000000001,18.533300000000001,0.13347000000000001,12.156000000000001,13.456,14.755000000000001,16.393000000000001,18.533000000000001,21.471,25.802,32.96,40.118000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,153,-1.3412999999999999,18.6006,0.13372000000000001,12.186999999999999,13.494,14.8,16.448,18.600999999999999,21.553999999999998,25.905000000000001,33.082999999999998,40.261000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,154,-1.3341000000000001,18.6677,0.13397000000000001,12.217000000000001,13.531000000000001,14.846,16.503,18.667999999999999,21.637,26.007000000000001,33.204000000000001,40.402000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,155,-1.3269,18.7346,0.13421,12.247,13.569000000000001,14.891,16.558,18.734999999999999,21.719000000000001,26.106999999999999,33.322000000000003,40.537999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,156,-1.3194999999999999,18.801200000000001,0.13444999999999999,12.276,13.606,14.936,16.611999999999998,18.800999999999998,21.8,26.207000000000001,33.439,40.67
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,157,-1.3121,18.8675,0.13469,12.305,13.643000000000001,14.981,16.667000000000002,18.867999999999999,21.882000000000001,26.306999999999999,33.554000000000002,40.802
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,158,-1.3046,18.933499999999999,0.13492000000000001,12.335000000000001,13.68,15.025,16.721,18.934000000000001,21.962,26.405000000000001,33.665999999999997,40.927999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,159,-1.2969999999999999,18.999099999999999,0.13514000000000001,12.364000000000001,13.717000000000001,15.07,16.774999999999999,18.998999999999999,22.042000000000002,26.501000000000001,33.774999999999999,41.048000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,160,-1.2894000000000001,19.0642,0.13536999999999999,12.391999999999999,13.753,15.113,16.827999999999999,19.064,22.122,26.597999999999999,33.884,41.170999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,161,-1.2816000000000001,19.128900000000002,0.13558999999999999,12.42,13.788,15.157,16.881,19.129000000000001,22.201000000000001,26.693000000000001,33.988999999999997,41.286000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,162,-1.2739,19.193100000000001,0.1358,12.446999999999999,13.824,15.2,16.934000000000001,19.193000000000001,22.279,26.786000000000001,34.091999999999999,41.396999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,163,-1.2661,19.256699999999999,0.13600999999999999,12.475,13.859,15.243,16.986000000000001,19.257000000000001,22.356999999999999,26.879000000000001,34.192,41.506
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,164,-1.2583,19.319700000000001,0.13622000000000001,12.500999999999999,13.893000000000001,15.285,17.036999999999999,19.32,22.433,26.97,34.292000000000002,41.613999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,165,-1.2504,19.382000000000001,0.13642000000000001,12.528,13.927,15.327,17.088000000000001,19.382000000000001,22.509,27.06,34.387,41.713999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,166,-1.2424999999999999,19.4437,0.13661999999999999,12.554,13.961,15.368,17.138999999999999,19.443999999999999,22.584,27.149000000000001,34.481000000000002,41.814
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,167,-1.2344999999999999,19.5045,0.13680999999999999,12.579000000000001,13.994,15.407999999999999,17.187999999999999,19.504000000000001,22.658000000000001,27.234999999999999,34.570999999999998,41.906999999999996
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,168,-1.2265999999999999,19.564699999999998,0.13700000000000001,12.603999999999999,14.026,15.448,17.238,19.565000000000001,22.731000000000002,27.321000000000002,34.659999999999997,41.999000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,169,-1.2185999999999999,19.623999999999999,0.13719000000000001,12.628,14.058,15.488,17.286000000000001,19.623999999999999,22.803000000000001,27.405999999999999,34.747,42.088000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,170,-1.2107000000000001,19.682400000000001,0.13738,12.651999999999999,14.089,15.526,17.334,19.681999999999999,22.873999999999999,27.489000000000001,34.832999999999998,42.176000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,171,-1.2027000000000001,19.739999999999998,0.13755999999999999,12.675000000000001,14.119,15.564,17.38,19.739999999999998,22.943000000000001,27.57,34.914000000000001,42.258000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,172,-1.1947000000000001,19.796600000000002,0.13774,12.696999999999999,14.148999999999999,15.601000000000001,17.427,19.797000000000001,23.012,27.65,34.994,42.338000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,173,-1.1867000000000001,19.8523,0.13791,12.718999999999999,14.179,15.638,17.472000000000001,19.852,23.079000000000001,27.727,35.07,42.411999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,174,-1.1788000000000001,19.907,0.13808000000000001,12.74,14.207000000000001,15.673999999999999,17.515999999999998,19.907,23.145,27.803999999999998,35.145000000000003,42.484999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,175,-1.1708000000000001,19.960699999999999,0.13825000000000001,12.760999999999999,14.234999999999999,15.709,17.559999999999999,19.960999999999999,23.21,27.879000000000001,35.216999999999999,42.555
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,176,-1.1629,20.013300000000001,0.13841000000000001,12.781000000000001,14.262,15.743,17.603000000000002,20.013000000000002,23.273,27.951000000000001,35.286000000000001,42.621000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,177,-1.1549,20.064800000000002,0.13858000000000001,12.8,14.288,15.776,17.643999999999998,20.065000000000001,23.335999999999999,28.023,35.353999999999999,42.685000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,178,-1.147,20.115200000000002,0.13872999999999999,12.819000000000001,14.314,15.808999999999999,17.684999999999999,20.114999999999998,23.396000000000001,28.091000000000001,35.417000000000002,42.743000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,179,-1.139,20.164400000000001,0.13889000000000001,12.836,14.337999999999999,15.840999999999999,17.725000000000001,20.164000000000001,23.456,28.158999999999999,35.478999999999999,42.8
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,180,-1.1311,20.212499999999999,0.13904,12.853,14.362,15.871,17.763999999999999,20.212,23.513999999999999,28.224,35.537999999999997,42.851999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,181,-1.1232,20.259499999999999,0.13919999999999999,12.869,14.385,15.901,17.802,20.260000000000002,23.57,28.289000000000001,35.597000000000001,42.905000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,182,-1.1153,20.305299999999999,0.13933999999999999,12.885,14.407999999999999,15.93,17.838999999999999,20.305,23.625,28.35,35.65,42.95
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,183,-1.1073999999999999,20.349900000000002,0.13949,12.9,14.429,15.958,17.873999999999999,20.350000000000001,23.678999999999998,28.411000000000001,35.703000000000003,42.994999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,184,-1.0995999999999999,20.3934,0.13963,12.914,14.45,15.984999999999999,17.908999999999999,20.393000000000001,23.731000000000002,28.469000000000001,35.752000000000002,43.036000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,185,-1.0916999999999999,20.435700000000001,0.13977000000000001,12.927,14.468999999999999,16.012,17.943000000000001,20.436,23.782,28.524999999999999,35.798999999999999,43.073
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,186,-1.0838000000000001,20.476900000000001,0.13991000000000001,12.94,14.488,16.036999999999999,17.975999999999999,20.477,23.832000000000001,28.58,35.844000000000001,43.107999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,187,-1.0760000000000001,20.516999999999999,0.14005000000000001,12.952,14.507,16.062000000000001,18.007999999999999,20.516999999999999,23.88,28.634,35.887,43.140999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,188,-1.0681,20.556000000000001,0.14018,12.962999999999999,14.523999999999999,16.085000000000001,18.039000000000001,20.556000000000001,23.927,28.684000000000001,35.927,43.168999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,189,-1.0603,20.593800000000002,0.14030999999999999,12.973000000000001,14.541,16.108000000000001,18.068999999999999,20.594000000000001,23.972000000000001,28.734000000000002,35.963999999999999,43.195
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,190,-1.0525,20.630600000000001,0.14044000000000001,12.983000000000001,14.557,16.13,18.097999999999999,20.631,24.016999999999999,28.782,36,43.219000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,191,-1.0447,20.6663,0.14057,12.992000000000001,14.571999999999999,16.151,18.126000000000001,20.666,24.06,28.827999999999999,36.033999999999999,43.241
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,192,-1.0367999999999999,20.700800000000001,0.14069999999999999,13,14.586,16.172000000000001,18.152999999999999,20.701000000000001,24.100999999999999,28.873000000000001,36.066000000000003,43.259
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,193,-1.0289999999999999,20.734400000000001,0.14082,13.007999999999999,14.6,16.190999999999999,18.178999999999998,20.734000000000002,24.140999999999998,28.914999999999999,36.094000000000001,43.274000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,194,-1.0212000000000001,20.7668,0.14094000000000001,13.015000000000001,14.613,16.21,18.204999999999998,20.766999999999999,24.18,28.956,36.121000000000002,43.286000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,195,-1.0134000000000001,20.798200000000001,0.14105999999999999,13.022,14.625,16.228000000000002,18.228999999999999,20.797999999999998,24.218,28.995999999999999,36.146000000000001,43.295999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,196,-1.0055000000000001,20.828600000000002,0.14118,13.026999999999999,14.635999999999999,16.245000000000001,18.253,20.829000000000001,24.254000000000001,29.033999999999999,36.168999999999997,43.304000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,197,-0.99770000000000003,20.858000000000001,0.14130000000000001,13.032,14.647,16.260999999999999,18.274999999999999,20.858000000000001,24.29,29.07,36.19,43.31
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,198,-0.98980000000000001,20.886299999999999,0.14141999999999999,13.036,14.656000000000001,16.277000000000001,18.297000000000001,20.885999999999999,24.324000000000002,29.105,36.209000000000003,43.313000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,199,-0.9819,20.913699999999999,0.14152999999999999,13.04,14.666,16.291,18.318000000000001,20.914000000000001,24.356000000000002,29.138000000000002,36.225000000000001,43.311999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,200,-0.97399999999999998,20.940100000000001,0.14163999999999999,13.042999999999999,14.673999999999999,16.305,18.338000000000001,20.94,24.388000000000002,29.17,36.238999999999997,43.308999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,201,-0.96609999999999996,20.965599999999998,0.14176,13.045,14.682,16.318000000000001,18.356999999999999,20.966000000000001,24.417999999999999,29.201000000000001,36.253999999999998,43.307000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,202,-0.95820000000000005,20.990100000000002,0.14187,13.047000000000001,14.689,16.331,18.376000000000001,20.99,24.448,29.23,36.265000000000001,43.3
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,203,-0.95030000000000003,21.0138,0.14198,13.048,14.695,16.343,18.393000000000001,21.013999999999999,24.475999999999999,29.257000000000001,36.274999999999999,43.292000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,204,-0.94230000000000003,21.0367,0.14208000000000001,13.048999999999999,14.701000000000001,16.353999999999999,18.411000000000001,21.036999999999999,24.503,29.283000000000001,36.280999999999999,43.279000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,205,-0.93440000000000001,21.058700000000002,0.14219000000000001,13.048999999999999,14.707000000000001,16.364999999999998,18.427,21.059000000000001,24.53,29.308,36.287999999999997,43.268000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,206,-0.9264,21.080100000000002,0.14230000000000001,13.048,14.711,16.375,18.443000000000001,21.08,24.555,29.332999999999998,36.292999999999999,43.253999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,207,-0.91839999999999999,21.1007,0.1424,13.047000000000001,14.715999999999999,16.384,18.457999999999998,21.100999999999999,24.58,29.355,36.295999999999999,43.237000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,208,-0.91039999999999999,21.1206,0.14249999999999999,13.045999999999999,14.718999999999999,16.393000000000001,18.472000000000001,21.120999999999999,24.603000000000002,29.376000000000001,36.296999999999997,43.218000000000004
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,209,-0.90239999999999998,21.139900000000001,0.14260999999999999,13.044,14.722,16.401,18.486000000000001,21.14,24.626000000000001,29.398,36.299999999999997,43.201999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,210,-0.89439999999999997,21.1586,0.14271,13.042,14.725,16.408999999999999,18.498999999999999,21.158999999999999,24.649000000000001,29.417999999999999,36.298999999999999,43.180999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,211,-0.88629999999999998,21.1768,0.14280999999999999,13.039,14.728,16.417000000000002,18.512,21.177,24.67,29.436,36.298000000000002,43.158999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,212,-0.87829999999999997,21.194400000000002,0.14291000000000001,13.036,14.73,16.423999999999999,18.524999999999999,21.193999999999999,24.690999999999999,29.454999999999998,36.295999999999999,43.137
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,213,-0.87029999999999996,21.211600000000001,0.14301,13.032,14.731,16.431000000000001,18.536999999999999,21.212,24.712,29.472000000000001,36.292999999999999,43.113999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,214,-0.86229999999999996,21.228200000000001,0.14310999999999999,13.029,14.733000000000001,16.437000000000001,18.547999999999998,21.228000000000002,24.731000000000002,29.489000000000001,36.29,43.09
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,215,-0.85419999999999996,21.244399999999999,0.14319999999999999,13.025,14.734,16.443000000000001,18.559999999999999,21.244,24.75,29.504999999999999,36.283999999999999,43.061999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,216,-0.84619999999999995,21.260300000000001,0.14330000000000001,13.02,14.734,16.448,18.571000000000002,21.26,24.768999999999998,29.52,36.279000000000003,43.037999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,217,-0.83819999999999995,21.275700000000001,0.1434,13.016,14.734999999999999,16.454000000000001,18.581,21.276,24.788,29.536000000000001,36.274000000000001,43.012999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,218,-0.83009999999999995,21.290800000000001,0.14349000000000001,13.010999999999999,14.734999999999999,16.459,18.591999999999999,21.291,24.805,29.55,36.267000000000003,42.984000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,219,-0.82210000000000005,21.305499999999999,0.14359,13.006,14.734999999999999,16.463000000000001,18.600999999999999,21.306000000000001,24.823,29.564,36.261000000000003,42.957999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,220,-0.81399999999999995,21.32,0.14368,13,14.734,16.468,18.611000000000001,21.32,24.84,29.577000000000002,36.252000000000002,42.927999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,221,-0.80600000000000005,21.334099999999999,0.14377000000000001,12.994999999999999,14.734,16.472999999999999,18.620999999999999,21.334,24.856000000000002,29.588999999999999,36.244,42.899000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,222,-0.79800000000000004,21.347999999999999,0.14385999999999999,12.989000000000001,14.733000000000001,16.477,18.63,21.347999999999999,24.873000000000001,29.602,36.234999999999999,42.869
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,223,-0.78990000000000005,21.361699999999999,0.14396,12.983000000000001,14.731999999999999,16.48,18.638999999999999,21.361999999999998,24.888999999999999,29.614000000000001,36.228000000000002,42.841000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,224,-0.78190000000000004,21.3752,0.14405000000000001,12.977,14.731,16.484000000000002,18.648,21.375,24.905000000000001,29.626000000000001,36.219000000000001,42.811999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,225,-0.77380000000000004,21.388400000000001,0.14413999999999999,12.971,14.728999999999999,16.488,18.657,21.388000000000002,24.92,29.637,36.209000000000003,42.780999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,226,-0.76580000000000004,21.401399999999999,0.14423,12.964,14.728,16.491,18.664999999999999,21.401,24.934999999999999,29.649000000000001,36.200000000000003,42.750999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,227,-0.75770000000000004,21.414300000000001,0.14432,12.958,14.726000000000001,16.494,18.672999999999998,21.414000000000001,24.951000000000001,29.658999999999999,36.19,42.72
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,228,-0.74960000000000004,21.4269,0.14441000000000001,12.951000000000001,14.724,16.497,18.681000000000001,21.427,24.965,29.67,36.179000000000002,42.689
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,0,-0.30530000000000002,13.4069,0.095600000000000004,10.199999999999999,11.1,12.2,13.4,14.8,16.3,18.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,1,0.52470000000000006,13.3421,0.098210000000000006,9.6999999999999993,10.8,12.1,13.3,14.7,16.100000000000001,17.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,2,0.41770000000000002,13.637700000000001,0.094539999999999999,10.1,11.2,12.4,13.6,15,16.399999999999999,17.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,3,0.34489999999999998,14.2241,0.092299999999999993,10.6,11.8,13,14.2,15.6,17,18.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,4,0.28810000000000002,14.7714,0.090719999999999995,11.1,12.3,13.5,14.8,16.2,17.600000000000001,19.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,5,0.2409,15.2355,0.089529999999999998,11.5,12.7,13.9,15.2,16.600000000000001,18.2,19.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,6,0.20030000000000001,15.6107,0.088590000000000002,11.9,13,14.3,15.6,17,18.600000000000001,20.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,7,0.16450000000000001,15.9169,0.087819999999999995,12.2,13.3,14.6,15.9,17.399999999999999,18.899999999999999,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,8,0.13239999999999999,16.169799999999999,0.087169999999999997,12.4,13.6,14.8,16.2,17.600000000000001,19.2,20.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,9,0.1032,16.378699999999998,0.086610000000000006,12.6,13.8,15,16.399999999999999,17.899999999999999,19.399999999999999,21.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,10,0.076600000000000001,16.549399999999999,0.086120000000000002,12.7,13.9,15.2,16.5,18,19.600000000000001,21.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,11,0.051999999999999998,16.688199999999998,0.085690000000000002,12.9,14,15.3,16.7,18.2,19.8,21.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,12,0.029100000000000001,16.801600000000001,0.085309999999999997,13,14.2,15.4,16.8,18.3,19.899999999999999,21.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,13,0.0077000000000000002,16.895,0.084959999999999994,13.1,14.3,15.5,16.899999999999999,18.399999999999999,20,21.8
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,0,-0.30530000000000002,13.4069,0.095600000000000004,10.199999999999999,11.1,12.2,13.4,14.8,16.3,18.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,1,0.27079999999999999,14.944100000000001,0.090270000000000003,11.3,12.4,13.6,14.9,16.3,17.8,19.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,2,0.1118,16.319500000000001,0.08677,12.5,13.7,15,16.3,17.8,19.399999999999999,21.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,3,0.0067999999999999996,16.898700000000002,0.084949999999999998,13.1,14.3,15.5,16.899999999999999,18.399999999999999,20,21.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,4,-0.072700000000000001,17.157900000000001,0.083779999999999993,13.4,14.5,15.8,17.2,18.7,20.3,22.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,5,-0.13700000000000001,17.291899999999998,0.082960000000000006,13.5,14.7,15.9,17.3,18.8,20.5,22.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,6,-0.1913,17.342199999999998,0.082339999999999997,13.6,14.7,16,17.3,18.8,20.5,22.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,7,-0.23849999999999999,17.328800000000001,0.08183,13.7,14.8,16,17.3,18.8,20.5,22.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,8,-0.2802,17.264700000000001,0.0814,13.6,14.7,15.9,17.3,18.7,20.399999999999999,22.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,9,-0.31759999999999999,17.1662,0.081019999999999995,13.6,14.7,15.8,17.2,18.600000000000001,20.3,22.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,10,-0.35160000000000002,17.0488,0.080680000000000002,13.5,14.6,15.7,17,18.5,20.100000000000001,22
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,11,-0.38279999999999997,16.9239,0.080369999999999997,13.4,14.5,15.6,16.899999999999999,18.399999999999999,20,21.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,12,-0.41149999999999998,16.798100000000002,0.080089999999999995,13.4,14.4,15.5,16.8,18.2,19.8,21.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,13,-0.43819999999999998,16.674299999999999,0.079820000000000002,13.3,14.3,15.4,16.7,18.100000000000001,19.7,21.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,14,-0.46300000000000002,16.5548,0.079579999999999998,13.2,14.2,15.3,16.600000000000001,18,19.5,21.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,15,-0.48630000000000001,16.440899999999999,0.079350000000000004,13.1,14.1,15.2,16.399999999999999,17.8,19.399999999999999,21.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,16,-0.50819999999999999,16.333500000000001,0.079130000000000006,13.1,14,15.1,16.3,17.7,19.3,21
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,17,-0.52890000000000004,16.232900000000001,0.078920000000000004,13,13.9,15,16.2,17.600000000000001,19.100000000000001,20.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,18,-0.5484,16.139199999999999,0.078729999999999994,12.9,13.9,14.9,16.100000000000001,17.5,19,20.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,19,-0.56689999999999996,16.052800000000001,0.078539999999999999,12.9,13.8,14.9,16.100000000000001,17.399999999999999,18.899999999999999,20.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,20,-0.58460000000000001,15.974299999999999,0.078359999999999999,12.8,13.7,14.8,16,17.3,18.8,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,21,-0.60140000000000005,15.9039,0.078179999999999999,12.8,13.7,14.7,15.9,17.2,18.7,20.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,22,-0.61739999999999995,15.841200000000001,0.078020000000000006,12.7,13.6,14.7,15.8,17.2,18.7,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,23,-0.63280000000000003,15.7852,0.077859999999999999,12.7,13.6,14.6,15.8,17.100000000000001,18.600000000000001,20.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,24,-0.64729999999999999,15.7356,0.077710000000000001,12.7,13.6,14.6,15.7,17,18.5,20.3
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,24,-0.61870000000000003,16.018899999999999,0.077850000000000003,12.9,13.8,14.8,16,17.3,18.899999999999999,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,25,-0.58399999999999996,15.98,0.077920000000000003,12.8,13.8,14.8,16,17.3,18.8,20.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,26,-0.54969999999999997,15.9414,0.078,12.8,13.7,14.8,15.9,17.3,18.8,20.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,27,-0.51659999999999995,15.903600000000001,0.078079999999999997,12.7,13.7,14.7,15.9,17.2,18.7,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,28,-0.48499999999999999,15.8667,0.078179999999999999,12.7,13.6,14.7,15.9,17.2,18.7,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,29,-0.45519999999999999,15.8306,0.078289999999999998,12.7,13.6,14.7,15.8,17.100000000000001,18.600000000000001,20.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,30,-0.4274,15.795299999999999,0.078409999999999994,12.6,13.6,14.6,15.8,17.100000000000001,18.600000000000001,20.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,31,-0.40160000000000001,15.7606,0.078539999999999999,12.6,13.5,14.6,15.8,17.100000000000001,18.5,20.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,32,-0.37819999999999998,15.726699999999999,0.078670000000000004,12.5,13.5,14.6,15.7,17,18.5,20.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,33,-0.35720000000000002,15.6934,0.078820000000000001,12.5,13.5,14.5,15.7,17,18.5,20.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,34,-0.33879999999999999,15.661,0.078969999999999999,12.5,13.4,14.5,15.7,17,18.399999999999999,20
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,35,-0.3231,15.6294,0.079140000000000002,12.4,13.4,14.5,15.6,16.899999999999999,18.399999999999999,20
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,36,-0.31009999999999999,15.598800000000001,0.079310000000000005,12.4,13.4,14.4,15.6,16.899999999999999,18.399999999999999,20
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,37,-0.3,15.5693,0.079500000000000001,12.4,13.3,14.4,15.6,16.899999999999999,18.3,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,38,-0.29270000000000002,15.541,0.079689999999999997,12.3,13.3,14.4,15.5,16.8,18.3,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,39,-0.28839999999999999,15.513999999999999,0.079899999999999999,12.3,13.3,14.3,15.5,16.8,18.3,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,40,-0.28689999999999999,15.4885,0.080119999999999997,12.3,13.2,14.3,15.5,16.8,18.2,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,41,-0.28810000000000002,15.464499999999999,0.080360000000000001,12.2,13.2,14.3,15.5,16.8,18.2,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,42,-0.29189999999999999,15.442,0.080610000000000001,12.2,13.2,14.3,15.4,16.8,18.2,19.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,43,-0.29809999999999998,15.420999999999999,0.080869999999999997,12.2,13.2,14.2,15.4,16.7,18.2,19.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,44,-0.30669999999999997,15.401300000000001,0.08115,12.2,13.1,14.2,15.4,16.7,18.2,19.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,45,-0.31740000000000002,15.3827,0.081439999999999999,12.2,13.1,14.2,15.4,16.7,18.2,19.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,46,-0.33029999999999998,15.3652,0.081739999999999993,12.1,13.1,14.2,15.4,16.7,18.2,19.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,47,-0.34520000000000001,15.3485,0.082049999999999998,12.1,13.1,14.2,15.3,16.7,18.2,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,48,-0.36220000000000002,15.332599999999999,0.082379999999999995,12.1,13.1,14.1,15.3,16.7,18.2,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,49,-0.38109999999999999,15.317399999999999,0.082720000000000002,12.1,13,14.1,15.3,16.7,18.2,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,50,-0.40189999999999998,15.302899999999999,0.083070000000000005,12.1,13,14.1,15.3,16.7,18.2,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,51,-0.42449999999999999,15.289099999999999,0.083430000000000004,12.1,13,14.1,15.3,16.600000000000001,18.2,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,52,-0.44879999999999998,15.2759,0.083799999999999999,12,13,14.1,15.3,16.600000000000001,18.2,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,53,-0.47470000000000001,15.263299999999999,0.084180000000000005,12,13,14.1,15.3,16.600000000000001,18.2,20
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,54,-0.50190000000000001,15.2514,0.084570000000000006,12,13,14,15.3,16.600000000000001,18.2,20
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,55,-0.53029999999999999,15.24,0.084959999999999994,12,13,14,15.2,16.600000000000001,18.2,20
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,56,-0.55989999999999995,15.229100000000001,0.085360000000000005,12,12.9,14,15.2,16.600000000000001,18.2,20.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,57,-0.59050000000000002,15.2188,0.085769999999999999,12,12.9,14,15.2,16.600000000000001,18.2,20.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,58,-0.62229999999999996,15.209099999999999,0.086169999999999997,12,12.9,14,15.2,16.600000000000001,18.3,20.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,59,-0.6552,15.2,0.08659,12,12.9,14,15.2,16.600000000000001,18.3,20.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,60,-0.68920000000000003,15.191599999999999,0.086999999999999994,12,12.9,14,15.2,16.600000000000001,18.3,20.3
source,gender,age_unit,age,l,m,s,sd4neg,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3,sd4
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,61,-0.73870000000000002,15.264099999999999,0.083900000000000002,11.204000000000001,12.118,13.031000000000001,14.071,15.263999999999999,16.645,18.259,20.166,22.071999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,62,-0.7621,15.2616,0.084140000000000006,11.204000000000001,12.115,13.026999999999999,14.066000000000001,15.262,16.648,18.273,20.2,22.126999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,63,-0.78559999999999997,15.260400000000001,0.084390000000000007,11.204000000000001,12.114000000000001,13.023999999999999,14.063000000000001,15.26,16.652999999999999,18.29,20.238,22.186
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,64,-0.80889999999999995,15.2605,0.084640000000000007,11.205,12.114000000000001,13.022,14.061,15.26,16.658999999999999,18.308,20.277000000000001,22.247
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,65,-0.83220000000000005,15.261900000000001,0.084900000000000003,11.207000000000001,12.114000000000001,13.021000000000001,14.06,15.262,16.667000000000002,18.327999999999999,20.32,22.312000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,66,-0.85540000000000005,15.2645,0.08516,11.21,12.115,13.021000000000001,14.06,15.263999999999999,16.675999999999998,18.350000000000001,20.364999999999998,22.38
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,67,-0.87849999999999995,15.2684,0.085430000000000006,11.212999999999999,12.117000000000001,13.021000000000001,14.061,15.268000000000001,16.686,18.373999999999999,20.413,22.452000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,68,-0.90149999999999997,15.2737,0.085699999999999998,11.218,12.121,13.023,14.063000000000001,15.273999999999999,16.699000000000002,18.399000000000001,20.463000000000001,22.526
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,69,-0.92430000000000001,15.280099999999999,0.085970000000000005,11.223000000000001,12.125,13.026,14.067,15.28,16.712,18.427,20.515000000000001,22.603999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,70,-0.94710000000000005,15.287699999999999,0.086249999999999993,11.228,12.129,13.03,14.071,15.288,16.727,18.456,20.571000000000002,22.684999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,71,-0.96970000000000001,15.2965,0.086529999999999996,11.234999999999999,12.135,13.035,14.077,15.295999999999999,16.742999999999999,18.486999999999998,20.628,22.77
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,72,-0.99209999999999998,15.3062,0.086819999999999994,11.242000000000001,12.141,13.04,14.083,15.305999999999999,16.760999999999999,18.52,20.689,22.858000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,73,-1.0144,15.3169,0.087110000000000007,11.249000000000001,12.148,13.047000000000001,14.09,15.317,16.78,18.553999999999998,20.751000000000001,22.948
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,74,-1.0365,15.3285,0.087410000000000002,11.257,12.154999999999999,13.053000000000001,14.098000000000001,15.327999999999999,16.798999999999999,18.588999999999999,20.815999999999999,23.042999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,75,-1.0584,15.3408,0.087709999999999996,11.265000000000001,12.163,13.061,14.106999999999999,15.340999999999999,16.82,18.626000000000001,20.882999999999999,23.138999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,76,-1.0801000000000001,15.353999999999999,0.088020000000000001,11.273999999999999,12.170999999999999,13.069000000000001,14.116,15.353999999999999,16.841999999999999,18.664999999999999,20.952000000000002,23.24
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,77,-1.1016999999999999,15.367900000000001,0.088330000000000006,11.282999999999999,12.18,13.077,14.125999999999999,15.368,16.864000000000001,18.704000000000001,21.023,23.343
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,78,-1.123,15.3825,0.088650000000000007,11.292,12.189,13.086,14.135999999999999,15.382,16.888000000000002,18.745000000000001,21.097000000000001,23.449000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,79,-1.1440999999999999,15.3978,0.088980000000000004,11.301,12.198,13.095000000000001,14.147,15.398,16.913,18.788,21.173999999999999,23.559000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,80,-1.1649,15.4137,0.08931,11.311,12.208,13.105,14.157999999999999,15.414,16.937999999999999,18.831,21.251000000000001,23.672000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,81,-1.1856,15.430199999999999,0.089639999999999997,11.321,12.218,13.115,14.17,15.43,16.963999999999999,18.876000000000001,21.331,23.786000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,82,-1.206,15.4473,0.089980000000000004,11.331,12.228,13.125999999999999,14.183,15.446999999999999,16.991,18.922000000000001,21.413,23.905000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,83,-1.2261,15.465,0.090329999999999994,11.340999999999999,12.239000000000001,13.135999999999999,14.195,15.465,17.018999999999998,18.969000000000001,21.498000000000001,24.027000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,84,-1.246,15.4832,0.090679999999999997,11.351000000000001,12.25,13.148,14.209,15.483000000000001,17.047000000000001,19.016999999999999,21.584,24.152000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,85,-1.2656000000000001,15.501899999999999,0.09103,11.362,12.260999999999999,13.159000000000001,14.222,15.502000000000001,17.076000000000001,19.065999999999999,21.672000000000001,24.279
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,86,-1.2848999999999999,15.521000000000001,0.091389999999999999,11.372999999999999,12.272,13.170999999999999,14.236000000000001,15.521000000000001,17.106000000000002,19.116,21.763000000000002,24.408999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,87,-1.304,15.540699999999999,0.091759999999999994,11.384,12.282999999999999,13.183,14.25,15.541,17.135999999999999,19.167999999999999,21.856000000000002,24.544
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,88,-1.3228,15.5608,0.092130000000000004,11.395,12.295,13.195,14.265000000000001,15.561,17.167000000000002,19.22,21.95,24.681000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,89,-1.3413999999999999,15.5814,0.092509999999999995,11.406000000000001,12.307,13.208,14.28,15.581,17.199000000000002,19.274000000000001,22.047999999999998,24.821999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,90,-1.3595999999999999,15.6023,0.09289,11.417,12.319000000000001,13.221,14.295,15.602,17.231000000000002,19.327999999999999,22.146999999999998,24.966000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,91,-1.3775999999999999,15.623699999999999,0.093270000000000006,11.428000000000001,12.331,13.234,14.311,15.624000000000001,17.263999999999999,19.382999999999999,22.247,25.111999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,92,-1.3953,15.6455,0.093659999999999993,11.44,12.343,13.247,14.327,15.646000000000001,17.297000000000001,19.440000000000001,22.350999999999999,25.262
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,93,-1.4126000000000001,15.6677,0.094060000000000005,11.451000000000001,12.356,13.26,14.343,15.667999999999999,17.331,19.497,22.457000000000001,25.416
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,94,-1.4297,15.690300000000001,0.094450000000000006,11.462999999999999,12.368,13.273999999999999,14.36,15.69,17.366,19.555,22.562999999999999,25.571000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,95,-1.4463999999999999,15.7133,0.09486,11.474,12.381,13.288,14.377000000000001,15.712999999999999,17.401,19.614999999999998,22.672999999999998,25.731999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,96,-1.4629000000000001,15.736800000000001,0.095259999999999997,11.486000000000001,12.394,13.302,14.394,15.737,17.437000000000001,19.675000000000001,22.785,25.895
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,97,-1.4790000000000001,15.7606,0.095670000000000005,11.497999999999999,12.407,13.317,14.412000000000001,15.760999999999999,17.472999999999999,19.736000000000001,22.899000000000001,26.061
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,98,-1.4946999999999999,15.784800000000001,0.096089999999999995,11.51,12.42,13.331,14.429,15.785,17.510000000000002,19.797999999999998,23.015000000000001,26.231999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,99,-1.5101,15.8094,0.096509999999999999,11.521000000000001,12.433999999999999,13.346,14.446999999999999,15.808999999999999,17.547999999999998,19.861999999999998,23.134,26.405999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,100,-1.5251999999999999,15.8344,0.096930000000000002,11.534000000000001,12.446999999999999,13.361000000000001,14.465999999999999,15.834,17.585999999999999,19.925999999999998,23.254000000000001,26.582000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,101,-1.5399,15.8597,0.097350000000000006,11.545999999999999,12.461,13.375999999999999,14.484,15.86,17.623999999999999,19.989999999999998,23.376000000000001,26.760999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,102,-1.5542,15.8855,0.097780000000000006,11.558,12.475,13.391999999999999,14.503,15.885999999999999,17.663,20.056000000000001,23.5,26.945
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,103,-1.5681,15.9116,0.098210000000000006,11.57,12.489000000000001,13.407999999999999,14.523,15.912000000000001,17.702000000000002,20.123000000000001,23.626999999999999,27.131
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,104,-1.5817000000000001,15.9381,0.098640000000000005,11.583,12.503,13.423999999999999,14.542,15.938000000000001,17.742000000000001,20.190000000000001,23.754999999999999,27.32
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,105,-1.5948,15.9651,0.099070000000000005,11.595000000000001,12.518000000000001,13.44,14.561999999999999,15.965,17.783000000000001,20.257999999999999,23.885000000000002,27.510999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,106,-1.6075999999999999,15.9925,0.099510000000000001,11.608000000000001,12.532,13.456,14.582000000000001,15.992000000000001,17.824000000000002,20.327000000000002,24.018000000000001,27.707999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,107,-1.6198999999999999,16.020499999999998,0.099940000000000001,11.621,12.547000000000001,13.473000000000001,14.603,16.02,17.866,20.396999999999998,24.151,27.905000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,108,-1.6317999999999999,16.048999999999999,0.10038,11.634,12.561999999999999,13.491,14.624000000000001,16.048999999999999,17.908000000000001,20.468,24.288,28.106999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,109,-1.6433,16.078099999999999,0.10082000000000001,11.647,12.577999999999999,13.507999999999999,14.646000000000001,16.077999999999999,17.952000000000002,20.54,24.425999999999998,28.312000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,110,-1.6544000000000001,16.107800000000001,0.10126,11.661,12.593999999999999,13.526,14.667999999999999,16.108000000000001,17.995999999999999,20.613,24.567,28.52
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,111,-1.6651,16.138100000000001,0.1017,11.675000000000001,12.61,13.545,14.691000000000001,16.138000000000002,18.04,20.687000000000001,24.709,28.731000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,112,-1.6753,16.1692,0.10213999999999999,11.689,12.625999999999999,13.564,14.714,16.169,18.085999999999999,20.763000000000002,24.853999999999999,28.945
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,113,-1.6851,16.200900000000001,0.10259,11.702999999999999,12.643000000000001,13.583,14.738,16.201000000000001,18.132000000000001,20.838999999999999,25.001000000000001,29.163
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,114,-1.6943999999999999,16.2333,0.10303,11.718,12.661,13.603,14.763,16.233000000000001,18.178999999999998,20.916,25.149000000000001,29.382000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,115,-1.7032,16.266500000000001,0.10347000000000001,11.733000000000001,12.679,13.624000000000001,14.788,16.265999999999998,18.227,20.994,25.298999999999999,29.603999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,116,-1.7116,16.3004,0.10391,11.749000000000001,12.696999999999999,13.645,14.814,16.3,18.276,21.074000000000002,25.451000000000001,29.827999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,117,-1.7196,16.335100000000001,0.10435,11.765000000000001,12.715999999999999,13.667,14.84,16.335000000000001,18.326000000000001,21.154,25.605,30.055
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,118,-1.7271000000000001,16.3704,0.10478,11.781000000000001,12.734999999999999,13.689,14.867000000000001,16.37,18.376000000000001,21.234000000000002,25.757999999999999,30.282
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,119,-1.7341,16.406500000000001,0.10521999999999999,11.798,12.755000000000001,13.712,14.895,16.405999999999999,18.428000000000001,21.317,25.914999999999999,30.513000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,120,-1.7406999999999999,16.443300000000001,0.10566,11.815,12.775,13.734999999999999,14.923,16.443000000000001,18.48,21.4,26.073,30.745999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,121,-1.7467999999999999,16.480699999999999,0.10609,11.832000000000001,12.795999999999999,13.759,14.952,16.481000000000002,18.532,21.483000000000001,26.231000000000002,30.978999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,122,-1.7524999999999999,16.518899999999999,0.10652,11.85,12.817,13.784000000000001,14.981999999999999,16.518999999999998,18.585999999999999,21.568000000000001,26.390999999999998,31.213000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,123,-1.7578,16.5578,0.10695,11.868,12.837999999999999,13.808,15.012,16.558,18.64,21.652999999999999,26.552,31.45
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,124,-1.7625999999999999,16.5974,0.10738,11.885999999999999,12.86,13.834,15.042999999999999,16.597000000000001,18.696000000000002,21.739000000000001,26.713999999999999,31.687999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,125,-1.7669999999999999,16.637599999999999,0.10780000000000001,11.904999999999999,12.882,13.86,15.074,16.638000000000002,18.751000000000001,21.826000000000001,26.875,31.925000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,126,-1.7709999999999999,16.678599999999999,0.10823000000000001,11.923999999999999,12.904999999999999,13.885999999999999,15.106,16.678999999999998,18.808,21.914000000000001,27.04,32.165999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,127,-1.7745,16.720300000000002,0.10865,11.943,12.928000000000001,13.913,15.138999999999999,16.72,18.864999999999998,22.001999999999999,27.204000000000001,32.405000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,128,-1.7777000000000001,16.762799999999999,0.10906,11.964,12.952,13.941000000000001,15.172000000000001,16.763000000000002,18.922999999999998,22.09,27.367000000000001,32.643000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,129,-1.7804,16.805900000000001,0.10947999999999999,11.984,12.976000000000001,13.968999999999999,15.206,16.806000000000001,18.981999999999999,22.18,27.533000000000001,32.884999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,130,-1.7827999999999999,16.849699999999999,0.10989,12.004,13.000999999999999,13.997999999999999,15.241,16.850000000000001,19.042000000000002,22.271000000000001,27.698,33.125
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,131,-1.7847,16.894100000000002,0.1103,12.025,13.026,14.026999999999999,15.276,16.893999999999998,19.102,22.361999999999998,27.863,33.365000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,132,-1.7862,16.9392,0.11070000000000001,12.045999999999999,13.051,14.055999999999999,15.311999999999999,16.939,19.163,22.452000000000002,28.027000000000001,33.601999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,133,-1.7873000000000001,16.984999999999999,0.1111,12.068,13.077,14.087,15.348000000000001,16.984999999999999,19.224,22.544,28.192,33.838999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,134,-1.7881,17.031400000000001,0.1115,12.09,13.103,14.117000000000001,15.385,17.030999999999999,19.286999999999999,22.637,28.356999999999999,34.076999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,135,-1.7884,17.078399999999998,0.11189,12.112,13.13,14.148,15.422000000000001,17.077999999999999,19.349,22.728999999999999,28.52,34.311
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,136,-1.7884,17.126200000000001,0.11228,12.134,13.157,14.18,15.461,17.126000000000001,19.413,22.821999999999999,28.684000000000001,34.545000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,137,-1.788,17.174600000000002,0.11266,12.157,13.185,14.212,15.499000000000001,17.175000000000001,19.477,22.914999999999999,28.846,34.776000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,138,-1.7873000000000001,17.223600000000001,0.11304,12.180999999999999,13.212999999999999,14.244999999999999,15.539,17.224,19.542000000000002,23.009,29.007999999999999,35.006
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,139,-1.7861,17.273399999999999,0.11342000000000001,12.204000000000001,13.241,14.278,15.577999999999999,17.273,19.606999999999999,23.103999999999999,29.169,35.234999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,140,-1.7846,17.324000000000002,0.11379,12.228,13.27,14.311999999999999,15.619,17.324000000000002,19.673999999999999,23.199000000000002,29.329000000000001,35.46
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,141,-1.7827999999999999,17.3752,0.11415,12.253,13.3,14.347,15.66,17.375,19.741,23.292999999999999,29.486999999999998,35.680999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,142,-1.7806,17.427199999999999,0.11451,12.278,13.33,14.382,15.702,17.427,19.808,23.388999999999999,29.645,35.901000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,143,-1.778,17.479900000000001,0.11487,12.303000000000001,13.36,14.417,15.744999999999999,17.48,19.876999999999999,23.484999999999999,29.802,36.119
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,144,-1.7750999999999999,17.5334,0.11522,12.327999999999999,13.391,14.452999999999999,15.788,17.533000000000001,19.946000000000002,23.581,29.957000000000001,36.332999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,145,-1.7719,17.587700000000002,0.11556,12.355,13.422000000000001,14.49,15.833,17.588000000000001,20.015000000000001,23.677,30.11,36.542000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,146,-1.7684,17.642700000000001,0.1159,12.381,13.454000000000001,14.528,15.877000000000001,17.643000000000001,20.085999999999999,23.774000000000001,30.262,36.75
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,147,-1.7645,17.698499999999999,0.11623,12.407999999999999,13.487,14.566000000000001,15.923,17.698,20.157,23.870999999999999,30.411999999999999,36.951999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,148,-1.7604,17.755099999999999,0.11656,12.436,13.52,14.605,15.968999999999999,17.754999999999999,20.228999999999999,23.969000000000001,30.561,37.154000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,149,-1.7559,17.8124,0.11688,12.464,13.554,14.644,16.015999999999998,17.812000000000001,20.302,24.067,30.707999999999998,37.348999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,150,-1.7511000000000001,17.8704,0.1172,12.492000000000001,13.587999999999999,14.683999999999999,16.062999999999999,17.87,20.375,24.164999999999999,30.853999999999999,37.542999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,151,-1.7461,17.929200000000002,0.11751,12.52,13.622,14.724,16.111999999999998,17.928999999999998,20.449000000000002,24.263000000000002,30.998000000000001,37.731999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,152,-1.7407999999999999,17.988700000000001,0.11781,12.55,13.657999999999999,14.766,16.161000000000001,17.989000000000001,20.524000000000001,24.361999999999998,31.138000000000002,37.914999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,153,-1.7352000000000001,18.0488,0.11811000000000001,12.579000000000001,13.693,14.807,16.21,18.048999999999999,20.599,24.46,31.277999999999999,38.095999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,154,-1.7293000000000001,18.1096,0.11841,12.609,13.728999999999999,14.849,16.260000000000002,18.11,20.675000000000001,24.559000000000001,31.417000000000002,38.274999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,155,-1.7232000000000001,18.170999999999999,0.11869,12.638999999999999,13.766,14.891999999999999,16.311,18.170999999999999,20.751000000000001,24.658000000000001,31.550999999999998,38.444000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,156,-1.7168000000000001,18.233000000000001,0.11898,12.669,13.802,14.935,16.361999999999998,18.233000000000001,20.829000000000001,24.757000000000001,31.686,38.616
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,157,-1.7101999999999999,18.295500000000001,0.11924999999999999,12.7,13.839,14.978999999999999,16.414000000000001,18.295999999999999,20.905999999999999,24.856000000000002,31.815999999999999,38.777000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,158,-1.7033,18.358599999999999,0.11952,12.731,13.877000000000001,15.023,16.466000000000001,18.359000000000002,20.984000000000002,24.954000000000001,31.945,38.936
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,159,-1.6961999999999999,18.4221,0.11978999999999999,12.762,13.914999999999999,15.067,16.518999999999998,18.422000000000001,21.062000000000001,25.053000000000001,32.073,39.093000000000004
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,160,-1.6888000000000001,18.486000000000001,0.12005,12.794,13.952999999999999,15.112,16.571999999999999,18.486000000000001,21.14,25.152000000000001,32.197000000000003,39.243000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,161,-1.6811,18.5502,0.1203,12.824999999999999,13.991,15.157,16.625,18.55,21.219000000000001,25.248999999999999,32.317,39.384999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,162,-1.6732,18.614799999999999,0.12055,12.856999999999999,14.029,15.202,16.678999999999998,18.614999999999998,21.297999999999998,25.347000000000001,32.436,39.524999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,163,-1.6651,18.679500000000001,0.12078999999999999,12.888999999999999,14.068,15.247,16.733000000000001,18.68,21.376000000000001,25.443999999999999,32.551000000000002,39.658999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,164,-1.6568000000000001,18.744499999999999,0.12102,12.920999999999999,14.106999999999999,15.292999999999999,16.786999999999999,18.744,21.454999999999998,25.54,32.662999999999997,39.786000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,165,-1.6482000000000001,18.8095,0.12125,12.952,14.145,15.337999999999999,16.841000000000001,18.809999999999999,21.533999999999999,25.635000000000002,32.771999999999998,39.908999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,166,-1.6394,18.874600000000001,0.12148,12.984,14.183999999999999,15.384,16.895,18.875,21.613,25.731000000000002,32.880000000000003,40.03
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,167,-1.6304000000000001,18.939800000000002,0.1217,13.015000000000001,14.222,15.429,16.95,18.940000000000001,21.690999999999999,25.824999999999999,32.984999999999999,40.143999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,168,-1.6211,19.004999999999999,0.12191,13.047000000000001,14.260999999999999,15.475,17.004000000000001,19.004999999999999,21.77,25.917999999999999,33.084000000000003,40.25
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,169,-1.6115999999999999,19.0701,0.12212000000000001,13.077999999999999,14.298999999999999,15.521000000000001,17.058,19.07,21.847999999999999,26.010999999999999,33.182000000000002,40.353000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,170,-1.6020000000000001,19.135100000000001,0.12232999999999999,13.109,14.337,15.566000000000001,17.113,19.135000000000002,21.925999999999998,26.103000000000002,33.279000000000003,40.454000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,171,-1.5921000000000001,19.2,0.12253,13.138999999999999,14.375,15.611000000000001,17.167000000000002,19.2,22.004000000000001,26.193999999999999,33.371000000000002,40.546999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,172,-1.5821000000000001,19.264800000000001,0.12272,13.17,14.414,15.657,17.221,19.265000000000001,22.081,26.283999999999999,33.459000000000003,40.634
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,173,-1.5719000000000001,19.3294,0.12291000000000001,13.201000000000001,14.451000000000001,15.702,17.274999999999999,19.329000000000001,22.158000000000001,26.373000000000001,33.545999999999999,40.718000000000004
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,174,-1.5615000000000001,19.393699999999999,0.1231,13.231,14.489000000000001,15.747,17.329000000000001,19.393999999999998,22.234999999999999,26.462,33.631,40.799999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,175,-1.5509999999999999,19.457799999999999,0.12328,13.260999999999999,14.526,15.791,17.382000000000001,19.457999999999998,22.311,26.548999999999999,33.712000000000003,40.875
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,176,-1.5403,19.521699999999999,0.12346,13.29,14.563000000000001,15.836,17.434999999999999,19.521999999999998,22.387,26.635000000000002,33.790999999999997,40.948
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,177,-1.5294000000000001,19.5853,0.12363,13.319000000000001,14.6,15.88,17.489000000000001,19.585000000000001,22.462,26.72,33.866,41.012999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,178,-1.5185,19.648599999999998,0.12379999999999999,13.348000000000001,14.635999999999999,15.923999999999999,17.541,19.649000000000001,22.536999999999999,26.803999999999998,33.941000000000003,41.078000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,179,-1.5074000000000001,19.7117,0.12396,13.377000000000001,14.672000000000001,15.968,17.594000000000001,19.712,22.611000000000001,26.887,34.012,41.137
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,180,-1.4961,19.7744,0.12411999999999999,13.404999999999999,14.708,16.010999999999999,17.646999999999998,19.774000000000001,22.684999999999999,26.969000000000001,34.081000000000003,41.192
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,181,-1.4847999999999999,19.8367,0.12428,13.433,14.744,16.053999999999998,17.699000000000002,19.837,22.757999999999999,27.050999999999998,34.149000000000001,41.247
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,182,-1.4733000000000001,19.898700000000002,0.12443,13.461,14.779,16.097000000000001,17.75,19.899000000000001,22.831,27.13,34.213000000000001,41.295000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,183,-1.4617,19.9603,0.12458,13.488,14.814,16.14,17.802,19.96,22.902999999999999,27.21,34.274999999999999,41.341000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,184,-1.45,20.0215,0.12472999999999999,13.515000000000001,14.848000000000001,16.181999999999999,17.853000000000002,20.021999999999998,22.975000000000001,27.288,34.337000000000003,41.386000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,185,-1.4381999999999999,20.0823,0.12486999999999999,13.541,14.882,16.224,17.904,20.082000000000001,23.045999999999999,27.364999999999998,34.395000000000003,41.424999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,186,-1.4262999999999999,20.142700000000001,0.12501000000000001,13.567,14.916,16.265000000000001,17.954000000000001,20.143000000000001,23.116,27.440999999999999,34.451999999999998,41.462000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,187,-1.4142999999999999,20.2026,0.12514,13.593,14.95,16.306000000000001,18.004000000000001,20.202999999999999,23.186,27.515000000000001,34.505000000000003,41.494999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,188,-1.4021999999999999,20.2621,0.12528,13.618,14.981999999999999,16.347000000000001,18.053000000000001,20.262,23.254999999999999,27.59,34.558999999999997,41.529000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,189,-1.39,20.321100000000001,0.12540999999999999,13.643000000000001,15.015000000000001,16.387,18.103000000000002,20.321000000000002,23.324000000000002,27.661999999999999,34.61,41.558
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,190,-1.3776999999999999,20.3796,0.12554000000000001,13.667,15.047000000000001,16.427,18.151,20.38,23.390999999999998,27.734000000000002,34.659999999999997,41.585000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,191,-1.3653,20.4376,0.12567,13.69,15.077999999999999,16.466000000000001,18.199000000000002,20.437999999999999,23.459,27.805,34.707999999999998,41.610999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,192,-1.3529,20.495100000000001,0.12579000000000001,13.714,15.109,16.504999999999999,18.247,20.495000000000001,23.524999999999999,27.875,34.753999999999998,41.631999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,193,-1.3403,20.552099999999999,0.12590999999999999,13.736000000000001,15.14,16.542999999999999,18.295000000000002,20.552,23.591000000000001,27.943000000000001,34.796999999999997,41.651000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,194,-1.3277000000000001,20.608499999999999,0.12603,13.759,15.17,16.581,18.341999999999999,20.608000000000001,23.655999999999999,28.010999999999999,34.840000000000003,41.67
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,195,-1.3149,20.664400000000001,0.12615000000000001,13.78,15.199,16.619,18.388000000000002,20.664000000000001,23.721,28.077999999999999,34.881,41.685000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,196,-1.3021,20.7197,0.12626999999999999,13.801,15.228,16.655999999999999,18.434000000000001,20.72,23.785,28.143000000000001,34.921999999999997,41.7
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,197,-1.2891999999999999,20.7745,0.12637999999999999,13.821999999999999,15.257,16.692,18.478999999999999,20.774000000000001,23.847000000000001,28.207000000000001,34.959000000000003,41.710999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,198,-1.2762,20.828700000000001,0.1265,13.842000000000001,15.285,16.728000000000002,18.524000000000001,20.829000000000001,23.91,28.271000000000001,34.997,41.722999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,199,-1.2630999999999999,20.882400000000001,0.12661,13.861000000000001,15.311999999999999,16.763000000000002,18.568000000000001,20.882000000000001,23.972000000000001,28.334,35.031999999999996,41.73
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,200,-1.2499,20.935500000000001,0.12672,13.88,15.339,16.797999999999998,18.611999999999998,20.936,24.032,28.395,35.066000000000003,41.735999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,201,-1.2365999999999999,20.988099999999999,0.12683,13.898,15.365,16.832999999999998,18.655000000000001,20.988,24.093,28.456,35.097999999999999,41.741
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,202,-1.2233000000000001,21.04,0.12694,13.916,15.391,16.867000000000001,18.698,21.04,24.152000000000001,28.515000000000001,35.130000000000003,41.744
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,203,-1.2098,21.0914,0.12703999999999999,13.933,15.417,16.899999999999999,18.741,21.091000000000001,24.210999999999999,28.573,35.158000000000001,41.743000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,204,-1.1961999999999999,21.142299999999999,0.12715000000000001,13.95,15.441000000000001,16.933,18.782,21.141999999999999,24.268999999999998,28.63,35.186999999999998,41.743000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,205,-1.1826000000000001,21.192499999999999,0.12726000000000001,13.965,15.465,16.965,18.823,21.192,24.327000000000002,28.687000000000001,35.215000000000003,41.743000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,206,-1.1688000000000001,21.2423,0.12736,13.981,15.489000000000001,16.997,18.864000000000001,21.242000000000001,24.382999999999999,28.742000000000001,35.24,41.737000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,207,-1.155,21.291399999999999,0.12745999999999999,13.996,15.512,17.027999999999999,18.904,21.291,24.439,28.797000000000001,35.264000000000003,41.731999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,208,-1.141,21.34,0.12756000000000001,14.01,15.534000000000001,17.059000000000001,18.943999999999999,21.34,24.494,28.85,35.286999999999999,41.723999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,209,-1.127,21.388000000000002,0.12767000000000001,14.023,15.555999999999999,17.088999999999999,18.983000000000001,21.388000000000002,24.548999999999999,28.902999999999999,35.31,41.718000000000004
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,210,-1.1129,21.435400000000001,0.12776999999999999,14.036,15.577,17.117999999999999,19.021999999999998,21.434999999999999,24.603000000000002,28.954000000000001,35.331000000000003,41.707999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,211,-1.0986,21.482199999999999,0.12787000000000001,14.048,15.598000000000001,17.146999999999998,19.059999999999999,21.481999999999999,24.655999999999999,29.004999999999999,35.350999999999999,41.697000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,212,-1.0843,21.528500000000001,0.12797,14.06,15.618,17.175999999999998,19.097000000000001,21.527999999999999,24.707999999999998,29.053999999999998,35.369,41.685000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,213,-1.0699000000000001,21.574200000000001,0.12806999999999999,14.071,15.637,17.204000000000001,19.134,21.574000000000002,24.76,29.103000000000002,35.387,41.670999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,214,-1.0552999999999999,21.619299999999999,0.12816,14.081,15.656000000000001,17.231000000000002,19.170999999999999,21.619,24.811,29.15,35.402000000000001,41.652999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,215,-1.0407,21.663799999999998,0.12826000000000001,14.090999999999999,15.673999999999999,17.257999999999999,19.207000000000001,21.664000000000001,24.861000000000001,29.196999999999999,35.417000000000002,41.637999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,216,-1.026,21.707699999999999,0.12836,14.1,15.692,17.283999999999999,19.242000000000001,21.707999999999998,24.911000000000001,29.242999999999999,35.432000000000002,41.621000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,217,-1.0112000000000001,21.751000000000001,0.12845000000000001,14.108000000000001,15.709,17.309999999999999,19.277000000000001,21.751000000000001,24.959,29.286999999999999,35.442999999999998,41.6
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,218,-0.99619999999999997,21.793700000000001,0.12855,14.116,15.725,17.335000000000001,19.311,21.794,25.007999999999999,29.331,35.454999999999998,41.58
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,219,-0.98119999999999996,21.835799999999999,0.12864,14.122999999999999,15.741,17.36,19.344000000000001,21.835999999999999,25.055,29.373000000000001,35.465000000000003,41.558
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,220,-0.96609999999999996,21.877300000000002,0.12873999999999999,14.129,15.756,17.382999999999999,19.376999999999999,21.876999999999999,25.102,29.414999999999999,35.475999999999999,41.536000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,221,-0.95089999999999997,21.918199999999999,0.12883,14.135,15.771000000000001,17.407,19.41,21.917999999999999,25.146999999999998,29.454999999999998,35.482999999999997,41.512
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,222,-0.93559999999999999,21.958500000000001,0.12892999999999999,14.14,15.784000000000001,17.428999999999998,19.442,21.957999999999998,25.193000000000001,29.495999999999999,35.491999999999997,41.488
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,223,-0.92020000000000002,21.998200000000001,0.12902,14.144,15.798,17.452000000000002,19.472999999999999,21.998000000000001,25.236999999999998,29.533999999999999,35.497999999999998,41.460999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,224,-0.90480000000000005,22.037400000000002,0.12911,14.148,15.811,17.472999999999999,19.504000000000001,22.036999999999999,25.280999999999999,29.571999999999999,35.503,41.433999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,225,-0.88919999999999999,22.076000000000001,0.12920000000000001,14.151,15.823,17.495000000000001,19.535,22.076000000000001,25.324000000000002,29.609000000000002,35.506999999999998,41.405999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,226,-0.87350000000000005,22.114000000000001,0.1293,14.153,15.834,17.515000000000001,19.564,22.114000000000001,25.366,29.646000000000001,35.512,41.378
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,227,-0.85780000000000001,22.151399999999999,0.12939000000000001,14.154999999999999,15.845000000000001,17.535,19.594000000000001,22.151,25.408000000000001,29.681000000000001,35.515000000000001,41.347999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,228,-0.84189999999999998,22.188300000000002,0.12948000000000001,14.156000000000001,15.855,17.553999999999998,19.622,22.187999999999999,25.449000000000002,29.716000000000001,35.515999999999998,41.317
Can't render this file because it has a wrong number of fields in line 80.

View File

@ -0,0 +1,154 @@
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,0,1,33.878700000000002,0.034959999999999998,1.1843999999999999,30.3,31.5,32.700000000000003,33.9,35.1,36.200000000000003,37.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,1,1,34.552900000000001,0.033739999999999999,1.1657999999999999,31.1,32.200000000000003,33.4,34.6,35.700000000000003,36.9,38.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,2,1,35.227200000000003,0.032509999999999997,1.1452,31.8,32.9,34.1,35.200000000000003,36.4,37.5,38.700000000000003
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,3,1,35.843000000000004,0.032309999999999998,1.1580999999999999,32.4,33.5,34.700000000000003,35.799999999999997,37,38.200000000000003,39.299999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,4,1,36.376100000000001,0.032149999999999998,1.1695,32.9,34,35.200000000000003,36.4,37.5,38.700000000000003,39.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,5,1,36.847200000000001,0.03202,1.1798999999999999,33.299999999999997,34.5,35.700000000000003,36.799999999999997,38,39.200000000000003,40.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,6,1,37.271099999999997,0.031910000000000001,1.1893,33.700000000000003,34.9,36.1,37.299999999999997,38.5,39.6,40.799999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,7,1,37.6584,0.031820000000000001,1.1982999999999999,34.1,35.299999999999997,36.5,37.700000000000003,38.9,40.1,41.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,8,1,38.0167,0.031730000000000001,1.2062999999999999,34.4,35.6,36.799999999999997,38,39.200000000000003,40.4,41.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,9,1,38.351599999999998,0.031660000000000001,1.2141999999999999,34.700000000000003,35.9,37.1,38.4,39.6,40.799999999999997,42
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,10,1,38.667299999999997,0.031579999999999997,1.2211000000000001,35,36.200000000000003,37.4,38.700000000000003,39.9,41.1,42.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,11,1,38.966099999999997,0.031519999999999999,1.2282,35.299999999999997,36.5,37.700000000000003,39,40.200000000000003,41.4,42.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,12,1,39.250100000000003,0.031460000000000002,1.2347999999999999,35.5,36.799999999999997,38,39.299999999999997,40.5,41.7,43
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,13,1,39.521000000000001,0.031399999999999997,1.2410000000000001,35.799999999999997,37,38.299999999999997,39.5,40.799999999999997,42,43.2
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,0,1,33.878700000000002,0.034959999999999998,1.1843999999999999,30.3,31.5,32.700000000000003,33.9,35.1,36.200000000000003,37.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,1,1,36.546300000000002,0.032099999999999997,1.1731,33,34.200000000000003,35.4,36.5,37.700000000000003,38.9,40.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,2,1,38.252099999999999,0.03168,1.2118,34.6,35.799999999999997,37,38.299999999999997,39.5,40.700000000000003,41.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,3,1,39.532800000000002,0.031399999999999997,1.2413000000000001,35.799999999999997,37.1,38.299999999999997,39.5,40.799999999999997,42,43.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,4,1,40.581699999999998,0.031189999999999999,1.2657,36.799999999999997,38.1,39.299999999999997,40.6,41.8,43.1,44.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,5,1,41.459000000000003,0.031019999999999999,1.2861,37.6,38.9,40.200000000000003,41.5,42.7,44,45.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,6,1,42.1995,0.030870000000000002,1.3027,38.299999999999997,39.6,40.9,42.2,43.5,44.8,46.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,7,1,42.829000000000001,0.03075,1.3169999999999999,38.9,40.200000000000003,41.5,42.8,44.1,45.5,46.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,8,1,43.367100000000001,0.030630000000000001,1.3283,39.4,40.700000000000003,42,43.4,44.7,46,47.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,9,1,43.83,0.030530000000000002,1.3381000000000001,39.799999999999997,41.2,42.5,43.8,45.2,46.5,47.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,10,1,44.231900000000003,0.030439999999999998,1.3464,40.200000000000003,41.5,42.9,44.2,45.6,46.9,48.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,11,1,44.584400000000002,0.030349999999999999,1.3531,40.5,41.9,43.2,44.6,45.9,47.3,48.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,12,1,44.896500000000003,0.030269999999999998,1.359,40.799999999999997,42.2,43.5,44.9,46.3,47.6,49
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,13,1,45.175199999999997,0.030190000000000002,1.3637999999999999,41.1,42.4,43.8,45.2,46.5,47.9,49.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,14,1,45.426499999999997,0.030120000000000001,1.3683000000000001,41.3,42.7,44.1,45.4,46.8,48.2,49.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,15,1,45.655099999999997,0.03006,1.3724000000000001,41.5,42.9,44.3,45.7,47,48.4,49.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,16,1,45.865000000000002,0.029989999999999999,1.3754999999999999,41.7,43.1,44.5,45.9,47.2,48.6,50
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,17,1,46.059800000000003,0.029929999999999998,1.3786,41.9,43.3,44.7,46.1,47.4,48.8,50.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,18,1,46.242400000000004,0.029870000000000001,1.3813,42.1,43.5,44.9,46.2,47.6,49,50.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,19,1,46.415199999999999,0.029819999999999999,1.3841000000000001,42.3,43.6,45,46.4,47.8,49.2,50.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,20,1,46.580100000000002,0.029770000000000001,1.3867,42.4,43.8,45.2,46.6,48,49.4,50.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,21,1,46.738399999999999,0.02972,1.3891,42.6,44,45.3,46.7,48.1,49.5,50.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,22,1,46.891300000000001,0.029669999999999998,1.3913,42.7,44.1,45.5,46.9,48.3,49.7,51.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,23,1,47.039099999999998,0.02962,1.3933,42.9,44.3,45.6,47,48.4,49.8,51.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,24,1,47.182200000000002,0.029569999999999999,1.3952,43,44.4,45.8,47.2,48.6,50,51.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,25,1,47.320399999999999,0.029530000000000001,1.3974,43.1,44.5,45.9,47.3,48.7,50.1,51.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,26,1,47.453600000000002,0.029489999999999999,1.3994,43.3,44.7,46.1,47.5,48.9,50.3,51.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,27,1,47.581699999999998,0.02945,1.4013,43.4,44.8,46.2,47.6,49,50.4,51.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,28,1,47.704500000000003,0.029409999999999999,1.403,43.5,44.9,46.3,47.7,49.1,50.5,51.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,29,1,47.821899999999999,0.02937,1.4045000000000001,43.6,45,46.4,47.8,49.2,50.6,52
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,30,1,47.933999999999997,0.029329999999999998,1.4058999999999999,43.7,45.1,46.5,47.9,49.3,50.7,52.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,31,1,48.040999999999997,0.02929,1.4071,43.8,45.2,46.6,48,49.4,50.9,52.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,32,1,48.1432,0.029260000000000001,1.4087000000000001,43.9,45.3,46.7,48.1,49.6,51,52.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,33,1,48.2408,0.029219999999999999,1.4096,44,45.4,46.8,48.2,49.7,51.1,52.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,34,1,48.334299999999999,0.029190000000000001,1.4109,44.1,45.5,46.9,48.3,49.7,51.2,52.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,35,1,48.423900000000003,0.029149999999999999,1.4116,44.2,45.6,47,48.4,49.8,51.2,52.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,36,1,48.509900000000002,0.02912,1.4126000000000001,44.3,45.7,47.1,48.5,49.9,51.3,52.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,37,1,48.592599999999997,0.029090000000000001,1.4136,44.4,45.8,47.2,48.6,50,51.4,52.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,38,1,48.672199999999997,0.029059999999999999,1.4144000000000001,44.4,45.8,47.3,48.7,50.1,51.5,52.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,39,1,48.748899999999999,0.02903,1.4152,44.5,45.9,47.3,48.7,50.2,51.6,53
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,40,1,48.822800000000001,0.029000000000000001,1.4158999999999999,44.6,46,47.4,48.8,50.2,51.7,53.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,41,1,48.894100000000002,0.028969999999999999,1.4165000000000001,44.6,46.1,47.5,48.9,50.3,51.7,53.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,42,1,48.962899999999998,0.02894,1.417,44.7,46.1,47.5,49,50.4,51.8,53.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,43,1,49.029400000000003,0.028910000000000002,1.4174,44.8,46.2,47.6,49,50.4,51.9,53.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,44,1,49.093699999999998,0.028879999999999999,1.4177999999999999,44.8,46.3,47.7,49.1,50.5,51.9,53.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,45,1,49.155999999999999,0.02886,1.4186000000000001,44.9,46.3,47.7,49.2,50.6,52,53.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,46,1,49.2164,0.028830000000000001,1.4189000000000001,45,46.4,47.8,49.2,50.6,52.1,53.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,47,1,49.275100000000002,0.028799999999999999,1.4191,45,46.4,47.9,49.3,50.7,52.1,53.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,48,1,49.332099999999997,0.02878,1.4198,45.1,46.5,47.9,49.3,50.8,52.2,53.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,49,1,49.387700000000002,0.028750000000000001,1.4198999999999999,45.1,46.5,48,49.4,50.8,52.2,53.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,50,1,49.441899999999997,0.028729999999999999,1.4205000000000001,45.2,46.6,48,49.4,50.9,52.3,53.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,51,1,49.494700000000002,0.0287,1.4205000000000001,45.2,46.7,48.1,49.5,50.9,52.3,53.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,52,1,49.546399999999998,0.028680000000000001,1.421,45.3,46.7,48.1,49.5,51,52.4,53.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,53,1,49.596899999999998,0.028649999999999998,1.421,45.3,46.8,48.2,49.6,51,52.4,53.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,54,1,49.6464,0.028629999999999999,1.4214,45.4,46.8,48.2,49.6,51.1,52.5,53.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,55,1,49.694699999999997,0.02861,1.4218,45.4,46.9,48.3,49.7,51.1,52.5,54
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,56,1,49.742100000000001,0.028590000000000001,1.4220999999999999,45.5,46.9,48.3,49.7,51.2,52.6,54
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,57,1,49.788499999999999,0.028559999999999999,1.4219999999999999,45.5,46.9,48.4,49.8,51.2,52.6,54.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,58,1,49.834099999999999,0.028539999999999999,1.4222999999999999,45.6,47,48.4,49.8,51.3,52.7,54.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,59,1,49.878900000000002,0.02852,1.4226000000000001,45.6,47,48.5,49.9,51.3,52.7,54.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,60,1,49.922899999999998,0.028500000000000001,1.4228000000000001,45.7,47.1,48.5,49.9,51.3,52.8,54.2
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,0,1,34.461799999999997,0.036859999999999997,1.2703,30.7,31.9,33.200000000000003,34.5,35.700000000000003,37,38.299999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,1,1,35.163400000000003,0.034720000000000001,1.2209000000000001,31.5,32.700000000000003,33.9,35.200000000000003,36.4,37.6,38.799999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,2,1,35.864899999999999,0.032579999999999998,1.1685000000000001,32.4,33.5,34.700000000000003,35.9,37,38.200000000000003,39.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,3,1,36.521599999999999,0.031969999999999998,1.1676,33,34.200000000000003,35.4,36.5,37.700000000000003,38.9,40
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,4,1,37.092599999999997,0.031480000000000001,1.1677,33.6,34.799999999999997,35.9,37.1,38.299999999999997,39.4,40.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,5,1,37.600999999999999,0.03107,1.1682999999999999,34.1,35.299999999999997,36.4,37.6,38.799999999999997,39.9,41.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,6,1,38.060899999999997,0.030720000000000001,1.1692,34.6,35.700000000000003,36.9,38.1,39.200000000000003,40.4,41.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,7,1,38.482399999999998,0.03041,1.1702999999999999,35,36.1,37.299999999999997,38.5,39.700000000000003,40.799999999999997,42
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,8,1,38.872399999999999,0.03014,1.1716,35.4,36.5,37.700000000000003,38.9,40,41.2,42.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,9,1,39.236800000000002,0.029899999999999999,1.1732,35.700000000000003,36.9,38.1,39.200000000000003,40.4,41.6,42.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,10,1,39.579700000000003,0.029690000000000001,1.1751,36.1,37.200000000000003,38.4,39.6,40.799999999999997,41.9,43.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,11,1,39.903300000000002,0.029499999999999998,1.1772,36.4,37.5,38.700000000000003,39.9,41.1,42.3,43.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,12,1,40.209600000000002,0.029329999999999998,1.1794,36.700000000000003,37.9,39,40.200000000000003,41.4,42.6,43.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,13,1,40.500799999999998,0.029180000000000001,1.1818,37,38.1,39.299999999999997,40.5,41.7,42.9,44
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,0,1,34.461799999999997,0.036859999999999997,1.2703,30.7,31.9,33.200000000000003,34.5,35.700000000000003,37,38.299999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,1,1,37.2759,0.031329999999999997,1.1678999999999999,33.799999999999997,34.9,36.1,37.299999999999997,38.4,39.6,40.799999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,2,1,39.128500000000003,0.02997,1.1727000000000001,35.6,36.799999999999997,38,39.1,40.299999999999997,41.5,42.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,3,1,40.513500000000001,0.029180000000000001,1.1821999999999999,37,38.1,39.299999999999997,40.5,41.7,42.9,44.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,4,1,41.631700000000002,0.028680000000000001,1.194,38,39.200000000000003,40.4,41.6,42.8,44,45.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,5,1,42.557600000000001,0.028369999999999999,1.2074,38.9,40.1,41.4,42.6,43.8,45,46.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,6,1,43.330599999999997,0.028170000000000001,1.2205999999999999,39.700000000000003,40.9,42.1,43.3,44.6,45.8,47
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,7,1,43.9803,0.028039999999999999,1.2332000000000001,40.299999999999997,41.5,42.7,44,45.2,46.4,47.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,8,1,44.53,0.027959999999999999,1.2451000000000001,40.799999999999997,42,43.3,44.5,45.8,47,48.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,9,1,44.9998,0.02792,1.2564,41.2,42.5,43.7,45,46.3,47.5,48.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,10,1,45.405099999999997,0.027900000000000001,1.2667999999999999,41.6,42.9,44.1,45.4,46.7,47.9,49.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,11,1,45.757300000000001,0.027890000000000002,1.2762,41.9,43.2,44.5,45.8,47,48.3,49.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,12,1,46.066099999999999,0.027890000000000002,1.2847999999999999,42.2,43.5,44.8,46.1,47.4,48.6,49.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,13,1,46.339500000000001,0.027890000000000002,1.2924,42.5,43.8,45,46.3,47.6,48.9,50.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,14,1,46.584400000000002,0.027910000000000001,1.3002,42.7,44,45.3,46.6,47.9,49.2,50.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,15,1,46.805999999999997,0.02792,1.3068,42.9,44.2,45.5,46.8,48.1,49.4,50.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,16,1,47.008800000000001,0.027949999999999999,1.3139000000000001,43.1,44.4,45.7,47,48.3,49.6,51
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,17,1,47.196199999999997,0.027969999999999998,1.3201000000000001,43.2,44.6,45.9,47.2,48.5,49.8,51.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,18,1,47.371099999999998,0.028000000000000001,1.3264,43.4,44.7,46,47.4,48.7,50,51.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,19,1,47.535699999999999,0.028029999999999999,1.3324,43.5,44.9,46.2,47.5,48.9,50.2,51.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,20,1,47.691899999999997,0.028060000000000002,1.3382000000000001,43.7,45,46.4,47.7,49,50.4,51.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,21,1,47.840800000000002,0.0281,1.3443000000000001,43.8,45.2,46.5,47.8,49.2,50.5,51.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,22,1,47.9833,0.028129999999999999,1.3498000000000001,43.9,45.3,46.6,48,49.3,50.7,52
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,23,1,48.120100000000001,0.028170000000000001,1.3554999999999999,44.1,45.4,46.8,48.1,49.5,50.8,52.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,24,1,48.2515,0.028209999999999999,1.3612,44.2,45.5,46.9,48.3,49.6,51,52.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,25,1,48.377699999999997,0.028250000000000001,1.3667,44.3,45.6,47,48.4,49.7,51.1,52.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,26,1,48.498899999999999,0.028299999999999999,1.3725000000000001,44.4,45.8,47.1,48.5,49.9,51.2,52.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,27,1,48.615099999999998,0.028340000000000001,1.3777999999999999,44.5,45.9,47.2,48.6,50,51.4,52.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,28,1,48.726399999999998,0.028379999999999999,1.3829,44.6,46,47.3,48.7,50.1,51.5,52.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,29,1,48.833100000000002,0.028420000000000001,1.3877999999999999,44.7,46.1,47.4,48.8,50.2,51.6,53
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,30,1,48.935099999999998,0.028469999999999999,1.3932,44.8,46.1,47.5,48.9,50.3,51.7,53.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,31,1,49.032699999999998,0.028510000000000001,1.3978999999999999,44.8,46.2,47.6,49,50.4,51.8,53.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,32,1,49.125999999999998,0.028549999999999999,1.4026000000000001,44.9,46.3,47.7,49.1,50.5,51.9,53.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,33,1,49.215299999999999,0.028590000000000001,1.4071,45,46.4,47.8,49.2,50.6,52,53.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,34,1,49.300699999999999,0.028629999999999999,1.4115,45.1,46.5,47.9,49.3,50.7,52.1,53.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,35,1,49.382599999999996,0.028670000000000001,1.4157999999999999,45.1,46.6,48,49.4,50.8,52.2,53.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,36,1,49.461199999999998,0.028709999999999999,1.42,45.2,46.6,48,49.5,50.9,52.3,53.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,37,1,49.536700000000003,0.028750000000000001,1.4241999999999999,45.3,46.7,48.1,49.5,51,52.4,53.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,38,1,49.609299999999998,0.02878,1.4278,45.3,46.8,48.2,49.6,51,52.5,53.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,39,1,49.679099999999998,0.028819999999999998,1.4318,45.4,46.8,48.2,49.7,51.1,52.5,54
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,40,1,49.746499999999997,0.02886,1.4357,45.4,46.9,48.3,49.7,51.2,52.6,54.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,41,1,49.811599999999999,0.028889999999999999,1.4391,45.5,46.9,48.4,49.8,51.3,52.7,54.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,42,1,49.874499999999998,0.028930000000000001,1.4429000000000001,45.5,47,48.4,49.9,51.3,52.8,54.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,43,1,49.935400000000001,0.02896,1.4460999999999999,45.6,47,48.5,49.9,51.4,52.8,54.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,44,1,49.994199999999999,0.028989999999999998,1.4493,45.6,47.1,48.5,50,51.4,52.9,54.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,45,1,50.051200000000001,0.02903,1.4530000000000001,45.7,47.1,48.6,50.1,51.5,53,54.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,46,1,50.106400000000001,0.029059999999999999,1.4560999999999999,45.7,47.2,48.7,50.1,51.6,53,54.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,47,1,50.159799999999997,0.029090000000000001,1.4592000000000001,45.8,47.2,48.7,50.2,51.6,53.1,54.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,48,1,50.211500000000001,0.02912,1.4621999999999999,45.8,47.3,48.7,50.2,51.7,53.1,54.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,49,1,50.261699999999998,0.029149999999999999,1.4651000000000001,45.9,47.3,48.8,50.3,51.7,53.2,54.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,50,1,50.310499999999998,0.029180000000000001,1.4681,45.9,47.4,48.8,50.3,51.8,53.2,54.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,51,1,50.357799999999997,0.02921,1.4710000000000001,45.9,47.4,48.9,50.4,51.8,53.3,54.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,52,1,50.4039,0.029239999999999999,1.4738,46,47.5,48.9,50.4,51.9,53.4,54.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,53,1,50.448799999999999,0.029270000000000001,1.4765999999999999,46,47.5,49,50.4,51.9,53.4,54.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,54,1,50.492600000000003,0.02929,1.4789000000000001,46.1,47.5,49,50.5,52,53.5,54.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,55,1,50.535400000000003,0.029319999999999999,1.4817,46.1,47.6,49.1,50.5,52,53.5,55
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,56,1,50.577199999999998,0.029350000000000001,1.4843999999999999,46.1,47.6,49.1,50.6,52.1,53.5,55
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,57,1,50.618299999999998,0.02938,1.4872000000000001,46.2,47.6,49.1,50.6,52.1,53.6,55.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,58,1,50.658700000000003,0.029399999999999999,1.4894000000000001,46.2,47.7,49.2,50.7,52.1,53.6,55.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,59,1,50.698399999999999,0.029430000000000001,1.4921,46.2,47.7,49.2,50.7,52.2,53.7,55.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,60,1,50.737499999999997,0.02946,1.4946999999999999,46.3,47.7,49.2,50.7,52.2,53.7,55.2
1 source gender age_unit age l m s sd sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
2 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 0 1 33.878700000000002 0.034959999999999998 1.1843999999999999 30.3 31.5 32.700000000000003 33.9 35.1 36.200000000000003 37.4
3 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 1 1 34.552900000000001 0.033739999999999999 1.1657999999999999 31.1 32.200000000000003 33.4 34.6 35.700000000000003 36.9 38.1
4 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 2 1 35.227200000000003 0.032509999999999997 1.1452 31.8 32.9 34.1 35.200000000000003 36.4 37.5 38.700000000000003
5 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 3 1 35.843000000000004 0.032309999999999998 1.1580999999999999 32.4 33.5 34.700000000000003 35.799999999999997 37 38.200000000000003 39.299999999999997
6 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 4 1 36.376100000000001 0.032149999999999998 1.1695 32.9 34 35.200000000000003 36.4 37.5 38.700000000000003 39.9
7 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 5 1 36.847200000000001 0.03202 1.1798999999999999 33.299999999999997 34.5 35.700000000000003 36.799999999999997 38 39.200000000000003 40.4
8 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 6 1 37.271099999999997 0.031910000000000001 1.1893 33.700000000000003 34.9 36.1 37.299999999999997 38.5 39.6 40.799999999999997
9 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 7 1 37.6584 0.031820000000000001 1.1982999999999999 34.1 35.299999999999997 36.5 37.700000000000003 38.9 40.1 41.3
10 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 8 1 38.0167 0.031730000000000001 1.2062999999999999 34.4 35.6 36.799999999999997 38 39.200000000000003 40.4 41.6
11 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 9 1 38.351599999999998 0.031660000000000001 1.2141999999999999 34.700000000000003 35.9 37.1 38.4 39.6 40.799999999999997 42
12 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 10 1 38.667299999999997 0.031579999999999997 1.2211000000000001 35 36.200000000000003 37.4 38.700000000000003 39.9 41.1 42.3
13 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 11 1 38.966099999999997 0.031519999999999999 1.2282 35.299999999999997 36.5 37.700000000000003 39 40.200000000000003 41.4 42.7
14 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 12 1 39.250100000000003 0.031460000000000002 1.2347999999999999 35.5 36.799999999999997 38 39.299999999999997 40.5 41.7 43
15 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 13 1 39.521000000000001 0.031399999999999997 1.2410000000000001 35.799999999999997 37 38.299999999999997 39.5 40.799999999999997 42 43.2
16 source gender age_unit age l m s sd sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
17 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 0 1 33.878700000000002 0.034959999999999998 1.1843999999999999 30.3 31.5 32.700000000000003 33.9 35.1 36.200000000000003 37.4
18 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 1 1 36.546300000000002 0.032099999999999997 1.1731 33 34.200000000000003 35.4 36.5 37.700000000000003 38.9 40.1
19 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 2 1 38.252099999999999 0.03168 1.2118 34.6 35.799999999999997 37 38.299999999999997 39.5 40.700000000000003 41.9
20 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 3 1 39.532800000000002 0.031399999999999997 1.2413000000000001 35.799999999999997 37.1 38.299999999999997 39.5 40.799999999999997 42 43.3
21 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 4 1 40.581699999999998 0.031189999999999999 1.2657 36.799999999999997 38.1 39.299999999999997 40.6 41.8 43.1 44.4
22 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 5 1 41.459000000000003 0.031019999999999999 1.2861 37.6 38.9 40.200000000000003 41.5 42.7 44 45.3
23 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 6 1 42.1995 0.030870000000000002 1.3027 38.299999999999997 39.6 40.9 42.2 43.5 44.8 46.1
24 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 7 1 42.829000000000001 0.03075 1.3169999999999999 38.9 40.200000000000003 41.5 42.8 44.1 45.5 46.8
25 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 8 1 43.367100000000001 0.030630000000000001 1.3283 39.4 40.700000000000003 42 43.4 44.7 46 47.4
26 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 9 1 43.83 0.030530000000000002 1.3381000000000001 39.799999999999997 41.2 42.5 43.8 45.2 46.5 47.8
27 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 10 1 44.231900000000003 0.030439999999999998 1.3464 40.200000000000003 41.5 42.9 44.2 45.6 46.9 48.3
28 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 11 1 44.584400000000002 0.030349999999999999 1.3531 40.5 41.9 43.2 44.6 45.9 47.3 48.6
29 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 12 1 44.896500000000003 0.030269999999999998 1.359 40.799999999999997 42.2 43.5 44.9 46.3 47.6 49
30 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 13 1 45.175199999999997 0.030190000000000002 1.3637999999999999 41.1 42.4 43.8 45.2 46.5 47.9 49.3
31 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 14 1 45.426499999999997 0.030120000000000001 1.3683000000000001 41.3 42.7 44.1 45.4 46.8 48.2 49.5
32 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 15 1 45.655099999999997 0.03006 1.3724000000000001 41.5 42.9 44.3 45.7 47 48.4 49.8
33 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 16 1 45.865000000000002 0.029989999999999999 1.3754999999999999 41.7 43.1 44.5 45.9 47.2 48.6 50
34 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 17 1 46.059800000000003 0.029929999999999998 1.3786 41.9 43.3 44.7 46.1 47.4 48.8 50.2
35 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 18 1 46.242400000000004 0.029870000000000001 1.3813 42.1 43.5 44.9 46.2 47.6 49 50.4
36 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 19 1 46.415199999999999 0.029819999999999999 1.3841000000000001 42.3 43.6 45 46.4 47.8 49.2 50.6
37 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 20 1 46.580100000000002 0.029770000000000001 1.3867 42.4 43.8 45.2 46.6 48 49.4 50.7
38 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 21 1 46.738399999999999 0.02972 1.3891 42.6 44 45.3 46.7 48.1 49.5 50.9
39 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 22 1 46.891300000000001 0.029669999999999998 1.3913 42.7 44.1 45.5 46.9 48.3 49.7 51.1
40 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 23 1 47.039099999999998 0.02962 1.3933 42.9 44.3 45.6 47 48.4 49.8 51.2
41 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 24 1 47.182200000000002 0.029569999999999999 1.3952 43 44.4 45.8 47.2 48.6 50 51.4
42 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 25 1 47.320399999999999 0.029530000000000001 1.3974 43.1 44.5 45.9 47.3 48.7 50.1 51.5
43 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 26 1 47.453600000000002 0.029489999999999999 1.3994 43.3 44.7 46.1 47.5 48.9 50.3 51.7
44 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 27 1 47.581699999999998 0.02945 1.4013 43.4 44.8 46.2 47.6 49 50.4 51.8
45 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 28 1 47.704500000000003 0.029409999999999999 1.403 43.5 44.9 46.3 47.7 49.1 50.5 51.9
46 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 29 1 47.821899999999999 0.02937 1.4045000000000001 43.6 45 46.4 47.8 49.2 50.6 52
47 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 30 1 47.933999999999997 0.029329999999999998 1.4058999999999999 43.7 45.1 46.5 47.9 49.3 50.7 52.2
48 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 31 1 48.040999999999997 0.02929 1.4071 43.8 45.2 46.6 48 49.4 50.9 52.3
49 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 32 1 48.1432 0.029260000000000001 1.4087000000000001 43.9 45.3 46.7 48.1 49.6 51 52.4
50 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 33 1 48.2408 0.029219999999999999 1.4096 44 45.4 46.8 48.2 49.7 51.1 52.5
51 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 34 1 48.334299999999999 0.029190000000000001 1.4109 44.1 45.5 46.9 48.3 49.7 51.2 52.6
52 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 35 1 48.423900000000003 0.029149999999999999 1.4116 44.2 45.6 47 48.4 49.8 51.2 52.7
53 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 36 1 48.509900000000002 0.02912 1.4126000000000001 44.3 45.7 47.1 48.5 49.9 51.3 52.7
54 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 37 1 48.592599999999997 0.029090000000000001 1.4136 44.4 45.8 47.2 48.6 50 51.4 52.8
55 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 38 1 48.672199999999997 0.029059999999999999 1.4144000000000001 44.4 45.8 47.3 48.7 50.1 51.5 52.9
56 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 39 1 48.748899999999999 0.02903 1.4152 44.5 45.9 47.3 48.7 50.2 51.6 53
57 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 40 1 48.822800000000001 0.029000000000000001 1.4158999999999999 44.6 46 47.4 48.8 50.2 51.7 53.1
58 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 41 1 48.894100000000002 0.028969999999999999 1.4165000000000001 44.6 46.1 47.5 48.9 50.3 51.7 53.1
59 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 42 1 48.962899999999998 0.02894 1.417 44.7 46.1 47.5 49 50.4 51.8 53.2
60 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 43 1 49.029400000000003 0.028910000000000002 1.4174 44.8 46.2 47.6 49 50.4 51.9 53.3
61 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 44 1 49.093699999999998 0.028879999999999999 1.4177999999999999 44.8 46.3 47.7 49.1 50.5 51.9 53.3
62 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 45 1 49.155999999999999 0.02886 1.4186000000000001 44.9 46.3 47.7 49.2 50.6 52 53.4
63 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 46 1 49.2164 0.028830000000000001 1.4189000000000001 45 46.4 47.8 49.2 50.6 52.1 53.5
64 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 47 1 49.275100000000002 0.028799999999999999 1.4191 45 46.4 47.9 49.3 50.7 52.1 53.5
65 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 48 1 49.332099999999997 0.02878 1.4198 45.1 46.5 47.9 49.3 50.8 52.2 53.6
66 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 49 1 49.387700000000002 0.028750000000000001 1.4198999999999999 45.1 46.5 48 49.4 50.8 52.2 53.6
67 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 50 1 49.441899999999997 0.028729999999999999 1.4205000000000001 45.2 46.6 48 49.4 50.9 52.3 53.7
68 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 51 1 49.494700000000002 0.0287 1.4205000000000001 45.2 46.7 48.1 49.5 50.9 52.3 53.8
69 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 52 1 49.546399999999998 0.028680000000000001 1.421 45.3 46.7 48.1 49.5 51 52.4 53.8
70 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 53 1 49.596899999999998 0.028649999999999998 1.421 45.3 46.8 48.2 49.6 51 52.4 53.9
71 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 54 1 49.6464 0.028629999999999999 1.4214 45.4 46.8 48.2 49.6 51.1 52.5 53.9
72 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 55 1 49.694699999999997 0.02861 1.4218 45.4 46.9 48.3 49.7 51.1 52.5 54
73 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 56 1 49.742100000000001 0.028590000000000001 1.4220999999999999 45.5 46.9 48.3 49.7 51.2 52.6 54
74 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 57 1 49.788499999999999 0.028559999999999999 1.4219999999999999 45.5 46.9 48.4 49.8 51.2 52.6 54.1
75 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 58 1 49.834099999999999 0.028539999999999999 1.4222999999999999 45.6 47 48.4 49.8 51.3 52.7 54.1
76 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 59 1 49.878900000000002 0.02852 1.4226000000000001 45.6 47 48.5 49.9 51.3 52.7 54.1
77 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 60 1 49.922899999999998 0.028500000000000001 1.4228000000000001 45.7 47.1 48.5 49.9 51.3 52.8 54.2
78 source gender age_unit age l m s sd sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
79 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 0 1 34.461799999999997 0.036859999999999997 1.2703 30.7 31.9 33.200000000000003 34.5 35.700000000000003 37 38.299999999999997
80 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 1 1 35.163400000000003 0.034720000000000001 1.2209000000000001 31.5 32.700000000000003 33.9 35.200000000000003 36.4 37.6 38.799999999999997
81 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 2 1 35.864899999999999 0.032579999999999998 1.1685000000000001 32.4 33.5 34.700000000000003 35.9 37 38.200000000000003 39.4
82 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 3 1 36.521599999999999 0.031969999999999998 1.1676 33 34.200000000000003 35.4 36.5 37.700000000000003 38.9 40
83 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 4 1 37.092599999999997 0.031480000000000001 1.1677 33.6 34.799999999999997 35.9 37.1 38.299999999999997 39.4 40.6
84 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 5 1 37.600999999999999 0.03107 1.1682999999999999 34.1 35.299999999999997 36.4 37.6 38.799999999999997 39.9 41.1
85 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 6 1 38.060899999999997 0.030720000000000001 1.1692 34.6 35.700000000000003 36.9 38.1 39.200000000000003 40.4 41.6
86 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 7 1 38.482399999999998 0.03041 1.1702999999999999 35 36.1 37.299999999999997 38.5 39.700000000000003 40.799999999999997 42
87 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 8 1 38.872399999999999 0.03014 1.1716 35.4 36.5 37.700000000000003 38.9 40 41.2 42.4
88 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 9 1 39.236800000000002 0.029899999999999999 1.1732 35.700000000000003 36.9 38.1 39.200000000000003 40.4 41.6 42.8
89 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 10 1 39.579700000000003 0.029690000000000001 1.1751 36.1 37.200000000000003 38.4 39.6 40.799999999999997 41.9 43.1
90 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 11 1 39.903300000000002 0.029499999999999998 1.1772 36.4 37.5 38.700000000000003 39.9 41.1 42.3 43.4
91 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 12 1 40.209600000000002 0.029329999999999998 1.1794 36.700000000000003 37.9 39 40.200000000000003 41.4 42.6 43.7
92 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 13 1 40.500799999999998 0.029180000000000001 1.1818 37 38.1 39.299999999999997 40.5 41.7 42.9 44
93 source gender age_unit age l m s sd sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
94 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 0 1 34.461799999999997 0.036859999999999997 1.2703 30.7 31.9 33.200000000000003 34.5 35.700000000000003 37 38.299999999999997
95 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 1 1 37.2759 0.031329999999999997 1.1678999999999999 33.799999999999997 34.9 36.1 37.299999999999997 38.4 39.6 40.799999999999997
96 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 2 1 39.128500000000003 0.02997 1.1727000000000001 35.6 36.799999999999997 38 39.1 40.299999999999997 41.5 42.6
97 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 3 1 40.513500000000001 0.029180000000000001 1.1821999999999999 37 38.1 39.299999999999997 40.5 41.7 42.9 44.1
98 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 4 1 41.631700000000002 0.028680000000000001 1.194 38 39.200000000000003 40.4 41.6 42.8 44 45.2
99 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 5 1 42.557600000000001 0.028369999999999999 1.2074 38.9 40.1 41.4 42.6 43.8 45 46.2
100 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 6 1 43.330599999999997 0.028170000000000001 1.2205999999999999 39.700000000000003 40.9 42.1 43.3 44.6 45.8 47
101 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 7 1 43.9803 0.028039999999999999 1.2332000000000001 40.299999999999997 41.5 42.7 44 45.2 46.4 47.7
102 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 8 1 44.53 0.027959999999999999 1.2451000000000001 40.799999999999997 42 43.3 44.5 45.8 47 48.3
103 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 9 1 44.9998 0.02792 1.2564 41.2 42.5 43.7 45 46.3 47.5 48.8
104 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 10 1 45.405099999999997 0.027900000000000001 1.2667999999999999 41.6 42.9 44.1 45.4 46.7 47.9 49.2
105 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 11 1 45.757300000000001 0.027890000000000002 1.2762 41.9 43.2 44.5 45.8 47 48.3 49.6
106 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 12 1 46.066099999999999 0.027890000000000002 1.2847999999999999 42.2 43.5 44.8 46.1 47.4 48.6 49.9
107 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 13 1 46.339500000000001 0.027890000000000002 1.2924 42.5 43.8 45 46.3 47.6 48.9 50.2
108 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 14 1 46.584400000000002 0.027910000000000001 1.3002 42.7 44 45.3 46.6 47.9 49.2 50.5
109 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 15 1 46.805999999999997 0.02792 1.3068 42.9 44.2 45.5 46.8 48.1 49.4 50.7
110 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 16 1 47.008800000000001 0.027949999999999999 1.3139000000000001 43.1 44.4 45.7 47 48.3 49.6 51
111 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 17 1 47.196199999999997 0.027969999999999998 1.3201000000000001 43.2 44.6 45.9 47.2 48.5 49.8 51.2
112 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 18 1 47.371099999999998 0.028000000000000001 1.3264 43.4 44.7 46 47.4 48.7 50 51.4
113 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 19 1 47.535699999999999 0.028029999999999999 1.3324 43.5 44.9 46.2 47.5 48.9 50.2 51.5
114 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 20 1 47.691899999999997 0.028060000000000002 1.3382000000000001 43.7 45 46.4 47.7 49 50.4 51.7
115 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 21 1 47.840800000000002 0.0281 1.3443000000000001 43.8 45.2 46.5 47.8 49.2 50.5 51.9
116 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 22 1 47.9833 0.028129999999999999 1.3498000000000001 43.9 45.3 46.6 48 49.3 50.7 52
117 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 23 1 48.120100000000001 0.028170000000000001 1.3554999999999999 44.1 45.4 46.8 48.1 49.5 50.8 52.2
118 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 24 1 48.2515 0.028209999999999999 1.3612 44.2 45.5 46.9 48.3 49.6 51 52.3
119 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 25 1 48.377699999999997 0.028250000000000001 1.3667 44.3 45.6 47 48.4 49.7 51.1 52.5
120 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 26 1 48.498899999999999 0.028299999999999999 1.3725000000000001 44.4 45.8 47.1 48.5 49.9 51.2 52.6
121 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 27 1 48.615099999999998 0.028340000000000001 1.3777999999999999 44.5 45.9 47.2 48.6 50 51.4 52.7
122 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 28 1 48.726399999999998 0.028379999999999999 1.3829 44.6 46 47.3 48.7 50.1 51.5 52.9
123 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 29 1 48.833100000000002 0.028420000000000001 1.3877999999999999 44.7 46.1 47.4 48.8 50.2 51.6 53
124 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 30 1 48.935099999999998 0.028469999999999999 1.3932 44.8 46.1 47.5 48.9 50.3 51.7 53.1
125 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 31 1 49.032699999999998 0.028510000000000001 1.3978999999999999 44.8 46.2 47.6 49 50.4 51.8 53.2
126 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 32 1 49.125999999999998 0.028549999999999999 1.4026000000000001 44.9 46.3 47.7 49.1 50.5 51.9 53.3
127 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 33 1 49.215299999999999 0.028590000000000001 1.4071 45 46.4 47.8 49.2 50.6 52 53.4
128 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 34 1 49.300699999999999 0.028629999999999999 1.4115 45.1 46.5 47.9 49.3 50.7 52.1 53.5
129 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 35 1 49.382599999999996 0.028670000000000001 1.4157999999999999 45.1 46.6 48 49.4 50.8 52.2 53.6
130 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 36 1 49.461199999999998 0.028709999999999999 1.42 45.2 46.6 48 49.5 50.9 52.3 53.7
131 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 37 1 49.536700000000003 0.028750000000000001 1.4241999999999999 45.3 46.7 48.1 49.5 51 52.4 53.8
132 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 38 1 49.609299999999998 0.02878 1.4278 45.3 46.8 48.2 49.6 51 52.5 53.9
133 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 39 1 49.679099999999998 0.028819999999999998 1.4318 45.4 46.8 48.2 49.7 51.1 52.5 54
134 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 40 1 49.746499999999997 0.02886 1.4357 45.4 46.9 48.3 49.7 51.2 52.6 54.1
135 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 41 1 49.811599999999999 0.028889999999999999 1.4391 45.5 46.9 48.4 49.8 51.3 52.7 54.1
136 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 42 1 49.874499999999998 0.028930000000000001 1.4429000000000001 45.5 47 48.4 49.9 51.3 52.8 54.2
137 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 43 1 49.935400000000001 0.02896 1.4460999999999999 45.6 47 48.5 49.9 51.4 52.8 54.3
138 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 44 1 49.994199999999999 0.028989999999999998 1.4493 45.6 47.1 48.5 50 51.4 52.9 54.3
139 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 45 1 50.051200000000001 0.02903 1.4530000000000001 45.7 47.1 48.6 50.1 51.5 53 54.4
140 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 46 1 50.106400000000001 0.029059999999999999 1.4560999999999999 45.7 47.2 48.7 50.1 51.6 53 54.5
141 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 47 1 50.159799999999997 0.029090000000000001 1.4592000000000001 45.8 47.2 48.7 50.2 51.6 53.1 54.5
142 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 48 1 50.211500000000001 0.02912 1.4621999999999999 45.8 47.3 48.7 50.2 51.7 53.1 54.6
143 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 49 1 50.261699999999998 0.029149999999999999 1.4651000000000001 45.9 47.3 48.8 50.3 51.7 53.2 54.7
144 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 50 1 50.310499999999998 0.029180000000000001 1.4681 45.9 47.4 48.8 50.3 51.8 53.2 54.7
145 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 51 1 50.357799999999997 0.02921 1.4710000000000001 45.9 47.4 48.9 50.4 51.8 53.3 54.8
146 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 52 1 50.4039 0.029239999999999999 1.4738 46 47.5 48.9 50.4 51.9 53.4 54.8
147 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 53 1 50.448799999999999 0.029270000000000001 1.4765999999999999 46 47.5 49 50.4 51.9 53.4 54.9
148 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 54 1 50.492600000000003 0.02929 1.4789000000000001 46.1 47.5 49 50.5 52 53.5 54.9
149 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 55 1 50.535400000000003 0.029319999999999999 1.4817 46.1 47.6 49.1 50.5 52 53.5 55
150 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 56 1 50.577199999999998 0.029350000000000001 1.4843999999999999 46.1 47.6 49.1 50.6 52.1 53.5 55
151 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 57 1 50.618299999999998 0.02938 1.4872000000000001 46.2 47.6 49.1 50.6 52.1 53.6 55.1
152 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 58 1 50.658700000000003 0.029399999999999999 1.4894000000000001 46.2 47.7 49.2 50.7 52.1 53.6 55.1
153 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 59 1 50.698399999999999 0.029430000000000001 1.4921 46.2 47.7 49.2 50.7 52.2 53.7 55.2
154 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 60 1 50.737499999999997 0.02946 1.4946999999999999 46.3 47.7 49.2 50.7 52.2 53.7 55.2

View File

@ -0,0 +1,496 @@
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,0,1,49.1477,0.037900000000000003,1.8627,43.6,45.4,47.3,49.1,51,52.9,54.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,1,1,50.329799999999999,0.037420000000000002,1.8833,44.7,46.6,48.4,50.3,52.2,54.1,56
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,2,1,51.512,0.036940000000000001,1.9029,45.8,47.7,49.6,51.5,53.4,55.3,57.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,3,1,52.469499999999996,0.03669,1.9251,46.7,48.6,50.5,52.5,54.4,56.3,58.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,4,1,53.380899999999997,0.036470000000000002,1.9468000000000001,47.5,49.5,51.4,53.4,55.3,57.3,59.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,5,1,54.245399999999997,0.036269999999999997,1.9675,48.3,50.3,52.3,54.2,56.2,58.2,60.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,6,1,55.0642,0.036089999999999997,1.9873000000000001,49.1,51.1,53.1,55.1,57.1,59,61
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,7,1,55.840600000000002,0.035929999999999997,2.0064000000000002,49.8,51.8,53.8,55.8,57.8,59.9,61.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,8,1,56.576700000000002,0.035779999999999999,2.0243000000000002,50.5,52.5,54.6,56.6,58.6,60.6,62.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,9,1,57.2761,0.035639999999999998,2.0413000000000001,51.2,53.2,55.2,57.3,59.3,61.4,63.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,10,1,57.943600000000004,0.035520000000000003,2.0581999999999998,51.8,53.8,55.9,57.9,60,62.1,64.099999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,11,1,58.581600000000002,0.035400000000000001,2.0737999999999999,52.4,54.4,56.5,58.6,60.7,62.7,64.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,12,1,59.1922,0.035299999999999998,2.0895000000000001,52.9,55,57.1,59.2,61.3,63.4,65.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,13,1,59.777299999999997,0.035200000000000002,2.1042000000000001,53.5,55.6,57.7,59.8,61.9,64,66.099999999999994
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,0,1,49.1477,0.037900000000000003,1.8627,43.6,45.4,47.3,49.1,51,52.9,54.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,1,1,53.687199999999997,0.036400000000000002,1.9541999999999999,47.8,49.8,51.7,53.7,55.6,57.6,59.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,2,1,57.067300000000003,0.035680000000000003,2.0362,51,53,55,57.1,59.1,61.1,63.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,3,1,59.802900000000001,0.035200000000000002,2.1051000000000002,53.5,55.6,57.7,59.8,61.9,64,66.099999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,4,1,62.0899,0.034860000000000002,2.1644999999999999,55.6,57.8,59.9,62.1,64.3,66.400000000000006,68.599999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,5,1,64.030100000000004,0.034630000000000001,2.2174,57.4,59.6,61.8,64,66.2,68.5,70.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,6,1,65.731099999999998,0.034479999999999997,2.2664,58.9,61.2,63.5,65.7,68,70.3,72.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,7,1,67.287300000000002,0.034410000000000003,2.3153999999999999,60.3,62.7,65,67.3,69.599999999999994,71.900000000000006,74.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,8,1,68.749799999999993,0.0344,2.3650000000000002,61.7,64,66.400000000000006,68.7,71.099999999999994,73.5,75.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,9,1,70.143500000000003,0.034439999999999998,2.4157000000000002,62.9,65.3,67.7,70.099999999999994,72.599999999999994,75,77.400000000000006
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,10,1,71.481800000000007,0.034520000000000002,2.4676,64.099999999999994,66.5,69,71.5,73.900000000000006,76.400000000000006,78.900000000000006
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,11,1,72.771000000000001,0.034639999999999997,2.5207999999999999,65.2,67.7,70.3,72.8,75.3,77.8,80.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,12,1,74.015000000000001,0.034790000000000001,2.5750000000000002,66.3,68.900000000000006,71.400000000000006,74,76.599999999999994,79.2,81.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,13,1,75.217600000000004,0.034959999999999998,2.6295999999999999,67.3,70,72.599999999999994,75.2,77.8,80.5,83.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,14,1,76.381699999999995,0.035139999999999998,2.6840999999999999,68.3,71,73.7,76.400000000000006,79.099999999999994,81.7,84.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,15,1,77.509900000000002,0.035340000000000003,2.7391999999999999,69.3,72,74.8,77.5,80.2,83,85.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,16,1,78.605500000000006,0.035549999999999998,2.7944,70.2,73,75.8,78.599999999999994,81.400000000000006,84.2,87
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,17,1,79.671000000000006,0.03576,2.8490000000000002,71.099999999999994,74,76.8,79.7,82.5,85.4,88.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,18,1,80.707899999999995,0.035979999999999998,2.9039000000000001,72,74.900000000000006,77.8,80.7,83.6,86.5,89.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,19,1,81.718199999999996,0.036200000000000003,2.9582000000000002,72.8,75.8,78.8,81.7,84.7,87.6,90.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,20,1,82.703599999999994,0.036429999999999997,3.0129000000000001,73.7,76.7,79.7,82.7,85.7,88.7,91.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,21,1,83.665400000000005,0.036659999999999998,3.0672000000000001,74.5,77.5,80.599999999999994,83.7,86.7,89.8,92.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,22,1,84.603999999999999,0.036880000000000003,3.1202000000000001,75.2,78.400000000000006,81.5,84.6,87.7,90.8,94
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,23,1,85.520200000000003,0.037109999999999997,3.1737000000000002,76,79.2,82.3,85.5,88.7,91.9,95
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,24,1,86.415300000000002,0.037339999999999998,3.2267000000000001,76.7,80,83.2,86.4,89.6,92.9,96.1
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,24,1,85.715299999999999,0.03764,3.2267000000000001,76,79.3,82.5,85.7,88.9,92.2,95.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,25,1,86.590400000000002,0.037859999999999998,3.2783000000000002,76.8,80,83.3,86.6,89.9,93.1,96.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,26,1,87.446200000000005,0.038080000000000003,3.33,77.5,80.8,84.1,87.4,90.8,94.1,97.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,27,1,88.283000000000001,0.038300000000000001,3.3812000000000002,78.099999999999994,81.5,84.9,88.3,91.7,95,98.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,28,1,89.100399999999993,0.038510000000000003,3.4312999999999998,78.8,82.2,85.7,89.1,92.5,96,99.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,29,1,89.899100000000004,0.038719999999999997,3.4809000000000001,79.5,82.9,86.4,89.9,93.4,96.9,100.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,30,1,90.679699999999997,0.038929999999999999,3.5301999999999998,80.099999999999994,83.6,87.1,90.7,94.2,97.7,101.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,31,1,91.442999999999998,0.039129999999999998,3.5781999999999998,80.7,84.3,87.9,91.4,95,98.6,102.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,32,1,92.190600000000003,0.039329999999999997,3.6259000000000001,81.3,84.9,88.6,92.2,95.8,99.4,103.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,33,1,92.923900000000003,0.03952,3.6724000000000001,81.900000000000006,85.6,89.3,92.9,96.6,100.3,103.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,34,1,93.644400000000005,0.039710000000000002,3.7185999999999999,82.5,86.2,89.9,93.6,97.4,101.1,104.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,35,1,94.353300000000004,0.039890000000000002,3.7637999999999998,83.1,86.8,90.6,94.4,98.1,101.9,105.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,36,1,95.051500000000004,0.040059999999999998,3.8077999999999999,83.6,87.4,91.2,95.1,98.9,102.7,106.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,37,1,95.739900000000006,0.040239999999999998,3.8525999999999998,84.2,88,91.9,95.7,99.6,103.4,107.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,38,1,96.418700000000001,0.040410000000000001,3.8963000000000001,84.7,88.6,92.5,96.4,100.3,104.2,108.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,39,1,97.088499999999996,0.040570000000000002,3.9388999999999998,85.3,89.2,93.1,97.1,101,105,108.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,40,1,97.749300000000005,0.040730000000000002,3.9813000000000001,85.8,89.8,93.8,97.7,101.7,105.7,109.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,41,1,98.401499999999999,0.040890000000000003,4.0236000000000001,86.3,90.4,94.4,98.4,102.4,106.4,110.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,42,1,99.044799999999995,0.041050000000000003,4.0658000000000003,86.8,90.9,95,99,103.1,107.2,111.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,43,1,99.679500000000004,0.041200000000000001,4.1067999999999998,87.4,91.5,95.6,99.7,103.8,107.9,112
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,44,1,100.3058,0.041349999999999998,4.1475999999999997,87.9,92,96.2,100.3,104.5,108.6,112.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,45,1,100.9238,0.041500000000000002,4.1882999999999999,88.4,92.5,96.7,100.9,105.1,109.3,113.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,46,1,101.5337,0.041640000000000003,4.2279,88.9,93.1,97.3,101.5,105.8,110,114.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,47,1,102.136,0.041790000000000001,4.2683,89.3,93.6,97.9,102.1,106.4,110.7,114.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,48,1,102.7312,0.041930000000000002,4.3075000000000001,89.8,94.1,98.4,102.7,107,111.3,115.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,49,1,103.3197,0.04206,4.3456000000000001,90.3,94.6,99,103.3,107.7,112,116.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,50,1,103.9021,0.042200000000000001,4.3846999999999996,90.7,95.1,99.5,103.9,108.3,112.7,117.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,51,1,104.4786,0.04233,4.4226000000000001,91.2,95.6,100.1,104.5,108.9,113.3,117.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,52,1,105.04940000000001,0.042459999999999998,4.4603999999999999,91.7,96.1,100.6,105,109.5,114,118.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,53,1,105.6148,0.042590000000000003,4.4981,92.1,96.6,101.1,105.6,110.1,114.6,119.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,54,1,106.1748,0.042720000000000001,4.5358000000000001,92.6,97.1,101.6,106.2,110.7,115.2,119.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,55,1,106.7295,0.042849999999999999,4.5734000000000004,93,97.6,102.2,106.7,111.3,115.9,120.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,56,1,107.2788,0.042979999999999997,4.6108000000000002,93.4,98.1,102.7,107.3,111.9,116.5,121.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,57,1,107.8227,0.043099999999999999,4.6471999999999998,93.9,98.5,103.2,107.8,112.5,117.1,121.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,58,1,108.3613,0.043220000000000001,4.6833999999999998,94.3,99,103.7,108.4,113,117.7,122.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,59,1,108.8948,0.043339999999999997,4.7195,94.7,99.5,104.2,108.9,113.6,118.3,123.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,60,1,109.4233,0.043470000000000002,4.7565999999999997,95.2,99.9,104.7,109.4,114.2,118.9,123.7
source,gender,age_unit,age,l,m,s,stdev,sd5neg,sd4neg,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3,sd4
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,61,1,109.6016,0.043549999999999998,4.7731000000000003,85.736000000000004,90.509,95.281999999999996,100.05500000000001,104.828,109.602,114.375,119.148,123.92100000000001,128.69399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,62,1,110.1258,0.043639999999999998,4.8059000000000003,86.096000000000004,90.902000000000001,95.707999999999998,100.514,105.32,110.126,114.932,119.738,124.54300000000001,129.34899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,63,1,110.6451,0.043729999999999998,4.8384999999999998,86.453000000000003,91.290999999999997,96.13,100.968,105.807,110.645,115.48399999999999,120.322,125.161,129.999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,64,1,111.1596,0.043819999999999998,4.8710000000000004,86.805000000000007,91.676000000000002,96.546999999999997,101.41800000000001,106.289,111.16,116.03100000000001,120.902,125.773,130.64400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,65,1,111.6696,0.043900000000000002,4.9023000000000003,87.158000000000001,92.06,96.962999999999994,101.86499999999999,106.767,111.67,116.572,121.474,126.376,131.279
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,66,1,112.17529999999999,0.043990000000000001,4.9345999999999997,87.501999999999995,92.436999999999998,97.372,102.306,107.241,112.175,117.11,122.044,126.979,131.91399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,67,1,112.6767,0.044069999999999998,4.9657,87.847999999999999,92.813999999999993,97.78,102.745,107.711,112.67700000000001,117.642,122.608,127.574,132.53899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,68,1,113.17400000000001,0.044150000000000002,4.9965999999999999,88.191000000000003,93.186999999999998,98.183999999999997,103.181,108.17700000000001,113.17400000000001,118.17100000000001,123.167,128.16399999999999,133.161
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,69,1,113.66719999999999,0.044229999999999998,5.0274999999999999,88.53,93.557000000000002,98.584999999999994,103.61199999999999,108.64,113.667,118.69499999999999,123.72199999999999,128.75,133.77699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,70,1,114.15649999999999,0.044310000000000002,5.0583,88.864999999999995,93.923000000000002,98.981999999999999,104.04,109.098,114.15600000000001,119.215,124.273,129.33099999999999,134.38999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,71,1,114.6421,0.044389999999999999,5.0890000000000004,89.197000000000003,94.286000000000001,99.375,104.464,109.553,114.642,119.73099999999999,124.82,129.90899999999999,134.99799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,72,1,115.12439999999999,0.044470000000000003,5.1196000000000002,89.525999999999996,94.646000000000001,99.766000000000005,104.88500000000001,110.005,115.124,120.244,125.364,130.483,135.60300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,73,1,115.6039,0.044540000000000003,5.149,89.858999999999995,95.007999999999996,100.157,105.306,110.455,115.604,120.753,125.902,131.05099999999999,136.19999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,74,1,116.0812,0.044609999999999997,5.1783999999999999,90.188999999999993,95.367999999999995,100.54600000000001,105.724,110.90300000000001,116.081,121.26,126.438,131.61600000000001,136.79499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,75,1,116.5568,0.044690000000000001,5.2088999999999999,90.512,95.721000000000004,100.93,106.139,111.348,116.557,121.76600000000001,126.97499999999999,132.184,137.392
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,76,1,117.0311,0.044749999999999998,5.2370999999999999,90.844999999999999,96.082999999999998,101.32,106.557,111.794,117.03100000000001,122.268,127.505,132.74299999999999,137.97999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,77,1,117.5044,0.044819999999999999,5.2664999999999997,91.171999999999997,96.438000000000002,101.705,106.971,112.238,117.504,122.771,128.03700000000001,133.304,138.571
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,78,1,117.9769,0.044889999999999999,5.2960000000000003,91.497,96.793000000000006,102.089,107.38500000000001,112.681,117.977,123.273,128.56899999999999,133.86500000000001,139.161
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,79,1,118.44889999999999,0.044949999999999997,5.3243,91.828000000000003,97.152000000000001,102.476,107.8,113.125,118.449,123.773,129.09700000000001,134.422,139.74600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,80,1,118.9208,0.045019999999999998,5.3537999999999997,92.152000000000001,97.506,102.85899999999999,108.21299999999999,113.56699999999999,118.92100000000001,124.27500000000001,129.62799999999999,134.982,140.33600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,81,1,119.3926,0.045080000000000002,5.3822000000000001,92.481999999999999,97.864000000000004,103.246,108.628,114.01,119.393,124.77500000000001,130.15700000000001,135.53899999999999,140.92099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,82,1,119.8648,0.04514,5.4107000000000003,92.811000000000007,98.221999999999994,103.633,109.04300000000001,114.45399999999999,119.86499999999999,125.27500000000001,130.68600000000001,136.09700000000001,141.50800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,83,1,120.3374,0.045199999999999997,5.4393000000000002,93.141000000000005,98.58,104.02,109.459,114.898,120.337,125.777,131.21600000000001,136.655,142.09399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,84,1,120.8105,0.045249999999999999,5.4667000000000003,93.477000000000004,98.944000000000003,104.41,109.877,115.34399999999999,120.81,126.277,131.744,137.21100000000001,142.67699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,85,1,121.2843,0.045310000000000003,5.4954000000000001,93.807000000000002,99.302999999999997,104.798,110.294,115.789,121.28400000000001,126.78,132.27500000000001,137.77000000000001,143.26599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,86,1,121.7587,0.045359999999999998,5.5229999999999997,94.144000000000005,99.667000000000002,105.19,110.71299999999999,116.236,121.759,127.282,132.80500000000001,138.328,143.851
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,87,1,122.2338,0.045420000000000002,5.5518999999999998,94.474999999999994,100.026,105.578,111.13,116.682,122.23399999999999,127.786,133.33799999999999,138.88900000000001,144.441
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,88,1,122.7098,0.045469999999999997,5.5796000000000001,94.811999999999998,100.39100000000001,105.971,111.551,117.13,122.71,128.28899999999999,133.869,139.44900000000001,145.02799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,89,1,123.18680000000001,0.045510000000000002,5.6062000000000003,95.156000000000006,100.762,106.36799999999999,111.974,117.581,123.187,128.79300000000001,134.399,140.005,145.61199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,90,1,123.66459999999999,0.045560000000000003,5.6341999999999999,95.494,101.128,106.762,112.396,118.03,123.66500000000001,129.29900000000001,134.93299999999999,140.56700000000001,146.20099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,91,1,124.1435,0.045609999999999998,5.6622000000000003,95.832999999999998,101.495,107.157,112.819,118.48099999999999,124.14400000000001,129.80600000000001,135.46799999999999,141.13,146.792
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,92,1,124.6234,0.045650000000000003,5.6890999999999998,96.177999999999997,101.867,107.556,113.245,118.934,124.623,130.31200000000001,136.00200000000001,141.691,147.38
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,93,1,125.1045,0.045690000000000001,5.7160000000000002,96.524000000000001,102.24,107.956,113.672,119.38800000000001,125.104,130.821,136.53700000000001,142.25299999999999,147.96899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,94,1,125.5869,0.04573,5.7431000000000001,96.870999999999995,102.61499999999999,108.358,114.101,119.84399999999999,125.587,131.33000000000001,137.07300000000001,142.816,148.559
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,95,1,126.0706,0.045769999999999998,5.7702999999999998,97.218999999999994,102.99,108.76,114.53,120.3,126.071,131.84100000000001,137.61099999999999,143.381,149.15199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,96,1,126.5558,0.045809999999999997,5.7975000000000003,97.567999999999998,103.366,109.163,114.961,120.758,126.556,132.35300000000001,138.15100000000001,143.94800000000001,149.74600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,97,1,127.0424,0.045850000000000002,5.8249000000000004,97.918000000000006,103.74299999999999,109.568,115.393,121.218,127.042,132.86699999999999,138.69200000000001,144.517,150.34200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,98,1,127.5304,0.045879999999999997,5.8510999999999997,98.275000000000006,104.126,109.977,115.828,121.679,127.53,133.381,139.233,145.084,150.935
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,99,1,128.01990000000001,0.045909999999999999,5.8773999999999997,98.632999999999996,104.51,110.38800000000001,116.265,122.143,128.02000000000001,133.89699999999999,139.77500000000001,145.65199999999999,151.529
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,100,1,128.51089999999999,0.045940000000000002,5.9038000000000004,98.992000000000004,104.896,110.8,116.703,122.607,128.511,134.41499999999999,140.31800000000001,146.22200000000001,152.126
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,101,1,129.0035,0.045969999999999997,5.9302999999999999,99.352000000000004,105.282,111.21299999999999,117.143,123.07299999999999,129.00399999999999,134.934,140.864,146.79400000000001,152.72499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,102,1,129.4975,0.045999999999999999,5.9569000000000001,99.712999999999994,105.67,111.627,117.584,123.541,129.49799999999999,135.45400000000001,141.411,147.36799999999999,153.32499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,103,1,129.9932,0.046019999999999998,5.9823000000000004,100.08199999999999,106.06399999999999,112.04600000000001,118.029,124.011,129.99299999999999,135.97499999999999,141.958,147.94,153.922
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,104,1,130.49039999999999,0.046039999999999998,6.0077999999999996,100.452,106.459,112.467,118.47499999999999,124.483,130.49,136.49799999999999,142.506,148.51400000000001,154.52199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,105,1,130.98910000000001,0.04607,6.0347,100.816,106.85,112.88500000000001,118.92,124.95399999999999,130.989,137.024,143.05799999999999,149.09299999999999,155.12799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,106,1,131.48949999999999,0.046080000000000003,6.0590000000000002,101.194,107.253,113.312,119.371,125.43,131.49,137.54900000000001,143.608,149.667,155.726
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,107,1,131.99119999999999,0.046100000000000002,6.0848000000000004,101.56699999999999,107.652,113.73699999999999,119.822,125.90600000000001,131.99100000000001,138.07599999999999,144.161,150.24600000000001,156.33000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,108,1,132.49440000000001,0.046120000000000001,6.1105999999999998,101.941,108.05200000000001,114.16200000000001,120.273,126.384,132.494,138.60499999999999,144.71600000000001,150.82599999999999,156.93700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,109,1,132.99889999999999,0.046129999999999997,6.1352000000000002,102.32299999999999,108.458,114.593,120.72799999999999,126.864,132.999,139.13399999999999,145.26900000000001,151.405,157.54
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,110,1,133.50460000000001,0.04614,6.1599000000000004,102.705,108.86499999999999,115.02500000000001,121.185,127.345,133.505,139.66499999999999,145.82400000000001,151.98400000000001,158.14400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,111,1,134.01179999999999,0.046149999999999997,6.1845999999999997,103.089,109.273,115.458,121.643,127.827,134.012,140.196,146.381,152.566,158.75
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,112,1,134.52019999999999,0.04616,6.2095000000000002,103.473,109.682,115.892,122.101,128.31100000000001,134.52000000000001,140.72999999999999,146.93899999999999,153.149,159.358
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,113,1,135.0299,0.04616,6.2329999999999997,103.86499999999999,110.098,116.331,122.56399999999999,128.797,135.03,141.26300000000001,147.49600000000001,153.72900000000001,159.96199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,114,1,135.541,0.046170000000000003,6.2579000000000002,104.251,110.509,116.767,123.02500000000001,129.28299999999999,135.541,141.79900000000001,148.05699999999999,154.315,160.57300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,115,1,136.05330000000001,0.046170000000000003,6.2816000000000001,104.645,110.92700000000001,117.209,123.49,129.77199999999999,136.053,142.33500000000001,148.61600000000001,154.898,161.18
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,116,1,136.56700000000001,0.04616,6.3038999999999996,105.047,111.351,117.655,123.959,130.26300000000001,136.56700000000001,142.87100000000001,149.17500000000001,155.47900000000001,161.78299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,117,1,137.0821,0.04616,6.3277000000000001,105.444,111.771,118.099,124.42700000000001,130.75399999999999,137.08199999999999,143.41,149.738,156.065,162.393
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,118,1,137.59870000000001,0.04616,6.3516000000000004,105.84099999999999,112.19199999999999,118.544,124.896,131.24700000000001,137.59899999999999,143.94999999999999,150.30199999999999,156.65299999999999,163.005
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,119,1,138.11670000000001,0.046149999999999997,6.3741000000000003,106.246,112.62,118.994,125.369,131.74299999999999,138.11699999999999,144.49100000000001,150.86500000000001,157.239,163.613
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,120,1,138.63630000000001,0.04614,6.3967000000000001,106.65300000000001,113.05,119.446,125.843,132.24,138.636,145.03299999999999,151.43,157.82599999999999,164.22300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,121,1,139.1575,0.046120000000000001,6.4179000000000004,107.068,113.486,119.904,126.322,132.74,139.15799999999999,145.57499999999999,151.99299999999999,158.411,164.82900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,122,1,139.68029999999999,0.046109999999999998,6.4406999999999996,107.477,113.91800000000001,120.358,126.79900000000001,133.24,139.68,146.12100000000001,152.56200000000001,159.00200000000001,165.44300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,123,1,140.20490000000001,0.046089999999999999,6.4619999999999997,107.895,114.357,120.819,127.28100000000001,133.74299999999999,140.20500000000001,146.667,153.12899999999999,159.59100000000001,166.053
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,124,1,140.7313,0.04607,6.4835000000000003,108.31399999999999,114.797,121.28100000000001,127.764,134.24799999999999,140.73099999999999,147.215,153.69800000000001,160.18199999999999,166.66499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,125,1,141.2594,0.046050000000000001,6.5049999999999999,108.73399999999999,115.239,121.744,128.249,134.75399999999999,141.25899999999999,147.76400000000001,154.26900000000001,160.774,167.279
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,126,1,141.78919999999999,0.046030000000000001,6.5266000000000002,109.15600000000001,115.68300000000001,122.21,128.73599999999999,135.26300000000001,141.78899999999999,148.316,154.84200000000001,161.369,167.89500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,127,1,142.32060000000001,0.045999999999999999,6.5467000000000004,109.587,116.134,122.68,129.227,135.774,142.321,148.86699999999999,155.41399999999999,161.96100000000001,168.50800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,128,1,142.85339999999999,0.045969999999999997,6.5670000000000002,110.01900000000001,116.586,123.152,129.71899999999999,136.286,142.85300000000001,149.41999999999999,155.98699999999999,162.554,169.12100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,129,1,143.38740000000001,0.045940000000000002,6.5872000000000002,110.45099999999999,117.039,123.626,130.21299999999999,136.80000000000001,143.387,149.97499999999999,156.56200000000001,163.149,169.73599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,130,1,143.9222,0.045909999999999999,6.6074999999999999,110.88500000000001,117.492,124.1,130.70699999999999,137.315,143.922,150.53,157.137,163.745,170.352
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,131,1,144.45750000000001,0.045879999999999997,6.6276999999999999,111.319,117.947,124.574,131.202,137.83000000000001,144.458,151.08500000000001,157.71299999999999,164.34100000000001,170.96799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,132,1,144.99289999999999,0.045839999999999999,6.6464999999999996,111.761,118.407,125.053,131.69999999999999,138.346,144.99299999999999,151.63900000000001,158.286,164.93199999999999,171.57900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,133,1,145.52799999999999,0.0458,6.6651999999999996,112.202,118.867,125.532,132.19800000000001,138.863,145.52799999999999,152.19300000000001,158.858,165.524,172.18899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,134,1,146.06219999999999,0.045760000000000002,6.6837999999999997,112.643,119.327,126.011,132.69499999999999,139.37799999999999,146.06200000000001,152.74600000000001,159.43,166.114,172.797
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,135,1,146.5951,0.045710000000000001,6.7008999999999999,113.09099999999999,119.792,126.49299999999999,133.19300000000001,139.89400000000001,146.595,153.29599999999999,159.99700000000001,166.69800000000001,173.399
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,136,1,147.12620000000001,0.045670000000000002,6.7192999999999996,113.53,120.249,126.968,133.68799999999999,140.40700000000001,147.126,153.845,160.565,167.28399999999999,174.00299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,137,1,147.65479999999999,0.045620000000000001,6.7359999999999998,113.97499999999999,120.711,127.447,134.18299999999999,140.91900000000001,147.655,154.39099999999999,161.12700000000001,167.863,174.59899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,138,1,148.18039999999999,0.045569999999999999,6.7526000000000002,114.417,121.17,127.923,134.67500000000001,141.428,148.18,154.93299999999999,161.68600000000001,168.43799999999999,175.191
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,139,1,148.70230000000001,0.045519999999999998,6.7689000000000004,114.858,121.627,128.39599999999999,135.16399999999999,141.93299999999999,148.702,155.471,162.24,169.00899999999999,175.77799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,140,1,149.21969999999999,0.04546,6.7835000000000001,115.30200000000001,122.086,128.869,135.65299999999999,142.43600000000001,149.22,156.00299999999999,162.78700000000001,169.57,176.35400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,141,1,149.73220000000001,0.045409999999999999,6.7992999999999997,115.736,122.535,129.334,136.13399999999999,142.93299999999999,149.732,156.53200000000001,163.33099999999999,170.13,176.93
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,142,1,150.239,0.045350000000000001,6.8132999999999999,116.172,122.986,129.79900000000001,136.61199999999999,143.42599999999999,150.239,157.05199999999999,163.86600000000001,170.679,177.49199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,143,1,150.73939999999999,0.045289999999999997,6.827,116.604,123.431,130.25800000000001,137.08500000000001,143.91200000000001,150.739,157.566,164.393,171.22,178.047
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,144,1,151.23269999999999,0.045229999999999999,6.8403,117.03100000000001,123.872,130.71199999999999,137.55199999999999,144.392,151.233,158.07300000000001,164.91300000000001,171.75299999999999,178.59399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,145,1,151.7182,0.045159999999999999,6.8516000000000004,117.46,124.312,131.16300000000001,138.01499999999999,144.86699999999999,151.71799999999999,158.57,165.42099999999999,172.273,179.125
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,146,1,152.1951,0.045100000000000001,6.8639999999999999,117.875,124.739,131.60300000000001,138.46700000000001,145.33099999999999,152.19499999999999,159.059,165.923,172.78700000000001,179.65100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,147,1,152.6628,0.045030000000000001,6.8743999999999996,118.291,125.16500000000001,132.04,138.91399999999999,145.78800000000001,152.66300000000001,159.53700000000001,166.41200000000001,173.286,180.16
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,148,1,153.1206,0.044970000000000003,6.8857999999999997,118.691,125.577,132.46299999999999,139.34899999999999,146.23500000000001,153.12100000000001,160.006,166.892,173.77799999999999,180.66399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,149,1,153.56780000000001,0.044900000000000002,6.8952,119.092,125.98699999999999,132.88200000000001,139.77699999999999,146.673,153.56800000000001,160.46299999999999,167.358,174.25299999999999,181.149
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,150,1,154.00409999999999,0.044830000000000002,6.9039999999999999,119.48399999999999,126.38800000000001,133.292,140.196,147.1,154.00399999999999,160.90799999999999,167.81200000000001,174.71600000000001,181.62
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,151,1,154.429,0.044760000000000001,6.9122000000000003,119.86799999999999,126.78,133.69200000000001,140.60499999999999,147.517,154.429,161.34100000000001,168.25299999999999,175.166,182.078
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,152,1,154.84229999999999,0.044679999999999997,6.9184000000000001,120.251,127.169,134.08699999999999,141.006,147.92400000000001,154.84200000000001,161.761,168.679,175.59700000000001,182.51599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,153,1,155.24369999999999,0.044609999999999997,6.9253999999999998,120.617,127.542,134.46700000000001,141.393,148.31800000000001,155.244,162.16900000000001,169.095,176.02,182.94499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,154,1,155.63300000000001,0.044540000000000003,6.9318999999999997,120.974,127.905,134.83699999999999,141.76900000000001,148.70099999999999,155.63300000000001,162.565,169.49700000000001,176.429,183.36099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,155,1,156.01009999999999,0.04446,6.9362000000000004,121.32899999999999,128.26499999999999,135.20099999999999,142.13800000000001,149.07400000000001,156.01,162.946,169.88300000000001,176.81899999999999,183.755
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,156,1,156.37479999999999,0.044389999999999999,6.9414999999999996,121.667,128.60900000000001,135.55000000000001,142.49199999999999,149.43299999999999,156.375,163.316,170.25800000000001,177.19900000000001,184.14099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,157,1,156.7269,0.044310000000000002,6.9446000000000003,122.004,128.94900000000001,135.893,142.83799999999999,149.78200000000001,156.727,163.67099999999999,170.61600000000001,177.56100000000001,184.505
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,158,1,157.06659999999999,0.044229999999999998,6.9470999999999998,122.331,129.27799999999999,136.22499999999999,143.172,150.12,157.06700000000001,164.01400000000001,170.96100000000001,177.90799999999999,184.85499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,159,1,157.39359999999999,0.044150000000000002,6.9489000000000001,122.649,129.59800000000001,136.547,143.49600000000001,150.44499999999999,157.39400000000001,164.34299999999999,171.291,178.24,185.18899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,160,1,157.70820000000001,0.044080000000000001,6.9518000000000004,122.949,129.90100000000001,136.85300000000001,143.80500000000001,150.756,157.708,164.66,171.61199999999999,178.56399999999999,185.51499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,161,1,158.0102,0.043999999999999997,6.9523999999999999,123.248,130.19999999999999,137.15299999999999,144.10499999999999,151.05799999999999,158.01,164.96299999999999,171.91499999999999,178.86799999999999,185.82
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,162,1,158.2997,0.043920000000000001,6.9524999999999997,123.53700000000001,130.49,137.44200000000001,144.39500000000001,151.34700000000001,158.30000000000001,165.25200000000001,172.20500000000001,179.15700000000001,186.11
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,163,1,158.5771,0.043839999999999997,6.952,123.81699999999999,130.76900000000001,137.721,144.673,151.625,158.577,165.529,172.48099999999999,179.43299999999999,186.38499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,164,1,158.8425,0.04376,6.9508999999999999,124.08799999999999,131.03899999999999,137.99,144.941,151.892,158.84200000000001,165.79300000000001,172.744,179.69499999999999,186.64599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,165,1,159.09610000000001,0.04369,6.9508999999999999,124.342,131.292,138.24299999999999,145.19399999999999,152.14500000000001,159.096,166.047,172.99799999999999,179.94900000000001,186.9
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,166,1,159.3382,0.043610000000000003,6.9486999999999997,124.595,131.54300000000001,138.49199999999999,145.441,152.38900000000001,159.33799999999999,166.28700000000001,173.23599999999999,180.184,187.13300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,167,1,159.56909999999999,0.043529999999999999,6.9459999999999997,124.839,131.785,138.73099999999999,145.67699999999999,152.62299999999999,159.56899999999999,166.51499999999999,173.46100000000001,180.40700000000001,187.35300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,168,1,159.78899999999999,0.043450000000000003,6.9428000000000001,125.075,132.018,138.96100000000001,145.90299999999999,152.846,159.78899999999999,166.732,173.67500000000001,180.61699999999999,187.56
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,169,1,159.9983,0.043369999999999999,6.9390999999999998,125.303,132.24199999999999,139.18100000000001,146.12,153.059,159.99799999999999,166.93700000000001,173.87700000000001,180.816,187.755
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,170,1,160.19710000000001,0.043299999999999998,6.9364999999999997,125.514,132.45099999999999,139.387,146.32400000000001,153.261,160.197,167.13399999999999,174.07,181.00700000000001,187.94300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,171,1,160.38570000000001,0.043220000000000001,6.9318999999999997,125.726,132.65799999999999,139.59,146.52199999999999,153.45400000000001,160.386,167.31800000000001,174.249,181.18100000000001,188.113
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,172,1,160.5643,0.043139999999999998,6.9267000000000003,125.931,132.857,139.78399999999999,146.71100000000001,153.63800000000001,160.56399999999999,167.49100000000001,174.41800000000001,181.345,188.27099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,173,1,160.73320000000001,0.043069999999999997,6.9227999999999996,126.119,133.042,139.965,146.88800000000001,153.81,160.733,167.65600000000001,174.57900000000001,181.50200000000001,188.42400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,174,1,160.89269999999999,0.04299,6.9168000000000003,126.309,133.226,140.142,147.059,153.976,160.893,167.809,174.726,181.643,188.56
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,175,1,161.04300000000001,0.04292,6.9119999999999999,126.483,133.39500000000001,140.30699999999999,147.21899999999999,154.131,161.04300000000001,167.95500000000001,174.86699999999999,181.779,188.691
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,176,1,161.18450000000001,0.042840000000000003,6.9051,126.65900000000001,133.56399999999999,140.46899999999999,147.374,154.279,161.184,168.09,174.995,181.9,188.80500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,177,1,161.3176,0.042770000000000002,6.8996000000000004,126.82,133.71899999999999,140.619,147.518,154.41800000000001,161.31800000000001,168.21700000000001,175.11699999999999,182.01599999999999,188.916
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,178,1,161.4425,0.042700000000000002,6.8936000000000002,126.97499999999999,133.86799999999999,140.762,147.655,154.54900000000001,161.44200000000001,168.33600000000001,175.23,182.12299999999999,189.017
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,179,1,161.55959999999999,0.042630000000000001,6.8872999999999998,127.123,134.01,140.898,147.785,154.672,161.56,168.447,175.334,182.221,189.10900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,180,1,161.66919999999999,0.042549999999999998,6.8789999999999996,127.274,134.15299999999999,141.03200000000001,147.911,154.79,161.66900000000001,168.548,175.42699999999999,182.30600000000001,189.185
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,181,1,161.77170000000001,0.042479999999999997,6.8720999999999997,127.411,134.28299999999999,141.15600000000001,148.02799999999999,154.9,161.77199999999999,168.64400000000001,175.51599999999999,182.38800000000001,189.26
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,182,1,161.8673,0.042410000000000003,6.8647999999999998,127.54300000000001,134.40799999999999,141.273,148.13800000000001,155.00299999999999,161.86699999999999,168.732,175.59700000000001,182.46199999999999,189.32599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,183,1,161.9564,0.042349999999999999,6.8589000000000002,127.66200000000001,134.52099999999999,141.38,148.239,155.09800000000001,161.95599999999999,168.815,175.67400000000001,182.53299999999999,189.392
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,184,1,162.0393,0.042279999999999998,6.851,127.78400000000001,134.63499999999999,141.48599999999999,148.33699999999999,155.18799999999999,162.03899999999999,168.89,175.74100000000001,182.59200000000001,189.44300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,185,1,162.1164,0.042209999999999998,6.8429000000000002,127.902,134.745,141.58799999999999,148.43100000000001,155.273,162.11600000000001,168.959,175.80199999999999,182.64500000000001,189.488
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,186,1,162.18799999999999,0.042139999999999997,6.8346,128.01499999999999,134.85,141.684,148.51900000000001,155.35300000000001,162.18799999999999,169.023,175.857,182.69200000000001,189.52600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,187,1,162.2542,0.042079999999999999,6.8277000000000001,128.11600000000001,134.94399999999999,141.77099999999999,148.59899999999999,155.42699999999999,162.25399999999999,169.08199999999999,175.91,182.73699999999999,189.565
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,188,1,162.31540000000001,0.042009999999999999,6.8189000000000002,128.221,135.04,141.85900000000001,148.678,155.49700000000001,162.315,169.13399999999999,175.953,182.77199999999999,189.59100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,189,1,162.37190000000001,0.041950000000000001,6.8114999999999997,128.31399999999999,135.126,141.93700000000001,148.749,155.56,162.37200000000001,169.18299999999999,175.995,182.80600000000001,189.61799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,190,1,162.4239,0.041889999999999997,6.8038999999999996,128.404,135.208,142.012,148.816,155.62,162.42400000000001,169.22800000000001,176.03200000000001,182.83600000000001,189.64
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,191,1,162.4717,0.041820000000000003,6.7946,128.499,135.29300000000001,142.08799999999999,148.88300000000001,155.67699999999999,162.47200000000001,169.26599999999999,176.06100000000001,182.85499999999999,189.65
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,192,1,162.51560000000001,0.041759999999999999,6.7866999999999997,128.58199999999999,135.369,142.15600000000001,148.94200000000001,155.72900000000001,162.51599999999999,169.30199999999999,176.089,182.876,189.66200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,193,1,162.55600000000001,0.041700000000000001,6.7786,128.66300000000001,135.44200000000001,142.22,148.999,155.77699999999999,162.55600000000001,169.33500000000001,176.113,182.892,189.67
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,194,1,162.5933,0.041640000000000003,6.7704000000000004,128.74100000000001,135.512,142.28200000000001,149.053,155.82300000000001,162.59299999999999,169.364,176.13399999999999,182.904,189.67500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,195,1,162.6276,0.041579999999999999,6.7621000000000002,128.81700000000001,135.57900000000001,142.34100000000001,149.10300000000001,155.86600000000001,162.62799999999999,169.39,176.15199999999999,182.91399999999999,189.67599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,196,1,162.65940000000001,0.041520000000000001,6.7535999999999996,128.89099999999999,135.64500000000001,142.399,149.15199999999999,155.90600000000001,162.65899999999999,169.41300000000001,176.167,182.92,189.67400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,197,1,162.68899999999999,0.04147,6.7466999999999997,128.95500000000001,135.702,142.44900000000001,149.196,155.94200000000001,162.68899999999999,169.43600000000001,176.18199999999999,182.929,189.67599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,198,1,162.7165,0.041410000000000002,6.7381000000000002,129.02600000000001,135.76400000000001,142.50200000000001,149.24,155.97800000000001,162.71600000000001,169.45500000000001,176.19300000000001,182.93100000000001,189.66900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,199,1,162.74250000000001,0.041360000000000001,6.7309999999999999,129.08699999999999,135.81800000000001,142.54900000000001,149.28,156.011,162.74199999999999,169.47399999999999,176.20500000000001,182.93600000000001,189.667
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,200,1,162.767,0.041300000000000003,6.7222999999999997,129.15600000000001,135.87799999999999,142.6,149.322,156.04499999999999,162.767,169.489,176.21199999999999,182.934,189.65600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,201,1,162.79040000000001,0.041250000000000002,6.7150999999999996,129.215,135.93,142.64500000000001,149.36000000000001,156.07499999999999,162.79,169.506,176.221,182.93600000000001,189.65100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,202,1,162.8126,0.041189999999999997,6.7062999999999997,129.28100000000001,135.988,142.69399999999999,149.4,156.10599999999999,162.81299999999999,169.51900000000001,176.22499999999999,182.93100000000001,189.63800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,203,1,162.834,0.041140000000000003,6.6989999999999998,129.339,136.03800000000001,142.73699999999999,149.43600000000001,156.13499999999999,162.834,169.53299999999999,176.232,182.93100000000001,189.63
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,204,1,162.8545,0.041090000000000002,6.6917,129.39599999999999,136.08799999999999,142.779,149.471,156.16300000000001,162.85400000000001,169.54599999999999,176.238,182.93,189.62100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,205,1,162.87430000000001,0.04104,6.6844000000000001,129.452,136.137,142.821,149.506,156.19,162.874,169.559,176.24299999999999,182.92699999999999,189.61199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,206,1,162.89349999999999,0.040989999999999999,6.6769999999999996,129.50800000000001,136.185,142.86199999999999,149.53899999999999,156.21600000000001,162.89400000000001,169.571,176.24799999999999,182.92500000000001,189.602
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,207,1,162.91200000000001,0.040939999999999997,6.6696,129.56399999999999,136.23400000000001,142.90299999999999,149.57300000000001,156.24199999999999,162.91200000000001,169.58199999999999,176.251,182.92099999999999,189.59
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,208,1,162.93,0.040890000000000003,6.6622000000000003,129.619,136.28100000000001,142.94300000000001,149.60599999999999,156.268,162.93,169.59200000000001,176.25399999999999,182.917,189.57900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,209,1,162.94759999999999,0.040840000000000001,6.6547999999999998,129.67400000000001,136.328,142.983,149.63800000000001,156.29300000000001,162.94800000000001,169.602,176.25700000000001,182.91200000000001,189.56700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,210,1,162.9649,0.040800000000000003,6.649,129.72,136.369,143.018,149.667,156.316,162.965,169.614,176.26300000000001,182.91200000000001,189.56100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,211,1,162.98169999999999,0.040750000000000001,6.6414999999999997,129.774,136.416,143.05699999999999,149.69900000000001,156.34,162.982,169.62299999999999,176.26499999999999,182.90600000000001,189.548
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,212,1,162.9983,0.040710000000000003,6.6356999999999999,129.82,136.45599999999999,143.09100000000001,149.727,156.363,162.99799999999999,169.63399999999999,176.27,182.905,189.541
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,213,1,163.01439999999999,0.040660000000000002,6.6281999999999996,129.874,136.50200000000001,143.13,149.75800000000001,156.386,163.01400000000001,169.643,176.27099999999999,182.899,189.52699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,214,1,163.03,0.040620000000000003,6.6223000000000001,129.91900000000001,136.541,143.16300000000001,149.785,156.40799999999999,163.03,169.65199999999999,176.27500000000001,182.89699999999999,189.51900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,215,1,163.04509999999999,0.040579999999999998,6.6163999999999996,129.96299999999999,136.58000000000001,143.196,149.81200000000001,156.429,163.04499999999999,169.661,176.27799999999999,182.89400000000001,189.511
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,216,1,163.05950000000001,0.040529999999999997,6.6087999999999996,130.01499999999999,136.624,143.233,149.84200000000001,156.45099999999999,163.06,169.66800000000001,176.27699999999999,182.886,189.495
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,217,1,163.07329999999999,0.040489999999999998,6.6028000000000002,130.059,136.66200000000001,143.26499999999999,149.86799999999999,156.47,163.07300000000001,169.67599999999999,176.279,182.88200000000001,189.48500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,218,1,163.08619999999999,0.04045,6.5968,130.102,136.69900000000001,143.29599999999999,149.893,156.489,163.08600000000001,169.68299999999999,176.28,182.87700000000001,189.47399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,219,1,163.09819999999999,0.040410000000000001,6.5907999999999998,130.14400000000001,136.73500000000001,143.32599999999999,149.917,156.50700000000001,163.09800000000001,169.68899999999999,176.28,182.87100000000001,189.46100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,220,1,163.10919999999999,0.040370000000000003,6.5846999999999998,130.18600000000001,136.77000000000001,143.35499999999999,149.94,156.524,163.10900000000001,169.69399999999999,176.279,182.863,189.44800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,221,1,163.11920000000001,0.040340000000000001,6.5801999999999996,130.21799999999999,136.798,143.37899999999999,149.959,156.53899999999999,163.119,169.69900000000001,176.28,182.86,189.44
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,222,1,163.12790000000001,0.040300000000000002,6.5740999999999996,130.25800000000001,136.83199999999999,143.40600000000001,149.97999999999999,156.554,163.12799999999999,169.702,176.27600000000001,182.85,189.42400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,223,1,163.13550000000001,0.040259999999999997,6.5678000000000001,130.29599999999999,136.864,143.43199999999999,150,156.56800000000001,163.136,169.703,176.27099999999999,182.839,189.40700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,224,1,163.14179999999999,0.040230000000000002,6.5632000000000001,130.32599999999999,136.88900000000001,143.452,150.01499999999999,156.57900000000001,163.142,169.70500000000001,176.268,182.83099999999999,189.39500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,225,1,163.14689999999999,0.040189999999999997,6.5568999999999997,130.363,136.91900000000001,143.476,150.03299999999999,156.59,163.14699999999999,169.70400000000001,176.261,182.81800000000001,189.374
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,226,1,163.1508,0.040160000000000001,6.5521000000000003,130.38999999999999,136.94200000000001,143.494,150.047,156.59899999999999,163.15100000000001,169.703,176.255,182.80699999999999,189.35900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,227,1,163.1534,0.040120000000000003,6.5457000000000001,130.42500000000001,136.971,143.51599999999999,150.06200000000001,156.608,163.15299999999999,169.69900000000001,176.245,182.791,189.33600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,228,1,163.15479999999999,0.040090000000000001,6.5408999999999997,130.44999999999999,136.99100000000001,143.53200000000001,150.07300000000001,156.614,163.155,169.696,176.23699999999999,182.77699999999999,189.31800000000001
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,0,1,49.8842,0.037949999999999998,1.8931,44.2,46.1,48,49.9,51.8,53.7,55.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,1,1,51.115200000000002,0.037229999999999999,1.903,45.4,47.3,49.2,51.1,53,54.9,56.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,2,1,52.3461,0.036519999999999997,1.9117,46.6,48.5,50.4,52.3,54.3,56.2,58.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,3,1,53.390500000000003,0.036089999999999997,1.9269000000000001,47.6,49.5,51.5,53.4,55.3,57.2,59.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,4,1,54.388100000000001,0.035700000000000003,1.9417,48.6,50.5,52.4,54.4,56.3,58.3,60.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,5,1,55.337400000000002,0.035340000000000003,1.9556,49.5,51.4,53.4,55.3,57.3,59.2,61.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,6,1,56.235700000000001,0.035009999999999999,1.9688000000000001,50.3,52.3,54.3,56.2,58.2,60.2,62.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,7,1,57.085099999999997,0.034700000000000002,1.9809000000000001,51.1,53.1,55.1,57.1,59.1,61,63
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,8,1,57.8889,0.034419999999999999,1.9924999999999999,51.9,53.9,55.9,57.9,59.9,61.9,63.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,9,1,58.653599999999997,0.034160000000000003,2.0036,52.6,54.6,56.6,58.7,60.7,62.7,64.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,10,1,59.3872,0.033919999999999999,2.0144000000000002,53.3,55.4,57.4,59.4,61.4,63.4,65.400000000000006
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,11,1,60.089399999999998,0.033689999999999998,2.0244,54,56,58.1,60.1,62.1,64.099999999999994,66.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,12,1,60.7605,0.033480000000000003,2.0343,54.7,56.7,58.7,60.8,62.8,64.8,66.900000000000006
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,13,1,61.401299999999999,0.03329,2.044,55.3,57.3,59.4,61.4,63.4,65.5,67.5
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,0,1,49.8842,0.037949999999999998,1.8931,44.2,46.1,48,49.9,51.8,53.7,55.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,1,1,54.724400000000003,0.035569999999999997,1.9464999999999999,48.9,50.8,52.8,54.7,56.7,58.6,60.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,2,1,58.424900000000001,0.03424,2.0005000000000002,52.4,54.4,56.4,58.4,60.4,62.4,64.400000000000006
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,3,1,61.429200000000002,0.033279999999999997,2.0444,55.3,57.3,59.4,61.4,63.5,65.5,67.599999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,4,1,63.886000000000003,0.032570000000000002,2.0808,57.6,59.7,61.8,63.9,66,68,70.099999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,5,1,65.902600000000007,0.032039999999999999,2.1114999999999999,59.6,61.7,63.8,65.900000000000006,68,70.099999999999994,72.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,6,1,67.623599999999996,0.031649999999999998,2.1402999999999999,61.2,63.3,65.5,67.599999999999994,69.8,71.900000000000006,74
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,7,1,69.164500000000004,0.031390000000000001,2.1711,62.7,64.8,67,69.2,71.3,73.5,75.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,8,1,70.599400000000003,0.03124,2.2054999999999998,64,66.2,68.400000000000006,70.599999999999994,72.8,75,77.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,9,1,71.968699999999998,0.03117,2.2433000000000001,65.2,67.5,69.7,72,74.2,76.5,78.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,10,1,73.281199999999998,0.031179999999999999,2.2848999999999999,66.400000000000006,68.7,71,73.3,75.599999999999994,77.900000000000006,80.099999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,11,1,74.538799999999995,0.03125,2.3292999999999999,67.599999999999994,69.900000000000006,72.2,74.5,76.900000000000006,79.2,81.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,12,1,75.748800000000003,0.031370000000000002,2.3761999999999999,68.599999999999994,71,73.400000000000006,75.7,78.099999999999994,80.5,82.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,13,1,76.918599999999998,0.031539999999999999,2.4260000000000002,69.599999999999994,72.099999999999994,74.5,76.900000000000006,79.3,81.8,84.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,14,1,78.049700000000001,0.031739999999999997,2.4773000000000001,70.599999999999994,73.099999999999994,75.599999999999994,78,80.5,83,85.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,15,1,79.145799999999994,0.031969999999999998,2.5303,71.599999999999994,74.099999999999994,76.599999999999994,79.099999999999994,81.7,84.2,86.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,16,1,80.211299999999994,0.032219999999999999,2.5844,72.5,75,77.599999999999994,80.2,82.8,85.4,88
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,17,1,81.248699999999999,0.032500000000000001,2.6406000000000001,73.3,76,78.599999999999994,81.2,83.9,86.5,89.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,18,1,82.258700000000005,0.03279,2.6972999999999998,74.2,76.900000000000006,79.599999999999994,82.3,85,87.7,90.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,19,1,83.241799999999998,0.033099999999999997,2.7553000000000001,75,77.7,80.5,83.2,86,88.8,91.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,20,1,84.199600000000004,0.033419999999999998,2.8140000000000001,75.8,78.599999999999994,81.400000000000006,84.2,87,89.8,92.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,21,1,85.134799999999998,0.033759999999999998,2.8742000000000001,76.5,79.400000000000006,82.3,85.1,88,90.9,93.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,22,1,86.047700000000006,0.034099999999999998,2.9342000000000001,77.2,80.2,83.1,86,89,91.9,94.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,23,1,86.941000000000003,0.034450000000000001,2.9950999999999999,78,81,83.9,86.9,89.9,92.9,95.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,24,1,87.816100000000006,0.034790000000000001,3.0550999999999999,78.7,81.7,84.8,87.8,90.9,93.9,97
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,24,1,87.116100000000003,0.035069999999999997,3.0550999999999999,78,81,84.1,87.1,90.2,93.2,96.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,25,1,87.971999999999994,0.03542,3.1160000000000001,78.599999999999994,81.7,84.9,88,91.1,94.2,97.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,26,1,88.8065,0.03576,3.1757,79.3,82.5,85.6,88.8,92,95.2,98.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,27,1,89.619699999999995,0.0361,3.2353000000000001,79.900000000000006,83.1,86.4,89.6,92.9,96.1,99.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,28,1,90.412000000000006,0.036420000000000001,3.2928000000000002,80.5,83.8,87.1,90.4,93.7,97,100.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,29,1,91.1828,0.036740000000000002,3.3500999999999999,81.099999999999994,84.5,87.8,91.2,94.5,97.9,101.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,30,1,91.932699999999997,0.037039999999999997,3.4051999999999998,81.7,85.1,88.5,91.9,95.3,98.7,102.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,31,1,92.6631,0.037330000000000002,3.4590999999999998,82.3,85.7,89.2,92.7,96.1,99.6,103
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,32,1,93.375299999999996,0.037609999999999998,3.5118,82.8,86.4,89.9,93.4,96.9,100.4,103.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,33,1,94.071100000000001,0.037870000000000001,3.5625,83.4,86.9,90.5,94.1,97.6,101.2,104.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,34,1,94.753200000000007,0.038120000000000001,3.6120000000000001,83.9,87.5,91.1,94.8,98.4,102,105.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,35,1,95.423599999999993,0.038359999999999998,3.6604000000000001,84.4,88.1,91.8,95.4,99.1,102.7,106.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,36,1,96.083500000000001,0.038580000000000003,3.7069000000000001,85,88.7,92.4,96.1,99.8,103.5,107.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,37,1,96.733699999999999,0.038789999999999998,3.7523,85.5,89.2,93,96.7,100.5,104.2,108
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,38,1,97.374899999999997,0.039,3.7976000000000001,86,89.8,93.6,97.4,101.2,105,108.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,39,1,98.007300000000001,0.039190000000000003,3.8409,86.5,90.3,94.2,98,101.8,105.7,109.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,40,1,98.631,0.039370000000000002,3.8831000000000002,87,90.9,94.7,98.6,102.5,106.4,110.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,41,1,99.245900000000006,0.039539999999999999,3.9241999999999999,87.5,91.4,95.3,99.2,103.2,107.1,111
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,42,1,99.851500000000001,0.039710000000000002,3.9651000000000001,88,91.9,95.9,99.9,103.8,107.8,111.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,43,1,100.4485,0.03986,4.0038999999999998,88.4,92.4,96.4,100.4,104.5,108.5,112.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,44,1,101.03740000000001,0.04002,4.0434999999999999,88.9,93,97,101,105.1,109.1,113.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,45,1,101.6186,0.040160000000000001,4.0810000000000004,89.4,93.5,97.5,101.6,105.7,109.8,113.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,46,1,102.19329999999999,0.040309999999999999,4.1193999999999997,89.8,94,98.1,102.2,106.3,110.4,114.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,47,1,102.7625,0.04045,4.1566999999999998,90.3,94.4,98.6,102.8,106.9,111.1,115.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,48,1,103.32729999999999,0.040590000000000001,4.1940999999999997,90.7,94.9,99.1,103.3,107.5,111.7,115.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,49,1,103.8886,0.040730000000000002,4.2313999999999998,91.2,95.4,99.7,103.9,108.1,112.4,116.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,50,1,104.4473,0.04086,4.2676999999999996,91.6,95.9,100.2,104.4,108.7,113,117.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,51,1,105.00409999999999,0.041000000000000002,4.3052000000000001,92.1,96.4,100.7,105,109.3,113.6,117.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,52,1,105.5596,0.04113,4.3417000000000003,92.5,96.9,101.2,105.6,109.9,114.2,118.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,53,1,106.1138,0.041259999999999998,4.3783000000000003,93,97.4,101.7,106.1,110.5,114.9,119.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,54,1,106.66679999999999,0.041390000000000003,4.4149000000000003,93.4,97.8,102.3,106.7,111.1,115.5,119.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,55,1,107.2188,0.041520000000000001,4.4516999999999998,93.9,98.3,102.8,107.2,111.7,116.1,120.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,56,1,107.7697,0.04165,4.4885999999999999,94.3,98.8,103.3,107.8,112.3,116.7,121.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,57,1,108.3198,0.041770000000000002,4.5244999999999997,94.7,99.3,103.8,108.3,112.8,117.4,121.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,58,1,108.8689,0.0419,4.5616000000000003,95.2,99.7,104.3,108.9,113.4,118,122.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,59,1,109.417,0.042020000000000002,4.5976999999999997,95.6,100.2,104.8,109.4,114,118.6,123.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,60,1,109.96380000000001,0.042139999999999997,4.6338999999999997,96.1,100.7,105.3,110,114.6,119.2,123.9
source,gender,age_unit,age,l,m,s,stdev,sd5neg,sd4neg,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3,sd4
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,61,1,110.2647,0.041640000000000003,4.5914000000000001,87.308000000000007,91.899000000000001,96.49,101.08199999999999,105.673,110.265,114.85599999999999,119.44799999999999,124.039,128.63
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,62,1,110.8006,0.04172,4.6226000000000003,87.688000000000002,92.31,96.933000000000007,101.55500000000001,106.178,110.801,115.423,120.04600000000001,124.66800000000001,129.291
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,63,1,111.3338,0.041799999999999997,4.6538000000000004,88.064999999999998,92.718999999999994,97.373000000000005,102.026,106.68,111.334,115.988,120.64100000000001,125.295,129.94900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,64,1,111.86360000000001,0.041869999999999997,4.6837,88.444999999999993,93.129000000000005,97.811999999999998,102.496,107.18,111.864,116.547,121.23099999999999,125.91500000000001,130.59899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,65,1,112.3895,0.041950000000000001,4.7146999999999997,88.816000000000003,93.531000000000006,98.245000000000005,102.96,107.675,112.39,117.104,121.819,126.53400000000001,131.24799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,66,1,112.911,0.042029999999999998,4.7455999999999996,89.183000000000007,93.927999999999997,98.674000000000007,103.42,108.16500000000001,112.911,117.657,122.402,127.148,131.89400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,67,1,113.428,0.042110000000000002,4.7765000000000004,89.546000000000006,94.322000000000003,99.099000000000004,103.875,108.652,113.428,118.20399999999999,122.98099999999999,127.75700000000001,132.53399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,68,1,113.941,0.042180000000000002,4.806,89.911000000000001,94.716999999999999,99.522999999999996,104.32899999999999,109.13500000000001,113.941,118.747,123.553,128.35900000000001,133.16499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,69,1,114.45,0.042259999999999999,4.8367000000000004,90.266999999999996,95.102999999999994,99.94,104.777,109.613,114.45,119.28700000000001,124.123,128.96,133.797
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,70,1,114.9547,0.042340000000000003,4.8672000000000004,90.619,95.486000000000004,100.35299999999999,105.22,110.08799999999999,114.955,119.822,124.68899999999999,129.55600000000001,134.423
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,71,1,115.45489999999999,0.042410000000000003,4.8963999999999999,90.972999999999999,95.869,100.76600000000001,105.66200000000001,110.55800000000001,115.455,120.351,125.248,130.14400000000001,135.041
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,72,1,115.9509,0.04249,4.9268000000000001,91.316999999999993,96.244,101.17100000000001,106.09699999999999,111.024,115.95099999999999,120.878,125.804,130.73099999999999,135.65799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,73,1,116.4432,0.042569999999999997,4.9569999999999999,91.658000000000001,96.614999999999995,101.572,106.529,111.486,116.443,121.4,126.357,131.31399999999999,136.27099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,74,1,116.9325,0.042639999999999997,4.9859999999999998,92.001999999999995,96.988,101.974,106.96,111.946,116.932,121.919,126.905,131.89099999999999,136.87700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,75,1,117.4196,0.042720000000000001,5.0162000000000004,92.338999999999999,97.355000000000004,102.371,107.387,112.40300000000001,117.42,122.43600000000001,127.452,132.46799999999999,137.48400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,76,1,117.9046,0.042799999999999998,5.0462999999999996,92.673000000000002,97.718999999999994,102.76600000000001,107.812,112.858,117.905,122.95099999999999,127.997,133.04400000000001,138.09
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,77,1,118.38800000000001,0.042869999999999998,5.0753000000000004,93.012,98.087000000000003,103.16200000000001,108.23699999999999,113.313,118.38800000000001,123.46299999999999,128.53899999999999,133.614,138.68899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,78,1,118.87,0.042950000000000002,5.1055000000000001,93.343000000000004,98.447999999999993,103.554,108.65900000000001,113.765,118.87,123.97499999999999,129.08099999999999,134.18600000000001,139.292
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,79,1,119.35080000000001,0.043029999999999999,5.1356999999999999,93.671999999999997,98.808000000000007,103.944,109.07899999999999,114.215,119.351,124.486,129.62200000000001,134.75800000000001,139.893
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,80,1,119.83029999999999,0.043110000000000002,5.1658999999999997,94.001000000000005,99.167000000000002,104.333,109.499,114.664,119.83,124.996,130.16200000000001,135.328,140.494
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,81,1,120.3085,0.043180000000000003,5.1948999999999996,94.334000000000003,99.528999999999996,104.724,109.919,115.114,120.30800000000001,125.503,130.69800000000001,135.893,141.08799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,82,1,120.78530000000001,0.04326,5.2252000000000001,94.659000000000006,99.885000000000005,105.11,110.33499999999999,115.56,120.785,126.01,131.23599999999999,136.46100000000001,141.68600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,83,1,121.2604,0.043339999999999997,5.2553999999999998,94.983000000000004,100.239,105.494,110.75,116.005,121.26,126.51600000000001,131.77099999999999,137.02699999999999,142.28200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,84,1,121.7338,0.04342,5.2857000000000003,95.305000000000007,100.59099999999999,105.877,111.16200000000001,116.44799999999999,121.73399999999999,127.01900000000001,132.30500000000001,137.59100000000001,142.87700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,85,1,122.20529999999999,0.043499999999999997,5.3159000000000001,95.626000000000005,100.94199999999999,106.258,111.57299999999999,116.889,122.205,127.521,132.83699999999999,138.15299999999999,143.46899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,86,1,122.675,0.043580000000000001,5.3461999999999996,95.944000000000003,101.29,106.636,111.983,117.32899999999999,122.675,128.02099999999999,133.36699999999999,138.714,144.06
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,87,1,123.1429,0.043659999999999997,5.3764000000000003,96.260999999999996,101.637,107.014,112.39,117.76600000000001,123.143,128.51900000000001,133.89599999999999,139.27199999999999,144.649
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,88,1,123.6092,0.043740000000000001,5.4066999999999998,96.575999999999993,101.983,107.389,112.79600000000001,118.203,123.60899999999999,129.01599999999999,134.423,139.82900000000001,145.23599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,89,1,124.0736,0.043819999999999998,5.4368999999999996,96.888999999999996,102.32599999999999,107.76300000000001,113.2,118.637,124.074,129.511,134.947,140.38399999999999,145.821
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,90,1,124.5361,0.043900000000000002,5.4671000000000003,97.2,102.66800000000001,108.13500000000001,113.602,119.069,124.536,130.00299999999999,135.47,140.93799999999999,146.405
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,91,1,124.99639999999999,0.043979999999999998,5.4973000000000001,97.51,103.00700000000001,108.504,114.002,119.499,124.996,130.494,135.99100000000001,141.488,146.98599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,92,1,125.4545,0.044060000000000002,5.5274999999999999,97.816999999999993,103.34399999999999,108.872,114.399,119.92700000000001,125.45399999999999,130.982,136.51,142.03700000000001,147.565
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,93,1,125.9104,0.044139999999999999,5.5576999999999996,98.122,103.68,109.23699999999999,114.795,120.35299999999999,125.91,131.46799999999999,137.02600000000001,142.583,148.14099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,94,1,126.364,0.044220000000000002,5.5877999999999997,98.424999999999997,104.01300000000001,109.601,115.188,120.776,126.364,131.952,137.54,143.12700000000001,148.715
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,95,1,126.8156,0.044299999999999999,5.6178999999999997,98.725999999999999,104.34399999999999,109.962,115.58,121.19799999999999,126.816,132.434,138.05099999999999,143.66900000000001,149.28700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,96,1,127.2651,0.044380000000000003,5.6479999999999997,99.025000000000006,104.673,110.321,115.96899999999999,121.617,127.265,132.91300000000001,138.56100000000001,144.209,149.857
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,97,1,127.7129,0.04446,5.6780999999999997,99.322000000000003,105,110.679,116.357,122.035,127.71299999999999,133.39099999999999,139.06899999999999,144.74700000000001,150.42500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,98,1,128.15899999999999,0.044540000000000003,5.7081999999999997,99.617999999999995,105.32599999999999,111.03400000000001,116.74299999999999,122.45099999999999,128.15899999999999,133.86699999999999,139.57499999999999,145.28399999999999,150.99199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,99,1,128.60339999999999,0.04462,5.7382999999999997,99.912000000000006,105.65,111.389,117.127,122.86499999999999,128.60300000000001,134.34200000000001,140.08000000000001,145.81800000000001,151.55699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,100,1,129.04660000000001,0.044699999999999997,5.7683999999999997,100.205,105.973,111.741,117.51,123.27800000000001,129.047,134.815,140.583,146.352,152.12
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,101,1,129.48869999999999,0.04478,5.7984999999999998,100.496,106.295,112.093,117.892,123.69,129.489,135.28700000000001,141.08600000000001,146.88399999999999,152.68299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,102,1,129.93,0.04487,5.83,100.78,106.61,112.44,118.27,124.1,129.93,135.76,141.59,147.41999999999999,153.25
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,103,1,130.37049999999999,0.044949999999999997,5.8601999999999999,101.07,106.93,112.79,118.65,124.51,130.37,136.23099999999999,142.09100000000001,147.95099999999999,153.81100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,104,1,130.81030000000001,0.045030000000000001,5.8903999999999996,101.358,107.249,113.139,119.03,124.92,130.81,136.70099999999999,142.59100000000001,148.48099999999999,154.37200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,105,1,131.24950000000001,0.045109999999999997,5.9207000000000001,101.646,107.56699999999999,113.488,119.408,125.32899999999999,131.25,137.16999999999999,143.09100000000001,149.011,154.93199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,106,1,131.6884,0.045190000000000001,5.9509999999999996,101.93300000000001,107.884,113.83499999999999,119.786,125.73699999999999,131.68799999999999,137.63900000000001,143.59,149.541,155.49199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,107,1,132.12690000000001,0.045269999999999998,5.9813999999999998,102.22,108.20099999999999,114.18300000000001,120.164,126.146,132.12700000000001,138.108,144.09,150.071,156.05199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,108,1,132.5652,0.045350000000000001,6.0118,102.506,108.518,114.53,120.542,126.553,132.565,138.577,144.589,150.601,156.613
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,109,1,133.00309999999999,0.045429999999999998,6.0423,102.791,108.834,114.876,120.91800000000001,126.961,133.00299999999999,139.04499999999999,145.08799999999999,151.13,157.172
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,110,1,133.44040000000001,0.045510000000000002,6.0728999999999997,103.07599999999999,109.149,115.22199999999999,121.295,127.36799999999999,133.44,139.51300000000001,145.58600000000001,151.65899999999999,157.732
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,111,1,133.87700000000001,0.045589999999999999,6.1035000000000004,103.36,109.46299999999999,115.56699999999999,121.67,127.774,133.87700000000001,139.97999999999999,146.084,152.18700000000001,158.291
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,112,1,134.31299999999999,0.045659999999999999,6.1326999999999998,103.649,109.782,115.91500000000001,122.048,128.18,134.31299999999999,140.446,146.578,152.71100000000001,158.84399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,113,1,134.7483,0.045740000000000003,6.1634000000000002,103.931,110.095,116.258,122.422,128.58500000000001,134.74799999999999,140.91200000000001,147.07499999999999,153.238,159.40199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,114,1,135.18289999999999,0.04582,6.1940999999999997,104.212,110.407,116.601,122.795,128.989,135.18299999999999,141.37700000000001,147.571,153.76499999999999,159.959
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,115,1,135.61680000000001,0.04589,6.2234999999999996,104.5,110.723,116.946,123.17,129.393,135.61699999999999,141.84,148.06399999999999,154.28700000000001,160.511
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,116,1,136.05009999999999,0.045969999999999997,6.2542,104.779,111.033,117.28700000000001,123.542,129.79599999999999,136.05000000000001,142.304,148.559,154.81299999999999,161.06700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,117,1,136.4829,0.046039999999999998,6.2836999999999996,105.065,111.348,117.63200000000001,123.916,130.19900000000001,136.483,142.767,149.05000000000001,155.334,161.61799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,118,1,136.9153,0.046120000000000001,6.3144999999999998,105.343,111.657,117.97199999999999,124.286,130.601,136.91499999999999,143.22999999999999,149.54400000000001,155.85900000000001,162.173
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,119,1,137.34739999999999,0.046190000000000002,6.3441000000000001,105.627,111.971,118.315,124.65900000000001,131.00299999999999,137.34700000000001,143.691,150.036,156.38,162.72399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,120,1,137.77950000000001,0.046260000000000003,6.3737000000000004,105.911,112.285,118.658,125.032,131.40600000000001,137.78,144.15299999999999,150.52699999999999,156.90100000000001,163.274
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,121,1,138.21190000000001,0.046330000000000003,6.4034000000000004,106.19499999999999,112.598,119.002,125.405,131.809,138.21199999999999,144.61500000000001,151.01900000000001,157.422,163.82499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,122,1,138.64519999999999,0.046399999999999997,6.4330999999999996,106.48,112.913,119.346,125.779,132.21199999999999,138.64500000000001,145.078,151.511,157.94499999999999,164.37799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,123,1,139.0797,0.046469999999999997,6.4630000000000001,106.765,113.22799999999999,119.691,126.154,132.61699999999999,139.08000000000001,145.54300000000001,152.006,158.46899999999999,164.93199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,124,1,139.51580000000001,0.046539999999999998,6.4931000000000001,107.05,113.544,120.03700000000001,126.53,133.023,139.51599999999999,146.00899999999999,152.50200000000001,158.995,165.488
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,125,1,139.95400000000001,0.046609999999999999,6.5232999999999999,107.33799999999999,113.861,120.384,126.907,133.43100000000001,139.95400000000001,146.477,153.001,159.524,166.047
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,126,1,140.3948,0.046670000000000003,6.5522,107.634,114.18600000000001,120.738,127.29,133.84299999999999,140.39500000000001,146.947,153.499,160.05099999999999,166.60400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,127,1,140.83869999999999,0.046739999999999997,6.5827999999999998,107.925,114.50700000000001,121.09,127.673,134.256,140.839,147.422,154.00399999999999,160.58699999999999,167.17
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,128,1,141.2859,0.046800000000000001,6.6121999999999996,108.22499999999999,114.837,121.449,128.06200000000001,134.67400000000001,141.286,147.898,154.51,161.12200000000001,167.73500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,129,1,141.73679999999999,0.046859999999999999,6.6417999999999999,108.52800000000001,115.17,121.81100000000001,128.453,135.095,141.73699999999999,148.37899999999999,155.02000000000001,161.66200000000001,168.304
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,130,1,142.19159999999999,0.046920000000000003,6.6715999999999998,108.833,115.505,122.17700000000001,128.84800000000001,135.52000000000001,142.19200000000001,148.863,155.535,162.20599999999999,168.87799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,131,1,142.65010000000001,0.046980000000000001,6.7016999999999998,109.142,115.843,122.545,129.24700000000001,135.94800000000001,142.65,149.352,156.054,162.755,169.45699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,132,1,143.11259999999999,0.047030000000000002,6.7305999999999999,109.46,116.19,122.92100000000001,129.65100000000001,136.38200000000001,143.113,149.84299999999999,156.57400000000001,163.304,170.035
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,133,1,143.5795,0.04709,6.7611999999999997,109.774,116.535,123.29600000000001,130.05699999999999,136.81800000000001,143.58000000000001,150.34100000000001,157.102,163.863,170.624
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,134,1,144.05109999999999,0.047140000000000001,6.7906000000000004,110.098,116.889,123.679,130.47,137.261,144.05099999999999,150.84200000000001,157.63200000000001,164.423,171.21299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,135,1,144.52760000000001,0.047190000000000003,6.8202999999999996,110.426,117.247,124.06699999999999,130.887,137.70699999999999,144.52799999999999,151.34800000000001,158.16800000000001,164.988,171.809
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,136,1,145.0093,0.047230000000000001,6.8487999999999998,110.765,117.614,124.46299999999999,131.31200000000001,138.161,145.00899999999999,151.858,158.70699999999999,165.55600000000001,172.404
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,137,1,145.49639999999999,0.047280000000000003,6.8791000000000002,111.101,117.98,124.85899999999999,131.738,138.61699999999999,145.49600000000001,152.375,159.255,166.13399999999999,173.01300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,138,1,145.98910000000001,0.047320000000000001,6.9081999999999999,111.44799999999999,118.35599999999999,125.264,132.173,139.08099999999999,145.989,152.89699999999999,159.80600000000001,166.714,173.62200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,139,1,146.48779999999999,0.047359999999999999,6.9377000000000004,111.79900000000001,118.73699999999999,125.675,132.61199999999999,139.55000000000001,146.488,153.42500000000001,160.363,167.30099999999999,174.238
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,140,1,146.99270000000001,0.047399999999999998,6.9675000000000002,112.155,119.123,126.09,133.05799999999999,140.02500000000001,146.99299999999999,153.96,160.928,167.89500000000001,174.863
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,141,1,147.50409999999999,0.047440000000000003,6.9976000000000003,112.51600000000001,119.514,126.511,133.50899999999999,140.50700000000001,147.50399999999999,154.50200000000001,161.499,168.49700000000001,175.494
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,142,1,148.0224,0.047469999999999998,7.0266000000000002,112.889,119.916,126.943,133.96899999999999,140.99600000000001,148.02199999999999,155.04900000000001,162.07599999999999,169.102,176.12899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,143,1,148.5478,0.047500000000000001,7.056,113.268,120.324,127.38,134.43600000000001,141.49199999999999,148.548,155.60400000000001,162.66,169.71600000000001,176.77199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,144,1,149.08070000000001,0.047530000000000003,7.0857999999999999,113.652,120.73699999999999,127.82299999999999,134.90899999999999,141.995,149.08099999999999,156.167,163.25200000000001,170.33799999999999,177.42400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,145,1,149.62119999999999,0.047550000000000002,7.1144999999999996,114.04900000000001,121.163,128.27799999999999,135.392,142.50700000000001,149.62100000000001,156.73599999999999,163.85,170.965,178.07900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,146,1,150.1694,0.047579999999999997,7.1451000000000002,114.444,121.589,128.73400000000001,135.87899999999999,143.024,150.16900000000001,157.31399999999999,164.46,171.60499999999999,178.75
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,147,1,150.72559999999999,0.04759,7.173,114.86,122.033,129.20699999999999,136.38,143.553,150.726,157.899,165.072,172.245,179.41800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,148,1,151.28989999999999,0.04761,7.2028999999999996,115.27500000000001,122.47799999999999,129.68100000000001,136.88399999999999,144.08699999999999,151.29,158.49299999999999,165.696,172.899,180.102
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,149,1,151.8623,0.047620000000000003,7.2317,115.70399999999999,122.93600000000001,130.167,137.399,144.631,151.86199999999999,159.09399999999999,166.32599999999999,173.55699999999999,180.78899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,150,1,152.4425,0.047629999999999999,7.2607999999999997,116.13800000000001,123.399,130.66,137.92099999999999,145.18199999999999,152.44200000000001,159.703,166.964,174.22499999999999,181.48599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,151,1,153.02979999999999,0.047629999999999999,7.2888000000000002,116.586,123.875,131.16300000000001,138.452,145.74100000000001,153.03,160.31899999999999,167.607,174.89599999999999,182.185
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,152,1,153.6234,0.047640000000000002,7.3186,117.03,124.349,131.66800000000001,138.98599999999999,146.30500000000001,153.62299999999999,160.94200000000001,168.261,175.57900000000001,182.898
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,153,1,154.22229999999999,0.047629999999999999,7.3456000000000001,117.494,124.84,132.185,139.53100000000001,146.87700000000001,154.22200000000001,161.56800000000001,168.91399999999999,176.25899999999999,183.60499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,154,1,154.82579999999999,0.047629999999999999,7.3743999999999996,117.95399999999999,125.328,132.703,140.077,147.45099999999999,154.82599999999999,162.19999999999999,169.57499999999999,176.94900000000001,184.32300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,155,1,155.43289999999999,0.047620000000000003,7.4016999999999999,118.42400000000001,125.82599999999999,133.22800000000001,140.62899999999999,148.03100000000001,155.43299999999999,162.83500000000001,170.23599999999999,177.63800000000001,185.04
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,156,1,156.04259999999999,0.047600000000000003,7.4276,118.904,126.33199999999999,133.76,141.18700000000001,148.61500000000001,156.04300000000001,163.47,170.898,178.32499999999999,185.75299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,157,1,156.65389999999999,0.047579999999999997,7.4535999999999998,119.386,126.84,134.29300000000001,141.74700000000001,149.19999999999999,156.654,164.107,171.56100000000001,179.01499999999999,186.46799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,158,1,157.26599999999999,0.047559999999999998,7.4795999999999996,119.86799999999999,127.348,134.827,142.30699999999999,149.786,157.26599999999999,164.74600000000001,172.22499999999999,179.70500000000001,187.184
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,159,1,157.8775,0.047539999999999999,7.5054999999999996,120.35,127.85599999999999,135.36099999999999,142.86699999999999,150.37200000000001,157.87799999999999,165.38300000000001,172.88800000000001,180.39400000000001,187.899
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,160,1,158.4871,0.047509999999999997,7.5297000000000001,120.83799999999999,128.36799999999999,135.898,143.428,150.95699999999999,158.48699999999999,166.017,173.547,181.07599999999999,188.60599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,161,1,159.09370000000001,0.047469999999999998,7.5522,121.333,128.88499999999999,136.43700000000001,143.989,151.542,159.09399999999999,166.64599999999999,174.19800000000001,181.75,189.30199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,162,1,159.6962,0.047440000000000003,7.5759999999999996,121.816,129.392,136.96799999999999,144.54400000000001,152.12,159.696,167.27199999999999,174.84800000000001,182.42400000000001,190
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,163,1,160.29390000000001,0.047399999999999998,7.5979000000000001,122.304,129.90199999999999,137.5,145.09800000000001,152.696,160.29400000000001,167.892,175.49,183.08799999999999,190.68600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,164,1,160.8861,0.047350000000000003,7.6180000000000003,122.79600000000001,130.41399999999999,138.03200000000001,145.65,153.268,160.886,168.50399999999999,176.12200000000001,183.74,191.358
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,165,1,161.47200000000001,0.047300000000000002,7.6375999999999999,123.28400000000001,130.92099999999999,138.559,146.197,153.834,161.47200000000001,169.11,176.74700000000001,184.38499999999999,192.023
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,166,1,162.0505,0.04725,7.6569000000000003,123.76600000000001,131.423,139.08000000000001,146.73699999999999,154.39400000000001,162.05000000000001,169.70699999999999,177.364,185.02099999999999,192.678
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,167,1,162.6207,0.047199999999999999,7.6757,124.242,131.91800000000001,139.59399999999999,147.26900000000001,154.94499999999999,162.62100000000001,170.29599999999999,177.97200000000001,185.648,193.32300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,168,1,163.1816,0.047140000000000001,7.6924000000000001,124.72,132.41200000000001,140.10400000000001,147.797,155.489,163.18199999999999,170.874,178.566,186.25899999999999,193.95099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,169,1,163.7321,0.047070000000000001,7.7069000000000001,125.19799999999999,132.905,140.61099999999999,148.31800000000001,156.02500000000001,163.732,171.43899999999999,179.14599999999999,186.85300000000001,194.56
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,170,1,164.27170000000001,0.047010000000000003,7.7224000000000004,125.66,133.38200000000001,141.10400000000001,148.827,156.54900000000001,164.27199999999999,171.994,179.71700000000001,187.43899999999999,195.161
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,171,1,164.79939999999999,0.046940000000000003,7.7356999999999996,126.121,133.857,141.59200000000001,149.328,157.06399999999999,164.79900000000001,172.535,180.27099999999999,188.006,195.74199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,172,1,165.31450000000001,0.046870000000000002,7.7483000000000004,126.57299999999999,134.321,142.07,149.81800000000001,157.566,165.31399999999999,173.06299999999999,180.81100000000001,188.559,196.30799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,173,1,165.81649999999999,0.046789999999999998,7.7586000000000004,127.024,134.78200000000001,142.541,150.29900000000001,158.05799999999999,165.816,173.57499999999999,181.334,189.09200000000001,196.851
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,174,1,166.30500000000001,0.046710000000000002,7.7680999999999996,127.464,135.233,143.001,150.76900000000001,158.53700000000001,166.30500000000001,174.07300000000001,181.84100000000001,189.60900000000001,197.37700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,175,1,166.7799,0.046629999999999998,7.7769000000000004,127.895,135.672,143.44900000000001,151.226,159.00299999999999,166.78,174.55699999999999,182.334,190.11099999999999,197.88800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,176,1,167.2415,0.046550000000000001,7.7850999999999999,128.316,136.101,143.886,151.67099999999999,159.45599999999999,167.24199999999999,175.02699999999999,182.81200000000001,190.59700000000001,198.38200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,177,1,167.68989999999999,0.046460000000000001,7.7908999999999997,128.73599999999999,136.52600000000001,144.31700000000001,152.108,159.899,167.69,175.48099999999999,183.27199999999999,191.06299999999999,198.85300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,178,1,168.12549999999999,0.046370000000000001,7.7960000000000003,129.14599999999999,136.94200000000001,144.738,152.53399999999999,160.33000000000001,168.126,175.92099999999999,183.71700000000001,191.51300000000001,199.309
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,179,1,168.54820000000001,0.046280000000000002,7.8003999999999998,129.54599999999999,137.34700000000001,145.14699999999999,152.947,160.74799999999999,168.548,176.34899999999999,184.149,191.94900000000001,199.75
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,180,1,168.958,0.046190000000000002,7.8041999999999998,129.93700000000001,137.74100000000001,145.54499999999999,153.35,161.154,168.958,176.762,184.566,192.37100000000001,200.17500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,181,1,169.35489999999999,0.046089999999999999,7.8056000000000001,130.327,138.13300000000001,145.93799999999999,153.744,161.54900000000001,169.35499999999999,177.16,184.96600000000001,192.77199999999999,200.577
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,182,1,169.7389,0.045990000000000003,7.8063000000000002,130.70699999999999,138.51400000000001,146.32,154.126,161.93299999999999,169.739,177.54499999999999,185.351,193.15799999999999,200.964
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,183,1,170.10990000000001,0.04589,7.8063000000000002,131.078,138.88499999999999,146.691,154.49700000000001,162.304,170.11,177.916,185.72300000000001,193.529,201.33500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,184,1,170.46799999999999,0.045789999999999997,7.8056999999999999,131.43899999999999,139.245,147.05099999999999,154.857,162.66200000000001,170.46799999999999,178.274,186.07900000000001,193.88499999999999,201.691
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,185,1,170.81360000000001,0.045690000000000001,7.8045,131.791,139.596,147.4,155.20500000000001,163.00899999999999,170.81399999999999,178.61799999999999,186.423,194.227,202.03100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,186,1,171.14680000000001,0.045589999999999999,7.8026,132.13399999999999,139.93600000000001,147.739,155.542,163.34399999999999,171.14699999999999,178.94900000000001,186.75200000000001,194.55500000000001,202.357
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,187,1,171.46799999999999,0.04548,7.7984,132.476,140.27500000000001,148.07300000000001,155.87100000000001,163.66999999999999,171.46799999999999,179.26599999999999,187.065,194.863,202.661
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,188,1,171.7773,0.045379999999999997,7.7953000000000001,132.80099999999999,140.596,148.392,156.18700000000001,163.982,171.77699999999999,179.57300000000001,187.36799999999999,195.16300000000001,202.958
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,189,1,172.07480000000001,0.045269999999999998,7.7897999999999996,133.126,140.91499999999999,148.70500000000001,156.495,164.285,172.07499999999999,179.86500000000001,187.654,195.44399999999999,203.23400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,190,1,172.36060000000001,0.045159999999999999,7.7838000000000003,133.44200000000001,141.22499999999999,149.00899999999999,156.79300000000001,164.577,172.36099999999999,180.14400000000001,187.928,195.71199999999999,203.49600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,191,1,172.6345,0.045060000000000003,7.7789000000000001,133.74,141.51900000000001,149.298,157.077,164.85599999999999,172.63399999999999,180.41300000000001,188.19200000000001,195.971,203.75
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,192,1,172.89670000000001,0.044949999999999997,7.7717000000000001,134.03800000000001,141.81,149.58199999999999,157.35300000000001,165.125,172.89699999999999,180.66800000000001,188.44,196.21199999999999,203.98400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,193,1,173.14699999999999,0.044839999999999998,7.7638999999999996,134.327,142.09100000000001,149.85499999999999,157.619,165.38300000000001,173.14699999999999,180.911,188.67500000000001,196.43899999999999,204.203
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,194,1,173.38560000000001,0.044729999999999999,7.7554999999999996,134.608,142.363,150.119,157.875,165.63,173.386,181.14099999999999,188.89699999999999,196.65199999999999,204.40799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,195,1,173.61259999999999,0.04462,7.7465999999999999,134.88,142.626,150.37299999999999,158.119,165.86600000000001,173.613,181.35900000000001,189.10599999999999,196.852,204.59899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,196,1,173.828,0.044510000000000001,7.7370999999999999,135.143,142.88,150.61699999999999,158.35400000000001,166.09100000000001,173.828,181.565,189.30199999999999,197.03899999999999,204.77600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,197,1,174.03210000000001,0.044400000000000002,7.7270000000000003,135.39699999999999,143.124,150.851,158.578,166.30500000000001,174.03200000000001,181.75899999999999,189.48599999999999,197.21299999999999,204.94
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,198,1,174.2251,0.044290000000000003,7.7164000000000001,135.643,143.35900000000001,151.07599999999999,158.792,166.50899999999999,174.22499999999999,181.94200000000001,189.65799999999999,197.374,205.09100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,199,1,174.40710000000001,0.044179999999999997,7.7053000000000003,135.881,143.58600000000001,151.291,158.99600000000001,166.702,174.40700000000001,182.11199999999999,189.81800000000001,197.523,205.22800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,200,1,174.57839999999999,0.044069999999999998,7.6936999999999998,136.11000000000001,143.804,151.49700000000001,159.191,166.88499999999999,174.578,182.27199999999999,189.96600000000001,197.65899999999999,205.35300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,201,1,174.73920000000001,0.043959999999999999,7.6814999999999998,136.33199999999999,144.01300000000001,151.69499999999999,159.376,167.05799999999999,174.739,182.42099999999999,190.102,197.78399999999999,205.465
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,202,1,174.8896,0.04385,7.6688999999999998,136.54499999999999,144.214,151.88300000000001,159.55199999999999,167.221,174.89,182.559,190.227,197.89599999999999,205.565
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,203,1,175.0301,0.043749999999999997,7.6576000000000004,136.74199999999999,144.4,152.05699999999999,159.715,167.37299999999999,175.03,182.68799999999999,190.345,198.00299999999999,205.66
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,204,1,175.1609,0.043639999999999998,7.6440000000000001,136.941,144.58500000000001,152.22900000000001,159.87299999999999,167.517,175.161,182.80500000000001,190.44900000000001,198.09299999999999,205.73699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,205,1,175.2824,0.043529999999999999,7.63,137.13200000000001,144.762,152.392,160.02199999999999,167.65199999999999,175.28200000000001,182.91200000000001,190.542,198.173,205.803
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,206,1,175.39510000000001,0.043430000000000003,7.6173999999999999,137.30799999999999,144.92500000000001,152.54300000000001,160.16,167.77799999999999,175.39500000000001,183.01300000000001,190.63,198.24700000000001,205.86500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,207,1,175.49950000000001,0.043319999999999997,7.6025999999999998,137.48599999999999,145.089,152.69200000000001,160.29400000000001,167.89699999999999,175.5,183.102,190.70500000000001,198.30699999999999,205.91
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,208,1,175.5959,0.043220000000000001,7.5892999999999997,137.65,145.239,152.828,160.417,168.00700000000001,175.596,183.185,190.774,198.364,205.953
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,209,1,175.685,0.043110000000000002,7.5738000000000003,137.816,145.38999999999999,152.964,160.53700000000001,168.11099999999999,175.685,183.25899999999999,190.833,198.40600000000001,205.98
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,210,1,175.7672,0.04301,7.5597000000000003,137.96799999999999,145.52799999999999,153.08799999999999,160.648,168.20699999999999,175.767,183.327,190.887,198.446,206.006
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,211,1,175.8432,0.042909999999999997,7.5453999999999999,138.11600000000001,145.661,153.20699999999999,160.75200000000001,168.298,175.84299999999999,183.38900000000001,190.934,198.47900000000001,206.02500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,212,1,175.91329999999999,0.042810000000000001,7.5308000000000002,138.25899999999999,145.79,153.321,160.852,168.38200000000001,175.91300000000001,183.44399999999999,190.97499999999999,198.506,206.03700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,213,1,175.97810000000001,0.042709999999999998,7.516,138.398,145.91399999999999,153.43,160.946,168.46199999999999,175.97800000000001,183.494,191.01,198.52600000000001,206.042
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,214,1,176.03800000000001,0.042610000000000002,7.5010000000000003,138.53299999999999,146.03399999999999,153.535,161.036,168.53700000000001,176.03800000000001,183.53899999999999,191.04,198.541,206.042
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,215,1,176.09350000000001,0.042509999999999999,7.4856999999999996,138.66499999999999,146.15100000000001,153.636,161.12200000000001,168.608,176.09399999999999,183.57900000000001,191.065,198.55099999999999,206.036
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,216,1,176.14490000000001,0.042410000000000003,7.4702999999999999,138.79300000000001,146.26400000000001,153.73400000000001,161.20400000000001,168.67500000000001,176.14500000000001,183.61500000000001,191.08600000000001,198.55600000000001,206.02600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,217,1,176.1925,0.042320000000000003,7.4565000000000001,138.91,146.36699999999999,153.82300000000001,161.28,168.73599999999999,176.19200000000001,183.649,191.10499999999999,198.56200000000001,206.018
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,218,1,176.23679999999999,0.042220000000000001,7.4406999999999996,139.03299999999999,146.47399999999999,153.91499999999999,161.35499999999999,168.79599999999999,176.23699999999999,183.678,191.11799999999999,198.559,206
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,219,1,176.27789999999999,0.042130000000000001,7.4265999999999996,139.14500000000001,146.572,153.99799999999999,161.42500000000001,168.851,176.27799999999999,183.70400000000001,191.131,198.55799999999999,205.98400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,220,1,176.31620000000001,0.042040000000000001,7.4123000000000001,139.255,146.667,154.07900000000001,161.49199999999999,168.904,176.316,183.72900000000001,191.14099999999999,198.553,205.96600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,221,1,176.3518,0.041950000000000001,7.3979999999999997,139.36199999999999,146.76,154.15799999999999,161.55600000000001,168.95400000000001,176.352,183.75,191.148,198.54599999999999,205.94399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,222,1,176.38509999999999,0.041849999999999998,7.3817000000000004,139.477,146.858,154.24,161.62200000000001,169.00299999999999,176.38499999999999,183.767,191.149,198.53,205.91200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,223,1,176.4162,0.041770000000000002,7.3689,139.572,146.941,154.309,161.678,169.047,176.416,183.785,191.154,198.523,205.892
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,224,1,176.4453,0.041680000000000002,7.3541999999999996,139.67400000000001,147.02799999999999,154.38300000000001,161.73699999999999,169.09100000000001,176.44499999999999,183.8,191.154,198.50800000000001,205.86199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,225,1,176.47239999999999,0.041590000000000002,7.3395000000000001,139.77500000000001,147.114,154.45400000000001,161.79300000000001,169.13300000000001,176.47200000000001,183.81200000000001,191.15100000000001,198.49100000000001,205.83
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,226,1,176.49760000000001,0.041500000000000002,7.3247,139.874,147.19900000000001,154.524,161.84800000000001,169.173,176.49799999999999,183.822,191.14699999999999,198.47200000000001,205.79599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,227,1,176.52109999999999,0.041419999999999998,7.3114999999999997,139.964,147.27500000000001,154.58699999999999,161.898,169.21,176.52099999999999,183.833,191.14400000000001,198.45599999999999,205.767
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,228,1,176.54320000000001,0.041340000000000002,7.2983000000000002,140.05199999999999,147.35,154.648,161.947,169.245,176.54300000000001,183.84100000000001,191.14,198.43799999999999,205.73599999999999
Can't render this file because it has a wrong number of fields in line 80.

View File

@ -0,0 +1,118 @@
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,3,-0.2026,7.7846000000000002,0.18428,4.5999999999999996,5.5,6.5,7.8,9.4,11.4,14
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,4,-0.25769999999999998,7.5404999999999998,0.18429999999999999,4.5,5.3,6.3,7.5,9.1,11.1,13.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,5,-0.30199999999999999,7.3384,0.18428,4.4000000000000004,5.2,6.1,7.3,8.9,10.8,13.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,6,-0.33939999999999998,7.1637000000000004,0.18425,4.3,5.0999999999999996,6,7.2,8.6999999999999993,10.6,13.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,7,-0.37180000000000002,7.0118,0.18421000000000001,4.2,5,5.9,7,8.5,10.4,13
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,8,-0.40050000000000002,6.8807,0.18412000000000001,4.2,4.9000000000000004,5.8,6.9,8.3000000000000007,10.199999999999999,12.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,9,-0.42630000000000001,6.7679,0.18398999999999999,4.0999999999999996,4.8,5.7,6.8,8.1999999999999993,10.1,12.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,10,-0.44979999999999998,6.6707000000000001,0.18387000000000001,4.0999999999999996,4.7,5.6,6.7,8.1,10,12.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,11,-0.4713,6.5867000000000004,0.18381,4,4.7,5.5,6.6,8,9.9,12.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,12,-0.49120000000000003,6.5137999999999998,0.18382999999999999,4,4.5999999999999996,5.5,6.5,7.9,9.8000000000000007,12.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,13,-0.50980000000000003,6.4504999999999999,0.18393999999999999,4,4.5999999999999996,5.4,6.5,7.8,9.6999999999999993,12.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,14,-0.5272,6.3955000000000002,0.18415000000000001,3.9,4.5999999999999996,5.4,6.4,7.8,9.6,12.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,15,-0.54349999999999998,6.3474000000000004,0.18446000000000001,3.9,4.5,5.3,6.3,7.7,9.6,12.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,16,-0.55900000000000005,6.3055000000000003,0.18487000000000001,3.9,4.5,5.3,6.3,7.7,9.5,12.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,17,-0.5736,6.2689000000000004,0.18537999999999999,3.9,4.5,5.3,6.3,7.6,9.5,12.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,18,-0.58760000000000001,6.2373000000000003,0.18598000000000001,3.8,4.5,5.2,6.2,7.6,9.5,12.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,19,-0.60089999999999999,6.2100999999999997,0.18665999999999999,3.8,4.4000000000000004,5.2,6.2,7.6,9.5,12.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,20,-0.61360000000000003,6.1867999999999999,0.18740999999999999,3.8,4.4000000000000004,5.2,6.2,7.5,9.5,12.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,21,-0.62570000000000003,6.1669,0.18823000000000001,3.8,4.4000000000000004,5.2,6.2,7.5,9.5,12.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,22,-0.63739999999999997,6.15,0.18911,3.8,4.4000000000000004,5.0999999999999996,6.2,7.5,9.5,12.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,23,-0.64870000000000005,6.1355000000000004,0.19005,3.8,4.4000000000000004,5.0999999999999996,6.1,7.5,9.5,12.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,24,-0.65949999999999998,6.1231999999999998,0.19103999999999999,3.8,4.4000000000000004,5.0999999999999996,6.1,7.5,9.5,12.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,25,-0.67,6.1128999999999998,0.19206999999999999,3.8,4.3,5.0999999999999996,6.1,7.5,9.5,12.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,26,-0.68010000000000004,6.1040999999999999,0.19314999999999999,3.7,4.3,5.0999999999999996,6.1,7.5,9.6,12.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,27,-0.68989999999999996,6.0968,0.19425999999999999,3.7,4.3,5.0999999999999996,6.1,7.5,9.6,12.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,28,-0.69940000000000002,6.0904999999999996,0.19539999999999999,3.7,4.3,5.0999999999999996,6.1,7.5,9.6,13
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,29,-0.70860000000000001,6.0850999999999997,0.19656999999999999,3.7,4.3,5.0999999999999996,6.1,7.5,9.6,13.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,30,-0.71750000000000003,6.0805999999999996,0.19775999999999999,3.7,4.3,5.0999999999999996,6.1,7.5,9.6999999999999993,13.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,31,-0.72619999999999996,6.0766,0.19897999999999999,3.7,4.3,5,6.1,7.5,9.6999999999999993,13.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,32,-0.73470000000000002,6.0732999999999997,0.20021,3.7,4.3,5,6.1,7.5,9.8000000000000007,13.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,33,-0.7429,6.0705,0.20144999999999999,3.7,4.3,5,6.1,7.6,9.8000000000000007,13.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,34,-0.75090000000000001,6.0682999999999998,0.20269999999999999,3.7,4.3,5,6.1,7.6,9.8000000000000007,13.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,35,-0.75870000000000004,6.0664999999999996,0.20394999999999999,3.7,4.3,5,6.1,7.6,9.9,13.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,36,-0.76639999999999997,6.0651999999999999,0.20521,3.7,4.2,5,6.1,7.6,9.9,13.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,37,-0.77380000000000004,6.0643000000000002,0.20646999999999999,3.7,4.2,5,6.1,7.6,10,14.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,38,-0.78110000000000002,6.0636999999999999,0.20773,3.6,4.2,5,6.1,7.6,10,14.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,39,-0.78820000000000001,6.0632999999999999,0.20899000000000001,3.6,4.2,5,6.1,7.6,10.1,14.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,40,-0.79520000000000002,6.0632000000000001,0.21024000000000001,3.6,4.2,5,6.1,7.6,10.1,14.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,41,-0.80200000000000005,6.0632000000000001,0.21149000000000001,3.6,4.2,5,6.1,7.6,10.199999999999999,14.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,42,-0.80869999999999997,6.0633999999999997,0.21273,3.6,4.2,5,6.1,7.7,10.199999999999999,14.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,43,-0.81520000000000004,6.0636999999999999,0.21396000000000001,3.6,4.2,5,6.1,7.7,10.3,15
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,44,-0.82169999999999999,6.0640999999999998,0.21518000000000001,3.6,4.2,5,6.1,7.7,10.3,15.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,45,-0.82799999999999996,6.0647000000000002,0.21637999999999999,3.6,4.2,5,6.1,7.7,10.4,15.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,46,-0.83409999999999995,6.0652999999999997,0.21758,3.6,4.2,5,6.1,7.7,10.4,15.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,47,-0.84019999999999995,6.0660999999999996,0.21876000000000001,3.6,4.2,5,6.1,7.7,10.5,15.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,48,-0.84619999999999995,6.0669000000000004,0.21992999999999999,3.6,4.2,5,6.1,7.7,10.5,15.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,49,-0.85199999999999998,6.0678999999999998,0.22109000000000001,3.6,4.2,5,6.1,7.8,10.6,16.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,50,-0.85780000000000001,6.069,0.22223000000000001,3.6,4.2,5,6.1,7.8,10.6,16.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,51,-0.86339999999999995,6.0702999999999996,0.22334999999999999,3.6,4.2,4.9000000000000004,6.1,7.8,10.7,16.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,52,-0.86899999999999999,6.0716999999999999,0.22447,3.6,4.2,4.9000000000000004,6.1,7.8,10.7,16.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,53,-0.87450000000000006,6.0731999999999999,0.22556000000000001,3.6,4.2,4.9000000000000004,6.1,7.8,10.8,16.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,54,-0.87990000000000002,6.0747999999999998,0.22664000000000001,3.6,4.0999999999999996,4.9000000000000004,6.1,7.8,10.8,17.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,55,-0.88519999999999999,6.0765000000000002,0.22771,3.6,4.0999999999999996,4.9000000000000004,6.1,7.8,10.9,17.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,56,-0.89039999999999997,6.0784000000000002,0.22875999999999999,3.6,4.0999999999999996,4.9000000000000004,6.1,7.9,10.9,17.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,57,-0.89549999999999996,6.0803000000000003,0.22978999999999999,3.6,4.0999999999999996,4.9000000000000004,6.1,7.9,11,17.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,58,-0.90059999999999996,6.0823,0.23080999999999999,3.6,4.0999999999999996,4.9000000000000004,6.1,7.9,11,18
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,59,-0.90559999999999996,6.0843999999999996,0.23182,3.5,4.0999999999999996,4.9000000000000004,6.1,7.9,11.1,18.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,60,-0.91049999999999998,6.0865,0.23280000000000001,3.5,4.0999999999999996,4.9000000000000004,6.1,7.9,11.2,18.5
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,3,-0.30330000000000001,7.6898999999999997,0.17019999999999999,4.8,5.6,6.5,7.7,9.1999999999999993,11,13.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,4,-0.32779999999999998,7.4968000000000004,0.17097000000000001,4.7,5.4,6.3,7.5,8.9,10.8,13.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,5,-0.3503,7.3207000000000004,0.17166999999999999,4.5999999999999996,5.3,6.2,7.3,8.6999999999999993,10.6,12.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,6,-0.37119999999999997,7.1588000000000003,0.17232,4.5,5.2,6.1,7.2,8.6,10.4,12.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,7,-0.39090000000000003,7.0103999999999997,0.17293,4.4000000000000004,5.0999999999999996,5.9,7,8.4,10.199999999999999,12.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,8,-0.40970000000000001,6.8753000000000002,0.17352000000000001,4.3,5,5.8,6.9,8.1999999999999993,10,12.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,9,-0.42759999999999998,6.7530000000000001,0.17408000000000001,4.2,4.9000000000000004,5.7,6.8,8.1,9.8000000000000007,12.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,10,-0.44490000000000002,6.6428000000000003,0.17462,4.0999999999999996,4.8,5.6,6.6,8,9.6999999999999993,12.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,11,-0.46160000000000001,6.5442,0.17513999999999999,4.0999999999999996,4.7,5.5,6.5,7.9,9.6,11.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,12,-0.47770000000000001,6.4561999999999999,0.17563999999999999,4,4.7,5.5,6.5,7.8,9.5,11.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,13,-0.49340000000000001,6.3780000000000001,0.17613000000000001,4,4.5999999999999996,5.4,6.4,7.7,9.4,11.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,14,-0.50870000000000004,6.3085000000000004,0.17660000000000001,3.9,4.5999999999999996,5.3,6.3,7.6,9.3000000000000007,11.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,15,-0.52359999999999995,6.2468000000000004,0.17707000000000001,3.9,4.5,5.3,6.2,7.5,9.1999999999999993,11.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,16,-0.53810000000000002,6.1920999999999999,0.17752000000000001,3.9,4.5,5.2,6.2,7.5,9.1999999999999993,11.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,17,-0.5524,6.1435000000000004,0.17796999999999999,3.8,4.4000000000000004,5.2,6.1,7.4,9.1,11.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,18,-0.56630000000000003,6.1002999999999998,0.1784,3.8,4.4000000000000004,5.0999999999999996,6.1,7.4,9.1,11.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,19,-0.57999999999999996,6.0617000000000001,0.17882999999999999,3.8,4.4000000000000004,5.0999999999999996,6.1,7.3,9.1,11.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,20,-0.59340000000000004,6.0274000000000001,0.17924999999999999,3.8,4.4000000000000004,5.0999999999999996,6,7.3,9,11.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,21,-0.60660000000000003,5.9972000000000003,0.17965999999999999,3.8,4.3,5.0999999999999996,6,7.3,9,11.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,22,-0.61960000000000004,5.9706000000000001,0.18006,3.7,4.3,5,6,7.2,9,11.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,23,-0.63239999999999996,5.9470000000000001,0.18046000000000001,3.7,4.3,5,5.9,7.2,9,11.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,24,-0.64490000000000003,5.9257999999999997,0.18085000000000001,3.7,4.3,5,5.9,7.2,8.9,11.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,25,-0.6573,5.9066999999999998,0.18124000000000001,3.7,4.3,5,5.9,7.2,8.9,11.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,26,-0.66949999999999998,5.8891,0.18162,3.7,4.3,5,5.9,7.1,8.9,11.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,27,-0.68159999999999998,5.8728999999999996,0.18199000000000001,3.7,4.2,4.9000000000000004,5.9,7.1,8.9,11.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,28,-0.69350000000000001,5.8575999999999997,0.18237,3.7,4.2,4.9000000000000004,5.9,7.1,8.9,11.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,29,-0.70530000000000004,5.8430999999999997,0.18273,3.7,4.2,4.9000000000000004,5.8,7.1,8.9,11.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,30,-0.71689999999999998,5.8289999999999997,0.18309,3.7,4.2,4.9000000000000004,5.8,7.1,8.9,11.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,31,-0.72829999999999995,5.8150000000000004,0.18345,3.7,4.2,4.9000000000000004,5.8,7.1,8.9,11.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,32,-0.73970000000000002,5.8010999999999999,0.18381,3.7,4.2,4.9000000000000004,5.8,7.1,8.9,11.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,33,-0.75090000000000001,5.7869999999999999,0.18415999999999999,3.6,4.2,4.9000000000000004,5.8,7.1,8.9,11.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,34,-0.76200000000000001,5.7727000000000004,0.1845,3.6,4.2,4.9000000000000004,5.8,7,8.9,11.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,35,-0.77300000000000002,5.758,0.18484999999999999,3.6,4.2,4.8,5.8,7,8.9,11.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,36,-0.78390000000000004,5.7430000000000003,0.18518999999999999,3.6,4.0999999999999996,4.8,5.7,7,8.9,11.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,37,-0.79469999999999996,5.7278000000000002,0.18551999999999999,3.6,4.0999999999999996,4.8,5.7,7,8.9,11.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,38,-0.8054,5.7125000000000004,0.18584999999999999,3.6,4.0999999999999996,4.8,5.7,7,8.9,12
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,39,-0.81589999999999996,5.6970999999999998,0.18618000000000001,3.6,4.0999999999999996,4.8,5.7,7,8.9,12
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,40,-0.82640000000000002,5.6814999999999998,0.18651000000000001,3.6,4.0999999999999996,4.8,5.7,7,8.9,12
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,41,-0.83679999999999999,5.6657999999999999,0.18684000000000001,3.6,4.0999999999999996,4.8,5.7,6.9,8.9,12.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,42,-0.84709999999999996,5.65,0.18715999999999999,3.6,4.0999999999999996,4.7,5.6,6.9,8.9,12.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,43,-0.85740000000000005,5.6338999999999997,0.18748000000000001,3.6,4.0999999999999996,4.7,5.6,6.9,8.9,12.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,44,-0.86750000000000005,5.6173999999999999,0.18779000000000001,3.6,4.0999999999999996,4.7,5.6,6.9,8.8000000000000007,12.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,45,-0.87749999999999995,5.6006,0.18811,3.5,4,4.7,5.6,6.9,8.8000000000000007,12.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,46,-0.88749999999999996,5.5834000000000001,0.18842,3.5,4,4.7,5.6,6.9,8.8000000000000007,12.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,47,-0.89739999999999998,5.5659000000000001,0.18873000000000001,3.5,4,4.7,5.6,6.8,8.8000000000000007,12.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,48,-0.9073,5.5481999999999996,0.18903,3.5,4,4.7,5.5,6.8,8.8000000000000007,12.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,49,-0.91700000000000004,5.5303000000000004,0.18934000000000001,3.5,4,4.5999999999999996,5.5,6.8,8.8000000000000007,12.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,50,-0.92669999999999997,5.5125000000000002,0.18964,3.5,4,4.5999999999999996,5.5,6.8,8.8000000000000007,12.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,51,-0.93630000000000002,5.4947999999999997,0.18994,3.5,4,4.5999999999999996,5.5,6.8,8.8000000000000007,12.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,52,-0.94589999999999996,5.4774000000000003,0.19023999999999999,3.5,4,4.5999999999999996,5.5,6.8,8.8000000000000007,12.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,53,-0.95540000000000003,5.4606000000000003,0.19053,3.5,3.9,4.5999999999999996,5.5,6.7,8.8000000000000007,12.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,54,-0.96479999999999999,5.4443000000000001,0.19083,3.5,3.9,4.5999999999999996,5.4,6.7,8.8000000000000007,12.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,55,-0.97419999999999995,5.4287999999999998,0.19112000000000001,3.4,3.9,4.5999999999999996,5.4,6.7,8.8000000000000007,12.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,56,-0.98350000000000004,5.4139999999999997,0.19141,3.4,3.9,4.5,5.4,6.7,8.8000000000000007,12.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,57,-0.99280000000000002,5.4,0.19170000000000001,3.4,3.9,4.5,5.4,6.7,8.6999999999999993,12.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,58,-1.002,5.3868,0.19198999999999999,3.4,3.9,4.5,5.4,6.7,8.6999999999999993,12.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,59,-1.0111000000000001,5.3743999999999996,0.19227,3.4,3.9,4.5,5.4,6.7,8.6999999999999993,12.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,60,-1.0202,5.3628,0.19255,3.4,3.9,4.5,5.4,6.6,8.6999999999999993,12.8
1 source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
2 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 3 -0.2026 7.7846000000000002 0.18428 4.5999999999999996 5.5 6.5 7.8 9.4 11.4 14
3 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 4 -0.25769999999999998 7.5404999999999998 0.18429999999999999 4.5 5.3 6.3 7.5 9.1 11.1 13.7
4 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 5 -0.30199999999999999 7.3384 0.18428 4.4000000000000004 5.2 6.1 7.3 8.9 10.8 13.4
5 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 6 -0.33939999999999998 7.1637000000000004 0.18425 4.3 5.0999999999999996 6 7.2 8.6999999999999993 10.6 13.2
6 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 7 -0.37180000000000002 7.0118 0.18421000000000001 4.2 5 5.9 7 8.5 10.4 13
7 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 8 -0.40050000000000002 6.8807 0.18412000000000001 4.2 4.9000000000000004 5.8 6.9 8.3000000000000007 10.199999999999999 12.8
8 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 9 -0.42630000000000001 6.7679 0.18398999999999999 4.0999999999999996 4.8 5.7 6.8 8.1999999999999993 10.1 12.7
9 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 10 -0.44979999999999998 6.6707000000000001 0.18387000000000001 4.0999999999999996 4.7 5.6 6.7 8.1 10 12.6
10 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 11 -0.4713 6.5867000000000004 0.18381 4 4.7 5.5 6.6 8 9.9 12.5
11 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 12 -0.49120000000000003 6.5137999999999998 0.18382999999999999 4 4.5999999999999996 5.5 6.5 7.9 9.8000000000000007 12.4
12 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 13 -0.50980000000000003 6.4504999999999999 0.18393999999999999 4 4.5999999999999996 5.4 6.5 7.8 9.6999999999999993 12.3
13 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 14 -0.5272 6.3955000000000002 0.18415000000000001 3.9 4.5999999999999996 5.4 6.4 7.8 9.6 12.3
14 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 15 -0.54349999999999998 6.3474000000000004 0.18446000000000001 3.9 4.5 5.3 6.3 7.7 9.6 12.3
15 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 16 -0.55900000000000005 6.3055000000000003 0.18487000000000001 3.9 4.5 5.3 6.3 7.7 9.5 12.2
16 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 17 -0.5736 6.2689000000000004 0.18537999999999999 3.9 4.5 5.3 6.3 7.6 9.5 12.2
17 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 18 -0.58760000000000001 6.2373000000000003 0.18598000000000001 3.8 4.5 5.2 6.2 7.6 9.5 12.3
18 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 19 -0.60089999999999999 6.2100999999999997 0.18665999999999999 3.8 4.4000000000000004 5.2 6.2 7.6 9.5 12.3
19 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 20 -0.61360000000000003 6.1867999999999999 0.18740999999999999 3.8 4.4000000000000004 5.2 6.2 7.5 9.5 12.3
20 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 21 -0.62570000000000003 6.1669 0.18823000000000001 3.8 4.4000000000000004 5.2 6.2 7.5 9.5 12.4
21 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 22 -0.63739999999999997 6.15 0.18911 3.8 4.4000000000000004 5.0999999999999996 6.2 7.5 9.5 12.4
22 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 23 -0.64870000000000005 6.1355000000000004 0.19005 3.8 4.4000000000000004 5.0999999999999996 6.1 7.5 9.5 12.5
23 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 24 -0.65949999999999998 6.1231999999999998 0.19103999999999999 3.8 4.4000000000000004 5.0999999999999996 6.1 7.5 9.5 12.6
24 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 25 -0.67 6.1128999999999998 0.19206999999999999 3.8 4.3 5.0999999999999996 6.1 7.5 9.5 12.7
25 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 26 -0.68010000000000004 6.1040999999999999 0.19314999999999999 3.7 4.3 5.0999999999999996 6.1 7.5 9.6 12.8
26 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 27 -0.68989999999999996 6.0968 0.19425999999999999 3.7 4.3 5.0999999999999996 6.1 7.5 9.6 12.8
27 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 28 -0.69940000000000002 6.0904999999999996 0.19539999999999999 3.7 4.3 5.0999999999999996 6.1 7.5 9.6 13
28 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 29 -0.70860000000000001 6.0850999999999997 0.19656999999999999 3.7 4.3 5.0999999999999996 6.1 7.5 9.6 13.1
29 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 30 -0.71750000000000003 6.0805999999999996 0.19775999999999999 3.7 4.3 5.0999999999999996 6.1 7.5 9.6999999999999993 13.2
30 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 31 -0.72619999999999996 6.0766 0.19897999999999999 3.7 4.3 5 6.1 7.5 9.6999999999999993 13.3
31 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 32 -0.73470000000000002 6.0732999999999997 0.20021 3.7 4.3 5 6.1 7.5 9.8000000000000007 13.4
32 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 33 -0.7429 6.0705 0.20144999999999999 3.7 4.3 5 6.1 7.6 9.8000000000000007 13.5
33 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 34 -0.75090000000000001 6.0682999999999998 0.20269999999999999 3.7 4.3 5 6.1 7.6 9.8000000000000007 13.7
34 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 35 -0.75870000000000004 6.0664999999999996 0.20394999999999999 3.7 4.3 5 6.1 7.6 9.9 13.8
35 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 36 -0.76639999999999997 6.0651999999999999 0.20521 3.7 4.2 5 6.1 7.6 9.9 13.9
36 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 37 -0.77380000000000004 6.0643000000000002 0.20646999999999999 3.7 4.2 5 6.1 7.6 10 14.1
37 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 38 -0.78110000000000002 6.0636999999999999 0.20773 3.6 4.2 5 6.1 7.6 10 14.2
38 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 39 -0.78820000000000001 6.0632999999999999 0.20899000000000001 3.6 4.2 5 6.1 7.6 10.1 14.4
39 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 40 -0.79520000000000002 6.0632000000000001 0.21024000000000001 3.6 4.2 5 6.1 7.6 10.1 14.6
40 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 41 -0.80200000000000005 6.0632000000000001 0.21149000000000001 3.6 4.2 5 6.1 7.6 10.199999999999999 14.7
41 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 42 -0.80869999999999997 6.0633999999999997 0.21273 3.6 4.2 5 6.1 7.7 10.199999999999999 14.9
42 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 43 -0.81520000000000004 6.0636999999999999 0.21396000000000001 3.6 4.2 5 6.1 7.7 10.3 15
43 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 44 -0.82169999999999999 6.0640999999999998 0.21518000000000001 3.6 4.2 5 6.1 7.7 10.3 15.2
44 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 45 -0.82799999999999996 6.0647000000000002 0.21637999999999999 3.6 4.2 5 6.1 7.7 10.4 15.4
45 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 46 -0.83409999999999995 6.0652999999999997 0.21758 3.6 4.2 5 6.1 7.7 10.4 15.6
46 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 47 -0.84019999999999995 6.0660999999999996 0.21876000000000001 3.6 4.2 5 6.1 7.7 10.5 15.7
47 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 48 -0.84619999999999995 6.0669000000000004 0.21992999999999999 3.6 4.2 5 6.1 7.7 10.5 15.9
48 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 49 -0.85199999999999998 6.0678999999999998 0.22109000000000001 3.6 4.2 5 6.1 7.8 10.6 16.100000000000001
49 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 50 -0.85780000000000001 6.069 0.22223000000000001 3.6 4.2 5 6.1 7.8 10.6 16.3
50 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 51 -0.86339999999999995 6.0702999999999996 0.22334999999999999 3.6 4.2 4.9000000000000004 6.1 7.8 10.7 16.5
51 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 52 -0.86899999999999999 6.0716999999999999 0.22447 3.6 4.2 4.9000000000000004 6.1 7.8 10.7 16.7
52 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 53 -0.87450000000000006 6.0731999999999999 0.22556000000000001 3.6 4.2 4.9000000000000004 6.1 7.8 10.8 16.899999999999999
53 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 54 -0.87990000000000002 6.0747999999999998 0.22664000000000001 3.6 4.0999999999999996 4.9000000000000004 6.1 7.8 10.8 17.100000000000001
54 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 55 -0.88519999999999999 6.0765000000000002 0.22771 3.6 4.0999999999999996 4.9000000000000004 6.1 7.8 10.9 17.3
55 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 56 -0.89039999999999997 6.0784000000000002 0.22875999999999999 3.6 4.0999999999999996 4.9000000000000004 6.1 7.9 10.9 17.600000000000001
56 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 57 -0.89549999999999996 6.0803000000000003 0.22978999999999999 3.6 4.0999999999999996 4.9000000000000004 6.1 7.9 11 17.8
57 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 58 -0.90059999999999996 6.0823 0.23080999999999999 3.6 4.0999999999999996 4.9000000000000004 6.1 7.9 11 18
58 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 59 -0.90559999999999996 6.0843999999999996 0.23182 3.5 4.0999999999999996 4.9000000000000004 6.1 7.9 11.1 18.2
59 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 60 -0.91049999999999998 6.0865 0.23280000000000001 3.5 4.0999999999999996 4.9000000000000004 6.1 7.9 11.2 18.5
60 source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
61 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 3 -0.30330000000000001 7.6898999999999997 0.17019999999999999 4.8 5.6 6.5 7.7 9.1999999999999993 11 13.4
62 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 4 -0.32779999999999998 7.4968000000000004 0.17097000000000001 4.7 5.4 6.3 7.5 8.9 10.8 13.1
63 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 5 -0.3503 7.3207000000000004 0.17166999999999999 4.5999999999999996 5.3 6.2 7.3 8.6999999999999993 10.6 12.9
64 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 6 -0.37119999999999997 7.1588000000000003 0.17232 4.5 5.2 6.1 7.2 8.6 10.4 12.7
65 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 7 -0.39090000000000003 7.0103999999999997 0.17293 4.4000000000000004 5.0999999999999996 5.9 7 8.4 10.199999999999999 12.5
66 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 8 -0.40970000000000001 6.8753000000000002 0.17352000000000001 4.3 5 5.8 6.9 8.1999999999999993 10 12.3
67 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 9 -0.42759999999999998 6.7530000000000001 0.17408000000000001 4.2 4.9000000000000004 5.7 6.8 8.1 9.8000000000000007 12.2
68 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 10 -0.44490000000000002 6.6428000000000003 0.17462 4.0999999999999996 4.8 5.6 6.6 8 9.6999999999999993 12.1
69 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 11 -0.46160000000000001 6.5442 0.17513999999999999 4.0999999999999996 4.7 5.5 6.5 7.9 9.6 11.9
70 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 12 -0.47770000000000001 6.4561999999999999 0.17563999999999999 4 4.7 5.5 6.5 7.8 9.5 11.8
71 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 13 -0.49340000000000001 6.3780000000000001 0.17613000000000001 4 4.5999999999999996 5.4 6.4 7.7 9.4 11.8
72 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 14 -0.50870000000000004 6.3085000000000004 0.17660000000000001 3.9 4.5999999999999996 5.3 6.3 7.6 9.3000000000000007 11.7
73 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 15 -0.52359999999999995 6.2468000000000004 0.17707000000000001 3.9 4.5 5.3 6.2 7.5 9.1999999999999993 11.6
74 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 16 -0.53810000000000002 6.1920999999999999 0.17752000000000001 3.9 4.5 5.2 6.2 7.5 9.1999999999999993 11.6
75 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 17 -0.5524 6.1435000000000004 0.17796999999999999 3.8 4.4000000000000004 5.2 6.1 7.4 9.1 11.6
76 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 18 -0.56630000000000003 6.1002999999999998 0.1784 3.8 4.4000000000000004 5.0999999999999996 6.1 7.4 9.1 11.5
77 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 19 -0.57999999999999996 6.0617000000000001 0.17882999999999999 3.8 4.4000000000000004 5.0999999999999996 6.1 7.3 9.1 11.5
78 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 20 -0.59340000000000004 6.0274000000000001 0.17924999999999999 3.8 4.4000000000000004 5.0999999999999996 6 7.3 9 11.5
79 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 21 -0.60660000000000003 5.9972000000000003 0.17965999999999999 3.8 4.3 5.0999999999999996 6 7.3 9 11.5
80 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 22 -0.61960000000000004 5.9706000000000001 0.18006 3.7 4.3 5 6 7.2 9 11.5
81 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 23 -0.63239999999999996 5.9470000000000001 0.18046000000000001 3.7 4.3 5 5.9 7.2 9 11.5
82 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 24 -0.64490000000000003 5.9257999999999997 0.18085000000000001 3.7 4.3 5 5.9 7.2 8.9 11.6
83 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 25 -0.6573 5.9066999999999998 0.18124000000000001 3.7 4.3 5 5.9 7.2 8.9 11.6
84 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 26 -0.66949999999999998 5.8891 0.18162 3.7 4.3 5 5.9 7.1 8.9 11.6
85 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 27 -0.68159999999999998 5.8728999999999996 0.18199000000000001 3.7 4.2 4.9000000000000004 5.9 7.1 8.9 11.6
86 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 28 -0.69350000000000001 5.8575999999999997 0.18237 3.7 4.2 4.9000000000000004 5.9 7.1 8.9 11.7
87 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 29 -0.70530000000000004 5.8430999999999997 0.18273 3.7 4.2 4.9000000000000004 5.8 7.1 8.9 11.7
88 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 30 -0.71689999999999998 5.8289999999999997 0.18309 3.7 4.2 4.9000000000000004 5.8 7.1 8.9 11.7
89 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 31 -0.72829999999999995 5.8150000000000004 0.18345 3.7 4.2 4.9000000000000004 5.8 7.1 8.9 11.7
90 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 32 -0.73970000000000002 5.8010999999999999 0.18381 3.7 4.2 4.9000000000000004 5.8 7.1 8.9 11.8
91 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 33 -0.75090000000000001 5.7869999999999999 0.18415999999999999 3.6 4.2 4.9000000000000004 5.8 7.1 8.9 11.8
92 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 34 -0.76200000000000001 5.7727000000000004 0.1845 3.6 4.2 4.9000000000000004 5.8 7 8.9 11.8
93 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 35 -0.77300000000000002 5.758 0.18484999999999999 3.6 4.2 4.8 5.8 7 8.9 11.9
94 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 36 -0.78390000000000004 5.7430000000000003 0.18518999999999999 3.6 4.0999999999999996 4.8 5.7 7 8.9 11.9
95 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 37 -0.79469999999999996 5.7278000000000002 0.18551999999999999 3.6 4.0999999999999996 4.8 5.7 7 8.9 11.9
96 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 38 -0.8054 5.7125000000000004 0.18584999999999999 3.6 4.0999999999999996 4.8 5.7 7 8.9 12
97 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 39 -0.81589999999999996 5.6970999999999998 0.18618000000000001 3.6 4.0999999999999996 4.8 5.7 7 8.9 12
98 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 40 -0.82640000000000002 5.6814999999999998 0.18651000000000001 3.6 4.0999999999999996 4.8 5.7 7 8.9 12
99 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 41 -0.83679999999999999 5.6657999999999999 0.18684000000000001 3.6 4.0999999999999996 4.8 5.7 6.9 8.9 12.1
100 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 42 -0.84709999999999996 5.65 0.18715999999999999 3.6 4.0999999999999996 4.7 5.6 6.9 8.9 12.1
101 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 43 -0.85740000000000005 5.6338999999999997 0.18748000000000001 3.6 4.0999999999999996 4.7 5.6 6.9 8.9 12.1
102 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 44 -0.86750000000000005 5.6173999999999999 0.18779000000000001 3.6 4.0999999999999996 4.7 5.6 6.9 8.8000000000000007 12.2
103 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 45 -0.87749999999999995 5.6006 0.18811 3.5 4 4.7 5.6 6.9 8.8000000000000007 12.2
104 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 46 -0.88749999999999996 5.5834000000000001 0.18842 3.5 4 4.7 5.6 6.9 8.8000000000000007 12.2
105 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 47 -0.89739999999999998 5.5659000000000001 0.18873000000000001 3.5 4 4.7 5.6 6.8 8.8000000000000007 12.3
106 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 48 -0.9073 5.5481999999999996 0.18903 3.5 4 4.7 5.5 6.8 8.8000000000000007 12.3
107 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 49 -0.91700000000000004 5.5303000000000004 0.18934000000000001 3.5 4 4.5999999999999996 5.5 6.8 8.8000000000000007 12.3
108 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 50 -0.92669999999999997 5.5125000000000002 0.18964 3.5 4 4.5999999999999996 5.5 6.8 8.8000000000000007 12.4
109 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 51 -0.93630000000000002 5.4947999999999997 0.18994 3.5 4 4.5999999999999996 5.5 6.8 8.8000000000000007 12.4
110 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 52 -0.94589999999999996 5.4774000000000003 0.19023999999999999 3.5 4 4.5999999999999996 5.5 6.8 8.8000000000000007 12.4
111 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 53 -0.95540000000000003 5.4606000000000003 0.19053 3.5 3.9 4.5999999999999996 5.5 6.7 8.8000000000000007 12.5
112 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 54 -0.96479999999999999 5.4443000000000001 0.19083 3.5 3.9 4.5999999999999996 5.4 6.7 8.8000000000000007 12.5
113 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 55 -0.97419999999999995 5.4287999999999998 0.19112000000000001 3.4 3.9 4.5999999999999996 5.4 6.7 8.8000000000000007 12.6
114 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 56 -0.98350000000000004 5.4139999999999997 0.19141 3.4 3.9 4.5 5.4 6.7 8.8000000000000007 12.6
115 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 57 -0.99280000000000002 5.4 0.19170000000000001 3.4 3.9 4.5 5.4 6.7 8.6999999999999993 12.7
116 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 58 -1.002 5.3868 0.19198999999999999 3.4 3.9 4.5 5.4 6.7 8.6999999999999993 12.7
117 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 59 -1.0111000000000001 5.3743999999999996 0.19227 3.4 3.9 4.5 5.4 6.7 8.6999999999999993 12.8
118 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 60 -1.0202 5.3628 0.19255 3.4 3.9 4.5 5.4 6.6 8.6999999999999993 12.8

View File

@ -0,0 +1,118 @@
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,3,0.1875,9.7515999999999998,0.17535000000000001,5.6,6.8,8.1999999999999993,9.8000000000000007,11.6,13.7,16.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,4,0.12559999999999999,9.5866000000000007,0.18337000000000001,5.4,6.6,8,9.6,11.5,13.7,16.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,5,0.076100000000000001,9.3716000000000008,0.19006999999999999,5.2,6.4,7.7,9.4,11.3,13.6,16.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,6,0.0349,9.1194000000000006,0.19539999999999999,5,6.2,7.5,9.1,11.1,13.4,16.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,7,-0.00029999999999999997,8.8620999999999999,0.19933999999999999,4.9000000000000004,5.9,7.3,8.9,10.8,13.2,16.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,8,-0.030700000000000002,8.6227999999999998,0.20191999999999999,4.7,5.8,7.1,8.6,10.6,12.9,15.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,9,-0.057200000000000001,8.4163999999999994,0.20338999999999999,4.5999999999999996,5.6,6.9,8.4,10.3,12.7,15.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,10,-0.079899999999999999,8.2468000000000004,0.20413000000000001,4.5,5.5,6.7,8.1999999999999993,10.1,12.5,15.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,11,-0.099500000000000005,8.1113999999999997,0.20441999999999999,4.5,5.4,6.6,8.1,10,12.3,15.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,12,-0.11609999999999999,8.0042000000000009,0.20444999999999999,4.4000000000000004,5.4,6.5,8,9.8000000000000007,12.2,15.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,13,-0.1303,7.9196999999999997,0.20432,4.4000000000000004,5.3,6.5,7.9,9.6999999999999993,12.1,15
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,14,-0.1424,7.8537999999999997,0.20408999999999999,4.4000000000000004,5.3,6.4,7.9,9.6999999999999993,12,14.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,15,-0.1527,7.8041,0.20383999999999999,4.3,5.3,6.4,7.8,9.6,11.9,14.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,16,-0.1615,7.7680999999999996,0.20363000000000001,4.3,5.2,6.4,7.8,9.6,11.8,14.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,17,-0.16900000000000001,7.7443,0.20349999999999999,4.3,5.2,6.3,7.7,9.5,11.8,14.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,18,-0.17549999999999999,7.7314999999999996,0.20349999999999999,4.3,5.2,6.3,7.7,9.5,11.8,14.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,19,-0.18110000000000001,7.7286999999999999,0.20363999999999999,4.3,5.2,6.3,7.7,9.5,11.8,14.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,20,-0.18590000000000001,7.7347000000000001,0.20393,4.3,5.2,6.3,7.7,9.5,11.8,14.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,21,-0.19009999999999999,7.7484000000000002,0.20437,4.3,5.2,6.3,7.7,9.5,11.9,14.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,22,-0.19389999999999999,7.7691999999999997,0.20496,4.3,5.2,6.4,7.8,9.6,11.9,15
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,23,-0.1973,7.7957999999999998,0.20568,4.4000000000000004,5.2,6.4,7.8,9.6,12,15.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,24,-0.20039999999999999,7.8273000000000001,0.20652000000000001,4.4000000000000004,5.3,6.4,7.8,9.6999999999999993,12,15.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,25,-0.20319999999999999,7.8628,0.20748,4.4000000000000004,5.3,6.4,7.9,9.6999999999999993,12.1,15.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,26,-0.20580000000000001,7.9005999999999998,0.20855000000000001,4.4000000000000004,5.3,6.4,7.9,9.8000000000000007,12.2,15.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,27,-0.20810000000000001,7.9396000000000004,0.20971000000000001,4.4000000000000004,5.3,6.5,7.9,9.8000000000000007,12.3,15.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,28,-0.21029999999999999,7.9786000000000001,0.21096000000000001,4.4000000000000004,5.3,6.5,8,9.9,12.4,15.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,29,-0.2122,8.0167000000000002,0.21228,4.4000000000000004,5.3,6.5,8,10,12.5,15.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,30,-0.214,8.0534999999999997,0.21365999999999999,4.4000000000000004,5.4,6.5,8.1,10,12.6,16
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,31,-0.2155,8.0886999999999993,0.21509,4.4000000000000004,5.4,6.6,8.1,10.1,12.7,16.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,32,-0.217,8.1224000000000007,0.21657000000000001,4.4000000000000004,5.4,6.6,8.1,10.1,12.8,16.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,33,-0.21829999999999999,8.1545000000000005,0.21809000000000001,4.4000000000000004,5.4,6.6,8.1999999999999993,10.199999999999999,12.9,16.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,34,-0.2195,8.1854999999999993,0.21964,4.4000000000000004,5.4,6.6,8.1999999999999993,10.3,13,16.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,35,-0.22070000000000001,8.2156000000000002,0.22122,4.4000000000000004,5.4,6.6,8.1999999999999993,10.3,13.1,16.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,36,-0.22170000000000001,8.2449999999999992,0.22281999999999999,4.4000000000000004,5.4,6.6,8.1999999999999993,10.4,13.2,17
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,37,-0.22270000000000001,8.2737999999999996,0.22444,4.4000000000000004,5.4,6.6,8.3000000000000007,10.4,13.3,17.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,38,-0.22370000000000001,8.3018999999999998,0.22608,4.4000000000000004,5.4,6.7,8.3000000000000007,10.5,13.4,17.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,39,-0.22459999999999999,8.3293999999999997,0.22772000000000001,4.4000000000000004,5.4,6.7,8.3000000000000007,10.5,13.5,17.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,40,-0.22539999999999999,8.3559999999999999,0.22936999999999999,4.4000000000000004,5.4,6.7,8.4,10.6,13.6,17.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,41,-0.22620000000000001,8.3818000000000001,0.23100999999999999,4.4000000000000004,5.4,6.7,8.4,10.6,13.7,17.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,42,-0.22700000000000001,8.4068000000000005,0.23264000000000001,4.4000000000000004,5.4,6.7,8.4,10.7,13.7,18
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,43,-0.2278,8.4311000000000007,0.23427000000000001,4.4000000000000004,5.4,6.7,8.4,10.7,13.8,18.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,44,-0.22850000000000001,8.4550000000000001,0.23587,4.4000000000000004,5.4,6.7,8.5,10.8,13.9,18.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,45,-0.22919999999999999,8.4786000000000001,0.23746999999999999,4.4000000000000004,5.4,6.7,8.5,10.8,14,18.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,46,-0.2298,8.5018999999999991,0.23904,4.4000000000000004,5.4,6.7,8.5,10.9,14.1,18.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,47,-0.23039999999999999,8.5250000000000004,0.24060000000000001,4.4000000000000004,5.4,6.7,8.5,10.9,14.2,18.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,48,-0.23100000000000001,8.5480999999999998,0.24215,4.4000000000000004,5.4,6.8,8.5,11,14.3,18.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,49,-0.2316,8.5710999999999995,0.24367,4.4000000000000004,5.4,6.8,8.6,11,14.4,19.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,50,-0.2321,8.5942000000000007,0.24517,4.4000000000000004,5.4,6.8,8.6,11.1,14.5,19.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,51,-0.2326,8.6173999999999999,0.24665000000000001,4.4000000000000004,5.4,6.8,8.6,11.1,14.6,19.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,52,-0.2331,8.6405999999999992,0.24811,4.3,5.4,6.8,8.6,11.2,14.6,19.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,53,-0.2336,8.6640999999999995,0.24954000000000001,4.3,5.4,6.8,8.6999999999999993,11.2,14.7,19.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,54,-0.2341,8.6875999999999998,0.25095000000000001,4.3,5.4,6.8,8.6999999999999993,11.3,14.8,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,55,-0.2346,8.7111999999999998,0.25233,4.3,5.4,6.8,8.6999999999999993,11.3,14.9,20
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,56,-0.23499999999999999,8.7348999999999997,0.25369000000000003,4.3,5.4,6.8,8.6999999999999993,11.3,15,20.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,57,-0.23549999999999999,8.7585999999999995,0.25502000000000002,4.3,5.4,6.8,8.8000000000000007,11.4,15.1,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,58,-0.2359,8.7824000000000009,0.25633,4.3,5.4,6.8,8.8000000000000007,11.4,15.2,20.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,59,-0.23630000000000001,8.8061000000000007,0.25761000000000001,4.3,5.4,6.9,8.8000000000000007,11.5,15.3,20.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,60,-0.23680000000000001,8.8298000000000005,0.25886999999999999,4.3,5.4,6.9,8.8000000000000007,11.5,15.3,20.8
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,3,0.0027000000000000001,9.7638999999999996,0.16617999999999999,5.9,7,8.3000000000000007,9.8000000000000007,11.5,13.6,16.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,4,-0.016500000000000001,9.5839999999999996,0.17263999999999999,5.7,6.8,8.1,9.6,11.4,13.5,16.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,5,-0.032599999999999997,9.3885000000000005,0.17824000000000001,5.5,6.6,7.9,9.4,11.2,13.4,16.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,6,-0.046600000000000003,9.1729000000000003,0.18304000000000001,5.3,6.4,7.6,9.1999999999999993,11,13.3,16
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,7,-0.058999999999999997,8.9535,0.18684999999999999,5.2,6.2,7.4,9,10.8,13.1,15.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,8,-0.070300000000000001,8.7434999999999992,0.18967999999999999,5,6,7.2,8.6999999999999993,10.6,12.8,15.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,9,-0.080600000000000005,8.5518000000000001,0.19166,4.9000000000000004,5.9,7.1,8.6,10.4,12.6,15.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,10,-0.0901,8.3811999999999998,0.193,4.8,5.7,6.9,8.4,10.199999999999999,12.4,15.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,11,-0.099000000000000005,8.2323000000000004,0.19389000000000001,4.7,5.6,6.8,8.1999999999999993,10,12.2,15
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,12,-0.10730000000000001,8.1041000000000007,0.19453000000000001,4.5999999999999996,5.5,6.7,8.1,9.9,12.1,14.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,13,-0.1152,7.9958,0.19506000000000001,4.5,5.5,6.6,8,9.6999999999999993,11.9,14.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,14,-0.1227,7.9063999999999997,0.19558,4.5,5.4,6.5,7.9,9.6,11.8,14.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,15,-0.12970000000000001,7.8345000000000002,0.19611999999999999,4.4000000000000004,5.3,6.5,7.8,9.6,11.7,14.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,16,-0.13650000000000001,7.7781000000000002,0.19667999999999999,4.4000000000000004,5.3,6.4,7.8,9.5,11.7,14.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,17,-0.14299999999999999,7.7351000000000001,0.19728000000000001,4.4000000000000004,5.3,6.4,7.7,9.4,11.6,14.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,18,-0.1492,7.7035999999999998,0.19792999999999999,4.4000000000000004,5.2,6.3,7.7,9.4,11.6,14.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,19,-0.1552,7.6821000000000002,0.19861999999999999,4.3,5.2,6.3,7.7,9.4,11.6,14.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,20,-0.16089999999999999,7.6696999999999997,0.19936999999999999,4.3,5.2,6.3,7.7,9.4,11.6,14.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,21,-0.16650000000000001,7.6651999999999996,0.20018,4.3,5.2,6.3,7.7,9.4,11.6,14.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,22,-0.1719,7.6675000000000004,0.20105000000000001,4.3,5.2,6.3,7.7,9.4,11.6,14.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,23,-0.17710000000000001,7.6749999999999998,0.20196,4.3,5.2,6.3,7.7,9.4,11.7,14.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,24,-0.18210000000000001,7.6863000000000001,0.20293,4.3,5.2,6.3,7.7,9.5,11.7,14.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,25,-0.187,7.7003000000000004,0.20394000000000001,4.3,5.2,6.3,7.7,9.5,11.8,14.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,26,-0.1918,7.7156000000000002,0.20497000000000001,4.3,5.2,6.3,7.7,9.5,11.8,14.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,27,-0.19650000000000001,7.7312000000000003,0.20602999999999999,4.3,5.2,6.3,7.7,9.5,11.9,14.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,28,-0.20100000000000001,7.7462999999999997,0.20710000000000001,4.3,5.2,6.3,7.7,9.6,11.9,15
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,29,-0.2054,7.7602000000000002,0.20818,4.3,5.2,6.3,7.8,9.6,12,15.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,30,-0.2097,7.7725999999999997,0.20927999999999999,4.3,5.2,6.3,7.8,9.6,12,15.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,31,-0.21390000000000001,7.7831999999999999,0.21038999999999999,4.3,5.2,6.3,7.8,9.6999999999999993,12.1,15.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,32,-0.218,7.7919999999999998,0.21153,4.3,5.2,6.3,7.8,9.6999999999999993,12.1,15.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,33,-0.22209999999999999,7.7988999999999997,0.21268999999999999,4.3,5.2,6.3,7.8,9.6999999999999993,12.2,15.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,34,-0.22600000000000001,7.8040000000000003,0.21389,4.3,5.2,6.3,7.8,9.6999999999999993,12.2,15.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,35,-0.22989999999999999,7.8074000000000003,0.21512999999999999,4.3,5.2,6.3,7.8,9.6999999999999993,12.3,15.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,36,-0.2336,7.8094000000000001,0.21640999999999999,4.3,5.2,6.3,7.8,9.8000000000000007,12.3,15.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,37,-0.2374,7.8101000000000003,0.21773000000000001,4.3,5.2,6.3,7.8,9.8000000000000007,12.4,15.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,38,-0.24099999999999999,7.8095999999999997,0.21909000000000001,4.2,5.0999999999999996,6.3,7.8,9.8000000000000007,12.4,16
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,39,-0.24460000000000001,7.8079999999999998,0.22048999999999999,4.2,5.0999999999999996,6.3,7.8,9.8000000000000007,12.5,16.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,40,-0.24809999999999999,7.8051000000000004,0.22194,4.2,5.0999999999999996,6.3,7.8,9.8000000000000007,12.5,16.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,41,-0.2515,7.8009000000000004,0.22342999999999999,4.2,5.0999999999999996,6.3,7.8,9.8000000000000007,12.5,16.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,42,-0.25490000000000002,7.7953999999999999,0.22495999999999999,4.2,5.0999999999999996,6.3,7.8,9.8000000000000007,12.6,16.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,43,-0.25829999999999997,7.7885,0.22653000000000001,4.2,5.0999999999999996,6.2,7.8,9.8000000000000007,12.6,16.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,44,-0.2616,7.7804000000000002,0.22813,4.0999999999999996,5.0999999999999996,6.2,7.8,9.8000000000000007,12.6,16.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,45,-0.26479999999999998,7.7709999999999999,0.22975000000000001,4.0999999999999996,5,6.2,7.8,9.8000000000000007,12.7,16.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,46,-0.26800000000000002,7.7605000000000004,0.23139999999999999,4.0999999999999996,5,6.2,7.8,9.9,12.7,16.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,47,-0.27110000000000001,7.7488999999999999,0.23305999999999999,4.0999999999999996,5,6.2,7.7,9.9,12.8,16.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,48,-0.2742,7.7363999999999997,0.23472999999999999,4.0999999999999996,5,6.2,7.7,9.9,12.8,16.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,49,-0.2772,7.7233000000000001,0.23641999999999999,4,5,6.1,7.7,9.9,12.8,17
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,50,-0.2802,7.7096,0.23810999999999999,4,4.9000000000000004,6.1,7.7,9.9,12.9,17.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,51,-0.28320000000000001,7.6955,0.23981,4,4.9000000000000004,6.1,7.7,9.9,12.9,17.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,52,-0.28610000000000002,7.6811999999999996,0.24151,4,4.9000000000000004,6.1,7.7,9.9,12.9,17.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,53,-0.28899999999999998,7.6669,0.24321999999999999,4,4.9000000000000004,6.1,7.7,9.9,13,17.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,54,-0.2918,7.6524999999999999,0.24493999999999999,3.9,4.8,6,7.7,9.9,13,17.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,55,-0.29459999999999997,7.6383000000000001,0.24665999999999999,3.9,4.8,6,7.6,9.9,13,17.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,56,-0.2974,7.6242000000000001,0.24839,3.9,4.8,6,7.6,9.9,13.1,17.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,57,-0.30009999999999998,7.6104000000000003,0.25013000000000002,3.9,4.8,6,7.6,9.9,13.1,17.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,58,-0.30280000000000001,7.5968,0.25185999999999997,3.8,4.8,6,7.6,9.9,13.1,17.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,59,-0.30549999999999999,7.5834999999999999,0.25359999999999999,3.8,4.7,5.9,7.6,9.9,13.2,18
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,60,-0.30809999999999998,7.5705999999999998,0.25533,3.8,4.7,5.9,7.6,9.9,13.2,18.100000000000001
1 source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
2 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 3 0.1875 9.7515999999999998 0.17535000000000001 5.6 6.8 8.1999999999999993 9.8000000000000007 11.6 13.7 16.100000000000001
3 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 4 0.12559999999999999 9.5866000000000007 0.18337000000000001 5.4 6.6 8 9.6 11.5 13.7 16.3
4 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 5 0.076100000000000001 9.3716000000000008 0.19006999999999999 5.2 6.4 7.7 9.4 11.3 13.6 16.399999999999999
5 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 6 0.0349 9.1194000000000006 0.19539999999999999 5 6.2 7.5 9.1 11.1 13.4 16.3
6 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 7 -0.00029999999999999997 8.8620999999999999 0.19933999999999999 4.9000000000000004 5.9 7.3 8.9 10.8 13.2 16.100000000000001
7 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 8 -0.030700000000000002 8.6227999999999998 0.20191999999999999 4.7 5.8 7.1 8.6 10.6 12.9 15.9
8 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 9 -0.057200000000000001 8.4163999999999994 0.20338999999999999 4.5999999999999996 5.6 6.9 8.4 10.3 12.7 15.7
9 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 10 -0.079899999999999999 8.2468000000000004 0.20413000000000001 4.5 5.5 6.7 8.1999999999999993 10.1 12.5 15.5
10 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 11 -0.099500000000000005 8.1113999999999997 0.20441999999999999 4.5 5.4 6.6 8.1 10 12.3 15.3
11 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 12 -0.11609999999999999 8.0042000000000009 0.20444999999999999 4.4000000000000004 5.4 6.5 8 9.8000000000000007 12.2 15.1
12 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 13 -0.1303 7.9196999999999997 0.20432 4.4000000000000004 5.3 6.5 7.9 9.6999999999999993 12.1 15
13 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 14 -0.1424 7.8537999999999997 0.20408999999999999 4.4000000000000004 5.3 6.4 7.9 9.6999999999999993 12 14.9
14 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 15 -0.1527 7.8041 0.20383999999999999 4.3 5.3 6.4 7.8 9.6 11.9 14.8
15 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 16 -0.1615 7.7680999999999996 0.20363000000000001 4.3 5.2 6.4 7.8 9.6 11.8 14.8
16 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 17 -0.16900000000000001 7.7443 0.20349999999999999 4.3 5.2 6.3 7.7 9.5 11.8 14.8
17 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 18 -0.17549999999999999 7.7314999999999996 0.20349999999999999 4.3 5.2 6.3 7.7 9.5 11.8 14.7
18 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 19 -0.18110000000000001 7.7286999999999999 0.20363999999999999 4.3 5.2 6.3 7.7 9.5 11.8 14.8
19 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 20 -0.18590000000000001 7.7347000000000001 0.20393 4.3 5.2 6.3 7.7 9.5 11.8 14.8
20 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 21 -0.19009999999999999 7.7484000000000002 0.20437 4.3 5.2 6.3 7.7 9.5 11.9 14.9
21 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 22 -0.19389999999999999 7.7691999999999997 0.20496 4.3 5.2 6.4 7.8 9.6 11.9 15
22 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 23 -0.1973 7.7957999999999998 0.20568 4.4000000000000004 5.2 6.4 7.8 9.6 12 15.1
23 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 24 -0.20039999999999999 7.8273000000000001 0.20652000000000001 4.4000000000000004 5.3 6.4 7.8 9.6999999999999993 12 15.2
24 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 25 -0.20319999999999999 7.8628 0.20748 4.4000000000000004 5.3 6.4 7.9 9.6999999999999993 12.1 15.3
25 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 26 -0.20580000000000001 7.9005999999999998 0.20855000000000001 4.4000000000000004 5.3 6.4 7.9 9.8000000000000007 12.2 15.4
26 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 27 -0.20810000000000001 7.9396000000000004 0.20971000000000001 4.4000000000000004 5.3 6.5 7.9 9.8000000000000007 12.3 15.6
27 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 28 -0.21029999999999999 7.9786000000000001 0.21096000000000001 4.4000000000000004 5.3 6.5 8 9.9 12.4 15.7
28 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 29 -0.2122 8.0167000000000002 0.21228 4.4000000000000004 5.3 6.5 8 10 12.5 15.9
29 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 30 -0.214 8.0534999999999997 0.21365999999999999 4.4000000000000004 5.4 6.5 8.1 10 12.6 16
30 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 31 -0.2155 8.0886999999999993 0.21509 4.4000000000000004 5.4 6.6 8.1 10.1 12.7 16.2
31 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 32 -0.217 8.1224000000000007 0.21657000000000001 4.4000000000000004 5.4 6.6 8.1 10.1 12.8 16.399999999999999
32 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 33 -0.21829999999999999 8.1545000000000005 0.21809000000000001 4.4000000000000004 5.4 6.6 8.1999999999999993 10.199999999999999 12.9 16.5
33 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 34 -0.2195 8.1854999999999993 0.21964 4.4000000000000004 5.4 6.6 8.1999999999999993 10.3 13 16.7
34 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 35 -0.22070000000000001 8.2156000000000002 0.22122 4.4000000000000004 5.4 6.6 8.1999999999999993 10.3 13.1 16.8
35 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 36 -0.22170000000000001 8.2449999999999992 0.22281999999999999 4.4000000000000004 5.4 6.6 8.1999999999999993 10.4 13.2 17
36 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 37 -0.22270000000000001 8.2737999999999996 0.22444 4.4000000000000004 5.4 6.6 8.3000000000000007 10.4 13.3 17.2
37 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 38 -0.22370000000000001 8.3018999999999998 0.22608 4.4000000000000004 5.4 6.7 8.3000000000000007 10.5 13.4 17.3
38 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 39 -0.22459999999999999 8.3293999999999997 0.22772000000000001 4.4000000000000004 5.4 6.7 8.3000000000000007 10.5 13.5 17.5
39 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 40 -0.22539999999999999 8.3559999999999999 0.22936999999999999 4.4000000000000004 5.4 6.7 8.4 10.6 13.6 17.600000000000001
40 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 41 -0.22620000000000001 8.3818000000000001 0.23100999999999999 4.4000000000000004 5.4 6.7 8.4 10.6 13.7 17.8
41 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 42 -0.22700000000000001 8.4068000000000005 0.23264000000000001 4.4000000000000004 5.4 6.7 8.4 10.7 13.7 18
42 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 43 -0.2278 8.4311000000000007 0.23427000000000001 4.4000000000000004 5.4 6.7 8.4 10.7 13.8 18.100000000000001
43 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 44 -0.22850000000000001 8.4550000000000001 0.23587 4.4000000000000004 5.4 6.7 8.5 10.8 13.9 18.3
44 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 45 -0.22919999999999999 8.4786000000000001 0.23746999999999999 4.4000000000000004 5.4 6.7 8.5 10.8 14 18.5
45 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 46 -0.2298 8.5018999999999991 0.23904 4.4000000000000004 5.4 6.7 8.5 10.9 14.1 18.600000000000001
46 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 47 -0.23039999999999999 8.5250000000000004 0.24060000000000001 4.4000000000000004 5.4 6.7 8.5 10.9 14.2 18.8
47 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 48 -0.23100000000000001 8.5480999999999998 0.24215 4.4000000000000004 5.4 6.8 8.5 11 14.3 18.899999999999999
48 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 49 -0.2316 8.5710999999999995 0.24367 4.4000000000000004 5.4 6.8 8.6 11 14.4 19.100000000000001
49 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 50 -0.2321 8.5942000000000007 0.24517 4.4000000000000004 5.4 6.8 8.6 11.1 14.5 19.3
50 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 51 -0.2326 8.6173999999999999 0.24665000000000001 4.4000000000000004 5.4 6.8 8.6 11.1 14.6 19.399999999999999
51 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 52 -0.2331 8.6405999999999992 0.24811 4.3 5.4 6.8 8.6 11.2 14.6 19.600000000000001
52 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 53 -0.2336 8.6640999999999995 0.24954000000000001 4.3 5.4 6.8 8.6999999999999993 11.2 14.7 19.7
53 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 54 -0.2341 8.6875999999999998 0.25095000000000001 4.3 5.4 6.8 8.6999999999999993 11.3 14.8 19.899999999999999
54 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 55 -0.2346 8.7111999999999998 0.25233 4.3 5.4 6.8 8.6999999999999993 11.3 14.9 20
55 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 56 -0.23499999999999999 8.7348999999999997 0.25369000000000003 4.3 5.4 6.8 8.6999999999999993 11.3 15 20.2
56 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 57 -0.23549999999999999 8.7585999999999995 0.25502000000000002 4.3 5.4 6.8 8.8000000000000007 11.4 15.1 20.399999999999999
57 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 58 -0.2359 8.7824000000000009 0.25633 4.3 5.4 6.8 8.8000000000000007 11.4 15.2 20.5
58 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 59 -0.23630000000000001 8.8061000000000007 0.25761000000000001 4.3 5.4 6.9 8.8000000000000007 11.5 15.3 20.7
59 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 60 -0.23680000000000001 8.8298000000000005 0.25886999999999999 4.3 5.4 6.9 8.8000000000000007 11.5 15.3 20.8
60 source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
61 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 3 0.0027000000000000001 9.7638999999999996 0.16617999999999999 5.9 7 8.3000000000000007 9.8000000000000007 11.5 13.6 16.100000000000001
62 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 4 -0.016500000000000001 9.5839999999999996 0.17263999999999999 5.7 6.8 8.1 9.6 11.4 13.5 16.100000000000001
63 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 5 -0.032599999999999997 9.3885000000000005 0.17824000000000001 5.5 6.6 7.9 9.4 11.2 13.4 16.100000000000001
64 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 6 -0.046600000000000003 9.1729000000000003 0.18304000000000001 5.3 6.4 7.6 9.1999999999999993 11 13.3 16
65 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 7 -0.058999999999999997 8.9535 0.18684999999999999 5.2 6.2 7.4 9 10.8 13.1 15.8
66 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 8 -0.070300000000000001 8.7434999999999992 0.18967999999999999 5 6 7.2 8.6999999999999993 10.6 12.8 15.6
67 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 9 -0.080600000000000005 8.5518000000000001 0.19166 4.9000000000000004 5.9 7.1 8.6 10.4 12.6 15.4
68 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 10 -0.0901 8.3811999999999998 0.193 4.8 5.7 6.9 8.4 10.199999999999999 12.4 15.2
69 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 11 -0.099000000000000005 8.2323000000000004 0.19389000000000001 4.7 5.6 6.8 8.1999999999999993 10 12.2 15
70 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 12 -0.10730000000000001 8.1041000000000007 0.19453000000000001 4.5999999999999996 5.5 6.7 8.1 9.9 12.1 14.8
71 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 13 -0.1152 7.9958 0.19506000000000001 4.5 5.5 6.6 8 9.6999999999999993 11.9 14.7
72 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 14 -0.1227 7.9063999999999997 0.19558 4.5 5.4 6.5 7.9 9.6 11.8 14.5
73 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 15 -0.12970000000000001 7.8345000000000002 0.19611999999999999 4.4000000000000004 5.3 6.5 7.8 9.6 11.7 14.4
74 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 16 -0.13650000000000001 7.7781000000000002 0.19667999999999999 4.4000000000000004 5.3 6.4 7.8 9.5 11.7 14.4
75 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 17 -0.14299999999999999 7.7351000000000001 0.19728000000000001 4.4000000000000004 5.3 6.4 7.7 9.4 11.6 14.4
76 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 18 -0.1492 7.7035999999999998 0.19792999999999999 4.4000000000000004 5.2 6.3 7.7 9.4 11.6 14.3
77 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 19 -0.1552 7.6821000000000002 0.19861999999999999 4.3 5.2 6.3 7.7 9.4 11.6 14.4
78 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 20 -0.16089999999999999 7.6696999999999997 0.19936999999999999 4.3 5.2 6.3 7.7 9.4 11.6 14.4
79 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 21 -0.16650000000000001 7.6651999999999996 0.20018 4.3 5.2 6.3 7.7 9.4 11.6 14.4
80 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 22 -0.1719 7.6675000000000004 0.20105000000000001 4.3 5.2 6.3 7.7 9.4 11.6 14.5
81 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 23 -0.17710000000000001 7.6749999999999998 0.20196 4.3 5.2 6.3 7.7 9.4 11.7 14.6
82 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 24 -0.18210000000000001 7.6863000000000001 0.20293 4.3 5.2 6.3 7.7 9.5 11.7 14.7
83 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 25 -0.187 7.7003000000000004 0.20394000000000001 4.3 5.2 6.3 7.7 9.5 11.8 14.7
84 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 26 -0.1918 7.7156000000000002 0.20497000000000001 4.3 5.2 6.3 7.7 9.5 11.8 14.8
85 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 27 -0.19650000000000001 7.7312000000000003 0.20602999999999999 4.3 5.2 6.3 7.7 9.5 11.9 14.9
86 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 28 -0.20100000000000001 7.7462999999999997 0.20710000000000001 4.3 5.2 6.3 7.7 9.6 11.9 15
87 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 29 -0.2054 7.7602000000000002 0.20818 4.3 5.2 6.3 7.8 9.6 12 15.1
88 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 30 -0.2097 7.7725999999999997 0.20927999999999999 4.3 5.2 6.3 7.8 9.6 12 15.2
89 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 31 -0.21390000000000001 7.7831999999999999 0.21038999999999999 4.3 5.2 6.3 7.8 9.6999999999999993 12.1 15.3
90 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 32 -0.218 7.7919999999999998 0.21153 4.3 5.2 6.3 7.8 9.6999999999999993 12.1 15.4
91 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 33 -0.22209999999999999 7.7988999999999997 0.21268999999999999 4.3 5.2 6.3 7.8 9.6999999999999993 12.2 15.5
92 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 34 -0.22600000000000001 7.8040000000000003 0.21389 4.3 5.2 6.3 7.8 9.6999999999999993 12.2 15.6
93 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 35 -0.22989999999999999 7.8074000000000003 0.21512999999999999 4.3 5.2 6.3 7.8 9.6999999999999993 12.3 15.7
94 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 36 -0.2336 7.8094000000000001 0.21640999999999999 4.3 5.2 6.3 7.8 9.8000000000000007 12.3 15.8
95 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 37 -0.2374 7.8101000000000003 0.21773000000000001 4.3 5.2 6.3 7.8 9.8000000000000007 12.4 15.9
96 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 38 -0.24099999999999999 7.8095999999999997 0.21909000000000001 4.2 5.0999999999999996 6.3 7.8 9.8000000000000007 12.4 16
97 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 39 -0.24460000000000001 7.8079999999999998 0.22048999999999999 4.2 5.0999999999999996 6.3 7.8 9.8000000000000007 12.5 16.100000000000001
98 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 40 -0.24809999999999999 7.8051000000000004 0.22194 4.2 5.0999999999999996 6.3 7.8 9.8000000000000007 12.5 16.2
99 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 41 -0.2515 7.8009000000000004 0.22342999999999999 4.2 5.0999999999999996 6.3 7.8 9.8000000000000007 12.5 16.3
100 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 42 -0.25490000000000002 7.7953999999999999 0.22495999999999999 4.2 5.0999999999999996 6.3 7.8 9.8000000000000007 12.6 16.3
101 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 43 -0.25829999999999997 7.7885 0.22653000000000001 4.2 5.0999999999999996 6.2 7.8 9.8000000000000007 12.6 16.399999999999999
102 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 44 -0.2616 7.7804000000000002 0.22813 4.0999999999999996 5.0999999999999996 6.2 7.8 9.8000000000000007 12.6 16.5
103 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 45 -0.26479999999999998 7.7709999999999999 0.22975000000000001 4.0999999999999996 5 6.2 7.8 9.8000000000000007 12.7 16.600000000000001
104 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 46 -0.26800000000000002 7.7605000000000004 0.23139999999999999 4.0999999999999996 5 6.2 7.8 9.9 12.7 16.7
105 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 47 -0.27110000000000001 7.7488999999999999 0.23305999999999999 4.0999999999999996 5 6.2 7.7 9.9 12.8 16.8
106 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 48 -0.2742 7.7363999999999997 0.23472999999999999 4.0999999999999996 5 6.2 7.7 9.9 12.8 16.899999999999999
107 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 49 -0.2772 7.7233000000000001 0.23641999999999999 4 5 6.1 7.7 9.9 12.8 17
108 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 50 -0.2802 7.7096 0.23810999999999999 4 4.9000000000000004 6.1 7.7 9.9 12.9 17.100000000000001
109 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 51 -0.28320000000000001 7.6955 0.23981 4 4.9000000000000004 6.1 7.7 9.9 12.9 17.2
110 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 52 -0.28610000000000002 7.6811999999999996 0.24151 4 4.9000000000000004 6.1 7.7 9.9 12.9 17.3
111 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 53 -0.28899999999999998 7.6669 0.24321999999999999 4 4.9000000000000004 6.1 7.7 9.9 13 17.399999999999999
112 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 54 -0.2918 7.6524999999999999 0.24493999999999999 3.9 4.8 6 7.7 9.9 13 17.5
113 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 55 -0.29459999999999997 7.6383000000000001 0.24665999999999999 3.9 4.8 6 7.6 9.9 13 17.600000000000001
114 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 56 -0.2974 7.6242000000000001 0.24839 3.9 4.8 6 7.6 9.9 13.1 17.7
115 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 57 -0.30009999999999998 7.6104000000000003 0.25013000000000002 3.9 4.8 6 7.6 9.9 13.1 17.8
116 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 58 -0.30280000000000001 7.5968 0.25185999999999997 3.8 4.8 6 7.6 9.9 13.1 17.899999999999999
117 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 59 -0.30549999999999999 7.5834999999999999 0.25359999999999999 3.8 4.7 5.9 7.6 9.9 13.2 18
118 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 60 -0.30809999999999998 7.5705999999999998 0.25533 3.8 4.7 5.9 7.6 9.9 13.2 18.100000000000001

View File

@ -0,0 +1,276 @@
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx,female,week,0,0.38090000000000002,3.2322000000000002,0.14171,2,2.4,2.8,3.2,3.7,4.2,4.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx,female,week,1,0.2671,3.3388,0.14599999999999999,2.1,2.5,2.9,3.3,3.9,4.4000000000000004,5.0999999999999996
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx,female,week,2,0.23039999999999999,3.5693000000000001,0.14338999999999999,2.2999999999999998,2.7,3.1,3.6,4.0999999999999996,4.7,5.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx,female,week,3,0.2024,3.8351999999999999,0.1406,2.5,2.9,3.3,3.8,4.4000000000000004,5,5.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx,female,week,4,0.1789,4.0987,0.13805000000000001,2.7,3.1,3.6,4.0999999999999996,4.7,5.4,6.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx,female,week,5,0.15820000000000001,4.3475999999999999,0.13583000000000001,2.9,3.3,3.8,4.3,5,5.7,6.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx,female,week,6,0.13950000000000001,4.5792999999999999,0.13392000000000001,3,3.5,4,4.5999999999999996,5.2,6,6.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx,female,week,7,0.12239999999999999,4.7949999999999999,0.13228000000000001,3.2,3.7,4.2,4.8,5.5,6.2,7.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx,female,week,8,0.1065,4.9958999999999998,0.13086999999999999,3.3,3.8,4.4000000000000004,5,5.7,6.5,7.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx,female,week,9,0.091800000000000007,5.1841999999999997,0.12966,3.5,4,4.5999999999999996,5.2,5.9,6.7,7.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx,female,week,10,0.077899999999999997,5.3617999999999997,0.12861,3.6,4.0999999999999996,4.7,5.4,6.1,6.9,7.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx,female,week,11,0.064799999999999996,5.5294999999999996,0.12770000000000001,3.8,4.3,4.9000000000000004,5.5,6.3,7.1,8.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx,female,week,12,0.052499999999999998,5.6882999999999999,0.12691,3.9,4.4000000000000004,5,5.7,6.5,7.3,8.3000000000000007
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx,female,week,13,0.0407,5.8392999999999997,0.12622,4,4.5,5.0999999999999996,5.8,6.6,7.5,8.5
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,0,0.38090000000000002,3.2322000000000002,0.14171,2,2.4,2.8,3.2,3.7,4.2,4.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,1,0.1714,4.1872999999999996,0.13724,2.7,3.2,3.6,4.2,4.8,5.5,6.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,2,0.096199999999999994,5.1281999999999996,0.13,3.4,3.9,4.5,5.0999999999999996,5.8,6.6,7.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,3,0.0402,5.8457999999999997,0.12619,4,4.5,5.2,5.8,6.6,7.5,8.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,4,-0.0050000000000000001,6.4237000000000002,0.12402000000000001,4.4000000000000004,5,5.7,6.4,7.3,8.1999999999999993,9.3000000000000007
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,5,-0.042999999999999997,6.8985000000000003,0.12274,4.8,5.4,6.1,6.9,7.8,8.8000000000000007,10
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,6,-0.075600000000000001,7.2969999999999997,0.12204,5.0999999999999996,5.7,6.5,7.3,8.1999999999999993,9.3000000000000007,10.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,7,-0.10390000000000001,7.6421999999999999,0.12178,5.3,6,6.8,7.6,8.6,9.8000000000000007,11.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,8,-0.1288,7.9486999999999997,0.12181,5.6,6.3,7,7.9,9,10.199999999999999,11.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,9,-0.1507,8.2254000000000005,0.12199,5.8,6.5,7.3,8.1999999999999993,9.3000000000000007,10.5,12
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,10,-0.17,8.48,0.12223000000000001,5.9,6.7,7.5,8.5,9.6,10.9,12.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,11,-0.18720000000000001,8.7192000000000007,0.12247,6.1,6.9,7.7,8.6999999999999993,9.9,11.2,12.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,12,-0.2024,8.9481000000000002,0.12268,6.3,7,7.9,8.9,10.1,11.5,13.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,13,-0.21579999999999999,9.1699000000000002,0.12282999999999999,6.4,7.2,8.1,9.1999999999999993,10.4,11.8,13.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,14,-0.2278,9.3870000000000005,0.12293999999999999,6.6,7.4,8.3000000000000007,9.4,10.6,12.1,13.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,15,-0.2384,9.6007999999999996,0.12299,6.7,7.6,8.5,9.6,10.9,12.4,14.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,16,-0.24779999999999999,9.8124000000000002,0.12303,6.9,7.7,8.6999999999999993,9.8000000000000007,11.1,12.6,14.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,17,-0.25619999999999998,10.022600000000001,0.12306,7,7.9,8.9,10,11.4,12.9,14.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,18,-0.26369999999999999,10.2315,0.12309,7.2,8.1,9.1,10.199999999999999,11.6,13.2,15.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,19,-0.27029999999999998,10.439299999999999,0.12315,7.3,8.1999999999999993,9.1999999999999993,10.4,11.8,13.5,15.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,20,-0.2762,10.6464,0.12323000000000001,7.5,8.4,9.4,10.6,12.1,13.7,15.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,21,-0.28149999999999997,10.853400000000001,0.12335,7.6,8.6,9.6,10.9,12.3,14,16
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,22,-0.28620000000000001,11.0608,0.1235,7.8,8.6999999999999993,9.8000000000000007,11.1,12.5,14.3,16.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,23,-0.2903,11.268800000000001,0.12368999999999999,7.9,8.9,10,11.3,12.8,14.6,16.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,24,-0.29409999999999997,11.477499999999999,0.1239,8.1,9,10.199999999999999,11.5,13,14.8,17
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,25,-0.29749999999999999,11.686400000000001,0.12414,8.1999999999999993,9.1999999999999993,10.3,11.7,13.3,15.1,17.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,26,-0.30049999999999999,11.8947,0.12441000000000001,8.4,9.4,10.5,11.9,13.5,15.4,17.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,27,-0.30320000000000003,12.1015,0.12472,8.5,9.5,10.7,12.1,13.7,15.7,18
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,28,-0.30570000000000003,12.305899999999999,0.12506,8.6,9.6999999999999993,10.9,12.3,14,16,18.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,29,-0.308,12.507300000000001,0.12545000000000001,8.8000000000000007,9.8000000000000007,11.1,12.5,14.2,16.2,18.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,30,-0.31009999999999999,12.705500000000001,0.12587000000000001,8.9,10,11.2,12.7,14.4,16.5,19
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,31,-0.312,12.900600000000001,0.12633,9,10.1,11.4,12.9,14.7,16.8,19.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,32,-0.31380000000000002,13.093,0.12683,9.1,10.3,11.6,13.1,14.9,17.100000000000001,19.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,33,-0.3155,13.2837,0.12737000000000001,9.3000000000000007,10.4,11.7,13.3,15.1,17.3,20
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,34,-0.31709999999999999,13.473100000000001,0.12794,9.4,10.5,11.9,13.5,15.4,17.600000000000001,20.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,35,-0.31859999999999999,13.661799999999999,0.12855,9.5,10.7,12,13.7,15.6,17.899999999999999,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,36,-0.3201,13.850300000000001,0.12919,9.6,10.8,12.2,13.9,15.8,18.100000000000001,20.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,37,-0.3216,14.038500000000001,0.12988,9.6999999999999993,10.9,12.4,14,16,18.399999999999999,21.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,38,-0.32300000000000001,14.2265,0.13059000000000001,9.8000000000000007,11.1,12.5,14.2,16.3,18.7,21.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,39,-0.32429999999999998,14.414,0.13134999999999999,9.9,11.2,12.7,14.4,16.5,19,22
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,40,-0.32569999999999999,14.601000000000001,0.13213,10.1,11.3,12.8,14.6,16.7,19.2,22.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,41,-0.32700000000000001,14.7873,0.13292999999999999,10.199999999999999,11.5,13,14.8,16.899999999999999,19.5,22.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,42,-0.32829999999999998,14.9727,0.13375999999999999,10.3,11.6,13.1,15,17.2,19.8,23
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,43,-0.3296,15.157299999999999,0.1346,10.4,11.7,13.3,15.2,17.399999999999999,20.100000000000001,23.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,44,-0.33090000000000003,15.340999999999999,0.13544999999999999,10.5,11.8,13.4,15.3,17.600000000000001,20.399999999999999,23.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,45,-0.3322,15.523999999999999,0.1363,10.6,12,13.6,15.5,17.8,20.7,24.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,46,-0.33350000000000002,15.7064,0.13716,10.7,12.1,13.7,15.7,18.100000000000001,20.9,24.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,47,-0.33479999999999999,15.888199999999999,0.13800000000000001,10.8,12.2,13.9,15.9,18.3,21.2,24.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,48,-0.33610000000000001,16.069700000000001,0.13883999999999999,10.9,12.3,14,16.100000000000001,18.5,21.5,25.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,49,-0.33739999999999998,16.251100000000001,0.13968,11,12.4,14.2,16.3,18.8,21.8,25.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,50,-0.3387,16.432200000000002,0.14051,11.1,12.6,14.3,16.399999999999999,19,22.1,25.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,51,-0.34,16.613299999999999,0.14132,11.2,12.7,14.5,16.600000000000001,19.2,22.4,26.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,52,-0.34139999999999998,16.7942,0.14213000000000001,11.3,12.8,14.6,16.8,19.399999999999999,22.6,26.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,53,-0.3427,16.974799999999998,0.14293,11.4,12.9,14.8,17,19.7,22.9,27
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,54,-0.34399999999999997,17.155100000000001,0.14371,11.5,13,14.9,17.2,19.899999999999999,23.2,27.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,55,-0.3453,17.334700000000002,0.14448,11.6,13.2,15.1,17.3,20.100000000000001,23.5,27.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,56,-0.34660000000000002,17.5136,0.14524999999999999,11.7,13.3,15.2,17.5,20.3,23.8,28.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,57,-0.34789999999999999,17.691600000000001,0.14599999999999999,11.8,13.4,15.3,17.7,20.6,24.1,28.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,58,-0.34920000000000001,17.868600000000001,0.14674999999999999,11.9,13.5,15.5,17.899999999999999,20.8,24.4,28.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,59,-0.35049999999999998,18.044499999999999,0.14748,12,13.6,15.6,18,21,24.6,29.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,60,-0.3518,18.2193,0.14821000000000001,12.1,13.7,15.8,18.2,21.2,24.9,29.5
source,gender,age_unit,age,l,m,s,sd4neg,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3,sd4
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,61,-0.46810000000000002,18.257899999999999,0.14294999999999999,10.742000000000001,12.352,13.961,15.898999999999999,18.257999999999999,21.169,24.817,29.468,34.118000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,62,-0.47110000000000002,18.4329,0.14349999999999999,10.827999999999999,12.456,14.083,16.042999999999999,18.433,21.385999999999999,25.09,29.823,34.555
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,63,-0.47420000000000001,18.607299999999999,0.14404,10.914999999999999,12.558999999999999,14.204000000000001,16.187000000000001,18.606999999999999,21.600999999999999,25.363,30.178000000000001,34.991999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,64,-0.4773,18.781099999999999,0.14459,11,12.662000000000001,14.324,16.329999999999998,18.780999999999999,21.817,25.637,30.535,35.433
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,65,-0.4803,18.954499999999999,0.14513999999999999,11.085000000000001,12.763999999999999,14.444000000000001,16.472999999999999,18.954000000000001,22.032,25.911000000000001,30.893000000000001,35.875999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,66,-0.4834,19.127600000000001,0.14568999999999999,11.169,12.866,14.564,16.616,19.128,22.247,26.184999999999999,31.253,36.320999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,67,-0.4864,19.3004,0.14624000000000001,11.253,12.968,14.683,16.757999999999999,19.3,22.462,26.46,31.614000000000001,36.768000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,68,-0.4894,19.472999999999999,0.14679,11.337,13.069000000000001,14.801,16.899000000000001,19.472999999999999,22.677,26.734999999999999,31.977,37.218000000000004
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,69,-0.4924,19.645499999999998,0.14735000000000001,11.419,13.169,14.919,17.041,19.646000000000001,22.893000000000001,27.010999999999999,32.341999999999999,37.673000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,70,-0.49540000000000001,19.818000000000001,0.1479,11.503,13.27,15.038,17.181999999999999,19.818000000000001,23.108000000000001,27.288,32.707999999999998,38.128999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,71,-0.49840000000000001,19.9908,0.14845,11.586,13.371,15.156000000000001,17.323,19.991,23.324000000000002,27.565999999999999,33.076999999999998,38.588999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,72,-0.50129999999999997,20.163900000000002,0.14899999999999999,11.669,13.471,15.273999999999999,17.465,20.164000000000001,23.541,27.844999999999999,33.448,39.051000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,73,-0.50429999999999997,20.337700000000002,0.14954999999999999,11.752000000000001,13.571999999999999,15.393000000000001,17.606999999999999,20.338000000000001,23.759,28.126000000000001,33.822000000000003,39.518999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,74,-0.50719999999999998,20.5124,0.15010000000000001,11.835000000000001,13.673,15.512,17.75,20.512,23.978000000000002,28.408999999999999,34.200000000000003,39.991
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,75,-0.51,20.688500000000001,0.15065000000000001,11.919,13.775,15.632,17.893000000000001,20.687999999999999,24.199000000000002,28.695,34.581000000000003,40.468000000000004
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,76,-0.51290000000000002,20.866099999999999,0.1512,12.004,13.878,15.753,18.038,20.866,24.422999999999998,28.983000000000001,34.968000000000004,40.953000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,77,-0.51570000000000005,21.0457,0.15175,12.089,13.981999999999999,15.875,18.184999999999999,21.045999999999999,24.648,29.276,35.36,41.442999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,78,-0.51849999999999996,21.227399999999999,0.15229999999999999,12.175000000000001,14.087,15.997999999999999,18.332999999999998,21.227,24.876999999999999,29.571999999999999,35.756999999999998,41.942
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,79,-0.52129999999999999,21.411300000000001,0.15284,12.263,14.193,16.123999999999999,18.483000000000001,21.411000000000001,25.108000000000001,29.870999999999999,36.158000000000001,42.445999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,80,-0.52400000000000002,21.597899999999999,0.15339,12.352,14.301,16.25,18.635000000000002,21.597999999999999,25.343,30.175999999999998,36.567999999999998,42.96
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,81,-0.52680000000000005,21.787199999999999,0.15393000000000001,12.443,14.411,16.379000000000001,18.79,21.786999999999999,25.581,30.484999999999999,36.982999999999997,43.481999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,82,-0.52939999999999998,21.979500000000002,0.15448000000000001,12.534000000000001,14.522,16.510000000000002,18.946999999999999,21.98,25.823,30.798999999999999,37.405999999999999,44.012999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,83,-0.53210000000000002,22.1751,0.15501999999999999,12.627000000000001,14.635,16.643000000000001,19.106000000000002,22.175000000000001,26.068999999999999,31.117999999999999,37.835999999999999,44.554000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,84,-0.53469999999999995,22.373999999999999,0.15556,12.722,14.75,16.779,19.268000000000001,22.373999999999999,26.32,31.443000000000001,38.274000000000001,45.103999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,85,-0.53720000000000001,22.5762,0.15609999999999999,12.819000000000001,14.867000000000001,16.916,19.433,22.576000000000001,26.574000000000002,31.773,38.719000000000001,45.664000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,86,-0.53979999999999995,22.781600000000001,0.15662999999999999,12.917,14.987,17.056000000000001,19.600999999999999,22.782,26.832000000000001,32.109000000000002,39.170999999999999,46.231999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,87,-0.5423,22.990400000000001,0.15717,13.016999999999999,15.108000000000001,17.199000000000002,19.771999999999998,22.99,27.094999999999999,32.450000000000003,39.631999999999998,46.813000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,88,-0.54469999999999996,23.202500000000001,0.15770000000000001,13.119,15.231,17.343,19.945,23.202000000000002,27.361999999999998,32.795999999999999,40.098999999999997,47.401000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,89,-0.54710000000000003,23.417999999999999,0.15823000000000001,13.222,15.356,17.489999999999998,20.120999999999999,23.417999999999999,27.632999999999999,33.149000000000001,40.573999999999998,48
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,90,-0.54949999999999999,23.636900000000001,0.15876000000000001,13.327,15.483000000000001,17.638999999999999,20.298999999999999,23.637,27.908000000000001,33.506999999999998,41.058,48.61
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,91,-0.55179999999999996,23.859300000000001,0.15928,13.433999999999999,15.612,17.791,20.481000000000002,23.859000000000002,28.187999999999999,33.869999999999997,41.548999999999999,49.228000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,92,-0.55410000000000004,24.0853,0.1598,13.542,15.744,17.946000000000002,20.666,24.085000000000001,28.472000000000001,34.238999999999997,42.048000000000002,49.856999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,93,-0.55630000000000002,24.314900000000002,0.16031999999999999,13.651999999999999,15.877000000000001,18.102,20.853000000000002,24.315000000000001,28.760999999999999,34.613999999999997,42.555,50.497
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,94,-0.5585,24.548200000000001,0.16084000000000001,13.763999999999999,16.013000000000002,18.262,21.044,24.547999999999998,29.053999999999998,34.996000000000002,43.072000000000003,51.149000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,95,-0.56059999999999999,24.785299999999999,0.16134999999999999,13.878,16.151,18.423999999999999,21.238,24.785,29.352,35.383000000000003,43.595999999999997,51.808999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,96,-0.56269999999999998,25.026199999999999,0.16186,13.994,16.291,18.588000000000001,21.434999999999999,25.026,29.655000000000001,35.776000000000003,44.128,52.481000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,97,-0.56469999999999998,25.271000000000001,0.16236999999999999,14.112,16.434000000000001,18.756,21.635000000000002,25.271000000000001,29.963000000000001,36.176000000000002,44.67,53.164000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,98,-0.56669999999999998,25.5197,0.16286999999999999,14.231999999999999,16.579000000000001,18.925999999999998,21.838000000000001,25.52,30.274999999999999,36.582000000000001,45.22,53.857999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,99,-0.56859999999999999,25.772099999999998,0.16336999999999999,14.353,16.725999999999999,19.097999999999999,22.045000000000002,25.771999999999998,30.593,36.994,45.777999999999999,54.561999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,100,-0.57040000000000002,26.028400000000001,0.16386000000000001,14.477,16.875,19.274000000000001,22.254000000000001,26.027999999999999,30.914000000000001,37.411999999999999,46.343000000000004,55.274999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,101,-0.57220000000000004,26.2883,0.16435,14.602,17.027000000000001,19.452000000000002,22.466999999999999,26.288,31.241,37.835999999999999,46.917999999999999,55.999000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,102,-0.57399999999999995,26.5519,0.16483,14.73,17.181000000000001,19.632000000000001,22.683,26.552,31.571999999999999,38.265000000000001,47.499000000000002,56.734000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,103,-0.57569999999999999,26.818999999999999,0.16531999999999999,14.859,17.337,19.815000000000001,22.901,26.818999999999999,31.907,38.701999999999998,48.091999999999999,57.481000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,104,-0.57730000000000004,27.089600000000001,0.16578999999999999,14.989000000000001,17.495000000000001,20.001000000000001,23.123000000000001,27.09,32.247,39.142000000000003,48.688000000000002,58.232999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,105,-0.57889999999999997,27.363499999999998,0.16625999999999999,15.122,17.655000000000001,20.187999999999999,23.347000000000001,27.364000000000001,32.591000000000001,39.588999999999999,49.292999999999999,58.997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,106,-0.58040000000000003,27.640599999999999,0.16672999999999999,15.255000000000001,17.817,20.378,23.574000000000002,27.640999999999998,32.939,40.040999999999997,49.905999999999999,59.771000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,107,-0.58189999999999997,27.9208,0.16719000000000001,15.391,17.98,20.57,23.803000000000001,27.920999999999999,33.29,40.497,50.524999999999999,60.552
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,108,-0.58330000000000004,28.204000000000001,0.16764000000000001,15.528,18.146000000000001,20.763999999999999,24.035,28.204000000000001,33.645000000000003,40.957999999999998,51.149000000000001,61.34
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,109,-0.5847,28.490100000000002,0.16808999999999999,15.666,18.312999999999999,20.96,24.27,28.49,34.003999999999998,41.423999999999999,51.780999999999999,62.137999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,110,-0.58589999999999998,28.7791,0.16854,15.805,18.481999999999999,21.158000000000001,24.506,28.779,34.366999999999997,41.895000000000003,52.418999999999997,62.944000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,111,-0.58720000000000006,29.071100000000001,0.16897000000000001,15.946999999999999,18.652999999999999,21.359000000000002,24.745000000000001,29.071000000000002,34.732999999999997,42.37,53.063000000000002,63.755000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,112,-0.58830000000000005,29.366299999999999,0.16941000000000001,16.088999999999999,18.824999999999999,21.561,24.986999999999998,29.366,35.103999999999999,42.850999999999999,53.713999999999999,64.578000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,113,-0.58950000000000002,29.6646,0.16983000000000001,16.234000000000002,19,21.765999999999998,25.231999999999999,29.664999999999999,35.478000000000002,43.335000000000001,54.371000000000002,65.406999999999996
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,114,-0.59050000000000002,29.9663,0.17025000000000001,16.38,19.175999999999998,21.972999999999999,25.478999999999999,29.966000000000001,35.856000000000002,43.826000000000001,55.034999999999997,66.244
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,115,-0.59150000000000003,30.2715,0.17066000000000001,16.527999999999999,19.355,22.183,25.728999999999999,30.271999999999998,36.238,44.320999999999998,55.704999999999998,67.088999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,116,-0.59250000000000003,30.580500000000001,0.17107,16.678000000000001,19.536000000000001,22.395,25.981999999999999,30.58,36.625,44.823,56.384999999999998,67.947000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,117,-0.59340000000000004,30.8934,0.17146,16.829999999999998,19.72,22.61,26.239000000000001,30.893000000000001,37.017000000000003,45.329000000000001,57.069000000000003,68.808999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,118,-0.59419999999999995,31.2105,0.17186000000000001,16.983000000000001,19.905999999999999,22.827999999999999,26.498999999999999,31.21,37.414000000000001,45.843000000000004,57.764000000000003,69.685000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,119,-0.59499999999999997,31.5319,0.17224,17.14,20.094999999999999,23.048999999999999,26.763000000000002,31.532,37.814999999999998,46.363,58.465000000000003,70.567999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,120,-0.5958,31.857800000000001,0.17262,17.297999999999998,20.286000000000001,23.274000000000001,27.030999999999999,31.858000000000001,38.222999999999999,46.89,59.177,71.465000000000003
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,0,0.34870000000000001,3.3464,0.14602000000000001,2.1,2.5,2.9,3.3,3.9,4.4000000000000004,5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,1,0.27760000000000001,3.4878999999999998,0.14482999999999999,2.2000000000000002,2.6,3,3.5,4,4.5999999999999996,5.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,2,0.2581,3.7528999999999999,0.14141999999999999,2.4,2.8,3.2,3.8,4.3,4.9000000000000004,5.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,3,0.2442,4.0602999999999998,0.13807,2.6,3.1,3.5,4.0999999999999996,4.7,5.3,6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,4,0.2331,4.3670999999999998,0.13497000000000001,2.9,3.3,3.8,4.4000000000000004,5,5.7,6.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,5,0.22370000000000001,4.6589999999999998,0.13214999999999999,3.1,3.5,4.0999999999999996,4.7,5.3,6,6.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,6,0.2155,4.9302999999999999,0.12959999999999999,3.3,3.8,4.3,4.9000000000000004,5.6,6.3,7.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,7,0.20810000000000001,5.1817000000000002,0.12728999999999999,3.5,4,4.5999999999999996,5.2,5.9,6.6,7.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,8,0.2014,5.4149000000000003,0.12520000000000001,3.7,4.2,4.8,5.4,6.1,6.9,7.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,9,0.19520000000000001,5.6318999999999999,0.12330000000000001,3.8,4.4000000000000004,5,5.6,6.4,7.2,8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,10,0.18940000000000001,5.8346,0.12157,4,4.5,5.2,5.8,6.6,7.4,8.3000000000000007
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,11,0.184,6.0242000000000004,0.12001000000000001,4.2,4.7,5.3,6,6.8,7.6,8.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,12,0.1789,6.2019000000000002,0.1186,4.3,4.9000000000000004,5.5,6.2,7,7.8,8.8000000000000007
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,13,0.17399999999999999,6.3689999999999998,0.11731999999999999,4.4000000000000004,5,5.7,6.4,7.2,8,9
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,0,0.34870000000000001,3.3464,0.14602000000000001,2.1,2.5,2.9,3.3,3.9,4.4000000000000004,5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,1,0.22969999999999999,4.4709000000000003,0.13395000000000001,2.9,3.4,3.9,4.5,5.0999999999999996,5.8,6.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,2,0.19700000000000001,5.5674999999999999,0.12385,3.8,4.3,4.9000000000000004,5.6,6.3,7.1,8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,3,0.17380000000000001,6.3761999999999999,0.11727,4.4000000000000004,5,5.7,6.4,7.2,8,9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,4,0.15529999999999999,7.0023,0.11316,4.9000000000000004,5.6,6.2,7,7.8,8.6999999999999993,9.6999999999999993
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,5,0.13950000000000001,7.5105000000000004,0.1108,5.3,6,6.7,7.5,8.4,9.3000000000000007,10.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,6,0.12570000000000001,7.9340000000000002,0.10958,5.7,6.4,7.1,7.9,8.8000000000000007,9.8000000000000007,10.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,7,0.1134,8.2970000000000006,0.10902000000000001,5.9,6.7,7.4,8.3000000000000007,9.1999999999999993,10.3,11.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,8,0.1021,8.6151,0.10882,6.2,6.9,7.7,8.6,9.6,10.7,11.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,9,0.091700000000000004,8.9014000000000006,0.10881,6.4,7.1,8,8.9,9.9,11,12.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,10,0.082000000000000003,9.1648999999999994,0.10891000000000001,6.6,7.4,8.1999999999999993,9.1999999999999993,10.199999999999999,11.4,12.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,11,0.072999999999999995,9.4122000000000003,0.10906,6.8,7.6,8.4,9.4,10.5,11.7,13
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,12,0.064399999999999999,9.6478999999999999,0.10925,6.9,7.7,8.6,9.6,10.8,12,13.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,13,0.056300000000000003,9.8749000000000002,0.10949,7.1,7.9,8.8000000000000007,9.9,11,12.3,13.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,14,0.0487,10.0953,0.10976,7.2,8.1,9,10.1,11.3,12.6,14
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,15,0.041300000000000003,10.3108,0.11007,7.4,8.3000000000000007,9.1999999999999993,10.3,11.5,12.8,14.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,16,0.034299999999999997,10.5228,0.11040999999999999,7.5,8.4,9.4,10.5,11.7,13.1,14.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,17,0.0275,10.7319,0.11079,7.7,8.6,9.6,10.7,12,13.4,14.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,18,0.021100000000000001,10.938499999999999,0.11119,7.8,8.8000000000000007,9.8000000000000007,10.9,12.2,13.7,15.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,19,0.014800000000000001,11.143000000000001,0.11164,8,8.9,10,11.1,12.5,13.9,15.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,20,0.0086999999999999994,11.3462,0.11211,8.1,9.1,10.1,11.3,12.7,14.2,15.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,21,0.0028999999999999998,11.5486,0.11261,8.1999999999999993,9.1999999999999993,10.3,11.5,12.9,14.5,16.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,22,-0.0028,11.750400000000001,0.11314,8.4,9.4,10.5,11.8,13.2,14.7,16.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,23,-0.0083000000000000001,11.9514,0.11369,8.5,9.5,10.7,12,13.4,15,16.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,24,-0.0137,12.1515,0.11426,8.6,9.6999999999999993,10.8,12.2,13.6,15.3,17.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,25,-0.0189,12.350199999999999,0.11484999999999999,8.8000000000000007,9.8000000000000007,11,12.4,13.9,15.5,17.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,26,-0.024,12.5466,0.11544,8.9,10,11.2,12.5,14.1,15.8,17.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,27,-0.028899999999999999,12.7401,0.11604,9,10.1,11.3,12.7,14.3,16.100000000000001,18.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,28,-0.033700000000000001,12.930300000000001,0.11663999999999999,9.1,10.199999999999999,11.5,12.9,14.5,16.3,18.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,29,-0.0385,13.116899999999999,0.11723,9.1999999999999993,10.4,11.7,13.1,14.8,16.600000000000001,18.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,30,-0.043099999999999999,13.3,0.11781,9.4,10.5,11.8,13.3,15,16.899999999999999,19
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,31,-0.047600000000000003,13.479799999999999,0.11839,9.5,10.7,12,13.5,15.2,17.100000000000001,19.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,32,-0.051999999999999998,13.656700000000001,0.11896,9.6,10.8,12.1,13.7,15.4,17.399999999999999,19.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,33,-0.056399999999999999,13.8309,0.11953,9.6999999999999993,10.9,12.3,13.8,15.6,17.600000000000001,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,34,-0.060600000000000001,14.0031,0.12008000000000001,9.8000000000000007,11,12.4,14,15.8,17.8,20.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,35,-0.064799999999999996,14.1736,0.12062,9.9,11.2,12.6,14.2,16,18.100000000000001,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,36,-0.068900000000000003,14.3429,0.12116,10,11.3,12.7,14.3,16.2,18.3,20.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,37,-0.072900000000000006,14.5113,0.12168,10.1,11.4,12.9,14.5,16.399999999999999,18.600000000000001,21
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,38,-0.076899999999999996,14.6791,0.1222,10.199999999999999,11.5,13,14.7,16.600000000000001,18.8,21.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,39,-0.080799999999999997,14.8466,0.12271,10.3,11.6,13.1,14.8,16.8,19,21.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,40,-0.084599999999999995,15.013999999999999,0.12322,10.4,11.8,13.3,15,17,19.3,21.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,41,-0.088300000000000003,15.1813,0.12373000000000001,10.5,11.9,13.4,15.2,17.2,19.5,22.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,42,-0.091999999999999998,15.348599999999999,0.12425,10.6,12,13.6,15.3,17.399999999999999,19.7,22.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,43,-0.095699999999999993,15.5158,0.12478,10.7,12.1,13.7,15.5,17.600000000000001,20,22.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,44,-0.099299999999999999,15.6828,0.12531,10.8,12.2,13.8,15.7,17.8,20.2,23
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,45,-0.1028,15.8497,0.12586,10.9,12.4,14,15.8,18,20.5,23.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,46,-0.10630000000000001,16.016300000000001,0.12642999999999999,11,12.5,14.1,16,18.2,20.7,23.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,47,-0.10970000000000001,16.182700000000001,0.127,11.1,12.6,14.3,16.2,18.399999999999999,20.9,23.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,48,-0.11310000000000001,16.3489,0.12759000000000001,11.2,12.7,14.4,16.3,18.600000000000001,21.2,24.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,49,-0.11650000000000001,16.515000000000001,0.12819,11.3,12.8,14.5,16.5,18.8,21.4,24.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,50,-0.1198,16.681100000000001,0.1288,11.4,12.9,14.7,16.7,19,21.7,24.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,51,-0.123,16.847100000000001,0.12942999999999999,11.5,13.1,14.8,16.8,19.2,21.9,25.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,52,-0.12620000000000001,17.013200000000001,0.13005,11.6,13.2,15,17,19.399999999999999,22.2,25.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,53,-0.12939999999999999,17.179200000000002,0.13069,11.7,13.3,15.1,17.2,19.600000000000001,22.4,25.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,54,-0.13250000000000001,17.345199999999998,0.13133,11.8,13.4,15.2,17.3,19.8,22.7,26
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,55,-0.1356,17.511099999999999,0.13197,11.9,13.5,15.4,17.5,20,22.9,26.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,56,-0.13869999999999999,17.6768,0.13261000000000001,12,13.6,15.5,17.7,20.2,23.2,26.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,57,-0.14169999999999999,17.842199999999998,0.13325000000000001,12.1,13.7,15.6,17.8,20.399999999999999,23.4,26.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,58,-0.1447,18.007300000000001,0.13389000000000001,12.2,13.8,15.8,18,20.6,23.7,27.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,59,-0.1477,18.1722,0.13453000000000001,12.3,14,15.9,18.2,20.8,23.9,27.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,60,-0.15060000000000001,18.336600000000001,0.13517000000000001,12.4,14.1,16,18.3,21,24.2,27.9
source,gender,age_unit,age,l,m,s,sd4neg,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3,sd4
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,61,-0.2026,18.505700000000001,0.12988,11.07,12.718,14.367000000000001,16.279,18.506,21.109000000000002,24.164999999999999,27.77,31.375
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,62,-0.21299999999999999,18.680199999999999,0.13028000000000001,11.170999999999999,12.833,14.496,16.428000000000001,18.68,21.318999999999999,24.422999999999998,28.093,31.763999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,63,-0.22339999999999999,18.856300000000001,0.13067000000000001,11.272,12.95,14.627000000000001,16.577999999999999,18.856000000000002,21.53,24.683,28.42,32.156999999999996
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,64,-0.23380000000000001,19.033999999999999,0.13105,11.375999999999999,13.067,14.759,16.728999999999999,19.033999999999999,21.744,24.946000000000002,28.75,32.554000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,65,-0.24429999999999999,19.213200000000001,0.13142000000000001,11.48,13.186,14.891999999999999,16.882000000000001,19.213000000000001,21.959,25.21,29.082999999999998,32.956000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,66,-0.25480000000000003,19.393999999999998,0.13178000000000001,11.587,13.307,15.026999999999999,17.036000000000001,19.393999999999998,22.175999999999998,25.477,29.42,33.362000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,67,-0.26529999999999998,19.576499999999999,0.13213,11.694000000000001,13.429,15.164,17.192,19.576000000000001,22.395,25.747,29.76,33.771999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,68,-0.27579999999999999,19.7607,0.13245999999999999,11.804,13.553000000000001,15.302,17.350000000000001,19.760999999999999,22.614999999999998,26.018000000000001,30.102,34.186
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,69,-0.28639999999999999,19.9468,0.13278999999999999,11.914999999999999,13.679,15.442,17.509,19.946999999999999,22.838999999999999,26.292999999999999,30.449000000000002,34.604999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,70,-0.2969,20.134399999999999,0.13311000000000001,12.026999999999999,13.805,15.583,17.670000000000002,20.134,23.062999999999999,26.568999999999999,30.798999999999999,35.029000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,71,-0.3075,20.323499999999999,0.13342000000000001,12.141,13.933999999999999,15.726000000000001,17.832000000000001,20.324000000000002,23.29,26.847999999999999,31.152999999999999,35.457000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,72,-0.318,20.5137,0.13372000000000001,12.256,14.063000000000001,15.87,17.995999999999999,20.513999999999999,23.516999999999999,27.129000000000001,31.507999999999999,35.887999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,73,-0.32850000000000001,20.705200000000001,0.13402,12.371,14.193,16.015000000000001,18.16,20.704999999999998,23.747,27.411999999999999,31.867999999999999,36.323999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,74,-0.33900000000000002,20.8979,0.13431999999999999,12.488,14.324,16.16,18.326000000000001,20.898,23.978000000000002,27.696999999999999,32.231000000000002,36.765000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,75,-0.34939999999999999,21.091799999999999,0.13461999999999999,12.605,14.456,16.306999999999999,18.492000000000001,21.091999999999999,24.21,27.984000000000002,32.597999999999999,37.210999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,76,-0.35980000000000001,21.286999999999999,0.13492999999999999,12.722,14.587999999999999,16.454000000000001,18.658999999999999,21.286999999999999,24.445,28.274999999999999,32.969000000000001,37.664000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,77,-0.37009999999999998,21.4833,0.13522999999999999,12.840999999999999,14.721,16.602,18.827999999999999,21.483000000000001,24.68,28.567,33.343000000000004,38.119999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,78,-0.38040000000000002,21.681000000000001,0.13553999999999999,12.96,14.855,16.751000000000001,18.997,21.681000000000001,24.917999999999999,28.861999999999998,33.722999999999999,38.582999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,79,-0.3906,21.879899999999999,0.13586000000000001,13.079000000000001,14.99,16.899999999999999,19.167000000000002,21.88,25.158000000000001,29.161000000000001,34.106999999999999,39.054000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,80,-0.4007,22.08,0.13618,13.199,15.125,17.05,19.338000000000001,22.08,25.399000000000001,29.460999999999999,34.494999999999997,39.529000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,81,-0.41070000000000001,22.281300000000002,0.13652,13.318,15.259,17.201000000000001,19.510000000000002,22.280999999999999,25.641999999999999,29.765000000000001,34.889000000000003,40.012999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,82,-0.42070000000000002,22.483699999999999,0.13686000000000001,13.438000000000001,15.395,17.352,19.681999999999999,22.484000000000002,25.887,30.071999999999999,35.286999999999999,40.503
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,83,-0.43049999999999999,22.687200000000001,0.13722000000000001,13.558,15.531000000000001,17.503,19.855,22.687000000000001,26.134,30.382000000000001,35.692,41.000999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,84,-0.44019999999999998,22.891500000000001,0.13758999999999999,13.677,15.666,17.655000000000001,20.029,22.891999999999999,26.382000000000001,30.695,36.1,41.506
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,85,-0.44990000000000002,23.096800000000002,0.13797000000000001,13.797000000000001,15.802,17.806999999999999,20.202999999999999,23.097000000000001,26.632000000000001,31.010999999999999,36.515000000000001,42.018999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,86,-0.45939999999999998,23.302900000000001,0.13838,13.914999999999999,15.936999999999999,17.957999999999998,20.376999999999999,23.303000000000001,26.885000000000002,31.33,36.936,42.542000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,87,-0.46879999999999999,23.510100000000001,0.13880000000000001,14.032999999999999,16.071999999999999,18.11,20.552,23.51,27.138000000000002,31.652999999999999,37.363,43.073
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,88,-0.47810000000000002,23.7182,0.13922999999999999,14.151,16.207000000000001,18.262,20.727,23.718,27.393999999999998,31.978999999999999,37.795000000000002,43.612000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,89,-0.48730000000000001,23.927199999999999,0.13969000000000001,14.268000000000001,16.341000000000001,18.414000000000001,20.902999999999999,23.927,27.652000000000001,32.308999999999997,38.235999999999997,44.162999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,90,-0.49640000000000001,24.1371,0.14016000000000001,14.385,16.475000000000001,18.565000000000001,21.077999999999999,24.137,27.911000000000001,32.642000000000003,38.682000000000002,44.722000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,91,-0.50529999999999997,24.347899999999999,0.14065,14.502000000000001,16.609000000000002,18.716999999999999,21.254999999999999,24.347999999999999,28.172000000000001,32.978999999999999,39.134999999999998,45.290999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,92,-0.51419999999999999,24.5595,0.14116999999999999,14.617000000000001,16.742000000000001,18.867999999999999,21.431000000000001,24.56,28.436,33.32,39.597000000000001,45.872999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,93,-0.52290000000000003,24.772200000000002,0.14169999999999999,14.731999999999999,16.875,19.018999999999998,21.606999999999999,24.771999999999998,28.701000000000001,33.664999999999999,40.064999999999998,46.463999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,94,-0.53149999999999997,24.985800000000001,0.14226,14.845000000000001,17.007999999999999,19.170000000000002,21.783999999999999,24.986000000000001,28.969000000000001,34.015000000000001,40.542000000000002,47.069000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,95,-0.53990000000000005,25.200500000000002,0.14283999999999999,14.958,17.14,19.321000000000002,21.960999999999999,25.2,29.239000000000001,34.368000000000002,41.027000000000001,47.686
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,96,-0.54820000000000002,25.4163,0.14344000000000001,15.071,17.271000000000001,19.472000000000001,22.138000000000002,25.416,29.512,34.726999999999997,41.521000000000001,48.314999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,97,-0.55640000000000001,25.633199999999999,0.14407,15.182,17.402000000000001,19.622,22.315999999999999,25.632999999999999,29.786999999999999,35.091000000000001,42.024999999999999,48.959000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,98,-0.56440000000000001,25.851299999999998,0.14471999999999999,15.292,17.532,19.771999999999998,22.494,25.850999999999999,30.064,35.459000000000003,42.537999999999997,49.616999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,99,-0.57220000000000004,26.070599999999999,0.14538999999999999,15.401999999999999,17.661999999999999,19.922000000000001,22.672000000000001,26.071000000000002,30.344000000000001,35.832000000000001,43.06,50.286999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,100,-0.57989999999999997,26.2911,0.14607999999999999,15.510999999999999,17.792000000000002,20.071999999999999,22.850999999999999,26.291,30.626999999999999,36.21,43.591000000000001,50.972000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,101,-0.58730000000000004,26.512799999999999,0.14679,15.62,17.920999999999999,20.222000000000001,23.030999999999999,26.513000000000002,30.911999999999999,36.593000000000004,44.131,51.668999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,102,-0.59460000000000002,26.735800000000001,0.14752000000000001,15.727,18.05,20.372,23.21,26.736000000000001,31.199000000000002,36.981000000000002,44.682000000000002,52.381999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,103,-0.60170000000000001,26.9602,0.14828,15.834,18.178000000000001,20.521999999999998,23.39,26.96,31.49,37.375999999999998,45.244,53.113
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,104,-0.60850000000000004,27.1861,0.14904999999999999,15.94,18.306000000000001,20.672000000000001,23.571000000000002,27.186,31.783999999999999,37.774000000000001,45.814999999999998,53.854999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,105,-0.61519999999999997,27.413699999999999,0.14984,16.045000000000002,18.433,20.821999999999999,23.753,27.414000000000001,32.08,38.179000000000002,46.396999999999998,54.615000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,106,-0.62160000000000004,27.6432,0.15065999999999999,16.149999999999999,18.561,20.972000000000001,23.936,27.643000000000001,32.381,38.591000000000001,46.991999999999997,55.393999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,107,-0.62780000000000002,27.875,0.15149000000000001,16.254000000000001,18.689,21.123000000000001,24.119,27.875,32.685000000000002,39.009,47.597999999999999,56.188000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,108,-0.63370000000000004,28.109200000000001,0.15232999999999999,16.359000000000002,18.817,21.274999999999999,24.305,28.109000000000002,32.993000000000002,39.433,48.213999999999999,56.996000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,109,-0.63929999999999998,28.3459,0.15318999999999999,16.463000000000001,18.945,21.428000000000001,24.492000000000001,28.346,33.305,39.863999999999997,48.843000000000004,57.822000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,110,-0.64459999999999995,28.5854,0.15406,16.568000000000001,19.074999999999999,21.582000000000001,24.681000000000001,28.585000000000001,33.621000000000002,40.301000000000002,49.482999999999997,58.664000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,111,-0.64959999999999996,28.8277,0.15493000000000001,16.672999999999998,19.204999999999998,21.736999999999998,24.870999999999999,28.827999999999999,33.941000000000003,40.744,50.131999999999998,59.518999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,112,-0.65429999999999999,29.0731,0.15581,16.777999999999999,19.335999999999999,21.893999999999998,25.064,29.073,34.265999999999998,41.195,50.792000000000002,60.389000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,113,-0.65849999999999997,29.3217,0.15670000000000001,16.884,19.468,22.052,25.259,29.321999999999999,34.594999999999999,41.652000000000001,51.463000000000001,61.274000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,114,-0.66239999999999999,29.573599999999999,0.15759999999999999,16.989999999999998,19.600999999999999,22.212,25.457000000000001,29.574000000000002,34.929000000000002,42.116,52.146000000000001,62.174999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,115,-0.66590000000000005,29.828900000000001,0.1585,17.096,19.734999999999999,22.373000000000001,25.655999999999999,29.829000000000001,35.268000000000001,42.587000000000003,52.838000000000001,63.088999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,116,-0.66890000000000005,30.087700000000002,0.15939999999999999,17.202999999999999,19.87,22.536999999999999,25.859000000000002,30.088000000000001,35.612000000000002,43.063000000000002,53.537999999999997,64.012
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,117,-0.6714,30.350100000000001,0.16031000000000001,17.309999999999999,20.006,22.701000000000001,26.064,30.35,35.96,43.546999999999997,54.247999999999998,64.948999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,118,-0.67349999999999999,30.616,0.16122,17.417999999999999,20.143000000000001,22.867999999999999,26.271000000000001,30.616,36.313000000000002,44.037999999999997,54.968000000000004,65.897999999999996
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,119,-0.67520000000000002,30.885400000000001,0.16213,17.526,20.280999999999999,23.036000000000001,26.481000000000002,30.885000000000002,36.670999999999999,44.533999999999999,55.695,66.856999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,120,-0.6764,31.1586,0.16305,17.634,20.420000000000002,23.206,26.693999999999999,31.158999999999999,37.034999999999997,45.037999999999997,56.433999999999997,67.828999999999994
Can't render this file because it has a wrong number of fields in line 78.

View File

@ -0,0 +1,488 @@
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,45,-0.38329999999999997,2.4607000000000001,0.090289999999999995,1.9,2.1,2.2999999999999998,2.5,2.7,3,3.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,45.5,-0.38329999999999997,2.5457000000000001,0.090329999999999994,2,2.1,2.2999999999999998,2.5,2.8,3.1,3.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,46,-0.38329999999999997,2.6305999999999998,0.090370000000000006,2,2.2000000000000002,2.4,2.6,2.9,3.2,3.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,46.5,-0.38329999999999997,2.7155,0.090399999999999994,2.1,2.2999999999999998,2.5,2.7,3,3.3,3.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,47,-0.38329999999999997,2.8007,0.090440000000000006,2.2000000000000002,2.4,2.6,2.8,3.1,3.4,3.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,47.5,-0.38329999999999997,2.8866999999999998,0.090480000000000005,2.2000000000000002,2.4,2.6,2.9,3.2,3.5,3.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,48,-0.38329999999999997,2.9741,0.090520000000000003,2.2999999999999998,2.5,2.7,3,3.3,3.6,4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,48.5,-0.38329999999999997,3.0636000000000001,0.090560000000000002,2.4,2.6,2.8,3.1,3.4,3.7,4.0999999999999996
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,49,-0.38329999999999997,3.1560000000000001,0.0906,2.4,2.6,2.9,3.2,3.5,3.8,4.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,49.5,-0.38329999999999997,3.2519999999999998,0.090639999999999998,2.5,2.7,3,3.3,3.6,3.9,4.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,50,-0.38329999999999997,3.3517999999999999,0.090679999999999997,2.6,2.8,3.1,3.4,3.7,4,4.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,50.5,-0.38329999999999997,3.4557000000000002,0.090719999999999995,2.7,2.9,3.2,3.5,3.8,4.2,4.5999999999999996
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,51,-0.38329999999999997,3.5636000000000001,0.090759999999999993,2.8,3,3.3,3.6,3.9,4.3,4.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,51.5,-0.38329999999999997,3.6753999999999998,0.090800000000000006,2.8,3.1,3.4,3.7,4,4.4000000000000004,4.9000000000000004
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,52,-0.38329999999999997,3.7911000000000001,0.09085,2.9,3.2,3.5,3.8,4.2,4.5999999999999996,5.0999999999999996
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,52.5,-0.38329999999999997,3.9104999999999999,0.090889999999999999,3,3.3,3.6,3.9,4.3,4.7,5.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,53,-0.38329999999999997,4.0331999999999999,0.090929999999999997,3.1,3.4,3.7,4,4.4000000000000004,4.9000000000000004,5.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,53.5,-0.38329999999999997,4.1590999999999996,0.090980000000000005,3.2,3.5,3.8,4.2,4.5999999999999996,5,5.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,54,-0.38329999999999997,4.2874999999999996,0.091020000000000004,3.3,3.6,3.9,4.3,4.7,5.2,5.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,54.5,-0.38329999999999997,4.4179000000000004,0.091060000000000002,3.4,3.7,4,4.4000000000000004,4.8,5.3,5.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,55,-0.38329999999999997,4.5498000000000003,0.0911,3.5,3.8,4.2,4.5,5,5.5,6.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,55.5,-0.38329999999999997,4.6826999999999996,0.091139999999999999,3.6,3.9,4.3,4.7,5.0999999999999996,5.7,6.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,56,-0.38329999999999997,4.8162000000000003,0.091179999999999997,3.7,4,4.4000000000000004,4.8,5.3,5.8,6.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,56.5,-0.38329999999999997,4.95,0.091209999999999999,3.8,4.0999999999999996,4.5,5,5.4,6,6.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,57,-0.38329999999999997,5.0837000000000003,0.091249999999999998,3.9,4.3,4.5999999999999996,5.0999999999999996,5.6,6.1,6.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,57.5,-0.38329999999999997,5.2172999999999998,0.09128,4,4.4000000000000004,4.8,5.2,5.7,6.3,7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,58,-0.38329999999999997,5.3506999999999998,0.091300000000000006,4.0999999999999996,4.5,4.9000000000000004,5.4,5.9,6.5,7.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,58.5,-0.38329999999999997,5.4833999999999996,0.091319999999999998,4.2,4.5999999999999996,5,5.5,6,6.6,7.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,59,-0.38329999999999997,5.6151,0.091340000000000005,4.3,4.7,5.0999999999999996,5.6,6.2,6.8,7.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,59.5,-0.38329999999999997,5.7454000000000001,0.091350000000000001,4.4000000000000004,4.8,5.3,5.7,6.3,6.9,7.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,60,-0.38329999999999997,5.8742000000000001,0.091359999999999997,4.5,4.9000000000000004,5.4,5.9,6.4,7.1,7.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,60.5,-0.38329999999999997,6.0014000000000003,0.091370000000000007,4.5999999999999996,5,5.5,6,6.6,7.3,8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,61,-0.38329999999999997,6.1269999999999998,0.091370000000000007,4.7,5.0999999999999996,5.6,6.1,6.7,7.4,8.1999999999999993
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,61.5,-0.38329999999999997,6.2511000000000001,0.091359999999999997,4.8,5.2,5.7,6.3,6.9,7.6,8.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,62,-0.38329999999999997,6.3738000000000001,0.091350000000000001,4.9000000000000004,5.3,5.8,6.4,7,7.7,8.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,62.5,-0.38329999999999997,6.4947999999999997,0.091329999999999995,5,5.4,5.9,6.5,7.1,7.8,8.6999999999999993
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,63,-0.38329999999999997,6.6143999999999998,0.091310000000000002,5.0999999999999996,5.5,6,6.6,7.3,8,8.8000000000000007
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,63.5,-0.38329999999999997,6.7328000000000001,0.091289999999999996,5.2,5.6,6.2,6.7,7.4,8.1,9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,64,-0.38329999999999997,6.8501000000000003,0.091259999999999994,5.3,5.7,6.3,6.9,7.5,8.3000000000000007,9.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,64.5,-0.38329999999999997,6.9661999999999997,0.091230000000000006,5.4,5.8,6.4,7,7.6,8.4,9.3000000000000007
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,65,-0.38329999999999997,7.0811999999999999,0.091189999999999993,5.5,5.9,6.5,7.1,7.8,8.6,9.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,65.5,-0.38329999999999997,7.1950000000000003,0.091149999999999995,5.5,6,6.6,7.2,7.9,8.6999999999999993,9.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,66,-0.38329999999999997,7.3075999999999999,0.0911,5.6,6.1,6.7,7.3,8,8.8000000000000007,9.8000000000000007
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,66.5,-0.38329999999999997,7.4188999999999998,0.091060000000000002,5.7,6.2,6.8,7.4,8.1,9,9.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,67,-0.38329999999999997,7.5288000000000004,0.091009999999999994,5.8,6.3,6.9,7.5,8.3000000000000007,9.1,10
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,67.5,-0.38329999999999997,7.6375000000000002,0.090959999999999999,5.9,6.4,7,7.6,8.4,9.1999999999999993,10.199999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,68,-0.38329999999999997,7.7447999999999997,0.090899999999999995,6,6.5,7.1,7.7,8.5,9.4,10.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,68.5,-0.38329999999999997,7.8509000000000002,0.09085,6.1,6.6,7.2,7.9,8.6,9.5,10.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,69,-0.38329999999999997,7.9558999999999997,0.090789999999999996,6.1,6.7,7.3,8,8.6999999999999993,9.6,10.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,69.5,-0.38329999999999997,8.0599000000000007,0.090740000000000001,6.2,6.8,7.4,8.1,8.8000000000000007,9.6999999999999993,10.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,70,-0.38329999999999997,8.1630000000000003,0.090679999999999997,6.3,6.9,7.5,8.1999999999999993,9,9.9,10.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,70.5,-0.38329999999999997,8.2651000000000003,0.090620000000000006,6.4,6.9,7.6,8.3000000000000007,9.1,10,11
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,71,-0.38329999999999997,8.3666,0.090560000000000002,6.5,7,7.7,8.4,9.1999999999999993,10.1,11.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,71.5,-0.38329999999999997,8.4675999999999991,0.090499999999999997,6.5,7.1,7.7,8.5,9.3000000000000007,10.199999999999999,11.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,72,-0.38329999999999997,8.5678999999999998,0.090429999999999996,6.6,7.2,7.8,8.6,9.4,10.3,11.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,72.5,-0.38329999999999997,8.6674000000000007,0.090370000000000006,6.7,7.3,7.9,8.6999999999999993,9.5,10.5,11.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,73,-0.38329999999999997,8.7660999999999998,0.090310000000000001,6.8,7.4,8,8.8000000000000007,9.6,10.6,11.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,73.5,-0.38329999999999997,8.8637999999999995,0.090249999999999997,6.9,7.4,8.1,8.9,9.6999999999999993,10.7,11.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,74,-0.38329999999999997,8.9601000000000006,0.090179999999999996,6.9,7.5,8.1999999999999993,9,9.8000000000000007,10.8,11.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,74.5,-0.38329999999999997,9.0551999999999992,0.090120000000000006,7,7.6,8.3000000000000007,9.1,9.9,10.9,12
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,75,-0.38329999999999997,9.1489999999999991,0.090050000000000005,7.1,7.7,8.4,9.1,10,11,12.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,75.5,-0.38329999999999997,9.2417999999999996,0.089990000000000001,7.1,7.8,8.5,9.1999999999999993,10.1,11.1,12.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,76,-0.38329999999999997,9.3337000000000003,0.08992,7.2,7.8,8.5,9.3000000000000007,10.199999999999999,11.2,12.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,76.5,-0.38329999999999997,9.4252000000000002,0.089849999999999999,7.3,7.9,8.6,9.4,10.3,11.4,12.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,77,-0.38329999999999997,9.5166000000000004,0.089789999999999995,7.4,8,8.6999999999999993,9.5,10.4,11.5,12.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,77.5,-0.38329999999999997,9.6085999999999991,0.089719999999999994,7.4,8.1,8.8000000000000007,9.6,10.5,11.6,12.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,78,-0.38329999999999997,9.7014999999999993,0.089649999999999994,7.5,8.1999999999999993,8.9,9.6999999999999993,10.6,11.7,12.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,78.5,-0.38329999999999997,9.7957000000000001,0.089590000000000003,7.6,8.1999999999999993,9,9.8000000000000007,10.7,11.8,13
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,79,-0.38329999999999997,9.8915000000000006,0.089520000000000002,7.7,8.3000000000000007,9.1,9.9,10.8,11.9,13.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,79.5,-0.38329999999999997,9.9892000000000003,0.089459999999999998,7.7,8.4,9.1,10,10.9,12,13.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,80,-0.38329999999999997,10.0891,0.089399999999999993,7.8,8.5,9.1999999999999993,10.1,11,12.1,13.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,80.5,-0.38329999999999997,10.191599999999999,0.089340000000000003,7.9,8.6,9.3000000000000007,10.199999999999999,11.2,12.3,13.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,81,-0.38329999999999997,10.2965,0.089279999999999998,8,8.6999999999999993,9.4,10.3,11.3,12.4,13.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,81.5,-0.38329999999999997,10.4041,0.089230000000000004,8.1,8.8000000000000007,9.5,10.4,11.4,12.5,13.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,82,-0.38329999999999997,10.513999999999999,0.089179999999999995,8.1,8.8000000000000007,9.6,10.5,11.5,12.6,13.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,82.5,-0.38329999999999997,10.626300000000001,0.089139999999999997,8.1999999999999993,8.9,9.6999999999999993,10.6,11.6,12.8,14.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,83,-0.38329999999999997,10.741,0.089099999999999999,8.3000000000000007,9,9.8000000000000007,10.7,11.8,12.9,14.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,83.5,-0.38329999999999997,10.857799999999999,0.08906,8.4,9.1,9.9,10.9,11.9,13.1,14.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,84,-0.38329999999999997,10.976699999999999,0.089029999999999998,8.5,9.1999999999999993,10.1,11,12,13.2,14.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,84.5,-0.38329999999999997,11.0974,0.088999999999999996,8.6,9.3000000000000007,10.199999999999999,11.1,12.1,13.3,14.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,85,-0.38329999999999997,11.219799999999999,0.088980000000000004,8.6999999999999993,9.4,10.3,11.2,12.3,13.5,14.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,85.5,-0.38329999999999997,11.343500000000001,0.088969999999999994,8.8000000000000007,9.5,10.4,11.3,12.4,13.6,15
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,86,-0.38329999999999997,11.468400000000001,0.088950000000000001,8.9,9.6999999999999993,10.5,11.5,12.6,13.8,15.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,86.5,-0.38329999999999997,11.593999999999999,0.088950000000000001,9,9.8000000000000007,10.6,11.6,12.7,13.9,15.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,87,-0.38329999999999997,11.7201,0.088950000000000001,9.1,9.9,10.7,11.7,12.8,14.1,15.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,87.5,-0.38329999999999997,11.8461,0.088950000000000001,9.1999999999999993,10,10.9,11.8,13,14.2,15.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,88,-0.38329999999999997,11.972,0.088959999999999997,9.3000000000000007,10.1,11,12,13.1,14.4,15.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,88.5,-0.38329999999999997,12.0976,0.088980000000000004,9.4,10.199999999999999,11.1,12.1,13.2,14.5,16
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,89,-0.38329999999999997,12.222899999999999,0.088999999999999996,9.5,10.3,11.2,12.2,13.4,14.7,16.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,89.5,-0.38329999999999997,12.3477,0.089029999999999998,9.6,10.4,11.3,12.3,13.5,14.8,16.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,90,-0.38329999999999997,12.472300000000001,0.08906,9.6999999999999993,10.5,11.4,12.5,13.7,15,16.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,90.5,-0.38329999999999997,12.596500000000001,0.089090000000000003,9.8000000000000007,10.6,11.5,12.6,13.8,15.1,16.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,91,-0.38329999999999997,12.720499999999999,0.089130000000000001,9.9,10.7,11.7,12.7,13.9,15.3,16.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,91.5,-0.38329999999999997,12.8443,0.089179999999999995,10,10.8,11.8,12.8,14.1,15.5,17
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,92,-0.38329999999999997,12.9681,0.089230000000000004,10.1,10.9,11.9,13,14.2,15.6,17.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,92.5,-0.38329999999999997,13.092000000000001,0.089279999999999998,10.1,11,12,13.1,14.3,15.8,17.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,93,-0.38329999999999997,13.2158,0.089340000000000003,10.199999999999999,11.1,12.1,13.2,14.5,15.9,17.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,93.5,-0.38329999999999997,13.3399,0.089410000000000003,10.3,11.2,12.2,13.3,14.6,16.100000000000001,17.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,94,-0.38329999999999997,13.4643,0.089480000000000004,10.4,11.3,12.3,13.5,14.7,16.2,17.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,94.5,-0.38329999999999997,13.5892,0.089550000000000005,10.5,11.4,12.4,13.6,14.9,16.399999999999999,18
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,95,-0.38329999999999997,13.714600000000001,0.089630000000000001,10.6,11.5,12.6,13.7,15,16.5,18.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,95.5,-0.38329999999999997,13.8408,0.089719999999999994,10.7,11.6,12.7,13.8,15.2,16.7,18.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,96,-0.38329999999999997,13.967599999999999,0.089810000000000001,10.8,11.7,12.8,14,15.3,16.8,18.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,96.5,-0.38329999999999997,14.0953,0.089899999999999994,10.9,11.8,12.9,14.1,15.4,17,18.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,97,-0.38329999999999997,14.2239,0.09,11,12,13,14.2,15.6,17.100000000000001,18.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,97.5,-0.38329999999999997,14.3537,0.0901,11.1,12.1,13.1,14.4,15.7,17.3,19.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,98,-0.38329999999999997,14.4848,0.090209999999999999,11.2,12.2,13.3,14.5,15.9,17.5,19.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,98.5,-0.38329999999999997,14.6174,0.090329999999999994,11.3,12.3,13.4,14.6,16,17.600000000000001,19.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,99,-0.38329999999999997,14.751899999999999,0.090440000000000006,11.4,12.4,13.5,14.8,16.2,17.8,19.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,99.5,-0.38329999999999997,14.888199999999999,0.090569999999999998,11.5,12.5,13.6,14.9,16.3,18,19.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,100,-0.38329999999999997,15.0267,0.090690000000000007,11.6,12.6,13.7,15,16.5,18.100000000000001,20
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,100.5,-0.38329999999999997,15.1676,0.090829999999999994,11.7,12.7,13.9,15.2,16.600000000000001,18.3,20.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,101,-0.38329999999999997,15.3108,0.090959999999999999,11.8,12.8,14,15.3,16.8,18.5,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,101.5,-0.38329999999999997,15.4564,0.0911,11.9,13,14.1,15.5,17,18.7,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,102,-0.38329999999999997,15.6046,0.091249999999999998,12,13.1,14.3,15.6,17.100000000000001,18.899999999999999,20.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,102.5,-0.38329999999999997,15.7553,0.091389999999999999,12.1,13.2,14.4,15.8,17.3,19,21
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,103,-0.38329999999999997,15.9087,0.091550000000000006,12.3,13.3,14.5,15.9,17.5,19.2,21.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,103.5,-0.38329999999999997,16.064499999999999,0.091700000000000004,12.4,13.5,14.7,16.100000000000001,17.600000000000001,19.399999999999999,21.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,104,-0.38329999999999997,16.222899999999999,0.091859999999999997,12.5,13.6,14.8,16.2,17.8,19.600000000000001,21.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,104.5,-0.38329999999999997,16.383700000000001,0.092030000000000001,12.6,13.7,15,16.399999999999999,18,19.8,21.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,105,-0.38329999999999997,16.547000000000001,0.092189999999999994,12.7,13.8,15.1,16.5,18.2,20,22.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,105.5,-0.38329999999999997,16.712900000000001,0.092359999999999998,12.8,14,15.3,16.7,18.399999999999999,20.2,22.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,106,-0.38329999999999997,16.881399999999999,0.092539999999999997,13,14.1,15.4,16.899999999999999,18.5,20.5,22.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,106.5,-0.38329999999999997,17.052700000000002,0.092710000000000001,13.1,14.3,15.6,17.100000000000001,18.7,20.7,22.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,107,-0.38329999999999997,17.226900000000001,0.09289,13.2,14.4,15.7,17.2,18.899999999999999,20.9,23.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,107.5,-0.38329999999999997,17.4039,0.09307,13.3,14.5,15.9,17.399999999999999,19.100000000000001,21.1,23.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,108,-0.38329999999999997,17.5839,0.093259999999999996,13.5,14.7,16,17.600000000000001,19.3,21.3,23.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,108.5,-0.38329999999999997,17.7668,0.093439999999999995,13.6,14.8,16.2,17.8,19.5,21.6,23.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,109,-0.38329999999999997,17.9526,0.093630000000000005,13.7,15,16.399999999999999,18,19.7,21.8,24.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,109.5,-0.38329999999999997,18.141200000000001,0.093820000000000001,13.9,15.1,16.5,18.100000000000001,20,22,24.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,110,-0.38329999999999997,18.3324,0.094009999999999996,14,15.3,16.7,18.3,20.2,22.3,24.7
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,65,-0.38329999999999997,7.2401999999999997,0.091130000000000003,5.6,6.1,6.6,7.2,7.9,8.6999999999999993,9.6999999999999993
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,65.5,-0.38329999999999997,7.3522999999999996,0.091090000000000004,5.7,6.2,6.7,7.4,8.1,8.9,9.8000000000000007
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,66,-0.38329999999999997,7.4630000000000001,0.091039999999999996,5.8,6.3,6.8,7.5,8.1999999999999993,9,10
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,66.5,-0.38329999999999997,7.5724,0.090990000000000001,5.8,6.4,6.9,7.6,8.3000000000000007,9.1,10.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,67,-0.38329999999999997,7.6806000000000001,0.090939999999999993,5.9,6.4,7,7.7,8.4,9.3000000000000007,10.199999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,67.5,-0.38329999999999997,7.7873999999999999,0.090880000000000002,6,6.5,7.1,7.8,8.5,9.4,10.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,68,-0.38329999999999997,7.8929999999999998,0.090829999999999994,6.1,6.6,7.2,7.9,8.6999999999999993,9.5,10.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,68.5,-0.38329999999999997,7.9976000000000003,0.090770000000000003,6.2,6.7,7.3,8,8.8000000000000007,9.6999999999999993,10.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,69,-0.38329999999999997,8.1012000000000004,0.090709999999999999,6.3,6.8,7.4,8.1,8.9,9.8000000000000007,10.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,69.5,-0.38329999999999997,8.2039000000000009,0.090649999999999994,6.3,6.9,7.5,8.1999999999999993,9,9.9,10.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,70,-0.38329999999999997,8.3057999999999996,0.090590000000000004,6.4,7,7.6,8.3000000000000007,9.1,10,11.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,70.5,-0.38329999999999997,8.4070999999999998,0.090529999999999999,6.5,7.1,7.7,8.4,9.1999999999999993,10.1,11.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,71,-0.38329999999999997,8.5077999999999996,0.090469999999999995,6.6,7.1,7.8,8.5,9.3000000000000007,10.3,11.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,71.5,-0.38329999999999997,8.6077999999999992,0.090410000000000004,6.7,7.2,7.9,8.6,9.4,10.4,11.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,72,-0.38329999999999997,8.7070000000000007,0.09035,6.7,7.3,8,8.6999999999999993,9.5,10.5,11.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,72.5,-0.38329999999999997,8.8053000000000008,0.090279999999999999,6.8,7.4,8.1,8.8000000000000007,9.6999999999999993,10.6,11.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,73,-0.38329999999999997,8.9024999999999999,0.090219999999999995,6.9,7.5,8.1,8.9,9.8000000000000007,10.7,11.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,73.5,-0.38329999999999997,8.9983000000000004,0.090160000000000004,7,7.6,8.1999999999999993,9,9.9,10.8,12
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,74,-0.38329999999999997,9.0928000000000004,0.090090000000000003,7,7.6,8.3000000000000007,9.1,10,11,12.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,74.5,-0.38329999999999997,9.1861999999999995,0.090029999999999999,7.1,7.7,8.4,9.1999999999999993,10.1,11.1,12.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,75,-0.38329999999999997,9.2786000000000008,0.089959999999999998,7.2,7.8,8.5,9.3000000000000007,10.199999999999999,11.2,12.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,75.5,-0.38329999999999997,9.3703000000000003,0.089889999999999998,7.2,7.9,8.6,9.4,10.3,11.3,12.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,76,-0.38329999999999997,9.4617000000000004,0.089829999999999993,7.3,8,8.6999999999999993,9.5,10.4,11.4,12.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,76.5,-0.38329999999999997,9.5533000000000001,0.089760000000000006,7.4,8,8.6999999999999993,9.6,10.5,11.5,12.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,77,-0.38329999999999997,9.6456,0.089690000000000006,7.5,8.1,8.8000000000000007,9.6,10.6,11.6,12.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,77.5,-0.38329999999999997,9.7390000000000008,0.089630000000000001,7.5,8.1999999999999993,8.9,9.6999999999999993,10.7,11.7,12.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,78,-0.38329999999999997,9.8338000000000001,0.089560000000000001,7.6,8.3000000000000007,9,9.8000000000000007,10.8,11.8,13.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,78.5,-0.38329999999999997,9.9303000000000008,0.089499999999999996,7.7,8.4,9.1,9.9,10.9,12,13.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,79,-0.38329999999999997,10.0289,0.089429999999999996,7.8,8.4,9.1999999999999993,10,11,12.1,13.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,79.5,-0.38329999999999997,10.129799999999999,0.089370000000000005,7.8,8.5,9.3000000000000007,10.1,11.1,12.2,13.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,80,-0.38329999999999997,10.2332,0.089319999999999997,7.9,8.6,9.4,10.199999999999999,11.2,12.3,13.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,80.5,-0.38329999999999997,10.3393,0.089260000000000006,8,8.6999999999999993,9.5,10.3,11.3,12.4,13.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,81,-0.38329999999999997,10.447699999999999,0.089209999999999998,8.1,8.8000000000000007,9.6,10.4,11.4,12.6,13.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,81.5,-0.38329999999999997,10.5586,0.089160000000000003,8.1999999999999993,8.9,9.6999999999999993,10.6,11.6,12.7,14
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,82,-0.38329999999999997,10.671900000000001,0.089120000000000005,8.3000000000000007,9,9.8000000000000007,10.7,11.7,12.8,14.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,82.5,-0.38329999999999997,10.7874,0.089080000000000006,8.4,9.1,9.9,10.8,11.8,13,14.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,83,-0.38329999999999997,10.905099999999999,0.089050000000000004,8.5,9.1999999999999993,10,10.9,11.9,13.1,14.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,83.5,-0.38329999999999997,11.024800000000001,0.089020000000000002,8.5,9.3000000000000007,10.1,11,12.1,13.3,14.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,84,-0.38329999999999997,11.1462,0.08899,8.6,9.4,10.199999999999999,11.1,12.2,13.4,14.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,84.5,-0.38329999999999997,11.2691,0.088969999999999994,8.6999999999999993,9.5,10.3,11.3,12.3,13.5,14.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,85,-0.38329999999999997,11.3934,0.088959999999999997,8.8000000000000007,9.6,10.4,11.4,12.5,13.7,15.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,85.5,-0.38329999999999997,11.518599999999999,0.088950000000000001,8.9,9.6999999999999993,10.6,11.5,12.6,13.8,15.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,86,-0.38329999999999997,11.644399999999999,0.088950000000000001,9,9.8000000000000007,10.7,11.6,12.7,14,15.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,86.5,-0.38329999999999997,11.7705,0.088950000000000001,9.1,9.9,10.8,11.8,12.9,14.2,15.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,87,-0.38329999999999997,11.8965,0.088959999999999997,9.1999999999999993,10,10.9,11.9,13,14.3,15.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,87.5,-0.38329999999999997,12.0223,0.088969999999999994,9.3000000000000007,10.1,11,12,13.2,14.5,15.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,88,-0.38329999999999997,12.1478,0.08899,9.4,10.199999999999999,11.1,12.1,13.3,14.6,16.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,88.5,-0.38329999999999997,12.2729,0.089010000000000006,9.5,10.3,11.2,12.3,13.4,14.8,16.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,89,-0.38329999999999997,12.397600000000001,0.089039999999999994,9.6,10.4,11.4,12.4,13.6,14.9,16.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,89.5,-0.38329999999999997,12.522,0.089069999999999996,9.6999999999999993,10.5,11.5,12.5,13.7,15.1,16.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,90,-0.38329999999999997,12.646100000000001,0.089109999999999995,9.8000000000000007,10.6,11.6,12.6,13.8,15.2,16.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,90.5,-0.38329999999999997,12.77,0.089149999999999993,9.9,10.7,11.7,12.8,14,15.4,16.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,91,-0.38329999999999997,12.8939,0.089200000000000002,10,10.9,11.8,12.9,14.1,15.5,17.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,91.5,-0.38329999999999997,13.0177,0.089249999999999996,10.1,11,11.9,13,14.3,15.7,17.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,92,-0.38329999999999997,13.141500000000001,0.08931,10.199999999999999,11.1,12,13.1,14.4,15.8,17.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,92.5,-0.38329999999999997,13.2654,0.089370000000000005,10.3,11.2,12.1,13.3,14.5,16,17.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,93,-0.38329999999999997,13.3896,0.089440000000000006,10.4,11.3,12.3,13.4,14.7,16.100000000000001,17.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,93.5,-0.38329999999999997,13.514200000000001,0.089510000000000006,10.5,11.4,12.4,13.5,14.8,16.3,17.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,94,-0.38329999999999997,13.6393,0.089590000000000003,10.6,11.5,12.5,13.6,14.9,16.399999999999999,18.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,94.5,-0.38329999999999997,13.765000000000001,0.08967,10.7,11.6,12.6,13.8,15.1,16.600000000000001,18.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,95,-0.38329999999999997,13.891400000000001,0.089749999999999996,10.8,11.7,12.7,13.9,15.2,16.7,18.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,95.5,-0.38329999999999997,14.018599999999999,0.089840000000000003,10.8,11.8,12.8,14,15.4,16.899999999999999,18.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,96,-0.38329999999999997,14.146599999999999,0.089940000000000006,10.9,11.9,12.9,14.1,15.5,17,18.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,96.5,-0.38329999999999997,14.275700000000001,0.090039999999999995,11,12,13.1,14.3,15.6,17.2,19
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,97,-0.38329999999999997,14.405900000000001,0.090149999999999994,11.1,12.1,13.2,14.4,15.8,17.399999999999999,19.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,97.5,-0.38329999999999997,14.537599999999999,0.090260000000000007,11.2,12.2,13.3,14.5,15.9,17.5,19.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,98,-0.38329999999999997,14.670999999999999,0.090370000000000006,11.3,12.3,13.4,14.7,16.100000000000001,17.7,19.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,98.5,-0.38329999999999997,14.8062,0.090490000000000001,11.4,12.4,13.5,14.8,16.2,17.899999999999999,19.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,99,-0.38329999999999997,14.9434,0.090620000000000006,11.5,12.5,13.7,14.9,16.399999999999999,18,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,99.5,-0.38329999999999997,15.082800000000001,0.090749999999999997,11.6,12.7,13.8,15.1,16.5,18.2,20.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,100,-0.38329999999999997,15.224600000000001,0.090880000000000002,11.7,12.8,13.9,15.2,16.7,18.399999999999999,20.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,100.5,-0.38329999999999997,15.3687,0.091020000000000004,11.9,12.9,14.1,15.4,16.899999999999999,18.600000000000001,20.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,101,-0.38329999999999997,15.5154,0.091160000000000005,12,13,14.2,15.5,17,18.7,20.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,101.5,-0.38329999999999997,15.6646,0.091310000000000002,12.1,13.1,14.3,15.7,17.2,18.899999999999999,20.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,102,-0.38329999999999997,15.8164,0.09146,12.2,13.3,14.5,15.8,17.399999999999999,19.100000000000001,21.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,102.5,-0.38329999999999997,15.970700000000001,0.091609999999999997,12.3,13.4,14.6,16,17.5,19.3,21.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,103,-0.38329999999999997,16.127600000000001,0.091770000000000004,12.4,13.5,14.7,16.100000000000001,17.7,19.5,21.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,103.5,-0.38329999999999997,16.286999999999999,0.091929999999999998,12.5,13.6,14.9,16.3,17.899999999999999,19.7,21.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,104,-0.38329999999999997,16.448799999999999,0.092090000000000005,12.6,13.8,15,16.399999999999999,18.100000000000001,19.899999999999999,22
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,104.5,-0.38329999999999997,16.613099999999999,0.092259999999999995,12.8,13.9,15.2,16.600000000000001,18.2,20.100000000000001,22.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,105,-0.38329999999999997,16.78,0.092429999999999998,12.9,14,15.3,16.8,18.399999999999999,20.3,22.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,105.5,-0.38329999999999997,16.9496,0.092609999999999998,13,14.2,15.5,16.899999999999999,18.600000000000001,20.5,22.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,106,-0.38329999999999997,17.122,0.092780000000000001,13.1,14.3,15.6,17.100000000000001,18.8,20.8,23
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,106.5,-0.38329999999999997,17.2973,0.092960000000000001,13.3,14.5,15.8,17.3,19,21,23.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,107,-0.38329999999999997,17.4755,0.093149999999999997,13.4,14.6,15.9,17.5,19.2,21.2,23.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,107.5,-0.38329999999999997,17.656700000000001,0.093329999999999996,13.5,14.7,16.100000000000001,17.7,19.399999999999999,21.4,23.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,108,-0.38329999999999997,17.840699999999998,0.093520000000000006,13.7,14.9,16.3,17.8,19.600000000000001,21.7,24
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,108.5,-0.38329999999999997,18.027699999999999,0.093710000000000002,13.8,15,16.399999999999999,18,19.8,21.9,24.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,109,-0.38329999999999997,18.217400000000001,0.093899999999999997,13.9,15.2,16.600000000000001,18.2,20,22.1,24.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,109.5,-0.38329999999999997,18.409600000000001,0.094089999999999993,14.1,15.4,16.8,18.399999999999999,20.3,22.4,24.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,110,-0.38329999999999997,18.604299999999999,0.094280000000000003,14.2,15.5,17,18.600000000000001,20.5,22.6,25.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,110.5,-0.38329999999999997,18.801500000000001,0.094479999999999995,14.4,15.7,17.100000000000001,18.8,20.7,22.9,25.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,111,-0.38329999999999997,19.000900000000001,0.094670000000000004,14.5,15.8,17.3,19,20.9,23.1,25.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,111.5,-0.38329999999999997,19.202400000000001,0.094869999999999996,14.7,16,17.5,19.2,21.2,23.4,26
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,112,-0.38329999999999997,19.405999999999999,0.095070000000000002,14.8,16.2,17.7,19.399999999999999,21.4,23.6,26.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,112.5,-0.38329999999999997,19.611599999999999,0.095269999999999994,15,16.3,17.899999999999999,19.600000000000001,21.6,23.9,26.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,113,-0.38329999999999997,19.818999999999999,0.095460000000000003,15.1,16.5,18,19.8,21.8,24.2,26.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,113.5,-0.38329999999999997,20.027999999999999,0.095659999999999995,15.3,16.7,18.2,20,22.1,24.4,27.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,114,-0.38329999999999997,20.238499999999998,0.095860000000000001,15.4,16.8,18.399999999999999,20.2,22.3,24.7,27.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,114.5,-0.38329999999999997,20.450199999999999,0.096060000000000006,15.6,17,18.600000000000001,20.5,22.6,25,27.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,115,-0.38329999999999997,20.6629,0.096259999999999998,15.7,17.2,18.8,20.7,22.8,25.2,28.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,115.5,-0.38329999999999997,20.8766,0.096460000000000004,15.9,17.3,19,20.9,23,25.5,28.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,116,-0.38329999999999997,21.090900000000001,0.096659999999999996,16,17.5,19.2,21.1,23.3,25.8,28.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,116.5,-0.38329999999999997,21.305900000000001,0.096860000000000002,16.2,17.7,19.399999999999999,21.3,23.5,26.1,29
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,117,-0.38329999999999997,21.5213,0.097070000000000004,16.3,17.8,19.600000000000001,21.5,23.8,26.3,29.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,117.5,-0.38329999999999997,21.736999999999998,0.097269999999999995,16.5,18,19.8,21.7,24,26.6,29.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,118,-0.38329999999999997,21.9529,0.097470000000000001,16.600000000000001,18.2,19.899999999999999,22,24.2,26.9,29.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,118.5,-0.38329999999999997,22.169,0.097670000000000007,16.8,18.399999999999999,20.100000000000001,22.2,24.5,27.2,30.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,119,-0.38329999999999997,22.385100000000001,0.097879999999999995,16.899999999999999,18.5,20.3,22.4,24.7,27.4,30.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,119.5,-0.38329999999999997,22.601199999999999,0.098080000000000001,17.100000000000001,18.7,20.5,22.6,25,27.7,30.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,120,-0.38329999999999997,22.817299999999999,0.098280000000000006,17.3,18.899999999999999,20.7,22.8,25.2,28,31.2
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,45,-0.35210000000000002,2.4409999999999998,0.091819999999999999,1.9,2,2.2000000000000002,2.4,2.7,3,3.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,45.5,-0.35210000000000002,2.5244,0.09153,1.9,2.1,2.2999999999999998,2.5,2.8,3.1,3.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,46,-0.35210000000000002,2.6076999999999999,0.091240000000000002,2,2.2000000000000002,2.4,2.6,2.9,3.1,3.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,46.5,-0.35210000000000002,2.6913,0.090939999999999993,2.1,2.2999999999999998,2.5,2.7,3,3.2,3.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,47,-0.35210000000000002,2.7755000000000001,0.090649999999999994,2.1,2.2999999999999998,2.5,2.8,3,3.3,3.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,47.5,-0.35210000000000002,2.8609,0.090359999999999996,2.2000000000000002,2.4,2.6,2.9,3.1,3.4,3.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,48,-0.35210000000000002,2.948,0.090069999999999997,2.2999999999999998,2.5,2.7,2.9,3.2,3.6,3.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,48.5,-0.35210000000000002,3.0377000000000001,0.089770000000000003,2.2999999999999998,2.6,2.8,3,3.3,3.7,4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,49,-0.35210000000000002,3.1307999999999998,0.089480000000000004,2.4,2.6,2.9,3.1,3.4,3.8,4.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,49.5,-0.35210000000000002,3.2275999999999998,0.089190000000000005,2.5,2.7,3,3.2,3.5,3.9,4.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,50,-0.35210000000000002,3.3277999999999999,0.088900000000000007,2.6,2.8,3,3.3,3.6,4,4.4000000000000004
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,50.5,-0.35210000000000002,3.4310999999999998,0.088609999999999994,2.7,2.9,3.1,3.4,3.8,4.0999999999999996,4.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,51,-0.35210000000000002,3.5375999999999999,0.08831,2.7,3,3.2,3.5,3.9,4.2,4.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,51.5,-0.35210000000000002,3.6476999999999999,0.088010000000000005,2.8,3.1,3.3,3.6,4,4.4000000000000004,4.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,52,-0.35210000000000002,3.762,0.087709999999999996,2.9,3.2,3.5,3.8,4.0999999999999996,4.5,5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,52.5,-0.35210000000000002,3.8814000000000002,0.087410000000000002,3,3.3,3.6,3.9,4.2,4.5999999999999996,5.0999999999999996
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,53,-0.35210000000000002,4.0060000000000002,0.087110000000000007,3.1,3.4,3.7,4,4.4000000000000004,4.8,5.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,53.5,-0.35210000000000002,4.1353999999999997,0.086809999999999998,3.2,3.5,3.8,4.0999999999999996,4.5,4.9000000000000004,5.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,54,-0.35210000000000002,4.2693000000000003,0.086510000000000004,3.3,3.6,3.9,4.3,4.7,5.0999999999999996,5.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,54.5,-0.35210000000000002,4.4066000000000001,0.086209999999999995,3.4,3.7,4,4.4000000000000004,4.8,5.3,5.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,55,-0.35210000000000002,4.5467000000000004,0.085919999999999996,3.6,3.8,4.2,4.5,5,5.4,6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,55.5,-0.35210000000000002,4.6891999999999996,0.085629999999999998,3.7,4,4.3,4.7,5.0999999999999996,5.6,6.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,56,-0.35210000000000002,4.8338000000000001,0.085349999999999995,3.8,4.0999999999999996,4.4000000000000004,4.8,5.3,5.8,6.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,56.5,-0.35210000000000002,4.9795999999999996,0.085070000000000007,3.9,4.2,4.5999999999999996,5,5.4,5.9,6.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,57,-0.35210000000000002,5.1258999999999997,0.084809999999999997,4,4.3,4.7,5.0999999999999996,5.6,6.1,6.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,57.5,-0.35210000000000002,5.2721,0.08455,4.0999999999999996,4.5,4.9000000000000004,5.3,5.7,6.3,6.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,58,-0.35210000000000002,5.4180000000000001,0.0843,4.3,4.5999999999999996,5,5.4,5.9,6.4,7.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,58.5,-0.35210000000000002,5.5632000000000001,0.084059999999999996,4.4000000000000004,4.7,5.0999999999999996,5.6,6.1,6.6,7.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,59,-0.35210000000000002,5.7073999999999998,0.083830000000000002,4.5,4.8,5.3,5.7,6.2,6.8,7.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,59.5,-0.35210000000000002,5.8501000000000003,0.08362,4.5999999999999996,5,5.4,5.9,6.4,7,7.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,60,-0.35210000000000002,5.9907000000000004,0.083419999999999994,4.7,5.0999999999999996,5.5,6,6.5,7.1,7.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,60.5,-0.35210000000000002,6.1284000000000001,0.083239999999999995,4.8,5.2,5.6,6.1,6.7,7.3,8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,61,-0.35210000000000002,6.2632000000000003,0.083080000000000001,4.9000000000000004,5.3,5.8,6.3,6.8,7.4,8.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,61.5,-0.35210000000000002,6.3954000000000004,0.082919999999999994,5,5.4,5.9,6.4,7,7.6,8.3000000000000007
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,62,-0.35210000000000002,6.5251000000000001,0.082790000000000002,5.0999999999999996,5.6,6,6.5,7.1,7.7,8.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,62.5,-0.35210000000000002,6.6527000000000003,0.082659999999999997,5.2,5.7,6.1,6.7,7.2,7.9,8.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,63,-0.35210000000000002,6.7786,0.082549999999999998,5.3,5.8,6.2,6.8,7.4,8,8.8000000000000007
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,63.5,-0.35210000000000002,6.9028,0.082449999999999996,5.4,5.9,6.4,6.9,7.5,8.1999999999999993,8.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,64,-0.35210000000000002,7.0255000000000001,0.082360000000000003,5.5,6,6.5,7,7.6,8.3000000000000007,9.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,64.5,-0.35210000000000002,7.1467000000000001,0.082290000000000002,5.6,6.1,6.6,7.1,7.8,8.5,9.3000000000000007
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,65,-0.35210000000000002,7.2666000000000004,0.082229999999999998,5.7,6.2,6.7,7.3,7.9,8.6,9.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,65.5,-0.35210000000000002,7.3853999999999997,0.082180000000000003,5.8,6.3,6.8,7.4,8,8.6999999999999993,9.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,66,-0.35210000000000002,7.5034000000000001,0.082150000000000001,5.9,6.4,6.9,7.5,8.1999999999999993,8.9,9.6999999999999993
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,66.5,-0.35210000000000002,7.6205999999999996,0.082129999999999995,6,6.5,7,7.6,8.3000000000000007,9,9.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,67,-0.35210000000000002,7.7370000000000001,0.082119999999999999,6.1,6.6,7.1,7.7,8.4,9.1999999999999993,10
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,67.5,-0.35210000000000002,7.8525999999999998,0.082119999999999999,6.2,6.7,7.2,7.9,8.5,9.3000000000000007,10.199999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,68,-0.35210000000000002,7.9673999999999996,0.082140000000000005,6.3,6.8,7.3,8,8.6999999999999993,9.4,10.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,68.5,-0.35210000000000002,8.0815999999999999,0.082159999999999997,6.4,6.9,7.5,8.1,8.8000000000000007,9.6,10.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,69,-0.35210000000000002,8.1954999999999991,0.082189999999999999,6.5,7,7.6,8.1999999999999993,8.9,9.6999999999999993,10.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,69.5,-0.35210000000000002,8.3092000000000006,0.082239999999999994,6.6,7.1,7.7,8.3000000000000007,9,9.8000000000000007,10.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,70,-0.35210000000000002,8.4227000000000007,0.082290000000000002,6.6,7.2,7.8,8.4,9.1999999999999993,10,10.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,70.5,-0.35210000000000002,8.5358000000000001,0.082350000000000007,6.7,7.3,7.9,8.5,9.3000000000000007,10.1,11.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,71,-0.35210000000000002,8.6479999999999997,0.082409999999999997,6.8,7.4,8,8.6,9.4,10.199999999999999,11.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,71.5,-0.35210000000000002,8.7593999999999994,0.082479999999999998,6.9,7.5,8.1,8.8000000000000007,9.5,10.4,11.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,72,-0.35210000000000002,8.8696999999999999,0.082540000000000002,7,7.6,8.1999999999999993,8.9,9.6,10.5,11.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,72.5,-0.35210000000000002,8.9787999999999997,0.082619999999999999,7.1,7.6,8.3000000000000007,9,9.8000000000000007,10.6,11.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,73,-0.35210000000000002,9.0864999999999991,0.08269,7.2,7.7,8.4,9.1,9.9,10.8,11.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,73.5,-0.35210000000000002,9.1927000000000003,0.08276,7.2,7.8,8.5,9.1999999999999993,10,10.9,11.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,74,-0.35210000000000002,9.2973999999999997,0.082830000000000001,7.3,7.9,8.6,9.3000000000000007,10.1,11,12.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,74.5,-0.35210000000000002,9.4009999999999998,0.082890000000000005,7.4,8,8.6999999999999993,9.4,10.199999999999999,11.2,12.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,75,-0.35210000000000002,9.5031999999999996,0.082949999999999996,7.5,8.1,8.8000000000000007,9.5,10.3,11.3,12.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,75.5,-0.35210000000000002,9.6041000000000007,0.08301,7.6,8.1999999999999993,8.8000000000000007,9.6,10.4,11.4,12.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,76,-0.35210000000000002,9.7033000000000005,0.083070000000000005,7.6,8.3000000000000007,8.9,9.6999999999999993,10.6,11.5,12.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,76.5,-0.35210000000000002,9.8007000000000009,0.083110000000000003,7.7,8.3000000000000007,9,9.8000000000000007,10.7,11.6,12.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,77,-0.35210000000000002,9.8963000000000001,0.083140000000000006,7.8,8.4,9.1,9.9,10.8,11.7,12.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,77.5,-0.35210000000000002,9.9901999999999997,0.083169999999999994,7.9,8.5,9.1999999999999993,10,10.9,11.9,13
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,78,-0.35210000000000002,10.082700000000001,0.083180000000000004,7.9,8.6,9.3000000000000007,10.1,11,12,13.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,78.5,-0.35210000000000002,10.174099999999999,0.083180000000000004,8,8.6999999999999993,9.4,10.199999999999999,11.1,12.1,13.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,79,-0.35210000000000002,10.264900000000001,0.083159999999999998,8.1,8.6999999999999993,9.5,10.3,11.2,12.2,13.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,79.5,-0.35210000000000002,10.3558,0.083129999999999996,8.1999999999999993,8.8000000000000007,9.5,10.4,11.3,12.3,13.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,80,-0.35210000000000002,10.4475,0.083080000000000001,8.1999999999999993,8.9,9.6,10.4,11.4,12.4,13.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,80.5,-0.35210000000000002,10.5405,0.08301,8.3000000000000007,9,9.6999999999999993,10.5,11.5,12.5,13.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,81,-0.35210000000000002,10.635199999999999,0.082930000000000004,8.4,9.1,9.8000000000000007,10.6,11.6,12.6,13.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,81.5,-0.35210000000000002,10.732200000000001,0.082839999999999997,8.5,9.1,9.9,10.7,11.7,12.7,13.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,82,-0.35210000000000002,10.832100000000001,0.082729999999999998,8.5,9.1999999999999993,10,10.8,11.8,12.8,14
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,82.5,-0.35210000000000002,10.935,0.082600000000000007,8.6,9.3000000000000007,10.1,10.9,11.9,13,14.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,83,-0.35210000000000002,11.041499999999999,0.082460000000000006,8.6999999999999993,9.4,10.199999999999999,11,12,13.1,14.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,83.5,-0.35210000000000002,11.1516,0.082309999999999994,8.8000000000000007,9.5,10.3,11.2,12.1,13.2,14.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,84,-0.35210000000000002,11.2651,0.082150000000000001,8.9,9.6,10.4,11.3,12.2,13.3,14.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,84.5,-0.35210000000000002,11.3817,0.081979999999999997,9,9.6999999999999993,10.5,11.4,12.4,13.5,14.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,85,-0.35210000000000002,11.5007,0.081809999999999994,9.1,9.8000000000000007,10.6,11.5,12.5,13.6,14.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,85.5,-0.35210000000000002,11.6218,0.081629999999999994,9.1999999999999993,9.9,10.7,11.6,12.6,13.7,15
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,86,-0.35210000000000002,11.744400000000001,0.081449999999999995,9.3000000000000007,10,10.8,11.7,12.8,13.9,15.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,86.5,-0.35210000000000002,11.867800000000001,0.081280000000000005,9.4,10.1,11,11.9,12.9,14,15.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,87,-0.35210000000000002,11.9916,0.081110000000000002,9.5,10.199999999999999,11.1,12,13,14.2,15.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,87.5,-0.35210000000000002,12.1152,0.080960000000000004,9.6,10.4,11.2,12.1,13.2,14.3,15.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,88,-0.35210000000000002,12.238200000000001,0.080820000000000003,9.6999999999999993,10.5,11.3,12.2,13.3,14.5,15.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,88.5,-0.35210000000000002,12.360300000000001,0.080689999999999998,9.8000000000000007,10.6,11.4,12.4,13.4,14.6,15.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,89,-0.35210000000000002,12.4815,0.080579999999999999,9.9,10.7,11.5,12.5,13.5,14.7,16.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,89.5,-0.35210000000000002,12.601699999999999,0.080479999999999996,10,10.8,11.6,12.6,13.7,14.9,16.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,90,-0.35210000000000002,12.7209,0.080409999999999995,10.1,10.9,11.8,12.7,13.8,15,16.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,90.5,-0.35210000000000002,12.8392,0.080339999999999995,10.199999999999999,11,11.9,12.8,13.9,15.1,16.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,91,-0.35210000000000002,12.956899999999999,0.080299999999999996,10.3,11.1,12,13,14.1,15.3,16.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,91.5,-0.35210000000000002,13.074199999999999,0.080259999999999998,10.4,11.2,12.1,13.1,14.2,15.4,16.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,92,-0.35210000000000002,13.191000000000001,0.080250000000000002,10.5,11.3,12.2,13.2,14.3,15.6,17
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,92.5,-0.35210000000000002,13.307499999999999,0.080250000000000002,10.6,11.4,12.3,13.3,14.4,15.7,17.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,93,-0.35210000000000002,13.4239,0.080259999999999998,10.7,11.5,12.4,13.4,14.6,15.8,17.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,93.5,-0.35210000000000002,13.5404,0.08029,10.7,11.6,12.5,13.5,14.7,16,17.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,94,-0.35210000000000002,13.6572,0.080339999999999995,10.8,11.7,12.6,13.7,14.8,16.100000000000001,17.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,94.5,-0.35210000000000002,13.7746,0.080399999999999999,10.9,11.8,12.7,13.8,14.9,16.3,17.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,95,-0.35210000000000002,13.892799999999999,0.08047,11,11.9,12.8,13.9,15.1,16.399999999999999,17.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,95.5,-0.35210000000000002,14.012,0.080560000000000007,11.1,12,12.9,14,15.2,16.5,18
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,96,-0.35210000000000002,14.1325,0.080670000000000006,11.2,12.1,13.1,14.1,15.3,16.7,18.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,96.5,-0.35210000000000002,14.2544,0.080780000000000005,11.3,12.2,13.2,14.3,15.5,16.8,18.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,97,-0.35210000000000002,14.3782,0.080920000000000006,11.4,12.3,13.3,14.4,15.6,17,18.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,97.5,-0.35210000000000002,14.5038,0.081059999999999993,11.5,12.4,13.4,14.5,15.7,17.100000000000001,18.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,98,-0.35210000000000002,14.631600000000001,0.081220000000000001,11.6,12.5,13.5,14.6,15.9,17.3,18.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,98.5,-0.35210000000000002,14.7614,0.081390000000000004,11.7,12.6,13.6,14.8,16,17.5,19.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,99,-0.35210000000000002,14.8934,0.081570000000000004,11.8,12.7,13.7,14.9,16.2,17.600000000000001,19.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,99.5,-0.35210000000000002,15.0275,0.081769999999999995,11.9,12.8,13.9,15,16.3,17.8,19.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,100,-0.35210000000000002,15.1637,0.081979999999999997,12,12.9,14,15.2,16.5,18,19.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,100.5,-0.35210000000000002,15.3018,0.082199999999999995,12.1,13,14.1,15.3,16.600000000000001,18.100000000000001,19.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,101,-0.35210000000000002,15.4419,0.082430000000000003,12.2,13.2,14.2,15.4,16.8,18.3,20
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,101.5,-0.35210000000000002,15.5838,0.082669999999999993,12.3,13.3,14.4,15.6,16.899999999999999,18.5,20.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,102,-0.35210000000000002,15.727600000000001,0.082919999999999994,12.4,13.4,14.5,15.7,17.100000000000001,18.7,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,102.5,-0.35210000000000002,15.873200000000001,0.083169999999999994,12.5,13.5,14.6,15.9,17.3,18.8,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,103,-0.35210000000000002,16.020600000000002,0.083430000000000004,12.6,13.6,14.8,16,17.399999999999999,19,20.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,103.5,-0.35210000000000002,16.169699999999999,0.083699999999999997,12.7,13.7,14.9,16.2,17.600000000000001,19.2,21
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,104,-0.35210000000000002,16.320399999999999,0.083970000000000003,12.8,13.9,15,16.3,17.8,19.399999999999999,21.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,104.5,-0.35210000000000002,16.472799999999999,0.084250000000000005,12.9,14,15.2,16.5,17.899999999999999,19.600000000000001,21.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,105,-0.35210000000000002,16.626799999999999,0.084529999999999994,13,14.1,15.3,16.600000000000001,18.100000000000001,19.8,21.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,105.5,-0.35210000000000002,16.782599999999999,0.084809999999999997,13.2,14.2,15.4,16.8,18.3,20,21.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,106,-0.35210000000000002,16.940100000000001,0.085099999999999995,13.3,14.4,15.6,16.899999999999999,18.5,20.2,22.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,106.5,-0.35210000000000002,17.099499999999999,0.085389999999999994,13.4,14.5,15.7,17.100000000000001,18.600000000000001,20.399999999999999,22.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,107,-0.35210000000000002,17.2607,0.085680000000000006,13.5,14.6,15.9,17.3,18.8,20.6,22.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,107.5,-0.35210000000000002,17.4237,0.085989999999999997,13.6,14.7,16,17.399999999999999,19,20.8,22.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,108,-0.35210000000000002,17.5885,0.086290000000000006,13.7,14.9,16.2,17.600000000000001,19.2,21,23.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,108.5,-0.35210000000000002,17.755299999999998,0.086599999999999996,13.8,15,16.3,17.8,19.399999999999999,21.2,23.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,109,-0.35210000000000002,17.924199999999999,0.086910000000000001,14,15.1,16.5,17.899999999999999,19.600000000000001,21.4,23.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,109.5,-0.35210000000000002,18.095400000000001,0.087230000000000002,14.1,15.3,16.600000000000001,18.100000000000001,19.8,21.7,23.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,110,-0.35210000000000002,18.268899999999999,0.087550000000000003,14.2,15.4,16.8,18.3,20,21.9,24.1
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,65,-0.35210000000000002,7.4326999999999996,0.082170000000000007,5.9,6.3,6.9,7.4,8.1,8.8000000000000007,9.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,65.5,-0.35210000000000002,7.5503999999999998,0.082140000000000005,6,6.4,7,7.6,8.1999999999999993,8.9,9.8000000000000007
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,66,-0.35210000000000002,7.6673,0.082119999999999999,6.1,6.5,7.1,7.7,8.3000000000000007,9.1,9.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,66.5,-0.35210000000000002,7.7834000000000003,0.082119999999999999,6.1,6.6,7.2,7.8,8.5,9.1999999999999993,10.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,67,-0.35210000000000002,7.8986000000000001,0.082129999999999995,6.2,6.7,7.3,7.9,8.6,9.4,10.199999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,67.5,-0.35210000000000002,8.0131999999999994,0.082140000000000005,6.3,6.8,7.4,8,8.6999999999999993,9.5,10.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,68,-0.35210000000000002,8.1272000000000002,0.082170000000000007,6.4,6.9,7.5,8.1,8.8000000000000007,9.6,10.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,68.5,-0.35210000000000002,8.2409999999999997,0.082210000000000005,6.5,7,7.6,8.1999999999999993,9,9.8000000000000007,10.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,69,-0.35210000000000002,8.3546999999999993,0.08226,6.6,7.1,7.7,8.4,9.1,9.9,10.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,69.5,-0.35210000000000002,8.468,0.082309999999999994,6.7,7.2,7.8,8.5,9.1999999999999993,10,11
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,70,-0.35210000000000002,8.5808,0.082369999999999999,6.8,7.3,7.9,8.6,9.3000000000000007,10.199999999999999,11.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,70.5,-0.35210000000000002,8.6927000000000003,0.082430000000000003,6.9,7.4,8,8.6999999999999993,9.5,10.3,11.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,71,-0.35210000000000002,8.8035999999999994,0.082500000000000004,6.9,7.5,8.1,8.8000000000000007,9.6,10.4,11.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,71.5,-0.35210000000000002,8.9135000000000009,0.082570000000000005,7,7.6,8.1999999999999993,8.9,9.6999999999999993,10.6,11.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,72,-0.35210000000000002,9.0221,0.082640000000000005,7.1,7.7,8.3000000000000007,9,9.8000000000000007,10.7,11.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,72.5,-0.35210000000000002,9.1292000000000009,0.082720000000000002,7.2,7.8,8.4,9.1,9.9,10.8,11.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,73,-0.35210000000000002,9.2347000000000001,0.082780000000000006,7.3,7.9,8.5,9.1999999999999993,10,11,12
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,73.5,-0.35210000000000002,9.3390000000000004,0.082849999999999993,7.4,7.9,8.6,9.3000000000000007,10.199999999999999,11.1,12.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,74,-0.35210000000000002,9.4420000000000002,0.082919999999999994,7.4,8,8.6999999999999993,9.4,10.3,11.2,12.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,74.5,-0.35210000000000002,9.5437999999999992,0.082979999999999998,7.5,8.1,8.8000000000000007,9.5,10.4,11.3,12.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,75,-0.35210000000000002,9.6440000000000001,0.083030000000000007,7.6,8.1999999999999993,8.9,9.6,10.5,11.4,12.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,75.5,-0.35210000000000002,9.7424999999999997,0.083080000000000001,7.7,8.3000000000000007,9,9.6999999999999993,10.6,11.6,12.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,76,-0.35210000000000002,9.8391999999999999,0.083119999999999999,7.7,8.4,9.1,9.8000000000000007,10.7,11.7,12.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,76.5,-0.35210000000000002,9.9341000000000008,0.083150000000000002,7.8,8.5,9.1999999999999993,9.9,10.8,11.8,12.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,77,-0.35210000000000002,10.0274,0.083169999999999994,7.9,8.5,9.1999999999999993,10,10.9,11.9,13
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,77.5,-0.35210000000000002,10.119400000000001,0.083180000000000004,8,8.6,9.3000000000000007,10.1,11,12,13.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,78,-0.35210000000000002,10.2105,0.083169999999999994,8,8.6999999999999993,9.4,10.199999999999999,11.1,12.1,13.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,78.5,-0.35210000000000002,10.3012,0.083150000000000002,8.1,8.8000000000000007,9.5,10.3,11.2,12.2,13.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,79,-0.35210000000000002,10.392300000000001,0.083110000000000003,8.1999999999999993,8.8000000000000007,9.6,10.4,11.3,12.3,13.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,79.5,-0.35210000000000002,10.484500000000001,0.083049999999999999,8.3000000000000007,8.9,9.6999999999999993,10.5,11.4,12.4,13.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,80,-0.35210000000000002,10.578099999999999,0.082979999999999998,8.3000000000000007,9,9.6999999999999993,10.6,11.5,12.6,13.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,80.5,-0.35210000000000002,10.6737,0.082900000000000001,8.4,9.1,9.8000000000000007,10.7,11.6,12.7,13.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,81,-0.35210000000000002,10.771800000000001,0.082790000000000002,8.5,9.1999999999999993,9.9,10.8,11.7,12.8,14
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,81.5,-0.35210000000000002,10.8728,0.082680000000000003,8.6,9.3000000000000007,10,10.9,11.8,12.9,14.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,82,-0.35210000000000002,10.9772,0.082549999999999998,8.6999999999999993,9.3000000000000007,10.1,11,11.9,13,14.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,82.5,-0.35210000000000002,11.085100000000001,0.082409999999999997,8.6999999999999993,9.4,10.199999999999999,11.1,12.1,13.1,14.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,83,-0.35210000000000002,11.1966,0.082250000000000004,8.8000000000000007,9.5,10.3,11.2,12.2,13.3,14.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,83.5,-0.35210000000000002,11.311400000000001,0.082089999999999996,8.9,9.6,10.4,11.3,12.3,13.4,14.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,84,-0.35210000000000002,11.429,0.081909999999999997,9,9.6999999999999993,10.5,11.4,12.4,13.5,14.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,84.5,-0.35210000000000002,11.548999999999999,0.081739999999999993,9.1,9.9,10.7,11.5,12.5,13.7,14.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,85,-0.35210000000000002,11.6707,0.081559999999999994,9.1999999999999993,10,10.8,11.7,12.7,13.8,15.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,85.5,-0.35210000000000002,11.793699999999999,0.081379999999999994,9.3000000000000007,10.1,10.9,11.8,12.8,13.9,15.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,86,-0.35210000000000002,11.917299999999999,0.081210000000000004,9.4,10.199999999999999,11,11.9,12.9,14.1,15.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,86.5,-0.35210000000000002,12.0411,0.081049999999999997,9.5,10.3,11.1,12,13.1,14.2,15.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,87,-0.35210000000000002,12.1645,0.0809,9.6,10.4,11.2,12.2,13.2,14.4,15.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,87.5,-0.35210000000000002,12.287100000000001,0.080759999999999998,9.6999999999999993,10.5,11.3,12.3,13.3,14.5,15.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,88,-0.35210000000000002,12.408899999999999,0.080640000000000003,9.8000000000000007,10.6,11.5,12.4,13.5,14.7,16
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,88.5,-0.35210000000000002,12.5298,0.08054,9.9,10.7,11.6,12.5,13.6,14.8,16.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,89,-0.35210000000000002,12.6495,0.080449999999999994,10,10.8,11.7,12.6,13.7,14.9,16.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,89.5,-0.35210000000000002,12.7683,0.080379999999999993,10.1,10.9,11.8,12.8,13.9,15.1,16.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,90,-0.35210000000000002,12.8864,0.080320000000000003,10.199999999999999,11,11.9,12.9,14,15.2,16.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,90.5,-0.35210000000000002,13.0038,0.080280000000000004,10.3,11.1,12,13,14.1,15.3,16.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,91,-0.35210000000000002,13.120900000000001,0.080250000000000002,10.4,11.2,12.1,13.1,14.2,15.5,16.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,91.5,-0.35210000000000002,13.2376,0.080240000000000006,10.5,11.3,12.2,13.2,14.4,15.6,17
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,92,-0.35210000000000002,13.354100000000001,0.080250000000000002,10.6,11.4,12.3,13.4,14.5,15.8,17.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,92.5,-0.35210000000000002,13.470499999999999,0.080269999999999994,10.7,11.5,12.4,13.5,14.6,15.9,17.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,93,-0.35210000000000002,13.587,0.080310000000000006,10.8,11.6,12.6,13.6,14.7,16,17.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,93.5,-0.35210000000000002,13.7041,0.080360000000000001,10.9,11.7,12.7,13.7,14.9,16.2,17.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,94,-0.35210000000000002,13.8217,0.080430000000000001,11,11.8,12.8,13.8,15,16.3,17.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,94.5,-0.35210000000000002,13.940300000000001,0.080509999999999998,11.1,11.9,12.9,13.9,15.1,16.5,17.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,95,-0.35210000000000002,14.06,0.080600000000000005,11.1,12,13,14.1,15.3,16.600000000000001,18.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,95.5,-0.35210000000000002,14.181100000000001,0.080710000000000004,11.2,12.1,13.1,14.2,15.4,16.7,18.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,96,-0.35210000000000002,14.303699999999999,0.080829999999999999,11.3,12.2,13.2,14.3,15.5,16.899999999999999,18.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,96.5,-0.35210000000000002,14.4282,0.08097,11.4,12.3,13.3,14.4,15.7,17,18.600000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,97,-0.35210000000000002,14.5547,0.081119999999999998,11.5,12.4,13.4,14.6,15.8,17.2,18.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,97.5,-0.35210000000000002,14.683199999999999,0.081290000000000001,11.6,12.5,13.6,14.7,15.9,17.399999999999999,18.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,98,-0.35210000000000002,14.814,0.081460000000000005,11.7,12.6,13.7,14.8,16.100000000000001,17.5,19.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,98.5,-0.35210000000000002,14.9468,0.08165,11.8,12.8,13.8,14.9,16.2,17.7,19.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,99,-0.35210000000000002,15.081799999999999,0.081850000000000006,11.9,12.9,13.9,15.1,16.399999999999999,17.899999999999999,19.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,99.5,-0.35210000000000002,15.2187,0.082059999999999994,12,13,14,15.2,16.5,18,19.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,100,-0.35210000000000002,15.3576,0.082290000000000002,12.1,13.1,14.2,15.4,16.7,18.2,19.899999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,100.5,-0.35210000000000002,15.4985,0.082519999999999996,12.2,13.2,14.3,15.5,16.899999999999999,18.399999999999999,20.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,101,-0.35210000000000002,15.6412,0.082769999999999996,12.3,13.3,14.4,15.6,17,18.5,20.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,101.5,-0.35210000000000002,15.7857,0.083019999999999997,12.4,13.4,14.5,15.8,17.2,18.7,20.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,102,-0.35210000000000002,15.932,0.083280000000000007,12.5,13.6,14.7,15.9,17.3,18.899999999999999,20.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,102.5,-0.35210000000000002,16.080100000000002,0.083540000000000003,12.6,13.7,14.8,16.100000000000001,17.5,19.100000000000001,20.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,103,-0.35210000000000002,16.229800000000001,0.083809999999999996,12.8,13.8,14.9,16.2,17.7,19.3,21.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,103.5,-0.35210000000000002,16.3812,0.084080000000000002,12.9,13.9,15.1,16.399999999999999,17.8,19.5,21.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,104,-0.35210000000000002,16.534199999999998,0.084360000000000004,13,14,15.2,16.5,18,19.7,21.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,104.5,-0.35210000000000002,16.6889,0.084640000000000007,13.1,14.2,15.4,16.7,18.2,19.899999999999999,21.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,105,-0.35210000000000002,16.845400000000001,0.084930000000000005,13.2,14.3,15.5,16.8,18.399999999999999,20.100000000000001,22
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,105.5,-0.35210000000000002,17.003599999999999,0.085209999999999994,13.3,14.4,15.6,17,18.5,20.3,22.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,106,-0.35210000000000002,17.163699999999999,0.085510000000000003,13.4,14.5,15.8,17.2,18.7,20.5,22.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,106.5,-0.35210000000000002,17.325600000000001,0.085800000000000001,13.5,14.7,15.9,17.3,18.899999999999999,20.7,22.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,107,-0.35210000000000002,17.4894,0.086110000000000006,13.7,14.8,16.100000000000001,17.5,19.100000000000001,20.9,22.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,107.5,-0.35210000000000002,17.655000000000001,0.086410000000000001,13.8,14.9,16.2,17.7,19.3,21.1,23.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,108,-0.35210000000000002,17.822600000000001,0.086730000000000002,13.9,15.1,16.399999999999999,17.8,19.5,21.3,23.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,108.5,-0.35210000000000002,17.9924,0.087040000000000006,14,15.2,16.5,18,19.7,21.5,23.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,109,-0.35210000000000002,18.1645,0.087359999999999993,14.1,15.3,16.7,18.2,19.8,21.8,23.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,109.5,-0.35210000000000002,18.338999999999999,0.087679999999999994,14.3,15.5,16.8,18.3,20,22,24.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,110,-0.35210000000000002,18.515799999999999,0.087999999999999995,14.4,15.6,17,18.5,20.2,22.2,24.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,110.5,-0.35210000000000002,18.694800000000001,0.088319999999999996,14.5,15.8,17.100000000000001,18.7,20.399999999999999,22.4,24.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,111,-0.35210000000000002,18.875900000000001,0.088639999999999997,14.6,15.9,17.3,18.899999999999999,20.7,22.7,25
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,111.5,-0.35210000000000002,19.059000000000001,0.088959999999999997,14.8,16,17.5,19.100000000000001,20.9,22.9,25.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,112,-0.35210000000000002,19.2439,0.089279999999999998,14.9,16.2,17.600000000000001,19.2,21.1,23.1,25.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,112.5,-0.35210000000000002,19.430399999999999,0.089599999999999999,15,16.3,17.8,19.399999999999999,21.3,23.4,25.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,113,-0.35210000000000002,19.618500000000001,0.089910000000000004,15.2,16.5,18,19.600000000000001,21.5,23.6,26
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,113.5,-0.35210000000000002,19.8081,0.090219999999999995,15.3,16.600000000000001,18.100000000000001,19.8,21.7,23.9,26.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,114,-0.35210000000000002,19.998999999999999,0.090539999999999995,15.4,16.8,18.3,20,21.9,24.1,26.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,114.5,-0.35210000000000002,20.191199999999998,0.09085,15.6,16.899999999999999,18.5,20.2,22.1,24.4,26.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,115,-0.35210000000000002,20.384599999999999,0.091160000000000005,15.7,17.100000000000001,18.600000000000001,20.399999999999999,22.4,24.6,27.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,115.5,-0.35210000000000002,20.578900000000001,0.091469999999999996,15.8,17.2,18.8,20.6,22.6,24.9,27.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,116,-0.35210000000000002,20.774100000000001,0.091770000000000004,16,17.399999999999999,19,20.8,22.8,25.1,27.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,116.5,-0.35210000000000002,20.97,0.092079999999999995,16.100000000000001,17.5,19.2,21,23,25.4,28
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,117,-0.35210000000000002,21.166599999999999,0.09239,16.2,17.7,19.3,21.2,23.3,25.6,28.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,117.5,-0.35210000000000002,21.363600000000002,0.092700000000000005,16.399999999999999,17.899999999999999,19.5,21.4,23.5,25.9,28.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,118,-0.35210000000000002,21.5611,0.092999999999999999,16.5,18,19.7,21.6,23.7,26.1,28.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,118.5,-0.35210000000000002,21.758800000000001,0.093310000000000004,16.7,18.2,19.899999999999999,21.8,23.9,26.4,29.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,119,-0.35210000000000002,21.956800000000001,0.093619999999999995,16.8,18.3,20,22,24.1,26.6,29.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,119.5,-0.35210000000000002,22.154900000000001,0.09393,16.899999999999999,18.5,20.2,22.2,24.4,26.9,29.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,120,-0.35210000000000002,22.353000000000002,0.094240000000000004,17.100000000000001,18.600000000000001,20.399999999999999,22.4,24.6,27.2,30.1
1 source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
2 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 45 -0.38329999999999997 2.4607000000000001 0.090289999999999995 1.9 2.1 2.2999999999999998 2.5 2.7 3 3.3
3 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 45.5 -0.38329999999999997 2.5457000000000001 0.090329999999999994 2 2.1 2.2999999999999998 2.5 2.8 3.1 3.4
4 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 46 -0.38329999999999997 2.6305999999999998 0.090370000000000006 2 2.2000000000000002 2.4 2.6 2.9 3.2 3.5
5 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 46.5 -0.38329999999999997 2.7155 0.090399999999999994 2.1 2.2999999999999998 2.5 2.7 3 3.3 3.6
6 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 47 -0.38329999999999997 2.8007 0.090440000000000006 2.2000000000000002 2.4 2.6 2.8 3.1 3.4 3.7
7 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 47.5 -0.38329999999999997 2.8866999999999998 0.090480000000000005 2.2000000000000002 2.4 2.6 2.9 3.2 3.5 3.8
8 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 48 -0.38329999999999997 2.9741 0.090520000000000003 2.2999999999999998 2.5 2.7 3 3.3 3.6 4
9 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 48.5 -0.38329999999999997 3.0636000000000001 0.090560000000000002 2.4 2.6 2.8 3.1 3.4 3.7 4.0999999999999996
10 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 49 -0.38329999999999997 3.1560000000000001 0.0906 2.4 2.6 2.9 3.2 3.5 3.8 4.2
11 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 49.5 -0.38329999999999997 3.2519999999999998 0.090639999999999998 2.5 2.7 3 3.3 3.6 3.9 4.3
12 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 50 -0.38329999999999997 3.3517999999999999 0.090679999999999997 2.6 2.8 3.1 3.4 3.7 4 4.5
13 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 50.5 -0.38329999999999997 3.4557000000000002 0.090719999999999995 2.7 2.9 3.2 3.5 3.8 4.2 4.5999999999999996
14 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 51 -0.38329999999999997 3.5636000000000001 0.090759999999999993 2.8 3 3.3 3.6 3.9 4.3 4.8
15 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 51.5 -0.38329999999999997 3.6753999999999998 0.090800000000000006 2.8 3.1 3.4 3.7 4 4.4000000000000004 4.9000000000000004
16 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 52 -0.38329999999999997 3.7911000000000001 0.09085 2.9 3.2 3.5 3.8 4.2 4.5999999999999996 5.0999999999999996
17 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 52.5 -0.38329999999999997 3.9104999999999999 0.090889999999999999 3 3.3 3.6 3.9 4.3 4.7 5.2
18 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 53 -0.38329999999999997 4.0331999999999999 0.090929999999999997 3.1 3.4 3.7 4 4.4000000000000004 4.9000000000000004 5.4
19 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 53.5 -0.38329999999999997 4.1590999999999996 0.090980000000000005 3.2 3.5 3.8 4.2 4.5999999999999996 5 5.5
20 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 54 -0.38329999999999997 4.2874999999999996 0.091020000000000004 3.3 3.6 3.9 4.3 4.7 5.2 5.7
21 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 54.5 -0.38329999999999997 4.4179000000000004 0.091060000000000002 3.4 3.7 4 4.4000000000000004 4.8 5.3 5.9
22 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 55 -0.38329999999999997 4.5498000000000003 0.0911 3.5 3.8 4.2 4.5 5 5.5 6.1
23 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 55.5 -0.38329999999999997 4.6826999999999996 0.091139999999999999 3.6 3.9 4.3 4.7 5.0999999999999996 5.7 6.3
24 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 56 -0.38329999999999997 4.8162000000000003 0.091179999999999997 3.7 4 4.4000000000000004 4.8 5.3 5.8 6.4
25 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 56.5 -0.38329999999999997 4.95 0.091209999999999999 3.8 4.0999999999999996 4.5 5 5.4 6 6.6
26 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 57 -0.38329999999999997 5.0837000000000003 0.091249999999999998 3.9 4.3 4.5999999999999996 5.0999999999999996 5.6 6.1 6.8
27 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 57.5 -0.38329999999999997 5.2172999999999998 0.09128 4 4.4000000000000004 4.8 5.2 5.7 6.3 7
28 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 58 -0.38329999999999997 5.3506999999999998 0.091300000000000006 4.0999999999999996 4.5 4.9000000000000004 5.4 5.9 6.5 7.1
29 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 58.5 -0.38329999999999997 5.4833999999999996 0.091319999999999998 4.2 4.5999999999999996 5 5.5 6 6.6 7.3
30 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 59 -0.38329999999999997 5.6151 0.091340000000000005 4.3 4.7 5.0999999999999996 5.6 6.2 6.8 7.5
31 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 59.5 -0.38329999999999997 5.7454000000000001 0.091350000000000001 4.4000000000000004 4.8 5.3 5.7 6.3 6.9 7.7
32 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 60 -0.38329999999999997 5.8742000000000001 0.091359999999999997 4.5 4.9000000000000004 5.4 5.9 6.4 7.1 7.8
33 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 60.5 -0.38329999999999997 6.0014000000000003 0.091370000000000007 4.5999999999999996 5 5.5 6 6.6 7.3 8
34 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 61 -0.38329999999999997 6.1269999999999998 0.091370000000000007 4.7 5.0999999999999996 5.6 6.1 6.7 7.4 8.1999999999999993
35 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 61.5 -0.38329999999999997 6.2511000000000001 0.091359999999999997 4.8 5.2 5.7 6.3 6.9 7.6 8.4
36 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 62 -0.38329999999999997 6.3738000000000001 0.091350000000000001 4.9000000000000004 5.3 5.8 6.4 7 7.7 8.5
37 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 62.5 -0.38329999999999997 6.4947999999999997 0.091329999999999995 5 5.4 5.9 6.5 7.1 7.8 8.6999999999999993
38 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 63 -0.38329999999999997 6.6143999999999998 0.091310000000000002 5.0999999999999996 5.5 6 6.6 7.3 8 8.8000000000000007
39 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 63.5 -0.38329999999999997 6.7328000000000001 0.091289999999999996 5.2 5.6 6.2 6.7 7.4 8.1 9
40 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 64 -0.38329999999999997 6.8501000000000003 0.091259999999999994 5.3 5.7 6.3 6.9 7.5 8.3000000000000007 9.1
41 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 64.5 -0.38329999999999997 6.9661999999999997 0.091230000000000006 5.4 5.8 6.4 7 7.6 8.4 9.3000000000000007
42 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 65 -0.38329999999999997 7.0811999999999999 0.091189999999999993 5.5 5.9 6.5 7.1 7.8 8.6 9.5
43 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 65.5 -0.38329999999999997 7.1950000000000003 0.091149999999999995 5.5 6 6.6 7.2 7.9 8.6999999999999993 9.6
44 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 66 -0.38329999999999997 7.3075999999999999 0.0911 5.6 6.1 6.7 7.3 8 8.8000000000000007 9.8000000000000007
45 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 66.5 -0.38329999999999997 7.4188999999999998 0.091060000000000002 5.7 6.2 6.8 7.4 8.1 9 9.9
46 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 67 -0.38329999999999997 7.5288000000000004 0.091009999999999994 5.8 6.3 6.9 7.5 8.3000000000000007 9.1 10
47 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 67.5 -0.38329999999999997 7.6375000000000002 0.090959999999999999 5.9 6.4 7 7.6 8.4 9.1999999999999993 10.199999999999999
48 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 68 -0.38329999999999997 7.7447999999999997 0.090899999999999995 6 6.5 7.1 7.7 8.5 9.4 10.3
49 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 68.5 -0.38329999999999997 7.8509000000000002 0.09085 6.1 6.6 7.2 7.9 8.6 9.5 10.5
50 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 69 -0.38329999999999997 7.9558999999999997 0.090789999999999996 6.1 6.7 7.3 8 8.6999999999999993 9.6 10.6
51 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 69.5 -0.38329999999999997 8.0599000000000007 0.090740000000000001 6.2 6.8 7.4 8.1 8.8000000000000007 9.6999999999999993 10.7
52 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 70 -0.38329999999999997 8.1630000000000003 0.090679999999999997 6.3 6.9 7.5 8.1999999999999993 9 9.9 10.9
53 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 70.5 -0.38329999999999997 8.2651000000000003 0.090620000000000006 6.4 6.9 7.6 8.3000000000000007 9.1 10 11
54 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 71 -0.38329999999999997 8.3666 0.090560000000000002 6.5 7 7.7 8.4 9.1999999999999993 10.1 11.1
55 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 71.5 -0.38329999999999997 8.4675999999999991 0.090499999999999997 6.5 7.1 7.7 8.5 9.3000000000000007 10.199999999999999 11.3
56 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 72 -0.38329999999999997 8.5678999999999998 0.090429999999999996 6.6 7.2 7.8 8.6 9.4 10.3 11.4
57 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 72.5 -0.38329999999999997 8.6674000000000007 0.090370000000000006 6.7 7.3 7.9 8.6999999999999993 9.5 10.5 11.5
58 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 73 -0.38329999999999997 8.7660999999999998 0.090310000000000001 6.8 7.4 8 8.8000000000000007 9.6 10.6 11.7
59 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 73.5 -0.38329999999999997 8.8637999999999995 0.090249999999999997 6.9 7.4 8.1 8.9 9.6999999999999993 10.7 11.8
60 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 74 -0.38329999999999997 8.9601000000000006 0.090179999999999996 6.9 7.5 8.1999999999999993 9 9.8000000000000007 10.8 11.9
61 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 74.5 -0.38329999999999997 9.0551999999999992 0.090120000000000006 7 7.6 8.3000000000000007 9.1 9.9 10.9 12
62 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 75 -0.38329999999999997 9.1489999999999991 0.090050000000000005 7.1 7.7 8.4 9.1 10 11 12.2
63 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 75.5 -0.38329999999999997 9.2417999999999996 0.089990000000000001 7.1 7.8 8.5 9.1999999999999993 10.1 11.1 12.3
64 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 76 -0.38329999999999997 9.3337000000000003 0.08992 7.2 7.8 8.5 9.3000000000000007 10.199999999999999 11.2 12.4
65 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 76.5 -0.38329999999999997 9.4252000000000002 0.089849999999999999 7.3 7.9 8.6 9.4 10.3 11.4 12.5
66 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 77 -0.38329999999999997 9.5166000000000004 0.089789999999999995 7.4 8 8.6999999999999993 9.5 10.4 11.5 12.6
67 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 77.5 -0.38329999999999997 9.6085999999999991 0.089719999999999994 7.4 8.1 8.8000000000000007 9.6 10.5 11.6 12.8
68 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 78 -0.38329999999999997 9.7014999999999993 0.089649999999999994 7.5 8.1999999999999993 8.9 9.6999999999999993 10.6 11.7 12.9
69 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 78.5 -0.38329999999999997 9.7957000000000001 0.089590000000000003 7.6 8.1999999999999993 9 9.8000000000000007 10.7 11.8 13
70 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 79 -0.38329999999999997 9.8915000000000006 0.089520000000000002 7.7 8.3000000000000007 9.1 9.9 10.8 11.9 13.1
71 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 79.5 -0.38329999999999997 9.9892000000000003 0.089459999999999998 7.7 8.4 9.1 10 10.9 12 13.3
72 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 80 -0.38329999999999997 10.0891 0.089399999999999993 7.8 8.5 9.1999999999999993 10.1 11 12.1 13.4
73 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 80.5 -0.38329999999999997 10.191599999999999 0.089340000000000003 7.9 8.6 9.3000000000000007 10.199999999999999 11.2 12.3 13.5
74 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 81 -0.38329999999999997 10.2965 0.089279999999999998 8 8.6999999999999993 9.4 10.3 11.3 12.4 13.7
75 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 81.5 -0.38329999999999997 10.4041 0.089230000000000004 8.1 8.8000000000000007 9.5 10.4 11.4 12.5 13.8
76 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 82 -0.38329999999999997 10.513999999999999 0.089179999999999995 8.1 8.8000000000000007 9.6 10.5 11.5 12.6 13.9
77 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 82.5 -0.38329999999999997 10.626300000000001 0.089139999999999997 8.1999999999999993 8.9 9.6999999999999993 10.6 11.6 12.8 14.1
78 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 83 -0.38329999999999997 10.741 0.089099999999999999 8.3000000000000007 9 9.8000000000000007 10.7 11.8 12.9 14.2
79 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 83.5 -0.38329999999999997 10.857799999999999 0.08906 8.4 9.1 9.9 10.9 11.9 13.1 14.4
80 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 84 -0.38329999999999997 10.976699999999999 0.089029999999999998 8.5 9.1999999999999993 10.1 11 12 13.2 14.5
81 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 84.5 -0.38329999999999997 11.0974 0.088999999999999996 8.6 9.3000000000000007 10.199999999999999 11.1 12.1 13.3 14.7
82 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 85 -0.38329999999999997 11.219799999999999 0.088980000000000004 8.6999999999999993 9.4 10.3 11.2 12.3 13.5 14.9
83 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 85.5 -0.38329999999999997 11.343500000000001 0.088969999999999994 8.8000000000000007 9.5 10.4 11.3 12.4 13.6 15
84 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 86 -0.38329999999999997 11.468400000000001 0.088950000000000001 8.9 9.6999999999999993 10.5 11.5 12.6 13.8 15.2
85 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 86.5 -0.38329999999999997 11.593999999999999 0.088950000000000001 9 9.8000000000000007 10.6 11.6 12.7 13.9 15.4
86 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 87 -0.38329999999999997 11.7201 0.088950000000000001 9.1 9.9 10.7 11.7 12.8 14.1 15.5
87 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 87.5 -0.38329999999999997 11.8461 0.088950000000000001 9.1999999999999993 10 10.9 11.8 13 14.2 15.7
88 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 88 -0.38329999999999997 11.972 0.088959999999999997 9.3000000000000007 10.1 11 12 13.1 14.4 15.9
89 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 88.5 -0.38329999999999997 12.0976 0.088980000000000004 9.4 10.199999999999999 11.1 12.1 13.2 14.5 16
90 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 89 -0.38329999999999997 12.222899999999999 0.088999999999999996 9.5 10.3 11.2 12.2 13.4 14.7 16.2
91 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 89.5 -0.38329999999999997 12.3477 0.089029999999999998 9.6 10.4 11.3 12.3 13.5 14.8 16.399999999999999
92 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 90 -0.38329999999999997 12.472300000000001 0.08906 9.6999999999999993 10.5 11.4 12.5 13.7 15 16.5
93 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 90.5 -0.38329999999999997 12.596500000000001 0.089090000000000003 9.8000000000000007 10.6 11.5 12.6 13.8 15.1 16.7
94 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 91 -0.38329999999999997 12.720499999999999 0.089130000000000001 9.9 10.7 11.7 12.7 13.9 15.3 16.899999999999999
95 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 91.5 -0.38329999999999997 12.8443 0.089179999999999995 10 10.8 11.8 12.8 14.1 15.5 17
96 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 92 -0.38329999999999997 12.9681 0.089230000000000004 10.1 10.9 11.9 13 14.2 15.6 17.2
97 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 92.5 -0.38329999999999997 13.092000000000001 0.089279999999999998 10.1 11 12 13.1 14.3 15.8 17.399999999999999
98 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 93 -0.38329999999999997 13.2158 0.089340000000000003 10.199999999999999 11.1 12.1 13.2 14.5 15.9 17.5
99 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 93.5 -0.38329999999999997 13.3399 0.089410000000000003 10.3 11.2 12.2 13.3 14.6 16.100000000000001 17.7
100 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 94 -0.38329999999999997 13.4643 0.089480000000000004 10.4 11.3 12.3 13.5 14.7 16.2 17.899999999999999
101 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 94.5 -0.38329999999999997 13.5892 0.089550000000000005 10.5 11.4 12.4 13.6 14.9 16.399999999999999 18
102 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 95 -0.38329999999999997 13.714600000000001 0.089630000000000001 10.6 11.5 12.6 13.7 15 16.5 18.2
103 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 95.5 -0.38329999999999997 13.8408 0.089719999999999994 10.7 11.6 12.7 13.8 15.2 16.7 18.399999999999999
104 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 96 -0.38329999999999997 13.967599999999999 0.089810000000000001 10.8 11.7 12.8 14 15.3 16.8 18.600000000000001
105 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 96.5 -0.38329999999999997 14.0953 0.089899999999999994 10.9 11.8 12.9 14.1 15.4 17 18.7
106 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 97 -0.38329999999999997 14.2239 0.09 11 12 13 14.2 15.6 17.100000000000001 18.899999999999999
107 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 97.5 -0.38329999999999997 14.3537 0.0901 11.1 12.1 13.1 14.4 15.7 17.3 19.100000000000001
108 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 98 -0.38329999999999997 14.4848 0.090209999999999999 11.2 12.2 13.3 14.5 15.9 17.5 19.3
109 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 98.5 -0.38329999999999997 14.6174 0.090329999999999994 11.3 12.3 13.4 14.6 16 17.600000000000001 19.5
110 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 99 -0.38329999999999997 14.751899999999999 0.090440000000000006 11.4 12.4 13.5 14.8 16.2 17.8 19.600000000000001
111 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 99.5 -0.38329999999999997 14.888199999999999 0.090569999999999998 11.5 12.5 13.6 14.9 16.3 18 19.8
112 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 100 -0.38329999999999997 15.0267 0.090690000000000007 11.6 12.6 13.7 15 16.5 18.100000000000001 20
113 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 100.5 -0.38329999999999997 15.1676 0.090829999999999994 11.7 12.7 13.9 15.2 16.600000000000001 18.3 20.2
114 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 101 -0.38329999999999997 15.3108 0.090959999999999999 11.8 12.8 14 15.3 16.8 18.5 20.399999999999999
115 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 101.5 -0.38329999999999997 15.4564 0.0911 11.9 13 14.1 15.5 17 18.7 20.6
116 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 102 -0.38329999999999997 15.6046 0.091249999999999998 12 13.1 14.3 15.6 17.100000000000001 18.899999999999999 20.8
117 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 102.5 -0.38329999999999997 15.7553 0.091389999999999999 12.1 13.2 14.4 15.8 17.3 19 21
118 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 103 -0.38329999999999997 15.9087 0.091550000000000006 12.3 13.3 14.5 15.9 17.5 19.2 21.3
119 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 103.5 -0.38329999999999997 16.064499999999999 0.091700000000000004 12.4 13.5 14.7 16.100000000000001 17.600000000000001 19.399999999999999 21.5
120 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 104 -0.38329999999999997 16.222899999999999 0.091859999999999997 12.5 13.6 14.8 16.2 17.8 19.600000000000001 21.7
121 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 104.5 -0.38329999999999997 16.383700000000001 0.092030000000000001 12.6 13.7 15 16.399999999999999 18 19.8 21.9
122 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 105 -0.38329999999999997 16.547000000000001 0.092189999999999994 12.7 13.8 15.1 16.5 18.2 20 22.2
123 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 105.5 -0.38329999999999997 16.712900000000001 0.092359999999999998 12.8 14 15.3 16.7 18.399999999999999 20.2 22.4
124 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 106 -0.38329999999999997 16.881399999999999 0.092539999999999997 13 14.1 15.4 16.899999999999999 18.5 20.5 22.6
125 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 106.5 -0.38329999999999997 17.052700000000002 0.092710000000000001 13.1 14.3 15.6 17.100000000000001 18.7 20.7 22.9
126 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 107 -0.38329999999999997 17.226900000000001 0.09289 13.2 14.4 15.7 17.2 18.899999999999999 20.9 23.1
127 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 107.5 -0.38329999999999997 17.4039 0.09307 13.3 14.5 15.9 17.399999999999999 19.100000000000001 21.1 23.4
128 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 108 -0.38329999999999997 17.5839 0.093259999999999996 13.5 14.7 16 17.600000000000001 19.3 21.3 23.6
129 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 108.5 -0.38329999999999997 17.7668 0.093439999999999995 13.6 14.8 16.2 17.8 19.5 21.6 23.9
130 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 109 -0.38329999999999997 17.9526 0.093630000000000005 13.7 15 16.399999999999999 18 19.7 21.8 24.2
131 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 109.5 -0.38329999999999997 18.141200000000001 0.093820000000000001 13.9 15.1 16.5 18.100000000000001 20 22 24.4
132 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 110 -0.38329999999999997 18.3324 0.094009999999999996 14 15.3 16.7 18.3 20.2 22.3 24.7
133 source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
134 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 65 -0.38329999999999997 7.2401999999999997 0.091130000000000003 5.6 6.1 6.6 7.2 7.9 8.6999999999999993 9.6999999999999993
135 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 65.5 -0.38329999999999997 7.3522999999999996 0.091090000000000004 5.7 6.2 6.7 7.4 8.1 8.9 9.8000000000000007
136 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 66 -0.38329999999999997 7.4630000000000001 0.091039999999999996 5.8 6.3 6.8 7.5 8.1999999999999993 9 10
137 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 66.5 -0.38329999999999997 7.5724 0.090990000000000001 5.8 6.4 6.9 7.6 8.3000000000000007 9.1 10.1
138 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 67 -0.38329999999999997 7.6806000000000001 0.090939999999999993 5.9 6.4 7 7.7 8.4 9.3000000000000007 10.199999999999999
139 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 67.5 -0.38329999999999997 7.7873999999999999 0.090880000000000002 6 6.5 7.1 7.8 8.5 9.4 10.4
140 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 68 -0.38329999999999997 7.8929999999999998 0.090829999999999994 6.1 6.6 7.2 7.9 8.6999999999999993 9.5 10.5
141 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 68.5 -0.38329999999999997 7.9976000000000003 0.090770000000000003 6.2 6.7 7.3 8 8.8000000000000007 9.6999999999999993 10.7
142 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 69 -0.38329999999999997 8.1012000000000004 0.090709999999999999 6.3 6.8 7.4 8.1 8.9 9.8000000000000007 10.8
143 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 69.5 -0.38329999999999997 8.2039000000000009 0.090649999999999994 6.3 6.9 7.5 8.1999999999999993 9 9.9 10.9
144 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 70 -0.38329999999999997 8.3057999999999996 0.090590000000000004 6.4 7 7.6 8.3000000000000007 9.1 10 11.1
145 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 70.5 -0.38329999999999997 8.4070999999999998 0.090529999999999999 6.5 7.1 7.7 8.4 9.1999999999999993 10.1 11.2
146 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 71 -0.38329999999999997 8.5077999999999996 0.090469999999999995 6.6 7.1 7.8 8.5 9.3000000000000007 10.3 11.3
147 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 71.5 -0.38329999999999997 8.6077999999999992 0.090410000000000004 6.7 7.2 7.9 8.6 9.4 10.4 11.5
148 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 72 -0.38329999999999997 8.7070000000000007 0.09035 6.7 7.3 8 8.6999999999999993 9.5 10.5 11.6
149 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 72.5 -0.38329999999999997 8.8053000000000008 0.090279999999999999 6.8 7.4 8.1 8.8000000000000007 9.6999999999999993 10.6 11.7
150 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 73 -0.38329999999999997 8.9024999999999999 0.090219999999999995 6.9 7.5 8.1 8.9 9.8000000000000007 10.7 11.8
151 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 73.5 -0.38329999999999997 8.9983000000000004 0.090160000000000004 7 7.6 8.1999999999999993 9 9.9 10.8 12
152 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 74 -0.38329999999999997 9.0928000000000004 0.090090000000000003 7 7.6 8.3000000000000007 9.1 10 11 12.1
153 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 74.5 -0.38329999999999997 9.1861999999999995 0.090029999999999999 7.1 7.7 8.4 9.1999999999999993 10.1 11.1 12.2
154 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 75 -0.38329999999999997 9.2786000000000008 0.089959999999999998 7.2 7.8 8.5 9.3000000000000007 10.199999999999999 11.2 12.3
155 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 75.5 -0.38329999999999997 9.3703000000000003 0.089889999999999998 7.2 7.9 8.6 9.4 10.3 11.3 12.5
156 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 76 -0.38329999999999997 9.4617000000000004 0.089829999999999993 7.3 8 8.6999999999999993 9.5 10.4 11.4 12.6
157 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 76.5 -0.38329999999999997 9.5533000000000001 0.089760000000000006 7.4 8 8.6999999999999993 9.6 10.5 11.5 12.7
158 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 77 -0.38329999999999997 9.6456 0.089690000000000006 7.5 8.1 8.8000000000000007 9.6 10.6 11.6 12.8
159 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 77.5 -0.38329999999999997 9.7390000000000008 0.089630000000000001 7.5 8.1999999999999993 8.9 9.6999999999999993 10.7 11.7 12.9
160 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 78 -0.38329999999999997 9.8338000000000001 0.089560000000000001 7.6 8.3000000000000007 9 9.8000000000000007 10.8 11.8 13.1
161 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 78.5 -0.38329999999999997 9.9303000000000008 0.089499999999999996 7.7 8.4 9.1 9.9 10.9 12 13.2
162 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 79 -0.38329999999999997 10.0289 0.089429999999999996 7.8 8.4 9.1999999999999993 10 11 12.1 13.3
163 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 79.5 -0.38329999999999997 10.129799999999999 0.089370000000000005 7.8 8.5 9.3000000000000007 10.1 11.1 12.2 13.4
164 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 80 -0.38329999999999997 10.2332 0.089319999999999997 7.9 8.6 9.4 10.199999999999999 11.2 12.3 13.6
165 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 80.5 -0.38329999999999997 10.3393 0.089260000000000006 8 8.6999999999999993 9.5 10.3 11.3 12.4 13.7
166 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 81 -0.38329999999999997 10.447699999999999 0.089209999999999998 8.1 8.8000000000000007 9.6 10.4 11.4 12.6 13.9
167 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 81.5 -0.38329999999999997 10.5586 0.089160000000000003 8.1999999999999993 8.9 9.6999999999999993 10.6 11.6 12.7 14
168 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 82 -0.38329999999999997 10.671900000000001 0.089120000000000005 8.3000000000000007 9 9.8000000000000007 10.7 11.7 12.8 14.1
169 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 82.5 -0.38329999999999997 10.7874 0.089080000000000006 8.4 9.1 9.9 10.8 11.8 13 14.3
170 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 83 -0.38329999999999997 10.905099999999999 0.089050000000000004 8.5 9.1999999999999993 10 10.9 11.9 13.1 14.5
171 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 83.5 -0.38329999999999997 11.024800000000001 0.089020000000000002 8.5 9.3000000000000007 10.1 11 12.1 13.3 14.6
172 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 84 -0.38329999999999997 11.1462 0.08899 8.6 9.4 10.199999999999999 11.1 12.2 13.4 14.8
173 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 84.5 -0.38329999999999997 11.2691 0.088969999999999994 8.6999999999999993 9.5 10.3 11.3 12.3 13.5 14.9
174 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 85 -0.38329999999999997 11.3934 0.088959999999999997 8.8000000000000007 9.6 10.4 11.4 12.5 13.7 15.1
175 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 85.5 -0.38329999999999997 11.518599999999999 0.088950000000000001 8.9 9.6999999999999993 10.6 11.5 12.6 13.8 15.3
176 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 86 -0.38329999999999997 11.644399999999999 0.088950000000000001 9 9.8000000000000007 10.7 11.6 12.7 14 15.4
177 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 86.5 -0.38329999999999997 11.7705 0.088950000000000001 9.1 9.9 10.8 11.8 12.9 14.2 15.6
178 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 87 -0.38329999999999997 11.8965 0.088959999999999997 9.1999999999999993 10 10.9 11.9 13 14.3 15.8
179 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 87.5 -0.38329999999999997 12.0223 0.088969999999999994 9.3000000000000007 10.1 11 12 13.2 14.5 15.9
180 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 88 -0.38329999999999997 12.1478 0.08899 9.4 10.199999999999999 11.1 12.1 13.3 14.6 16.100000000000001
181 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 88.5 -0.38329999999999997 12.2729 0.089010000000000006 9.5 10.3 11.2 12.3 13.4 14.8 16.3
182 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 89 -0.38329999999999997 12.397600000000001 0.089039999999999994 9.6 10.4 11.4 12.4 13.6 14.9 16.399999999999999
183 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 89.5 -0.38329999999999997 12.522 0.089069999999999996 9.6999999999999993 10.5 11.5 12.5 13.7 15.1 16.600000000000001
184 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 90 -0.38329999999999997 12.646100000000001 0.089109999999999995 9.8000000000000007 10.6 11.6 12.6 13.8 15.2 16.8
185 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 90.5 -0.38329999999999997 12.77 0.089149999999999993 9.9 10.7 11.7 12.8 14 15.4 16.899999999999999
186 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 91 -0.38329999999999997 12.8939 0.089200000000000002 10 10.9 11.8 12.9 14.1 15.5 17.100000000000001
187 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 91.5 -0.38329999999999997 13.0177 0.089249999999999996 10.1 11 11.9 13 14.3 15.7 17.3
188 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 92 -0.38329999999999997 13.141500000000001 0.08931 10.199999999999999 11.1 12 13.1 14.4 15.8 17.399999999999999
189 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 92.5 -0.38329999999999997 13.2654 0.089370000000000005 10.3 11.2 12.1 13.3 14.5 16 17.600000000000001
190 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 93 -0.38329999999999997 13.3896 0.089440000000000006 10.4 11.3 12.3 13.4 14.7 16.100000000000001 17.8
191 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 93.5 -0.38329999999999997 13.514200000000001 0.089510000000000006 10.5 11.4 12.4 13.5 14.8 16.3 17.899999999999999
192 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 94 -0.38329999999999997 13.6393 0.089590000000000003 10.6 11.5 12.5 13.6 14.9 16.399999999999999 18.100000000000001
193 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 94.5 -0.38329999999999997 13.765000000000001 0.08967 10.7 11.6 12.6 13.8 15.1 16.600000000000001 18.3
194 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 95 -0.38329999999999997 13.891400000000001 0.089749999999999996 10.8 11.7 12.7 13.9 15.2 16.7 18.5
195 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 95.5 -0.38329999999999997 14.018599999999999 0.089840000000000003 10.8 11.8 12.8 14 15.4 16.899999999999999 18.600000000000001
196 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 96 -0.38329999999999997 14.146599999999999 0.089940000000000006 10.9 11.9 12.9 14.1 15.5 17 18.8
197 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 96.5 -0.38329999999999997 14.275700000000001 0.090039999999999995 11 12 13.1 14.3 15.6 17.2 19
198 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 97 -0.38329999999999997 14.405900000000001 0.090149999999999994 11.1 12.1 13.2 14.4 15.8 17.399999999999999 19.2
199 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 97.5 -0.38329999999999997 14.537599999999999 0.090260000000000007 11.2 12.2 13.3 14.5 15.9 17.5 19.3
200 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 98 -0.38329999999999997 14.670999999999999 0.090370000000000006 11.3 12.3 13.4 14.7 16.100000000000001 17.7 19.5
201 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 98.5 -0.38329999999999997 14.8062 0.090490000000000001 11.4 12.4 13.5 14.8 16.2 17.899999999999999 19.7
202 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 99 -0.38329999999999997 14.9434 0.090620000000000006 11.5 12.5 13.7 14.9 16.399999999999999 18 19.899999999999999
203 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 99.5 -0.38329999999999997 15.082800000000001 0.090749999999999997 11.6 12.7 13.8 15.1 16.5 18.2 20.100000000000001
204 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 100 -0.38329999999999997 15.224600000000001 0.090880000000000002 11.7 12.8 13.9 15.2 16.7 18.399999999999999 20.3
205 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 100.5 -0.38329999999999997 15.3687 0.091020000000000004 11.9 12.9 14.1 15.4 16.899999999999999 18.600000000000001 20.5
206 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 101 -0.38329999999999997 15.5154 0.091160000000000005 12 13 14.2 15.5 17 18.7 20.7
207 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 101.5 -0.38329999999999997 15.6646 0.091310000000000002 12.1 13.1 14.3 15.7 17.2 18.899999999999999 20.9
208 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 102 -0.38329999999999997 15.8164 0.09146 12.2 13.3 14.5 15.8 17.399999999999999 19.100000000000001 21.1
209 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 102.5 -0.38329999999999997 15.970700000000001 0.091609999999999997 12.3 13.4 14.6 16 17.5 19.3 21.4
210 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 103 -0.38329999999999997 16.127600000000001 0.091770000000000004 12.4 13.5 14.7 16.100000000000001 17.7 19.5 21.6
211 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 103.5 -0.38329999999999997 16.286999999999999 0.091929999999999998 12.5 13.6 14.9 16.3 17.899999999999999 19.7 21.8
212 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 104 -0.38329999999999997 16.448799999999999 0.092090000000000005 12.6 13.8 15 16.399999999999999 18.100000000000001 19.899999999999999 22
213 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 104.5 -0.38329999999999997 16.613099999999999 0.092259999999999995 12.8 13.9 15.2 16.600000000000001 18.2 20.100000000000001 22.3
214 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 105 -0.38329999999999997 16.78 0.092429999999999998 12.9 14 15.3 16.8 18.399999999999999 20.3 22.5
215 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 105.5 -0.38329999999999997 16.9496 0.092609999999999998 13 14.2 15.5 16.899999999999999 18.600000000000001 20.5 22.7
216 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 106 -0.38329999999999997 17.122 0.092780000000000001 13.1 14.3 15.6 17.100000000000001 18.8 20.8 23
217 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 106.5 -0.38329999999999997 17.2973 0.092960000000000001 13.3 14.5 15.8 17.3 19 21 23.2
218 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 107 -0.38329999999999997 17.4755 0.093149999999999997 13.4 14.6 15.9 17.5 19.2 21.2 23.5
219 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 107.5 -0.38329999999999997 17.656700000000001 0.093329999999999996 13.5 14.7 16.100000000000001 17.7 19.399999999999999 21.4 23.7
220 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 108 -0.38329999999999997 17.840699999999998 0.093520000000000006 13.7 14.9 16.3 17.8 19.600000000000001 21.7 24
221 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 108.5 -0.38329999999999997 18.027699999999999 0.093710000000000002 13.8 15 16.399999999999999 18 19.8 21.9 24.3
222 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 109 -0.38329999999999997 18.217400000000001 0.093899999999999997 13.9 15.2 16.600000000000001 18.2 20 22.1 24.5
223 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 109.5 -0.38329999999999997 18.409600000000001 0.094089999999999993 14.1 15.4 16.8 18.399999999999999 20.3 22.4 24.8
224 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 110 -0.38329999999999997 18.604299999999999 0.094280000000000003 14.2 15.5 17 18.600000000000001 20.5 22.6 25.1
225 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 110.5 -0.38329999999999997 18.801500000000001 0.094479999999999995 14.4 15.7 17.100000000000001 18.8 20.7 22.9 25.4
226 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 111 -0.38329999999999997 19.000900000000001 0.094670000000000004 14.5 15.8 17.3 19 20.9 23.1 25.7
227 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 111.5 -0.38329999999999997 19.202400000000001 0.094869999999999996 14.7 16 17.5 19.2 21.2 23.4 26
228 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 112 -0.38329999999999997 19.405999999999999 0.095070000000000002 14.8 16.2 17.7 19.399999999999999 21.4 23.6 26.2
229 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 112.5 -0.38329999999999997 19.611599999999999 0.095269999999999994 15 16.3 17.899999999999999 19.600000000000001 21.6 23.9 26.5
230 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 113 -0.38329999999999997 19.818999999999999 0.095460000000000003 15.1 16.5 18 19.8 21.8 24.2 26.8
231 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 113.5 -0.38329999999999997 20.027999999999999 0.095659999999999995 15.3 16.7 18.2 20 22.1 24.4 27.1
232 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 114 -0.38329999999999997 20.238499999999998 0.095860000000000001 15.4 16.8 18.399999999999999 20.2 22.3 24.7 27.4
233 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 114.5 -0.38329999999999997 20.450199999999999 0.096060000000000006 15.6 17 18.600000000000001 20.5 22.6 25 27.8
234 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 115 -0.38329999999999997 20.6629 0.096259999999999998 15.7 17.2 18.8 20.7 22.8 25.2 28.1
235 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 115.5 -0.38329999999999997 20.8766 0.096460000000000004 15.9 17.3 19 20.9 23 25.5 28.4
236 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 116 -0.38329999999999997 21.090900000000001 0.096659999999999996 16 17.5 19.2 21.1 23.3 25.8 28.7
237 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 116.5 -0.38329999999999997 21.305900000000001 0.096860000000000002 16.2 17.7 19.399999999999999 21.3 23.5 26.1 29
238 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 117 -0.38329999999999997 21.5213 0.097070000000000004 16.3 17.8 19.600000000000001 21.5 23.8 26.3 29.3
239 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 117.5 -0.38329999999999997 21.736999999999998 0.097269999999999995 16.5 18 19.8 21.7 24 26.6 29.6
240 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 118 -0.38329999999999997 21.9529 0.097470000000000001 16.600000000000001 18.2 19.899999999999999 22 24.2 26.9 29.9
241 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 118.5 -0.38329999999999997 22.169 0.097670000000000007 16.8 18.399999999999999 20.100000000000001 22.2 24.5 27.2 30.3
242 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 119 -0.38329999999999997 22.385100000000001 0.097879999999999995 16.899999999999999 18.5 20.3 22.4 24.7 27.4 30.6
243 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 119.5 -0.38329999999999997 22.601199999999999 0.098080000000000001 17.100000000000001 18.7 20.5 22.6 25 27.7 30.9
244 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 120 -0.38329999999999997 22.817299999999999 0.098280000000000006 17.3 18.899999999999999 20.7 22.8 25.2 28 31.2
245 source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
246 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 45 -0.35210000000000002 2.4409999999999998 0.091819999999999999 1.9 2 2.2000000000000002 2.4 2.7 3 3.3
247 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 45.5 -0.35210000000000002 2.5244 0.09153 1.9 2.1 2.2999999999999998 2.5 2.8 3.1 3.4
248 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 46 -0.35210000000000002 2.6076999999999999 0.091240000000000002 2 2.2000000000000002 2.4 2.6 2.9 3.1 3.5
249 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 46.5 -0.35210000000000002 2.6913 0.090939999999999993 2.1 2.2999999999999998 2.5 2.7 3 3.2 3.6
250 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 47 -0.35210000000000002 2.7755000000000001 0.090649999999999994 2.1 2.2999999999999998 2.5 2.8 3 3.3 3.7
251 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 47.5 -0.35210000000000002 2.8609 0.090359999999999996 2.2000000000000002 2.4 2.6 2.9 3.1 3.4 3.8
252 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 48 -0.35210000000000002 2.948 0.090069999999999997 2.2999999999999998 2.5 2.7 2.9 3.2 3.6 3.9
253 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 48.5 -0.35210000000000002 3.0377000000000001 0.089770000000000003 2.2999999999999998 2.6 2.8 3 3.3 3.7 4
254 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 49 -0.35210000000000002 3.1307999999999998 0.089480000000000004 2.4 2.6 2.9 3.1 3.4 3.8 4.2
255 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 49.5 -0.35210000000000002 3.2275999999999998 0.089190000000000005 2.5 2.7 3 3.2 3.5 3.9 4.3
256 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 50 -0.35210000000000002 3.3277999999999999 0.088900000000000007 2.6 2.8 3 3.3 3.6 4 4.4000000000000004
257 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 50.5 -0.35210000000000002 3.4310999999999998 0.088609999999999994 2.7 2.9 3.1 3.4 3.8 4.0999999999999996 4.5
258 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 51 -0.35210000000000002 3.5375999999999999 0.08831 2.7 3 3.2 3.5 3.9 4.2 4.7
259 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 51.5 -0.35210000000000002 3.6476999999999999 0.088010000000000005 2.8 3.1 3.3 3.6 4 4.4000000000000004 4.8
260 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 52 -0.35210000000000002 3.762 0.087709999999999996 2.9 3.2 3.5 3.8 4.0999999999999996 4.5 5
261 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 52.5 -0.35210000000000002 3.8814000000000002 0.087410000000000002 3 3.3 3.6 3.9 4.2 4.5999999999999996 5.0999999999999996
262 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 53 -0.35210000000000002 4.0060000000000002 0.087110000000000007 3.1 3.4 3.7 4 4.4000000000000004 4.8 5.3
263 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 53.5 -0.35210000000000002 4.1353999999999997 0.086809999999999998 3.2 3.5 3.8 4.0999999999999996 4.5 4.9000000000000004 5.4
264 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 54 -0.35210000000000002 4.2693000000000003 0.086510000000000004 3.3 3.6 3.9 4.3 4.7 5.0999999999999996 5.6
265 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 54.5 -0.35210000000000002 4.4066000000000001 0.086209999999999995 3.4 3.7 4 4.4000000000000004 4.8 5.3 5.8
266 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 55 -0.35210000000000002 4.5467000000000004 0.085919999999999996 3.6 3.8 4.2 4.5 5 5.4 6
267 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 55.5 -0.35210000000000002 4.6891999999999996 0.085629999999999998 3.7 4 4.3 4.7 5.0999999999999996 5.6 6.1
268 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 56 -0.35210000000000002 4.8338000000000001 0.085349999999999995 3.8 4.0999999999999996 4.4000000000000004 4.8 5.3 5.8 6.3
269 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 56.5 -0.35210000000000002 4.9795999999999996 0.085070000000000007 3.9 4.2 4.5999999999999996 5 5.4 5.9 6.5
270 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 57 -0.35210000000000002 5.1258999999999997 0.084809999999999997 4 4.3 4.7 5.0999999999999996 5.6 6.1 6.7
271 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 57.5 -0.35210000000000002 5.2721 0.08455 4.0999999999999996 4.5 4.9000000000000004 5.3 5.7 6.3 6.9
272 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 58 -0.35210000000000002 5.4180000000000001 0.0843 4.3 4.5999999999999996 5 5.4 5.9 6.4 7.1
273 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 58.5 -0.35210000000000002 5.5632000000000001 0.084059999999999996 4.4000000000000004 4.7 5.0999999999999996 5.6 6.1 6.6 7.2
274 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 59 -0.35210000000000002 5.7073999999999998 0.083830000000000002 4.5 4.8 5.3 5.7 6.2 6.8 7.4
275 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 59.5 -0.35210000000000002 5.8501000000000003 0.08362 4.5999999999999996 5 5.4 5.9 6.4 7 7.6
276 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 60 -0.35210000000000002 5.9907000000000004 0.083419999999999994 4.7 5.0999999999999996 5.5 6 6.5 7.1 7.8
277 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 60.5 -0.35210000000000002 6.1284000000000001 0.083239999999999995 4.8 5.2 5.6 6.1 6.7 7.3 8
278 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 61 -0.35210000000000002 6.2632000000000003 0.083080000000000001 4.9000000000000004 5.3 5.8 6.3 6.8 7.4 8.1
279 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 61.5 -0.35210000000000002 6.3954000000000004 0.082919999999999994 5 5.4 5.9 6.4 7 7.6 8.3000000000000007
280 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 62 -0.35210000000000002 6.5251000000000001 0.082790000000000002 5.0999999999999996 5.6 6 6.5 7.1 7.7 8.5
281 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 62.5 -0.35210000000000002 6.6527000000000003 0.082659999999999997 5.2 5.7 6.1 6.7 7.2 7.9 8.6
282 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 63 -0.35210000000000002 6.7786 0.082549999999999998 5.3 5.8 6.2 6.8 7.4 8 8.8000000000000007
283 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 63.5 -0.35210000000000002 6.9028 0.082449999999999996 5.4 5.9 6.4 6.9 7.5 8.1999999999999993 8.9
284 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 64 -0.35210000000000002 7.0255000000000001 0.082360000000000003 5.5 6 6.5 7 7.6 8.3000000000000007 9.1
285 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 64.5 -0.35210000000000002 7.1467000000000001 0.082290000000000002 5.6 6.1 6.6 7.1 7.8 8.5 9.3000000000000007
286 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 65 -0.35210000000000002 7.2666000000000004 0.082229999999999998 5.7 6.2 6.7 7.3 7.9 8.6 9.4
287 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 65.5 -0.35210000000000002 7.3853999999999997 0.082180000000000003 5.8 6.3 6.8 7.4 8 8.6999999999999993 9.6
288 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 66 -0.35210000000000002 7.5034000000000001 0.082150000000000001 5.9 6.4 6.9 7.5 8.1999999999999993 8.9 9.6999999999999993
289 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 66.5 -0.35210000000000002 7.6205999999999996 0.082129999999999995 6 6.5 7 7.6 8.3000000000000007 9 9.9
290 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 67 -0.35210000000000002 7.7370000000000001 0.082119999999999999 6.1 6.6 7.1 7.7 8.4 9.1999999999999993 10
291 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 67.5 -0.35210000000000002 7.8525999999999998 0.082119999999999999 6.2 6.7 7.2 7.9 8.5 9.3000000000000007 10.199999999999999
292 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 68 -0.35210000000000002 7.9673999999999996 0.082140000000000005 6.3 6.8 7.3 8 8.6999999999999993 9.4 10.3
293 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 68.5 -0.35210000000000002 8.0815999999999999 0.082159999999999997 6.4 6.9 7.5 8.1 8.8000000000000007 9.6 10.5
294 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 69 -0.35210000000000002 8.1954999999999991 0.082189999999999999 6.5 7 7.6 8.1999999999999993 8.9 9.6999999999999993 10.6
295 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 69.5 -0.35210000000000002 8.3092000000000006 0.082239999999999994 6.6 7.1 7.7 8.3000000000000007 9 9.8000000000000007 10.8
296 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 70 -0.35210000000000002 8.4227000000000007 0.082290000000000002 6.6 7.2 7.8 8.4 9.1999999999999993 10 10.9
297 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 70.5 -0.35210000000000002 8.5358000000000001 0.082350000000000007 6.7 7.3 7.9 8.5 9.3000000000000007 10.1 11.1
298 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 71 -0.35210000000000002 8.6479999999999997 0.082409999999999997 6.8 7.4 8 8.6 9.4 10.199999999999999 11.2
299 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 71.5 -0.35210000000000002 8.7593999999999994 0.082479999999999998 6.9 7.5 8.1 8.8000000000000007 9.5 10.4 11.3
300 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 72 -0.35210000000000002 8.8696999999999999 0.082540000000000002 7 7.6 8.1999999999999993 8.9 9.6 10.5 11.5
301 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 72.5 -0.35210000000000002 8.9787999999999997 0.082619999999999999 7.1 7.6 8.3000000000000007 9 9.8000000000000007 10.6 11.6
302 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 73 -0.35210000000000002 9.0864999999999991 0.08269 7.2 7.7 8.4 9.1 9.9 10.8 11.8
303 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 73.5 -0.35210000000000002 9.1927000000000003 0.08276 7.2 7.8 8.5 9.1999999999999993 10 10.9 11.9
304 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 74 -0.35210000000000002 9.2973999999999997 0.082830000000000001 7.3 7.9 8.6 9.3000000000000007 10.1 11 12.1
305 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 74.5 -0.35210000000000002 9.4009999999999998 0.082890000000000005 7.4 8 8.6999999999999993 9.4 10.199999999999999 11.2 12.2
306 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 75 -0.35210000000000002 9.5031999999999996 0.082949999999999996 7.5 8.1 8.8000000000000007 9.5 10.3 11.3 12.3
307 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 75.5 -0.35210000000000002 9.6041000000000007 0.08301 7.6 8.1999999999999993 8.8000000000000007 9.6 10.4 11.4 12.5
308 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 76 -0.35210000000000002 9.7033000000000005 0.083070000000000005 7.6 8.3000000000000007 8.9 9.6999999999999993 10.6 11.5 12.6
309 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 76.5 -0.35210000000000002 9.8007000000000009 0.083110000000000003 7.7 8.3000000000000007 9 9.8000000000000007 10.7 11.6 12.7
310 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 77 -0.35210000000000002 9.8963000000000001 0.083140000000000006 7.8 8.4 9.1 9.9 10.8 11.7 12.8
311 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 77.5 -0.35210000000000002 9.9901999999999997 0.083169999999999994 7.9 8.5 9.1999999999999993 10 10.9 11.9 13
312 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 78 -0.35210000000000002 10.082700000000001 0.083180000000000004 7.9 8.6 9.3000000000000007 10.1 11 12 13.1
313 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 78.5 -0.35210000000000002 10.174099999999999 0.083180000000000004 8 8.6999999999999993 9.4 10.199999999999999 11.1 12.1 13.2
314 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 79 -0.35210000000000002 10.264900000000001 0.083159999999999998 8.1 8.6999999999999993 9.5 10.3 11.2 12.2 13.3
315 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 79.5 -0.35210000000000002 10.3558 0.083129999999999996 8.1999999999999993 8.8000000000000007 9.5 10.4 11.3 12.3 13.4
316 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 80 -0.35210000000000002 10.4475 0.083080000000000001 8.1999999999999993 8.9 9.6 10.4 11.4 12.4 13.6
317 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 80.5 -0.35210000000000002 10.5405 0.08301 8.3000000000000007 9 9.6999999999999993 10.5 11.5 12.5 13.7
318 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 81 -0.35210000000000002 10.635199999999999 0.082930000000000004 8.4 9.1 9.8000000000000007 10.6 11.6 12.6 13.8
319 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 81.5 -0.35210000000000002 10.732200000000001 0.082839999999999997 8.5 9.1 9.9 10.7 11.7 12.7 13.9
320 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 82 -0.35210000000000002 10.832100000000001 0.082729999999999998 8.5 9.1999999999999993 10 10.8 11.8 12.8 14
321 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 82.5 -0.35210000000000002 10.935 0.082600000000000007 8.6 9.3000000000000007 10.1 10.9 11.9 13 14.2
322 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 83 -0.35210000000000002 11.041499999999999 0.082460000000000006 8.6999999999999993 9.4 10.199999999999999 11 12 13.1 14.3
323 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 83.5 -0.35210000000000002 11.1516 0.082309999999999994 8.8000000000000007 9.5 10.3 11.2 12.1 13.2 14.4
324 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 84 -0.35210000000000002 11.2651 0.082150000000000001 8.9 9.6 10.4 11.3 12.2 13.3 14.6
325 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 84.5 -0.35210000000000002 11.3817 0.081979999999999997 9 9.6999999999999993 10.5 11.4 12.4 13.5 14.7
326 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 85 -0.35210000000000002 11.5007 0.081809999999999994 9.1 9.8000000000000007 10.6 11.5 12.5 13.6 14.9
327 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 85.5 -0.35210000000000002 11.6218 0.081629999999999994 9.1999999999999993 9.9 10.7 11.6 12.6 13.7 15
328 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 86 -0.35210000000000002 11.744400000000001 0.081449999999999995 9.3000000000000007 10 10.8 11.7 12.8 13.9 15.2
329 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 86.5 -0.35210000000000002 11.867800000000001 0.081280000000000005 9.4 10.1 11 11.9 12.9 14 15.3
330 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 87 -0.35210000000000002 11.9916 0.081110000000000002 9.5 10.199999999999999 11.1 12 13 14.2 15.5
331 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 87.5 -0.35210000000000002 12.1152 0.080960000000000004 9.6 10.4 11.2 12.1 13.2 14.3 15.6
332 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 88 -0.35210000000000002 12.238200000000001 0.080820000000000003 9.6999999999999993 10.5 11.3 12.2 13.3 14.5 15.8
333 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 88.5 -0.35210000000000002 12.360300000000001 0.080689999999999998 9.8000000000000007 10.6 11.4 12.4 13.4 14.6 15.9
334 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 89 -0.35210000000000002 12.4815 0.080579999999999999 9.9 10.7 11.5 12.5 13.5 14.7 16.100000000000001
335 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 89.5 -0.35210000000000002 12.601699999999999 0.080479999999999996 10 10.8 11.6 12.6 13.7 14.9 16.2
336 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 90 -0.35210000000000002 12.7209 0.080409999999999995 10.1 10.9 11.8 12.7 13.8 15 16.399999999999999
337 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 90.5 -0.35210000000000002 12.8392 0.080339999999999995 10.199999999999999 11 11.9 12.8 13.9 15.1 16.5
338 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 91 -0.35210000000000002 12.956899999999999 0.080299999999999996 10.3 11.1 12 13 14.1 15.3 16.7
339 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 91.5 -0.35210000000000002 13.074199999999999 0.080259999999999998 10.4 11.2 12.1 13.1 14.2 15.4 16.8
340 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 92 -0.35210000000000002 13.191000000000001 0.080250000000000002 10.5 11.3 12.2 13.2 14.3 15.6 17
341 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 92.5 -0.35210000000000002 13.307499999999999 0.080250000000000002 10.6 11.4 12.3 13.3 14.4 15.7 17.100000000000001
342 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 93 -0.35210000000000002 13.4239 0.080259999999999998 10.7 11.5 12.4 13.4 14.6 15.8 17.3
343 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 93.5 -0.35210000000000002 13.5404 0.08029 10.7 11.6 12.5 13.5 14.7 16 17.399999999999999
344 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 94 -0.35210000000000002 13.6572 0.080339999999999995 10.8 11.7 12.6 13.7 14.8 16.100000000000001 17.600000000000001
345 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 94.5 -0.35210000000000002 13.7746 0.080399999999999999 10.9 11.8 12.7 13.8 14.9 16.3 17.7
346 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 95 -0.35210000000000002 13.892799999999999 0.08047 11 11.9 12.8 13.9 15.1 16.399999999999999 17.899999999999999
347 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 95.5 -0.35210000000000002 14.012 0.080560000000000007 11.1 12 12.9 14 15.2 16.5 18
348 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 96 -0.35210000000000002 14.1325 0.080670000000000006 11.2 12.1 13.1 14.1 15.3 16.7 18.2
349 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 96.5 -0.35210000000000002 14.2544 0.080780000000000005 11.3 12.2 13.2 14.3 15.5 16.8 18.399999999999999
350 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 97 -0.35210000000000002 14.3782 0.080920000000000006 11.4 12.3 13.3 14.4 15.6 17 18.5
351 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 97.5 -0.35210000000000002 14.5038 0.081059999999999993 11.5 12.4 13.4 14.5 15.7 17.100000000000001 18.7
352 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 98 -0.35210000000000002 14.631600000000001 0.081220000000000001 11.6 12.5 13.5 14.6 15.9 17.3 18.899999999999999
353 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 98.5 -0.35210000000000002 14.7614 0.081390000000000004 11.7 12.6 13.6 14.8 16 17.5 19.100000000000001
354 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 99 -0.35210000000000002 14.8934 0.081570000000000004 11.8 12.7 13.7 14.9 16.2 17.600000000000001 19.2
355 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 99.5 -0.35210000000000002 15.0275 0.081769999999999995 11.9 12.8 13.9 15 16.3 17.8 19.399999999999999
356 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 100 -0.35210000000000002 15.1637 0.081979999999999997 12 12.9 14 15.2 16.5 18 19.600000000000001
357 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 100.5 -0.35210000000000002 15.3018 0.082199999999999995 12.1 13 14.1 15.3 16.600000000000001 18.100000000000001 19.8
358 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 101 -0.35210000000000002 15.4419 0.082430000000000003 12.2 13.2 14.2 15.4 16.8 18.3 20
359 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 101.5 -0.35210000000000002 15.5838 0.082669999999999993 12.3 13.3 14.4 15.6 16.899999999999999 18.5 20.2
360 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 102 -0.35210000000000002 15.727600000000001 0.082919999999999994 12.4 13.4 14.5 15.7 17.100000000000001 18.7 20.399999999999999
361 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 102.5 -0.35210000000000002 15.873200000000001 0.083169999999999994 12.5 13.5 14.6 15.9 17.3 18.8 20.6
362 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 103 -0.35210000000000002 16.020600000000002 0.083430000000000004 12.6 13.6 14.8 16 17.399999999999999 19 20.8
363 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 103.5 -0.35210000000000002 16.169699999999999 0.083699999999999997 12.7 13.7 14.9 16.2 17.600000000000001 19.2 21
364 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 104 -0.35210000000000002 16.320399999999999 0.083970000000000003 12.8 13.9 15 16.3 17.8 19.399999999999999 21.2
365 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 104.5 -0.35210000000000002 16.472799999999999 0.084250000000000005 12.9 14 15.2 16.5 17.899999999999999 19.600000000000001 21.5
366 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 105 -0.35210000000000002 16.626799999999999 0.084529999999999994 13 14.1 15.3 16.600000000000001 18.100000000000001 19.8 21.7
367 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 105.5 -0.35210000000000002 16.782599999999999 0.084809999999999997 13.2 14.2 15.4 16.8 18.3 20 21.9
368 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 106 -0.35210000000000002 16.940100000000001 0.085099999999999995 13.3 14.4 15.6 16.899999999999999 18.5 20.2 22.1
369 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 106.5 -0.35210000000000002 17.099499999999999 0.085389999999999994 13.4 14.5 15.7 17.100000000000001 18.600000000000001 20.399999999999999 22.4
370 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 107 -0.35210000000000002 17.2607 0.085680000000000006 13.5 14.6 15.9 17.3 18.8 20.6 22.6
371 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 107.5 -0.35210000000000002 17.4237 0.085989999999999997 13.6 14.7 16 17.399999999999999 19 20.8 22.8
372 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 108 -0.35210000000000002 17.5885 0.086290000000000006 13.7 14.9 16.2 17.600000000000001 19.2 21 23.1
373 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 108.5 -0.35210000000000002 17.755299999999998 0.086599999999999996 13.8 15 16.3 17.8 19.399999999999999 21.2 23.3
374 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 109 -0.35210000000000002 17.924199999999999 0.086910000000000001 14 15.1 16.5 17.899999999999999 19.600000000000001 21.4 23.6
375 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 109.5 -0.35210000000000002 18.095400000000001 0.087230000000000002 14.1 15.3 16.600000000000001 18.100000000000001 19.8 21.7 23.8
376 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 110 -0.35210000000000002 18.268899999999999 0.087550000000000003 14.2 15.4 16.8 18.3 20 21.9 24.1
377 source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
378 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 65 -0.35210000000000002 7.4326999999999996 0.082170000000000007 5.9 6.3 6.9 7.4 8.1 8.8000000000000007 9.6
379 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 65.5 -0.35210000000000002 7.5503999999999998 0.082140000000000005 6 6.4 7 7.6 8.1999999999999993 8.9 9.8000000000000007
380 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 66 -0.35210000000000002 7.6673 0.082119999999999999 6.1 6.5 7.1 7.7 8.3000000000000007 9.1 9.9
381 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 66.5 -0.35210000000000002 7.7834000000000003 0.082119999999999999 6.1 6.6 7.2 7.8 8.5 9.1999999999999993 10.1
382 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 67 -0.35210000000000002 7.8986000000000001 0.082129999999999995 6.2 6.7 7.3 7.9 8.6 9.4 10.199999999999999
383 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 67.5 -0.35210000000000002 8.0131999999999994 0.082140000000000005 6.3 6.8 7.4 8 8.6999999999999993 9.5 10.4
384 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 68 -0.35210000000000002 8.1272000000000002 0.082170000000000007 6.4 6.9 7.5 8.1 8.8000000000000007 9.6 10.5
385 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 68.5 -0.35210000000000002 8.2409999999999997 0.082210000000000005 6.5 7 7.6 8.1999999999999993 9 9.8000000000000007 10.7
386 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 69 -0.35210000000000002 8.3546999999999993 0.08226 6.6 7.1 7.7 8.4 9.1 9.9 10.8
387 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 69.5 -0.35210000000000002 8.468 0.082309999999999994 6.7 7.2 7.8 8.5 9.1999999999999993 10 11
388 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 70 -0.35210000000000002 8.5808 0.082369999999999999 6.8 7.3 7.9 8.6 9.3000000000000007 10.199999999999999 11.1
389 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 70.5 -0.35210000000000002 8.6927000000000003 0.082430000000000003 6.9 7.4 8 8.6999999999999993 9.5 10.3 11.3
390 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 71 -0.35210000000000002 8.8035999999999994 0.082500000000000004 6.9 7.5 8.1 8.8000000000000007 9.6 10.4 11.4
391 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 71.5 -0.35210000000000002 8.9135000000000009 0.082570000000000005 7 7.6 8.1999999999999993 8.9 9.6999999999999993 10.6 11.6
392 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 72 -0.35210000000000002 9.0221 0.082640000000000005 7.1 7.7 8.3000000000000007 9 9.8000000000000007 10.7 11.7
393 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 72.5 -0.35210000000000002 9.1292000000000009 0.082720000000000002 7.2 7.8 8.4 9.1 9.9 10.8 11.8
394 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 73 -0.35210000000000002 9.2347000000000001 0.082780000000000006 7.3 7.9 8.5 9.1999999999999993 10 11 12
395 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 73.5 -0.35210000000000002 9.3390000000000004 0.082849999999999993 7.4 7.9 8.6 9.3000000000000007 10.199999999999999 11.1 12.1
396 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 74 -0.35210000000000002 9.4420000000000002 0.082919999999999994 7.4 8 8.6999999999999993 9.4 10.3 11.2 12.2
397 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 74.5 -0.35210000000000002 9.5437999999999992 0.082979999999999998 7.5 8.1 8.8000000000000007 9.5 10.4 11.3 12.4
398 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 75 -0.35210000000000002 9.6440000000000001 0.083030000000000007 7.6 8.1999999999999993 8.9 9.6 10.5 11.4 12.5
399 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 75.5 -0.35210000000000002 9.7424999999999997 0.083080000000000001 7.7 8.3000000000000007 9 9.6999999999999993 10.6 11.6 12.6
400 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 76 -0.35210000000000002 9.8391999999999999 0.083119999999999999 7.7 8.4 9.1 9.8000000000000007 10.7 11.7 12.8
401 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 76.5 -0.35210000000000002 9.9341000000000008 0.083150000000000002 7.8 8.5 9.1999999999999993 9.9 10.8 11.8 12.9
402 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 77 -0.35210000000000002 10.0274 0.083169999999999994 7.9 8.5 9.1999999999999993 10 10.9 11.9 13
403 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 77.5 -0.35210000000000002 10.119400000000001 0.083180000000000004 8 8.6 9.3000000000000007 10.1 11 12 13.1
404 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 78 -0.35210000000000002 10.2105 0.083169999999999994 8 8.6999999999999993 9.4 10.199999999999999 11.1 12.1 13.3
405 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 78.5 -0.35210000000000002 10.3012 0.083150000000000002 8.1 8.8000000000000007 9.5 10.3 11.2 12.2 13.4
406 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 79 -0.35210000000000002 10.392300000000001 0.083110000000000003 8.1999999999999993 8.8000000000000007 9.6 10.4 11.3 12.3 13.5
407 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 79.5 -0.35210000000000002 10.484500000000001 0.083049999999999999 8.3000000000000007 8.9 9.6999999999999993 10.5 11.4 12.4 13.6
408 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 80 -0.35210000000000002 10.578099999999999 0.082979999999999998 8.3000000000000007 9 9.6999999999999993 10.6 11.5 12.6 13.7
409 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 80.5 -0.35210000000000002 10.6737 0.082900000000000001 8.4 9.1 9.8000000000000007 10.7 11.6 12.7 13.8
410 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 81 -0.35210000000000002 10.771800000000001 0.082790000000000002 8.5 9.1999999999999993 9.9 10.8 11.7 12.8 14
411 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 81.5 -0.35210000000000002 10.8728 0.082680000000000003 8.6 9.3000000000000007 10 10.9 11.8 12.9 14.1
412 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 82 -0.35210000000000002 10.9772 0.082549999999999998 8.6999999999999993 9.3000000000000007 10.1 11 11.9 13 14.2
413 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 82.5 -0.35210000000000002 11.085100000000001 0.082409999999999997 8.6999999999999993 9.4 10.199999999999999 11.1 12.1 13.1 14.4
414 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 83 -0.35210000000000002 11.1966 0.082250000000000004 8.8000000000000007 9.5 10.3 11.2 12.2 13.3 14.5
415 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 83.5 -0.35210000000000002 11.311400000000001 0.082089999999999996 8.9 9.6 10.4 11.3 12.3 13.4 14.6
416 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 84 -0.35210000000000002 11.429 0.081909999999999997 9 9.6999999999999993 10.5 11.4 12.4 13.5 14.8
417 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 84.5 -0.35210000000000002 11.548999999999999 0.081739999999999993 9.1 9.9 10.7 11.5 12.5 13.7 14.9
418 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 85 -0.35210000000000002 11.6707 0.081559999999999994 9.1999999999999993 10 10.8 11.7 12.7 13.8 15.1
419 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 85.5 -0.35210000000000002 11.793699999999999 0.081379999999999994 9.3000000000000007 10.1 10.9 11.8 12.8 13.9 15.2
420 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 86 -0.35210000000000002 11.917299999999999 0.081210000000000004 9.4 10.199999999999999 11 11.9 12.9 14.1 15.4
421 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 86.5 -0.35210000000000002 12.0411 0.081049999999999997 9.5 10.3 11.1 12 13.1 14.2 15.5
422 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 87 -0.35210000000000002 12.1645 0.0809 9.6 10.4 11.2 12.2 13.2 14.4 15.7
423 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 87.5 -0.35210000000000002 12.287100000000001 0.080759999999999998 9.6999999999999993 10.5 11.3 12.3 13.3 14.5 15.8
424 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 88 -0.35210000000000002 12.408899999999999 0.080640000000000003 9.8000000000000007 10.6 11.5 12.4 13.5 14.7 16
425 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 88.5 -0.35210000000000002 12.5298 0.08054 9.9 10.7 11.6 12.5 13.6 14.8 16.100000000000001
426 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 89 -0.35210000000000002 12.6495 0.080449999999999994 10 10.8 11.7 12.6 13.7 14.9 16.3
427 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 89.5 -0.35210000000000002 12.7683 0.080379999999999993 10.1 10.9 11.8 12.8 13.9 15.1 16.399999999999999
428 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 90 -0.35210000000000002 12.8864 0.080320000000000003 10.199999999999999 11 11.9 12.9 14 15.2 16.600000000000001
429 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 90.5 -0.35210000000000002 13.0038 0.080280000000000004 10.3 11.1 12 13 14.1 15.3 16.7
430 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 91 -0.35210000000000002 13.120900000000001 0.080250000000000002 10.4 11.2 12.1 13.1 14.2 15.5 16.899999999999999
431 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 91.5 -0.35210000000000002 13.2376 0.080240000000000006 10.5 11.3 12.2 13.2 14.4 15.6 17
432 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 92 -0.35210000000000002 13.354100000000001 0.080250000000000002 10.6 11.4 12.3 13.4 14.5 15.8 17.2
433 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 92.5 -0.35210000000000002 13.470499999999999 0.080269999999999994 10.7 11.5 12.4 13.5 14.6 15.9 17.3
434 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 93 -0.35210000000000002 13.587 0.080310000000000006 10.8 11.6 12.6 13.6 14.7 16 17.5
435 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 93.5 -0.35210000000000002 13.7041 0.080360000000000001 10.9 11.7 12.7 13.7 14.9 16.2 17.600000000000001
436 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 94 -0.35210000000000002 13.8217 0.080430000000000001 11 11.8 12.8 13.8 15 16.3 17.8
437 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 94.5 -0.35210000000000002 13.940300000000001 0.080509999999999998 11.1 11.9 12.9 13.9 15.1 16.5 17.899999999999999
438 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 95 -0.35210000000000002 14.06 0.080600000000000005 11.1 12 13 14.1 15.3 16.600000000000001 18.100000000000001
439 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 95.5 -0.35210000000000002 14.181100000000001 0.080710000000000004 11.2 12.1 13.1 14.2 15.4 16.7 18.3
440 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 96 -0.35210000000000002 14.303699999999999 0.080829999999999999 11.3 12.2 13.2 14.3 15.5 16.899999999999999 18.399999999999999
441 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 96.5 -0.35210000000000002 14.4282 0.08097 11.4 12.3 13.3 14.4 15.7 17 18.600000000000001
442 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 97 -0.35210000000000002 14.5547 0.081119999999999998 11.5 12.4 13.4 14.6 15.8 17.2 18.8
443 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 97.5 -0.35210000000000002 14.683199999999999 0.081290000000000001 11.6 12.5 13.6 14.7 15.9 17.399999999999999 18.899999999999999
444 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 98 -0.35210000000000002 14.814 0.081460000000000005 11.7 12.6 13.7 14.8 16.100000000000001 17.5 19.100000000000001
445 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 98.5 -0.35210000000000002 14.9468 0.08165 11.8 12.8 13.8 14.9 16.2 17.7 19.3
446 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 99 -0.35210000000000002 15.081799999999999 0.081850000000000006 11.9 12.9 13.9 15.1 16.399999999999999 17.899999999999999 19.5
447 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 99.5 -0.35210000000000002 15.2187 0.082059999999999994 12 13 14 15.2 16.5 18 19.7
448 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 100 -0.35210000000000002 15.3576 0.082290000000000002 12.1 13.1 14.2 15.4 16.7 18.2 19.899999999999999
449 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 100.5 -0.35210000000000002 15.4985 0.082519999999999996 12.2 13.2 14.3 15.5 16.899999999999999 18.399999999999999 20.100000000000001
450 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 101 -0.35210000000000002 15.6412 0.082769999999999996 12.3 13.3 14.4 15.6 17 18.5 20.3
451 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 101.5 -0.35210000000000002 15.7857 0.083019999999999997 12.4 13.4 14.5 15.8 17.2 18.7 20.5
452 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 102 -0.35210000000000002 15.932 0.083280000000000007 12.5 13.6 14.7 15.9 17.3 18.899999999999999 20.7
453 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 102.5 -0.35210000000000002 16.080100000000002 0.083540000000000003 12.6 13.7 14.8 16.100000000000001 17.5 19.100000000000001 20.9
454 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 103 -0.35210000000000002 16.229800000000001 0.083809999999999996 12.8 13.8 14.9 16.2 17.7 19.3 21.1
455 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 103.5 -0.35210000000000002 16.3812 0.084080000000000002 12.9 13.9 15.1 16.399999999999999 17.8 19.5 21.3
456 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 104 -0.35210000000000002 16.534199999999998 0.084360000000000004 13 14 15.2 16.5 18 19.7 21.6
457 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 104.5 -0.35210000000000002 16.6889 0.084640000000000007 13.1 14.2 15.4 16.7 18.2 19.899999999999999 21.8
458 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 105 -0.35210000000000002 16.845400000000001 0.084930000000000005 13.2 14.3 15.5 16.8 18.399999999999999 20.100000000000001 22
459 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 105.5 -0.35210000000000002 17.003599999999999 0.085209999999999994 13.3 14.4 15.6 17 18.5 20.3 22.2
460 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 106 -0.35210000000000002 17.163699999999999 0.085510000000000003 13.4 14.5 15.8 17.2 18.7 20.5 22.5
461 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 106.5 -0.35210000000000002 17.325600000000001 0.085800000000000001 13.5 14.7 15.9 17.3 18.899999999999999 20.7 22.7
462 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 107 -0.35210000000000002 17.4894 0.086110000000000006 13.7 14.8 16.100000000000001 17.5 19.100000000000001 20.9 22.9
463 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 107.5 -0.35210000000000002 17.655000000000001 0.086410000000000001 13.8 14.9 16.2 17.7 19.3 21.1 23.2
464 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 108 -0.35210000000000002 17.822600000000001 0.086730000000000002 13.9 15.1 16.399999999999999 17.8 19.5 21.3 23.4
465 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 108.5 -0.35210000000000002 17.9924 0.087040000000000006 14 15.2 16.5 18 19.7 21.5 23.7
466 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 109 -0.35210000000000002 18.1645 0.087359999999999993 14.1 15.3 16.7 18.2 19.8 21.8 23.9
467 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 109.5 -0.35210000000000002 18.338999999999999 0.087679999999999994 14.3 15.5 16.8 18.3 20 22 24.2
468 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 110 -0.35210000000000002 18.515799999999999 0.087999999999999995 14.4 15.6 17 18.5 20.2 22.2 24.4
469 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 110.5 -0.35210000000000002 18.694800000000001 0.088319999999999996 14.5 15.8 17.100000000000001 18.7 20.399999999999999 22.4 24.7
470 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 111 -0.35210000000000002 18.875900000000001 0.088639999999999997 14.6 15.9 17.3 18.899999999999999 20.7 22.7 25
471 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 111.5 -0.35210000000000002 19.059000000000001 0.088959999999999997 14.8 16 17.5 19.100000000000001 20.9 22.9 25.2
472 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 112 -0.35210000000000002 19.2439 0.089279999999999998 14.9 16.2 17.600000000000001 19.2 21.1 23.1 25.5
473 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 112.5 -0.35210000000000002 19.430399999999999 0.089599999999999999 15 16.3 17.8 19.399999999999999 21.3 23.4 25.8
474 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 113 -0.35210000000000002 19.618500000000001 0.089910000000000004 15.2 16.5 18 19.600000000000001 21.5 23.6 26
475 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 113.5 -0.35210000000000002 19.8081 0.090219999999999995 15.3 16.600000000000001 18.100000000000001 19.8 21.7 23.9 26.3
476 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 114 -0.35210000000000002 19.998999999999999 0.090539999999999995 15.4 16.8 18.3 20 21.9 24.1 26.6
477 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 114.5 -0.35210000000000002 20.191199999999998 0.09085 15.6 16.899999999999999 18.5 20.2 22.1 24.4 26.9
478 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 115 -0.35210000000000002 20.384599999999999 0.091160000000000005 15.7 17.100000000000001 18.600000000000001 20.399999999999999 22.4 24.6 27.2
479 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 115.5 -0.35210000000000002 20.578900000000001 0.091469999999999996 15.8 17.2 18.8 20.6 22.6 24.9 27.5
480 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 116 -0.35210000000000002 20.774100000000001 0.091770000000000004 16 17.399999999999999 19 20.8 22.8 25.1 27.8
481 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 116.5 -0.35210000000000002 20.97 0.092079999999999995 16.100000000000001 17.5 19.2 21 23 25.4 28
482 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 117 -0.35210000000000002 21.166599999999999 0.09239 16.2 17.7 19.3 21.2 23.3 25.6 28.3
483 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 117.5 -0.35210000000000002 21.363600000000002 0.092700000000000005 16.399999999999999 17.899999999999999 19.5 21.4 23.5 25.9 28.6
484 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 118 -0.35210000000000002 21.5611 0.092999999999999999 16.5 18 19.7 21.6 23.7 26.1 28.9
485 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 118.5 -0.35210000000000002 21.758800000000001 0.093310000000000004 16.7 18.2 19.899999999999999 21.8 23.9 26.4 29.2
486 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 119 -0.35210000000000002 21.956800000000001 0.093619999999999995 16.8 18.3 20 22 24.1 26.6 29.5
487 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 119.5 -0.35210000000000002 22.154900000000001 0.09393 16.899999999999999 18.5 20.2 22.2 24.4 26.9 29.8
488 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 120 -0.35210000000000002 22.353000000000002 0.094240000000000004 17.100000000000001 18.600000000000001 20.399999999999999 22.4 24.6 27.2 30.1